diff --git a/stage0/src/Init/Data/Option/Basic.lean b/stage0/src/Init/Data/Option/Basic.lean index bf36b23cbe..ae88231c3a 100644 --- a/stage0/src/Init/Data/Option/Basic.lean +++ b/stage0/src/Init/Data/Option/Basic.lean @@ -64,10 +64,9 @@ instance : Monad Option := { /- Remark: when using the polymorphic notation `a <|> b` is not a `[macroInline]`. Thus, `a <|> b` will make `Option.orelse` to behave like it was marked as `[inline]`. -/ -instance : Alternative Option := { - failure := none, +instance : Alternative Option where + failure := none orElse := Option.orElse -} @[inline] protected def lt (r : α → α → Prop) : Option α → Option α → Prop | none, some x => True @@ -82,22 +81,8 @@ instance (r : α → α → Prop) [s : DecidableRel r] : DecidableRel (Option.lt end Option -instance [DecidableEq α] : DecidableEq (Option α) := fun a b => - match a, b with - | none, none => isTrue rfl - | none, (some v₂) => isFalse (fun h => Option.noConfusion h) - | (some v₁), none => isFalse (fun h => Option.noConfusion h) - | (some v₁), (some v₂) => - match decEq v₁ v₂ with - | (isTrue e) => isTrue (congrArg (@some α) e) - | (isFalse n) => isFalse (fun h => Option.noConfusion h (fun e => absurd e n)) - -instance [BEq α] : BEq (Option α) where - beq - | none, none => true - | none, (some v₂) => false - | (some v₁), none => false - | (some v₁), (some v₂) => v₁ == v₂ +deriving instance DecidableEq for Option +deriving instance BEq for Option instance [HasLess α] : HasLess (Option α) := { Less := Option.lt (· < ·) diff --git a/stage0/src/Lean/Data/Position.lean b/stage0/src/Lean/Data/Position.lean index b1032256da..f351dcd5c1 100644 --- a/stage0/src/Lean/Data/Position.lean +++ b/stage0/src/Lean/Data/Position.lean @@ -10,19 +10,9 @@ namespace Lean structure Position where line : Nat column : Nat - deriving Inhabited + deriving Inhabited, DecidableEq namespace Position -instance : DecidableEq Position := - fun ⟨l₁, c₁⟩ ⟨l₂, c₂⟩ => - if h₁ : l₁ = l₂ then - if h₂ : c₁ = c₂ then - isTrue $ by subst h₁; subst h₂; rfl - else - isFalse fun contra => Position.noConfusion contra (fun e₁ e₂ => absurd e₂ h₂) - else - isFalse fun contra => Position.noConfusion contra (fun e₁ e₂ => absurd e₁ h₁) - protected def lt : Position → Position → Bool | ⟨l₁, c₁⟩, ⟨l₂, c₂⟩ => (l₁, c₁) < (l₂, c₂) diff --git a/stage0/src/Lean/Elab/Deriving/DecEq.lean b/stage0/src/Lean/Elab/Deriving/DecEq.lean index 73237d8581..8b7c36d861 100644 --- a/stage0/src/Lean/Elab/Deriving/DecEq.lean +++ b/stage0/src/Lean/Elab/Deriving/DecEq.lean @@ -23,15 +23,17 @@ def mkMatch (ctx : Context) (header : Header) (indVal : InductiveVal) (auxFunNam where mkSameCtorRhs : List (Syntax × Syntax × Bool) → TermElabM Syntax | [] => `(isTrue rfl) - | (a, b, false) :: todo => withFreshMacroScope do - `(if h : $a = $b then - by subst h; exact $(← mkSameCtorRhs todo):term - else - isFalse (by intro n; injection n; apply h _; assumption)) - | (a, b, true) :: todo => withFreshMacroScope do - `(@dite _ _ ($(mkIdent auxFunName) $a $b) - (fun h => by subst h; exact $(← mkSameCtorRhs todo):term) - (fun h => isFalse (by intro n; injection n; apply h _; assumption))) + | (a, b, recField) :: todo => withFreshMacroScope do + let rhs ← + `(if h : $a = $b then + by subst h; exact $(← mkSameCtorRhs todo):term + else + isFalse (by intro n; injection n; apply h _; assumption)) + if recField then + -- add local instance for `a = b` using the function being defined `auxFunName` + `(let inst := $(mkIdent auxFunName) $a $b; $rhs) + else + return rhs mkAlts : TermElabM (Array Syntax) := do let mut alts := #[] diff --git a/stage0/src/Lean/Elab/Quotation.lean b/stage0/src/Lean/Elab/Quotation.lean index cd00890d32..674b7bd8d5 100644 --- a/stage0/src/Lean/Elab/Quotation.lean +++ b/stage0/src/Lean/Elab/Quotation.lean @@ -258,9 +258,7 @@ private partial def compileStxMatch (discrs : List Syntax) (alts : List Alt) : T | _, [] => throwError "non-exhaustive 'match_syntax'" | discr::discrs, alts => do let alts := (alts.map getHeadInfo).zip alts; - -- Choose a most specific pattern, ie. a minimal element according to `generalizes`. - -- If there are multiple minimal elements, the choice does not matter. - let (info, alt) := alts.tail!.foldl (fun (min : HeadInfo × Alt) (alt : HeadInfo × Alt) => if min.1.generalizes alt.1 then alt else min) alts.head!; + let (info, alt) := alts.head! -- introduce pattern matches on the discriminant's children if there are any nested patterns let newDiscrs ← match info with | basic { argPats := some pats, .. } => (List.range pats.size).mapM fun i => `(Syntax.getArg discr $(quote i)) diff --git a/stage0/src/library/compiler/ir_interpreter.cpp b/stage0/src/library/compiler/ir_interpreter.cpp index bc4f6d8d2d..33161bc0d1 100644 --- a/stage0/src/library/compiler/ir_interpreter.cpp +++ b/stage0/src/library/compiler/ir_interpreter.cpp @@ -298,7 +298,7 @@ void * lookup_symbol_in_cur_exe(char const * sym) { } class interpreter; -static interpreter & get_interpreter(); +LEAN_THREAD_PTR(interpreter, g_interpreter); class interpreter { // stack of IR variable slots @@ -314,8 +314,8 @@ class interpreter { frame(name const & mFn, size_t mArgBp, size_t mJpBp) : m_fn(mFn), m_arg_bp(mArgBp), m_jp_bp(mJpBp) {} }; std::vector m_call_stack; - environment const * m_env; - options const * m_opts; + environment const & m_env; + options const & m_opts; // if `false`, use IR code where possible bool m_prefer_native; struct constant_cache_entry { @@ -353,30 +353,18 @@ class interpreter { public: template static inline T with_interpreter(environment const & env, options const & opts, std::function const & f) { - interpreter & interp = get_interpreter(); - if (interp.m_env && is_eqp(*interp.m_env, env) && interp.m_opts && is_eqp(*interp.m_opts, opts)) { - return f(interp); + if (g_interpreter && is_eqp(g_interpreter->m_env, env) && is_eqp(g_interpreter->m_opts, opts)) { + return f(*g_interpreter); } else { // We changed threads or the closure was stored and called in a different context. time_task t("interpretation", message_builder(env, get_global_ios(), "foo", pos_info(), message_severity::INFORMATION)); abstract_type_context trace_ctx(opts); scope_trace_env scope_trace(env, opts, trace_ctx); - flet fl1(interp.m_env, &env); - flet fl2(interp.m_opts, &opts); - flet fl3(interp.m_prefer_native, opts.get_bool(*g_interpreter_prefer_native, LEAN_DEFAULT_INTERPRETER_PREFER_NATIVE)); - if (interp.m_env) { - // both these caches contain data from the Environment, so we cannot reuse them when changing it - flet> fl4(interp.m_constant_cache, {}); - flet> fl5(interp.m_symbol_cache, {}); - return f(interp); - } else { - // if there is no outer interpreter, might as well leave the caches around; maybe the next call is for - // the same Environment - interp.m_constant_cache = {}; - interp.m_symbol_cache = {}; - return f(interp); - } + // the caches contain data from the Environment, so we cannot reuse them when changing it + interpreter interp(env, opts); + flet fl(g_interpreter, &interp); + return f(interp); } } @@ -412,8 +400,8 @@ private: object * mk_stub_closure(decl const & d, unsigned n, object ** args) { unsigned cls_size = 3 + decl_params(d).size(); object * cls = alloc_closure(get_stub(cls_size), cls_size, 3 + n); - closure_set(cls, 0, m_env->to_obj_arg()); - closure_set(cls, 1, m_opts->to_obj_arg()); + closure_set(cls, 0, m_env.to_obj_arg()); + closure_set(cls, 1, m_opts.to_obj_arg()); closure_set(cls, 2, d.to_obj_arg()); for (unsigned i = 0; i < n ; i++) closure_set(cls, 3 + i, args[i]); @@ -741,7 +729,7 @@ private: return *e; } else { symbol_cache_entry e_new { get_decl(fn), nullptr, false }; - if (m_prefer_native || decl_tag(e_new.m_decl) == decl_kind::Extern || has_init_attribute(*m_env, fn)) { + if (m_prefer_native || decl_tag(e_new.m_decl) == decl_kind::Extern || has_init_attribute(m_env, fn)) { string_ref mangled = name_mangle(fn, *g_mangle_prefix); string_ref boxed_mangled(string_append(mangled.to_obj_arg(), g_boxed_mangled_suffix->raw())); // check for boxed version first @@ -760,7 +748,7 @@ private: /** \brief Retrieve Lean declaration from environment. */ decl get_decl(name const & fn) { - option_ref d = find_ir_decl(*m_env, fn); + option_ref d = find_ir_decl(m_env, fn); if (!d) { throw exception(sstream() << "unknown declaration '" << fn << "'"); } @@ -780,7 +768,7 @@ private: return *o; } - if (get_regular_init_fn_name_for(*m_env, fn)) { + if (get_regular_init_fn_name_for(m_env, fn)) { // We don't know whether `[init]` decls can be re-executed, so let's not. throw exception(sstream() << "cannot evaluate `[init]` declaration '" << fn << "' in the same module"); } @@ -917,6 +905,10 @@ private: } } public: + explicit interpreter(environment const & env, options const & opts) : m_env(env), m_opts(opts) { + m_prefer_native = opts.get_bool(*g_interpreter_prefer_native, LEAN_DEFAULT_INTERPRETER_PREFER_NATIVE); + } + ~interpreter() { for_each(m_constant_cache, [](name const &, constant_cache_entry const & e) { if (!e.m_is_scalar) { @@ -944,7 +936,7 @@ public: } else { // `lookup_symbol` does not prefer the boxed version for interpreted functions, so check manually. decl d = e.m_decl; - if (option_ref d_boxed = find_ir_decl(*m_env, fn + *g_boxed_suffix)) { + if (option_ref d_boxed = find_ir_decl(m_env, fn + *g_boxed_suffix)) { d = *d_boxed.get(); } r = mk_stub_closure(d, 0, nullptr); @@ -1014,8 +1006,6 @@ public: } }; -MK_THREAD_LOCAL_GET_DEF(interpreter, get_interpreter); - object * run_boxed(environment const & env, options const & opts, name const & fn, unsigned n, object **args) { return interpreter::with_interpreter(env, opts, [&](interpreter & interp) { return interp.call_boxed(fn, n, args); }); } diff --git a/stage0/stdlib/CMakeLists.txt b/stage0/stdlib/CMakeLists.txt index 21423be7fd..92df2d3f9d 100644 --- a/stage0/stdlib/CMakeLists.txt +++ b/stage0/stdlib/CMakeLists.txt @@ -1 +1 @@ -add_library (stage0 OBJECT ./Init.c ./Init/Classical.c ./Init/Coe.c ./Init/Control.c ./Init/Control/Basic.c ./Init/Control/EState.c ./Init/Control/Except.c ./Init/Control/Id.c ./Init/Control/Option.c ./Init/Control/Reader.c ./Init/Control/State.c ./Init/Control/StateRef.c ./Init/Core.c ./Init/Data.c ./Init/Data/Array.c ./Init/Data/Array/Basic.c ./Init/Data/Array/BinSearch.c ./Init/Data/Array/InsertionSort.c ./Init/Data/Array/QSort.c ./Init/Data/Array/Subarray.c ./Init/Data/Basic.c ./Init/Data/ByteArray.c ./Init/Data/ByteArray/Basic.c ./Init/Data/Char.c ./Init/Data/Char/Basic.c ./Init/Data/Fin.c ./Init/Data/Fin/Basic.c ./Init/Data/Float.c ./Init/Data/FloatArray.c ./Init/Data/FloatArray/Basic.c ./Init/Data/Hashable.c ./Init/Data/Int.c ./Init/Data/Int/Basic.c ./Init/Data/List.c ./Init/Data/List/Basic.c ./Init/Data/List/BasicAux.c ./Init/Data/List/Control.c ./Init/Data/Nat.c ./Init/Data/Nat/Basic.c ./Init/Data/Nat/Bitwise.c ./Init/Data/Nat/Control.c ./Init/Data/Nat/Div.c ./Init/Data/OfScientific.c ./Init/Data/Option.c ./Init/Data/Option/Basic.c ./Init/Data/Option/BasicAux.c ./Init/Data/Option/Instances.c ./Init/Data/Random.c ./Init/Data/Range.c ./Init/Data/Repr.c ./Init/Data/String.c ./Init/Data/String/Basic.c ./Init/Data/String/Extra.c ./Init/Data/ToString.c ./Init/Data/ToString/Basic.c ./Init/Data/ToString/Macro.c ./Init/Data/UInt.c ./Init/Fix.c ./Init/Meta.c ./Init/Notation.c ./Init/NotationExtra.c ./Init/Prelude.c ./Init/SizeOf.c ./Init/System.c ./Init/System/FilePath.c ./Init/System/IO.c ./Init/System/IOError.c ./Init/System/Platform.c ./Init/System/ST.c ./Init/Util.c ./Init/WF.c ./Lean.c ./Lean/Attributes.c ./Lean/AuxRecursor.c ./Lean/Class.c ./Lean/Compiler.c ./Lean/Compiler/BorrowedAnnotation.c ./Lean/Compiler/ClosedTermCache.c ./Lean/Compiler/ConstFolding.c ./Lean/Compiler/ExportAttr.c ./Lean/Compiler/ExternAttr.c ./Lean/Compiler/IR.c ./Lean/Compiler/IR/Basic.c ./Lean/Compiler/IR/Borrow.c ./Lean/Compiler/IR/Boxing.c ./Lean/Compiler/IR/Checker.c ./Lean/Compiler/IR/CompilerM.c ./Lean/Compiler/IR/CtorLayout.c ./Lean/Compiler/IR/ElimDeadBranches.c ./Lean/Compiler/IR/ElimDeadVars.c ./Lean/Compiler/IR/EmitC.c ./Lean/Compiler/IR/EmitUtil.c ./Lean/Compiler/IR/ExpandResetReuse.c ./Lean/Compiler/IR/Format.c ./Lean/Compiler/IR/FreeVars.c ./Lean/Compiler/IR/LiveVars.c ./Lean/Compiler/IR/NormIds.c ./Lean/Compiler/IR/PushProj.c ./Lean/Compiler/IR/RC.c ./Lean/Compiler/IR/ResetReuse.c ./Lean/Compiler/IR/SimpCase.c ./Lean/Compiler/IR/UnboxResult.c ./Lean/Compiler/ImplementedByAttr.c ./Lean/Compiler/InitAttr.c ./Lean/Compiler/InlineAttrs.c ./Lean/Compiler/NameMangling.c ./Lean/Compiler/NeverExtractAttr.c ./Lean/Compiler/Specialize.c ./Lean/Compiler/Util.c ./Lean/CoreM.c ./Lean/Data.c ./Lean/Data/Format.c ./Lean/Data/Json.c ./Lean/Data/Json/Basic.c ./Lean/Data/Json/FromToJson.c ./Lean/Data/Json/Parser.c ./Lean/Data/Json/Printer.c ./Lean/Data/Json/Stream.c ./Lean/Data/JsonRpc.c ./Lean/Data/KVMap.c ./Lean/Data/LBool.c ./Lean/Data/LOption.c ./Lean/Data/Lsp.c ./Lean/Data/Lsp/Basic.c ./Lean/Data/Lsp/Capabilities.c ./Lean/Data/Lsp/Communication.c ./Lean/Data/Lsp/Diagnostics.c ./Lean/Data/Lsp/Hover.c ./Lean/Data/Lsp/InitShutdown.c ./Lean/Data/Lsp/TextSync.c ./Lean/Data/Lsp/Utf16.c ./Lean/Data/Lsp/Workspace.c ./Lean/Data/Name.c ./Lean/Data/NameTrie.c ./Lean/Data/Occurrences.c ./Lean/Data/OpenDecl.c ./Lean/Data/Options.c ./Lean/Data/Position.c ./Lean/Data/PrefixTree.c ./Lean/Data/SMap.c ./Lean/Data/Trie.c ./Lean/Declaration.c ./Lean/Elab.c ./Lean/Elab/App.c ./Lean/Elab/Attributes.c ./Lean/Elab/Binders.c ./Lean/Elab/BuiltinNotation.c ./Lean/Elab/CollectFVars.c ./Lean/Elab/Command.c ./Lean/Elab/DeclModifiers.c ./Lean/Elab/DeclUtil.c ./Lean/Elab/Declaration.c ./Lean/Elab/DefView.c ./Lean/Elab/Deriving.c ./Lean/Elab/Deriving/BEq.c ./Lean/Elab/Deriving/Basic.c ./Lean/Elab/Deriving/DecEq.c ./Lean/Elab/Deriving/Inhabited.c ./Lean/Elab/Deriving/Util.c ./Lean/Elab/Do.c ./Lean/Elab/Exception.c ./Lean/Elab/Frontend.c ./Lean/Elab/Import.c ./Lean/Elab/Inductive.c ./Lean/Elab/LetRec.c ./Lean/Elab/Level.c ./Lean/Elab/Log.c ./Lean/Elab/Match.c ./Lean/Elab/MutualDef.c ./Lean/Elab/PreDefinition.c ./Lean/Elab/PreDefinition/Basic.c ./Lean/Elab/PreDefinition/Main.c ./Lean/Elab/PreDefinition/MkInhabitant.c ./Lean/Elab/PreDefinition/Structural.c ./Lean/Elab/PreDefinition/WF.c ./Lean/Elab/Print.c ./Lean/Elab/Quotation.c ./Lean/Elab/Quotation/Util.c ./Lean/Elab/StructInst.c ./Lean/Elab/Structure.c ./Lean/Elab/Syntax.c ./Lean/Elab/SyntheticMVars.c ./Lean/Elab/Tactic.c ./Lean/Elab/Tactic/Basic.c ./Lean/Elab/Tactic/Binders.c ./Lean/Elab/Tactic/ElabTerm.c ./Lean/Elab/Tactic/Generalize.c ./Lean/Elab/Tactic/Induction.c ./Lean/Elab/Tactic/Injection.c ./Lean/Elab/Tactic/Location.c ./Lean/Elab/Tactic/Match.c ./Lean/Elab/Tactic/Rewrite.c ./Lean/Elab/Term.c ./Lean/Elab/Util.c ./Lean/Environment.c ./Lean/Eval.c ./Lean/Exception.c ./Lean/Expr.c ./Lean/HeadIndex.c ./Lean/Hygiene.c ./Lean/InternalExceptionId.c ./Lean/KeyedDeclsAttribute.c ./Lean/Level.c ./Lean/LocalContext.c ./Lean/Message.c ./Lean/Meta.c ./Lean/Meta/AbstractMVars.c ./Lean/Meta/AbstractNestedProofs.c ./Lean/Meta/AppBuilder.c ./Lean/Meta/Basic.c ./Lean/Meta/Check.c ./Lean/Meta/Closure.c ./Lean/Meta/CollectMVars.c ./Lean/Meta/DiscrTree.c ./Lean/Meta/DiscrTreeTypes.c ./Lean/Meta/ExprDefEq.c ./Lean/Meta/ForEachExpr.c ./Lean/Meta/FunInfo.c ./Lean/Meta/GeneralizeTelescope.c ./Lean/Meta/GetConst.c ./Lean/Meta/Inductive.c ./Lean/Meta/InferType.c ./Lean/Meta/Instances.c ./Lean/Meta/KAbstract.c ./Lean/Meta/LevelDefEq.c ./Lean/Meta/Match.c ./Lean/Meta/Match/Basic.c ./Lean/Meta/Match/CaseArraySizes.c ./Lean/Meta/Match/CaseValues.c ./Lean/Meta/Match/MVarRenaming.c ./Lean/Meta/Match/Match.c ./Lean/Meta/Match/MatchPatternAttr.c ./Lean/Meta/Match/MatcherInfo.c ./Lean/Meta/MatchUtil.c ./Lean/Meta/Offset.c ./Lean/Meta/PPGoal.c ./Lean/Meta/RecursorInfo.c ./Lean/Meta/Reduce.c ./Lean/Meta/ReduceEval.c ./Lean/Meta/SynthInstance.c ./Lean/Meta/Tactic.c ./Lean/Meta/Tactic/Apply.c ./Lean/Meta/Tactic/Assert.c ./Lean/Meta/Tactic/Assumption.c ./Lean/Meta/Tactic/Cases.c ./Lean/Meta/Tactic/Clear.c ./Lean/Meta/Tactic/Constructor.c ./Lean/Meta/Tactic/Delta.c ./Lean/Meta/Tactic/ElimInfo.c ./Lean/Meta/Tactic/FVarSubst.c ./Lean/Meta/Tactic/Generalize.c ./Lean/Meta/Tactic/Induction.c ./Lean/Meta/Tactic/Injection.c ./Lean/Meta/Tactic/Intro.c ./Lean/Meta/Tactic/Replace.c ./Lean/Meta/Tactic/Revert.c ./Lean/Meta/Tactic/Rewrite.c ./Lean/Meta/Tactic/Subst.c ./Lean/Meta/Tactic/Util.c ./Lean/Meta/Transform.c ./Lean/Meta/TransparencyMode.c ./Lean/Meta/UnificationHint.c ./Lean/Meta/WHNF.c ./Lean/MetavarContext.c ./Lean/Modifiers.c ./Lean/MonadEnv.c ./Lean/Parser.c ./Lean/Parser/Attr.c ./Lean/Parser/Basic.c ./Lean/Parser/Command.c ./Lean/Parser/Do.c ./Lean/Parser/Extension.c ./Lean/Parser/Extra.c ./Lean/Parser/Level.c ./Lean/Parser/Module.c ./Lean/Parser/StrInterpolation.c ./Lean/Parser/Syntax.c ./Lean/Parser/Tactic.c ./Lean/Parser/Term.c ./Lean/Parser/Transform.c ./Lean/ParserCompiler.c ./Lean/ParserCompiler/Attribute.c ./Lean/PrettyPrinter.c ./Lean/PrettyPrinter/Basic.c ./Lean/PrettyPrinter/Delaborator.c ./Lean/PrettyPrinter/Delaborator/Basic.c ./Lean/PrettyPrinter/Delaborator/Builtins.c ./Lean/PrettyPrinter/Formatter.c ./Lean/PrettyPrinter/Parenthesizer.c ./Lean/ProjFns.c ./Lean/ReducibilityAttrs.c ./Lean/ResolveName.c ./Lean/Runtime.c ./Lean/ScopedEnvExtension.c ./Lean/Server.c ./Lean/Server/ServerBin.c ./Lean/Server/Snapshots.c ./Lean/Structure.c ./Lean/Syntax.c ./Lean/ToExpr.c ./Lean/Util.c ./Lean/Util/CollectFVars.c ./Lean/Util/CollectLevelParams.c ./Lean/Util/CollectMVars.c ./Lean/Util/Constructions.c ./Lean/Util/FindExpr.c ./Lean/Util/FindMVar.c ./Lean/Util/FoldConsts.c ./Lean/Util/ForEachExpr.c ./Lean/Util/MonadCache.c ./Lean/Util/PPExt.c ./Lean/Util/Path.c ./Lean/Util/Profile.c ./Lean/Util/RecDepth.c ./Lean/Util/Recognizers.c ./Lean/Util/ReplaceExpr.c ./Lean/Util/ReplaceLevel.c ./Lean/Util/SCC.c ./Lean/Util/Sorry.c ./Lean/Util/Trace.c ./Std.c ./Std/Data.c ./Std/Data/AssocList.c ./Std/Data/BinomialHeap.c ./Std/Data/DList.c ./Std/Data/HashMap.c ./Std/Data/HashSet.c ./Std/Data/PersistentArray.c ./Std/Data/PersistentHashMap.c ./Std/Data/PersistentHashSet.c ./Std/Data/Queue.c ./Std/Data/RBMap.c ./Std/Data/RBTree.c ./Std/Data/Stack.c ./Std/ShareCommon.c ) +add_library (stage0 OBJECT ./Init.c ./Init/Classical.c ./Init/Coe.c ./Init/Control.c ./Init/Control/Basic.c ./Init/Control/EState.c ./Init/Control/Except.c ./Init/Control/Id.c ./Init/Control/Option.c ./Init/Control/Reader.c ./Init/Control/State.c ./Init/Control/StateRef.c ./Init/Core.c ./Init/Data.c ./Init/Data/Array.c ./Init/Data/Array/Basic.c ./Init/Data/Array/BinSearch.c ./Init/Data/Array/InsertionSort.c ./Init/Data/Array/QSort.c ./Init/Data/Array/Subarray.c ./Init/Data/Basic.c ./Init/Data/ByteArray.c ./Init/Data/ByteArray/Basic.c ./Init/Data/Char.c ./Init/Data/Char/Basic.c ./Init/Data/Fin.c ./Init/Data/Fin/Basic.c ./Init/Data/Float.c ./Init/Data/FloatArray.c ./Init/Data/FloatArray/Basic.c ./Init/Data/Hashable.c ./Init/Data/Int.c ./Init/Data/Int/Basic.c ./Init/Data/List.c ./Init/Data/List/Basic.c ./Init/Data/List/BasicAux.c ./Init/Data/List/Control.c ./Init/Data/Nat.c ./Init/Data/Nat/Basic.c ./Init/Data/Nat/Bitwise.c ./Init/Data/Nat/Control.c ./Init/Data/Nat/Div.c ./Init/Data/OfScientific.c ./Init/Data/Option.c ./Init/Data/Option/Basic.c ./Init/Data/Option/BasicAux.c ./Init/Data/Option/Instances.c ./Init/Data/Random.c ./Init/Data/Range.c ./Init/Data/Repr.c ./Init/Data/String.c ./Init/Data/String/Basic.c ./Init/Data/String/Extra.c ./Init/Data/ToString.c ./Init/Data/ToString/Basic.c ./Init/Data/ToString/Macro.c ./Init/Data/UInt.c ./Init/Fix.c ./Init/Meta.c ./Init/Notation.c ./Init/NotationExtra.c ./Init/Prelude.c ./Init/SizeOf.c ./Init/System.c ./Init/System/FilePath.c ./Init/System/IO.c ./Init/System/IOError.c ./Init/System/Platform.c ./Init/System/ST.c ./Init/Util.c ./Init/WF.c ./Lean.c ./Lean/Attributes.c ./Lean/AuxRecursor.c ./Lean/Class.c ./Lean/Compiler.c ./Lean/Compiler/BorrowedAnnotation.c ./Lean/Compiler/ClosedTermCache.c ./Lean/Compiler/ConstFolding.c ./Lean/Compiler/ExportAttr.c ./Lean/Compiler/ExternAttr.c ./Lean/Compiler/IR.c ./Lean/Compiler/IR/Basic.c ./Lean/Compiler/IR/Borrow.c ./Lean/Compiler/IR/Boxing.c ./Lean/Compiler/IR/Checker.c ./Lean/Compiler/IR/CompilerM.c ./Lean/Compiler/IR/CtorLayout.c ./Lean/Compiler/IR/ElimDeadBranches.c ./Lean/Compiler/IR/ElimDeadVars.c ./Lean/Compiler/IR/EmitC.c ./Lean/Compiler/IR/EmitUtil.c ./Lean/Compiler/IR/ExpandResetReuse.c ./Lean/Compiler/IR/Format.c ./Lean/Compiler/IR/FreeVars.c ./Lean/Compiler/IR/LiveVars.c ./Lean/Compiler/IR/NormIds.c ./Lean/Compiler/IR/PushProj.c ./Lean/Compiler/IR/RC.c ./Lean/Compiler/IR/ResetReuse.c ./Lean/Compiler/IR/SimpCase.c ./Lean/Compiler/IR/UnboxResult.c ./Lean/Compiler/ImplementedByAttr.c ./Lean/Compiler/InitAttr.c ./Lean/Compiler/InlineAttrs.c ./Lean/Compiler/NameMangling.c ./Lean/Compiler/NeverExtractAttr.c ./Lean/Compiler/Specialize.c ./Lean/Compiler/Util.c ./Lean/CoreM.c ./Lean/Data.c ./Lean/Data/Format.c ./Lean/Data/Json.c ./Lean/Data/Json/Basic.c ./Lean/Data/Json/FromToJson.c ./Lean/Data/Json/Parser.c ./Lean/Data/Json/Printer.c ./Lean/Data/Json/Stream.c ./Lean/Data/JsonRpc.c ./Lean/Data/KVMap.c ./Lean/Data/LBool.c ./Lean/Data/LOption.c ./Lean/Data/Lsp.c ./Lean/Data/Lsp/Basic.c ./Lean/Data/Lsp/Capabilities.c ./Lean/Data/Lsp/Communication.c ./Lean/Data/Lsp/Diagnostics.c ./Lean/Data/Lsp/Hover.c ./Lean/Data/Lsp/InitShutdown.c ./Lean/Data/Lsp/TextSync.c ./Lean/Data/Lsp/Utf16.c ./Lean/Data/Lsp/Workspace.c ./Lean/Data/Name.c ./Lean/Data/NameTrie.c ./Lean/Data/Occurrences.c ./Lean/Data/OpenDecl.c ./Lean/Data/Options.c ./Lean/Data/Position.c ./Lean/Data/PrefixTree.c ./Lean/Data/SMap.c ./Lean/Data/Trie.c ./Lean/Declaration.c ./Lean/Elab.c ./Lean/Elab/App.c ./Lean/Elab/Attributes.c ./Lean/Elab/Binders.c ./Lean/Elab/BuiltinNotation.c ./Lean/Elab/CollectFVars.c ./Lean/Elab/Command.c ./Lean/Elab/DeclModifiers.c ./Lean/Elab/DeclUtil.c ./Lean/Elab/Declaration.c ./Lean/Elab/DefView.c ./Lean/Elab/Deriving.c ./Lean/Elab/Deriving/BEq.c ./Lean/Elab/Deriving/Basic.c ./Lean/Elab/Deriving/DecEq.c ./Lean/Elab/Deriving/Inhabited.c ./Lean/Elab/Deriving/Util.c ./Lean/Elab/Do.c ./Lean/Elab/Exception.c ./Lean/Elab/Frontend.c ./Lean/Elab/Import.c ./Lean/Elab/Inductive.c ./Lean/Elab/LetRec.c ./Lean/Elab/Level.c ./Lean/Elab/Log.c ./Lean/Elab/Match.c ./Lean/Elab/MutualDef.c ./Lean/Elab/PreDefinition.c ./Lean/Elab/PreDefinition/Basic.c ./Lean/Elab/PreDefinition/Main.c ./Lean/Elab/PreDefinition/MkInhabitant.c ./Lean/Elab/PreDefinition/Structural.c ./Lean/Elab/PreDefinition/WF.c ./Lean/Elab/Print.c ./Lean/Elab/Quotation.c ./Lean/Elab/Quotation/Util.c ./Lean/Elab/StructInst.c ./Lean/Elab/Structure.c ./Lean/Elab/Syntax.c ./Lean/Elab/SyntheticMVars.c ./Lean/Elab/Tactic.c ./Lean/Elab/Tactic/Basic.c ./Lean/Elab/Tactic/Binders.c ./Lean/Elab/Tactic/ElabTerm.c ./Lean/Elab/Tactic/Generalize.c ./Lean/Elab/Tactic/Induction.c ./Lean/Elab/Tactic/Injection.c ./Lean/Elab/Tactic/Location.c ./Lean/Elab/Tactic/Match.c ./Lean/Elab/Tactic/Rewrite.c ./Lean/Elab/Term.c ./Lean/Elab/Util.c ./Lean/Environment.c ./Lean/Eval.c ./Lean/Exception.c ./Lean/Expr.c ./Lean/HeadIndex.c ./Lean/Hygiene.c ./Lean/InternalExceptionId.c ./Lean/KeyedDeclsAttribute.c ./Lean/Level.c ./Lean/LocalContext.c ./Lean/Message.c ./Lean/Meta.c ./Lean/Meta/AbstractMVars.c ./Lean/Meta/AbstractNestedProofs.c ./Lean/Meta/AppBuilder.c ./Lean/Meta/Basic.c ./Lean/Meta/Check.c ./Lean/Meta/Closure.c ./Lean/Meta/CollectMVars.c ./Lean/Meta/DiscrTree.c ./Lean/Meta/DiscrTreeTypes.c ./Lean/Meta/ExprDefEq.c ./Lean/Meta/ForEachExpr.c ./Lean/Meta/FunInfo.c ./Lean/Meta/GeneralizeTelescope.c ./Lean/Meta/GetConst.c ./Lean/Meta/Inductive.c ./Lean/Meta/InferType.c ./Lean/Meta/Instances.c ./Lean/Meta/KAbstract.c ./Lean/Meta/LevelDefEq.c ./Lean/Meta/Match.c ./Lean/Meta/Match/Basic.c ./Lean/Meta/Match/CaseArraySizes.c ./Lean/Meta/Match/CaseValues.c ./Lean/Meta/Match/MVarRenaming.c ./Lean/Meta/Match/Match.c ./Lean/Meta/Match/MatchPatternAttr.c ./Lean/Meta/Match/MatcherInfo.c ./Lean/Meta/MatchUtil.c ./Lean/Meta/Offset.c ./Lean/Meta/PPGoal.c ./Lean/Meta/RecursorInfo.c ./Lean/Meta/Reduce.c ./Lean/Meta/ReduceEval.c ./Lean/Meta/SynthInstance.c ./Lean/Meta/Tactic.c ./Lean/Meta/Tactic/Apply.c ./Lean/Meta/Tactic/Assert.c ./Lean/Meta/Tactic/Assumption.c ./Lean/Meta/Tactic/Cases.c ./Lean/Meta/Tactic/Clear.c ./Lean/Meta/Tactic/Constructor.c ./Lean/Meta/Tactic/Delta.c ./Lean/Meta/Tactic/ElimInfo.c ./Lean/Meta/Tactic/FVarSubst.c ./Lean/Meta/Tactic/Generalize.c ./Lean/Meta/Tactic/Induction.c ./Lean/Meta/Tactic/Injection.c ./Lean/Meta/Tactic/Intro.c ./Lean/Meta/Tactic/Replace.c ./Lean/Meta/Tactic/Revert.c ./Lean/Meta/Tactic/Rewrite.c ./Lean/Meta/Tactic/Subst.c ./Lean/Meta/Tactic/Util.c ./Lean/Meta/Transform.c ./Lean/Meta/TransparencyMode.c ./Lean/Meta/UnificationHint.c ./Lean/Meta/WHNF.c ./Lean/MetavarContext.c ./Lean/Modifiers.c ./Lean/MonadEnv.c ./Lean/Parser.c ./Lean/Parser/Attr.c ./Lean/Parser/Basic.c ./Lean/Parser/Command.c ./Lean/Parser/Do.c ./Lean/Parser/Extension.c ./Lean/Parser/Extra.c ./Lean/Parser/Level.c ./Lean/Parser/Module.c ./Lean/Parser/StrInterpolation.c ./Lean/Parser/Syntax.c ./Lean/Parser/Tactic.c ./Lean/Parser/Term.c ./Lean/ParserCompiler.c ./Lean/ParserCompiler/Attribute.c ./Lean/PrettyPrinter.c ./Lean/PrettyPrinter/Basic.c ./Lean/PrettyPrinter/Delaborator.c ./Lean/PrettyPrinter/Delaborator/Basic.c ./Lean/PrettyPrinter/Delaborator/Builtins.c ./Lean/PrettyPrinter/Formatter.c ./Lean/PrettyPrinter/Parenthesizer.c ./Lean/ProjFns.c ./Lean/ReducibilityAttrs.c ./Lean/ResolveName.c ./Lean/Runtime.c ./Lean/ScopedEnvExtension.c ./Lean/Server.c ./Lean/Server/Snapshots.c ./Lean/Structure.c ./Lean/Syntax.c ./Lean/ToExpr.c ./Lean/Util.c ./Lean/Util/CollectFVars.c ./Lean/Util/CollectLevelParams.c ./Lean/Util/CollectMVars.c ./Lean/Util/Constructions.c ./Lean/Util/FindExpr.c ./Lean/Util/FindMVar.c ./Lean/Util/FoldConsts.c ./Lean/Util/ForEachExpr.c ./Lean/Util/MonadCache.c ./Lean/Util/PPExt.c ./Lean/Util/Path.c ./Lean/Util/Profile.c ./Lean/Util/RecDepth.c ./Lean/Util/Recognizers.c ./Lean/Util/ReplaceExpr.c ./Lean/Util/ReplaceLevel.c ./Lean/Util/SCC.c ./Lean/Util/Sorry.c ./Lean/Util/Trace.c ./Std.c ./Std/Data.c ./Std/Data/AssocList.c ./Std/Data/BinomialHeap.c ./Std/Data/DList.c ./Std/Data/HashMap.c ./Std/Data/HashSet.c ./Std/Data/PersistentArray.c ./Std/Data/PersistentHashMap.c ./Std/Data/PersistentHashSet.c ./Std/Data/Queue.c ./Std/Data/RBMap.c ./Std/Data/RBTree.c ./Std/Data/Stack.c ./Std/ShareCommon.c ) diff --git a/stage0/stdlib/Init/Data/Option/Basic.c b/stage0/stdlib/Init/Data/Option/Basic.c index 48f4624758..a90dbae66e 100644 --- a/stage0/stdlib/Init/Data/Option/Basic.c +++ b/stage0/stdlib/Init/Data/Option/Basic.c @@ -18,7 +18,6 @@ lean_object* l_Option_instMonadOption___closed__8; lean_object* l_Option_instAlternativeOption; lean_object* l_Option_instMonadOption___closed__7; lean_object* l_Option_getD___rarg___boxed(lean_object*, lean_object*); -lean_object* l_instDecidableEqOption_match__1___rarg(uint8_t, lean_object*, lean_object*); lean_object* l_Option_all___rarg(lean_object*, lean_object*); lean_object* l_Option_instMonadOption___closed__3; lean_object* l_Option_bind(lean_object*, lean_object*); @@ -28,10 +27,10 @@ lean_object* l_Option_getD(lean_object*); lean_object* l_Option_toBool_match__1___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Option_orElse(lean_object*); lean_object* l_Option_instAlternativeOption___closed__1; -lean_object* l_instDecidableEqOption_match__2(lean_object*, lean_object*); lean_object* l_Option_isSome___rarg___boxed(lean_object*); lean_object* l_Option_orElse___rarg___boxed(lean_object*, lean_object*); lean_object* l_Option_instMonadOption; +lean_object* l___private_Init_Data_Option_Basic_0__decEqOption____x40_Init_Data_Option_Basic___hyg_530____at_instDecidableEqOption___spec__1(lean_object*); lean_object* l_Option_isNone_match__1___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Option_instMonadOption___closed__9; lean_object* l_Option_filter___rarg(lean_object*, lean_object*); @@ -46,8 +45,11 @@ lean_object* l_Option_toBool(lean_object*); lean_object* l_Option_all_match__1(lean_object*, lean_object*); lean_object* l_Option_filter_match__1___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Option_lt_match__1(lean_object*, lean_object*); -lean_object* l_instBEqOption___rarg(lean_object*, lean_object*, lean_object*); +lean_object* l_instBEqOption___rarg(lean_object*); +lean_object* l___private_Init_Data_Option_Basic_0__decEqOption____x40_Init_Data_Option_Basic___hyg_530____at_instDecidableEqOption___spec__1___rarg(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649__match__1(lean_object*, lean_object*); lean_object* l_Option_all(lean_object*); +lean_object* l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649_(lean_object*); lean_object* l_Option_instMonadOption___lambda__3(lean_object*, lean_object*); uint8_t l_Option_isSome___rarg(lean_object*); lean_object* l_Option_isSome(lean_object*); @@ -57,14 +59,14 @@ lean_object* l_Option_orElse___rarg(lean_object*, lean_object*); lean_object* l_Option_isNone___rarg___boxed(lean_object*); lean_object* l_instDecidableEqOption(lean_object*); lean_object* l_Option_toMonad___rarg(lean_object*, lean_object*); -lean_object* l_instBEqOption_match__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Option_toMonad_match__1(lean_object*, lean_object*); +lean_object* l___private_Init_Data_Option_Basic_0__decEqOption____x40_Init_Data_Option_Basic___hyg_530__match__1(lean_object*, lean_object*); lean_object* l_Option_instDecidableRelLt_match__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Option_toMonad(lean_object*, lean_object*, lean_object*); -lean_object* l_instDecidableEqOption_match__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_instBEqOption_match__1(lean_object*, lean_object*); lean_object* l_Option_filter_match__1(lean_object*, lean_object*); +lean_object* l___private_Init_Data_Option_Basic_0__decEqOption____x40_Init_Data_Option_Basic___hyg_530____rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Option_toMonad___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Option_instMonadOption___lambda__5___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Option_lt_match__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Option_any_match__1___rarg(lean_object*, lean_object*, lean_object*); @@ -76,21 +78,21 @@ lean_object* l_instBEqOption(lean_object*); lean_object* l_Option_any(lean_object*); lean_object* l_Option_any_match__1(lean_object*, lean_object*); lean_object* l_Option_instMonadOption___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_instDecidableEqOption_match__2___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Option_instMonadOption___closed__10; lean_object* l_Option_toMonad_match__1___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Option_instMonadOption___closed__5; lean_object* l_Option_isNone(lean_object*); lean_object* l_Option_any___rarg(lean_object*, lean_object*); lean_object* l_instDecidableEqOption___rarg(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649__match__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Option_instMonadOption___lambda__4(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Data_Option_Basic_0__decEqOption____x40_Init_Data_Option_Basic___hyg_530_(lean_object*); lean_object* l_Option_getD_match__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Option_map___rarg(lean_object*, lean_object*); +lean_object* l___private_Init_Data_Option_Basic_0__decEqOption____x40_Init_Data_Option_Basic___hyg_530__match__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Option_map(lean_object*, lean_object*); -lean_object* l_instDecidableEqOption_match__1___rarg___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Option_orElse_match__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Option_isNone___rarg(lean_object*); -lean_object* l_instDecidableEqOption_match__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Option_getD_match__1(lean_object*, lean_object*); lean_object* l_Option_instAlternativeOption___closed__3; uint8_t l_Option_toBool___rarg(lean_object*); @@ -1450,54 +1452,7 @@ x_3 = lean_alloc_closure((void*)(l_Option_instDecidableRelLt___rarg), 3, 0); return x_3; } } -lean_object* l_instDecidableEqOption_match__1___rarg(uint8_t x_1, lean_object* x_2, lean_object* x_3) { -_start: -{ -if (x_1 == 0) -{ -lean_object* x_4; -lean_dec(x_2); -x_4 = lean_apply_1(x_3, lean_box(0)); -return x_4; -} -else -{ -lean_object* x_5; -lean_dec(x_3); -x_5 = lean_apply_1(x_2, lean_box(0)); -return x_5; -} -} -} -lean_object* l_instDecidableEqOption_match__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { -_start: -{ -lean_object* x_5; -x_5 = lean_alloc_closure((void*)(l_instDecidableEqOption_match__1___rarg___boxed), 3, 0); -return x_5; -} -} -lean_object* l_instDecidableEqOption_match__1___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { -_start: -{ -uint8_t x_4; lean_object* x_5; -x_4 = lean_unbox(x_1); -lean_dec(x_1); -x_5 = l_instDecidableEqOption_match__1___rarg(x_4, x_2, x_3); -return x_5; -} -} -lean_object* l_instDecidableEqOption_match__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_instDecidableEqOption_match__1(x_1, x_2, x_3, x_4); -lean_dec(x_3); -lean_dec(x_2); -return x_5; -} -} -lean_object* l_instDecidableEqOption_match__2___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Init_Data_Option_Basic_0__decEqOption____x40_Init_Data_Option_Basic___hyg_530__match__1___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { if (lean_obj_tag(x_1) == 0) @@ -1553,15 +1508,15 @@ return x_15; } } } -lean_object* l_instDecidableEqOption_match__2(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Init_Data_Option_Basic_0__decEqOption____x40_Init_Data_Option_Basic___hyg_530__match__1(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = lean_alloc_closure((void*)(l_instDecidableEqOption_match__2___rarg), 6, 0); +x_3 = lean_alloc_closure((void*)(l___private_Init_Data_Option_Basic_0__decEqOption____x40_Init_Data_Option_Basic___hyg_530__match__1___rarg), 6, 0); return x_3; } } -lean_object* l_instDecidableEqOption___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Init_Data_Option_Basic_0__decEqOption____x40_Init_Data_Option_Basic___hyg_530____rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { if (lean_obj_tag(x_2) == 0) @@ -1609,6 +1564,78 @@ return x_12; } } } +lean_object* l___private_Init_Data_Option_Basic_0__decEqOption____x40_Init_Data_Option_Basic___hyg_530_(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l___private_Init_Data_Option_Basic_0__decEqOption____x40_Init_Data_Option_Basic___hyg_530____rarg), 3, 0); +return x_2; +} +} +lean_object* l___private_Init_Data_Option_Basic_0__decEqOption____x40_Init_Data_Option_Basic___hyg_530____at_instDecidableEqOption___spec__1___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +if (lean_obj_tag(x_2) == 0) +{ +lean_dec(x_1); +if (lean_obj_tag(x_3) == 0) +{ +uint8_t x_4; lean_object* x_5; +x_4 = 1; +x_5 = lean_box(x_4); +return x_5; +} +else +{ +uint8_t x_6; lean_object* x_7; +lean_dec(x_3); +x_6 = 0; +x_7 = lean_box(x_6); +return x_7; +} +} +else +{ +if (lean_obj_tag(x_3) == 0) +{ +uint8_t x_8; lean_object* x_9; +lean_dec(x_2); +lean_dec(x_1); +x_8 = 0; +x_9 = lean_box(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); +lean_dec(x_2); +x_11 = lean_ctor_get(x_3, 0); +lean_inc(x_11); +lean_dec(x_3); +x_12 = lean_apply_2(x_1, x_10, x_11); +return x_12; +} +} +} +} +lean_object* l___private_Init_Data_Option_Basic_0__decEqOption____x40_Init_Data_Option_Basic___hyg_530____at_instDecidableEqOption___spec__1(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l___private_Init_Data_Option_Basic_0__decEqOption____x40_Init_Data_Option_Basic___hyg_530____at_instDecidableEqOption___spec__1___rarg), 3, 0); +return x_2; +} +} +lean_object* l_instDecidableEqOption___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; +x_4 = l___private_Init_Data_Option_Basic_0__decEqOption____x40_Init_Data_Option_Basic___hyg_530____at_instDecidableEqOption___spec__1___rarg(x_1, x_2, x_3); +return x_4; +} +} lean_object* l_instDecidableEqOption(lean_object* x_1) { _start: { @@ -1617,71 +1644,63 @@ x_2 = lean_alloc_closure((void*)(l_instDecidableEqOption___rarg), 3, 0); return x_2; } } -lean_object* l_instBEqOption_match__1___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649__match__1___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { if (lean_obj_tag(x_1) == 0) { -lean_dec(x_6); -lean_dec(x_5); +lean_dec(x_4); if (lean_obj_tag(x_2) == 0) { -lean_object* x_7; lean_object* x_8; -lean_dec(x_4); -x_7 = lean_box(0); -x_8 = lean_apply_1(x_3, x_7); +lean_object* x_6; lean_object* x_7; +lean_dec(x_5); +x_6 = lean_box(0); +x_7 = lean_apply_1(x_3, x_6); +return x_7; +} +else +{ +lean_object* x_8; +lean_dec(x_3); +x_8 = lean_apply_2(x_5, x_1, x_2); return x_8; } -else -{ -lean_object* x_9; lean_object* x_10; -lean_dec(x_3); -x_9 = lean_ctor_get(x_2, 0); -lean_inc(x_9); -lean_dec(x_2); -x_10 = lean_apply_1(x_4, x_9); -return x_10; -} } else { -lean_dec(x_4); lean_dec(x_3); if (lean_obj_tag(x_2) == 0) { -lean_object* x_11; lean_object* x_12; -lean_dec(x_6); -x_11 = lean_ctor_get(x_1, 0); -lean_inc(x_11); -lean_dec(x_1); -x_12 = lean_apply_1(x_5, x_11); -return x_12; +lean_object* x_9; +lean_dec(x_4); +x_9 = lean_apply_2(x_5, x_1, x_2); +return x_9; } else { -lean_object* x_13; lean_object* x_14; lean_object* x_15; +lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_dec(x_5); -x_13 = lean_ctor_get(x_1, 0); -lean_inc(x_13); +x_10 = lean_ctor_get(x_1, 0); +lean_inc(x_10); lean_dec(x_1); -x_14 = lean_ctor_get(x_2, 0); -lean_inc(x_14); +x_11 = lean_ctor_get(x_2, 0); +lean_inc(x_11); lean_dec(x_2); -x_15 = lean_apply_2(x_6, x_13, x_14); -return x_15; +x_12 = lean_apply_2(x_4, x_10, x_11); +return x_12; } } } } -lean_object* l_instBEqOption_match__1(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649__match__1(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = lean_alloc_closure((void*)(l_instBEqOption_match__1___rarg), 6, 0); +x_3 = lean_alloc_closure((void*)(l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649__match__1___rarg), 5, 0); return x_3; } } -lean_object* l_instBEqOption___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { if (lean_obj_tag(x_2) == 0) @@ -1729,11 +1748,28 @@ return x_12; } } } +lean_object* l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649_(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____rarg), 3, 0); +return x_2; +} +} +lean_object* l_instBEqOption___rarg(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____rarg), 3, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} lean_object* l_instBEqOption(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_instBEqOption___rarg), 3, 0); +x_2 = lean_alloc_closure((void*)(l_instBEqOption___rarg), 1, 0); return x_2; } } diff --git a/stage0/stdlib/Lean/Compiler/ExternAttr.c b/stage0/stdlib/Lean/Compiler/ExternAttr.c index e517aee950..42f7f86daa 100644 --- a/stage0/stdlib/Lean/Compiler/ExternAttr.c +++ b/stage0/stdlib/Lean/Compiler/ExternAttr.c @@ -221,6 +221,7 @@ lean_object* l_Lean_initFn____x40_Lean_Compiler_ExternAttr___hyg_243____lambda__ lean_object* l_Lean_ParametricAttribute_getParam___at_Lean_getExternAttrData___spec__1(lean_object*, lean_object*, lean_object*); lean_object* l_Array_qpartition_loop___at_Lean_initFn____x40_Lean_Compiler_ExternAttr___hyg_243____spec__7___closed__1; lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Compiler_ExternAttr_0__Lean_syntaxToExternAttrData___spec__3___closed__1; +uint8_t l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Meta_InfoCacheKey_instBEqInfoCacheKey___spec__1(lean_object*, lean_object*); uint8_t lean_string_dec_eq(lean_object*, lean_object*); uint8_t lean_nat_dec_lt(lean_object*, lean_object*); lean_object* l_Lean_getExternConstArity(lean_object*, lean_object*, lean_object*, lean_object*); @@ -657,50 +658,50 @@ x_12 = lean_unsigned_to_nat(0u); x_13 = lean_nat_dec_eq(x_11, x_12); if (x_7 == 0) { -lean_object* x_22; lean_object* x_23; lean_object* x_24; -x_22 = l_Lean_Syntax_getArg(x_6, x_12); +lean_object* x_24; lean_object* x_25; lean_object* x_26; +x_24 = l_Lean_Syntax_getArg(x_6, x_12); lean_dec(x_6); -x_23 = l_Lean_numLitKind; -x_24 = l___private_Init_Meta_0__Lean_Syntax_isNatLitAux(x_23, x_22); -lean_dec(x_22); -if (lean_obj_tag(x_24) == 0) -{ -lean_object* x_25; -x_25 = l_Lean_Syntax_decodeNatLitVal_x3f___closed__1; -x_14 = x_25; -goto block_21; -} -else -{ -uint8_t x_26; -x_26 = !lean_is_exclusive(x_24); -if (x_26 == 0) -{ -x_14 = x_24; -goto block_21; -} -else -{ -lean_object* x_27; lean_object* x_28; -x_27 = lean_ctor_get(x_24, 0); -lean_inc(x_27); +x_25 = l_Lean_numLitKind; +x_26 = l___private_Init_Meta_0__Lean_Syntax_isNatLitAux(x_25, x_24); lean_dec(x_24); -x_28 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_28, 0, x_27); -x_14 = x_28; -goto block_21; +if (lean_obj_tag(x_26) == 0) +{ +lean_object* x_27; +x_27 = l_Lean_Syntax_decodeNatLitVal_x3f___closed__1; +x_14 = x_27; +goto block_23; +} +else +{ +uint8_t x_28; +x_28 = !lean_is_exclusive(x_26); +if (x_28 == 0) +{ +x_14 = x_26; +goto block_23; +} +else +{ +lean_object* x_29; lean_object* x_30; +x_29 = lean_ctor_get(x_26, 0); +lean_inc(x_29); +lean_dec(x_26); +x_30 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_30, 0, x_29); +x_14 = x_30; +goto block_23; } } } else { -lean_object* x_29; +lean_object* x_31; lean_dec(x_6); -x_29 = lean_box(0); -x_14 = x_29; -goto block_21; +x_31 = lean_box(0); +x_14 = x_31; +goto block_23; } -block_21: +block_23: { if (x_13 == 0) { @@ -713,19 +714,10 @@ return x_16; } else { -if (lean_obj_tag(x_14) == 0) -{ -lean_object* x_17; lean_object* x_18; -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_2); -x_17 = l___private_Lean_Compiler_ExternAttr_0__Lean_syntaxToExternAttrData___closed__3; -x_18 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_18, 0, x_17); -lean_ctor_set(x_18, 1, x_4); -return x_18; -} -else +lean_object* x_17; uint8_t x_18; +x_17 = lean_box(0); +x_18 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Meta_InfoCacheKey_instBEqInfoCacheKey___spec__1(x_14, x_17); +if (x_18 == 0) { lean_object* x_19; lean_object* x_20; x_19 = lean_box(0); @@ -734,6 +726,19 @@ lean_dec(x_10); lean_dec(x_11); return x_20; } +else +{ +lean_object* x_21; lean_object* x_22; +lean_dec(x_14); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_2); +x_21 = l___private_Lean_Compiler_ExternAttr_0__Lean_syntaxToExternAttrData___closed__3; +x_22 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_22, 0, x_21); +lean_ctor_set(x_22, 1, x_4); +return x_22; +} } } } diff --git a/stage0/stdlib/Lean/Compiler/IR/Basic.c b/stage0/stdlib/Lean/Compiler/IR/Basic.c index acda0d48f0..d657531d44 100644 --- a/stage0/stdlib/Lean/Compiler/IR/Basic.c +++ b/stage0/stdlib/Lean/Compiler/IR/Basic.c @@ -126,7 +126,6 @@ lean_object* l_Lean_IR_LocalContext_isLocalVar___boxed(lean_object*, lean_object lean_object* l_Lean_IR_IRType_isStruct_match__1___rarg(lean_object*, lean_object*, lean_object*); lean_object* lean_nat_sub(lean_object*, lean_object*); lean_object* l_Lean_IR_instAlphaEqvArrayArg___closed__1; -uint8_t l_Array_isEqvAux___at_Lean_IR_IRType_beq___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_IR_instToStringVarId(lean_object*); lean_object* l_Lean_IR_Arg_alphaEqv_match__1(lean_object*); uint8_t l_Lean_IR_CtorInfo_isRef(lean_object*); @@ -135,7 +134,6 @@ lean_object* l_Lean_IR_VarId_alphaEqv___boxed(lean_object*, lean_object*, lean_o lean_object* l_Lean_IR_addParamRename(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_IR_IRType_isUnion_match__1(lean_object*); size_t l_Lean_IR_instHashableVarId(lean_object*); -lean_object* l_Array_isEqvAux___at_Lean_IR_IRType_beq___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_IR_IRType_instBEqIRType___closed__1; lean_object* l_Lean_IR_FnBody_isTerminal___boxed(lean_object*); lean_object* l_Lean_IR_IRType_isIrrelevant_match__1___rarg(lean_object*, lean_object*, lean_object*); @@ -148,6 +146,7 @@ lean_object* l_Lean_IR_FnBody_alphaEqv___boxed(lean_object*, lean_object*, lean_ lean_object* l_Lean_IR_AltCore_modifyBody(lean_object*, lean_object*); lean_object* lean_array_get(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_IR_IRType_isObj_match__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_IR_IRType_beq___spec__1(lean_object*, lean_object*); lean_object* l_Lean_IR_LocalContext_isParam_match__1___rarg(lean_object*, lean_object*, lean_object*); lean_object* lean_array_fset(lean_object*, lean_object*, lean_object*); lean_object* l_Std_RBNode_appendTrees___rarg(lean_object*, lean_object*); @@ -177,6 +176,7 @@ uint8_t l_Array_isEqvAux___at_Lean_IR_IRType_beq___spec__2(lean_object*, lean_ob lean_object* l_Lean_IR_instInhabitedFnBody; lean_object* l_Lean_IR_AltCore_mmodifyBody_match__1(lean_object*); extern lean_object* l_Array_swapAt_x21___rarg___closed__2; +lean_object* l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_IR_IRType_beq___spec__1___boxed(lean_object*, lean_object*); lean_object* l_Array_mapMUnsafe_map___at_Lean_IR_mmodifyJPs___spec__1(lean_object*); lean_object* l_Lean_IR_push(lean_object*, lean_object*); lean_object* l_Lean_IR_Expr_alphaEqv___boxed(lean_object*, lean_object*, lean_object*); @@ -867,44 +867,39 @@ x_2 = lean_alloc_closure((void*)(l_Lean_IR_IRType_beq_match__1___rarg), 14, 0); return x_2; } } -uint8_t l_Array_isEqvAux___at_Lean_IR_IRType_beq___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) { +uint8_t l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_IR_IRType_beq___spec__1(lean_object* x_1, lean_object* x_2) { _start: { -lean_object* x_7; uint8_t x_8; -x_7 = lean_array_get_size(x_4); -x_8 = lean_nat_dec_lt(x_6, x_7); -lean_dec(x_7); -if (x_8 == 0) +if (lean_obj_tag(x_1) == 0) { -uint8_t x_9; -lean_dec(x_6); -x_9 = 1; -return x_9; +if (lean_obj_tag(x_2) == 0) +{ +uint8_t x_3; +x_3 = 1; +return x_3; } else { -lean_object* x_10; lean_object* x_11; uint8_t x_12; -x_10 = lean_array_fget(x_4, x_6); -x_11 = lean_array_fget(x_5, x_6); -x_12 = l_Lean_IR_IRType_beq(x_10, x_11); -lean_dec(x_11); -lean_dec(x_10); -if (x_12 == 0) -{ -uint8_t x_13; -lean_dec(x_6); -x_13 = 0; -return x_13; +uint8_t x_4; +x_4 = 0; +return x_4; +} } else { -lean_object* x_14; lean_object* x_15; -x_14 = lean_unsigned_to_nat(1u); -x_15 = lean_nat_add(x_6, x_14); -lean_dec(x_6); -x_3 = lean_box(0); -x_6 = x_15; -goto _start; +if (lean_obj_tag(x_2) == 0) +{ +uint8_t x_5; +x_5 = 0; +return x_5; +} +else +{ +lean_object* x_6; lean_object* x_7; uint8_t x_8; +x_6 = lean_ctor_get(x_1, 0); +x_7 = lean_ctor_get(x_2, 0); +x_8 = lean_name_eq(x_6, x_7); +return x_8; } } } @@ -1136,61 +1131,58 @@ case 9: { if (lean_obj_tag(x_2) == 9) { -lean_object* x_21; +lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; uint8_t x_25; x_21 = lean_ctor_get(x_1, 0); -if (lean_obj_tag(x_21) == 0) -{ -lean_object* x_22; -x_22 = lean_ctor_get(x_2, 0); -if (lean_obj_tag(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_1, 1); +x_22 = lean_ctor_get(x_1, 1); +x_23 = lean_ctor_get(x_2, 0); x_24 = lean_ctor_get(x_2, 1); -x_25 = lean_array_get_size(x_23); -x_26 = lean_array_get_size(x_24); -x_27 = lean_nat_dec_eq(x_25, x_26); -lean_dec(x_26); -lean_dec(x_25); -if (x_27 == 0) +x_25 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_IR_IRType_beq___spec__1(x_21, x_23); +if (x_25 == 0) { -uint8_t x_28; -x_28 = 0; -return x_28; +uint8_t x_26; +x_26 = 0; +return x_26; } else { -lean_object* x_29; uint8_t x_30; -x_29 = lean_unsigned_to_nat(0u); -x_30 = l_Array_isEqvAux___at_Lean_IR_IRType_beq___spec__1(x_23, x_24, lean_box(0), x_23, x_24, x_29); +lean_object* x_27; lean_object* x_28; uint8_t x_29; +x_27 = lean_array_get_size(x_22); +x_28 = lean_array_get_size(x_24); +x_29 = lean_nat_dec_eq(x_27, x_28); +lean_dec(x_28); +lean_dec(x_27); +if (x_29 == 0) +{ +uint8_t x_30; +x_30 = 0; return x_30; } -} else { -uint8_t x_31; -x_31 = 0; -return x_31; +lean_object* x_31; uint8_t x_32; +x_31 = lean_unsigned_to_nat(0u); +x_32 = l_Array_isEqvAux___at_Lean_IR_IRType_beq___spec__2(x_22, x_24, lean_box(0), x_22, x_24, x_31); +return x_32; +} } } else { -lean_object* x_32; -x_32 = lean_ctor_get(x_2, 0); -if (lean_obj_tag(x_32) == 0) -{ uint8_t x_33; x_33 = 0; return x_33; } -else +} +default: +{ +if (lean_obj_tag(x_2) == 10) { lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; uint8_t x_38; -x_34 = lean_ctor_get(x_1, 1); -x_35 = lean_ctor_get(x_2, 1); -x_36 = lean_ctor_get(x_21, 0); -x_37 = lean_ctor_get(x_32, 0); -x_38 = lean_name_eq(x_36, x_37); +x_34 = lean_ctor_get(x_1, 0); +x_35 = lean_ctor_get(x_1, 1); +x_36 = lean_ctor_get(x_2, 0); +x_37 = lean_ctor_get(x_2, 1); +x_38 = lean_name_eq(x_34, x_36); if (x_38 == 0) { uint8_t x_39; @@ -1200,8 +1192,8 @@ return x_39; else { lean_object* x_40; lean_object* x_41; uint8_t x_42; -x_40 = lean_array_get_size(x_34); -x_41 = lean_array_get_size(x_35); +x_40 = lean_array_get_size(x_35); +x_41 = lean_array_get_size(x_37); x_42 = lean_nat_dec_eq(x_40, x_41); lean_dec(x_41); lean_dec(x_40); @@ -1215,13 +1207,11 @@ else { lean_object* x_44; uint8_t x_45; x_44 = lean_unsigned_to_nat(0u); -x_45 = l_Array_isEqvAux___at_Lean_IR_IRType_beq___spec__2(x_34, x_35, lean_box(0), x_34, x_35, x_44); +x_45 = l_Array_isEqvAux___at_Lean_IR_IRType_beq___spec__3(x_35, x_37, lean_box(0), x_35, x_37, x_44); return x_45; } } } -} -} else { uint8_t x_46; @@ -1229,66 +1219,18 @@ x_46 = 0; return x_46; } } -default: -{ -if (lean_obj_tag(x_2) == 10) -{ -lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; uint8_t x_51; -x_47 = lean_ctor_get(x_1, 0); -x_48 = lean_ctor_get(x_1, 1); -x_49 = lean_ctor_get(x_2, 0); -x_50 = lean_ctor_get(x_2, 1); -x_51 = lean_name_eq(x_47, x_49); -if (x_51 == 0) -{ -uint8_t x_52; -x_52 = 0; -return x_52; -} -else -{ -lean_object* x_53; lean_object* x_54; uint8_t x_55; -x_53 = lean_array_get_size(x_48); -x_54 = lean_array_get_size(x_50); -x_55 = lean_nat_dec_eq(x_53, x_54); -lean_dec(x_54); -lean_dec(x_53); -if (x_55 == 0) -{ -uint8_t x_56; -x_56 = 0; -return x_56; -} -else -{ -lean_object* x_57; uint8_t x_58; -x_57 = lean_unsigned_to_nat(0u); -x_58 = l_Array_isEqvAux___at_Lean_IR_IRType_beq___spec__3(x_48, x_50, lean_box(0), x_48, x_50, x_57); -return x_58; } } } -else -{ -uint8_t x_59; -x_59 = 0; -return x_59; -} -} -} -} -} -lean_object* l_Array_isEqvAux___at_Lean_IR_IRType_beq___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* l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_IR_IRType_beq___spec__1___boxed(lean_object* x_1, lean_object* x_2) { _start: { -uint8_t x_7; lean_object* x_8; -x_7 = l_Array_isEqvAux___at_Lean_IR_IRType_beq___spec__1(x_1, x_2, x_3, x_4, x_5, x_6); -lean_dec(x_5); -lean_dec(x_4); +uint8_t x_3; lean_object* x_4; +x_3 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_IR_IRType_beq___spec__1(x_1, x_2); lean_dec(x_2); lean_dec(x_1); -x_8 = lean_box(x_7); -return x_8; +x_4 = lean_box(x_3); +return x_4; } } lean_object* l_Array_isEqvAux___at_Lean_IR_IRType_beq___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) { diff --git a/stage0/stdlib/Lean/Data/Json/Parser.c b/stage0/stdlib/Lean/Data/Json/Parser.c index 53c92599af..e35323b2af 100644 --- a/stage0/stdlib/Lean/Data/Json/Parser.c +++ b/stage0/stdlib/Lean/Data/Json/Parser.c @@ -71,6 +71,7 @@ lean_object* l_Lean_Json_Parser_natNumDigits(lean_object*); lean_object* lean_int_mul(lean_object*, lean_object*); lean_object* lean_nat_sub(lean_object*, lean_object*); lean_object* l_Lean_Json_Parser_num(lean_object*); +lean_object* l___private_Init_Data_Option_Basic_0__decEqOption____x40_Init_Data_Option_Basic___hyg_530____at_instDecidableEqOption___spec__1___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Json_Parser_natNonZero_match__1(lean_object*); lean_object* l_Lean_Quickparse_instMonadQuickparse___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Json_Parser_num___lambda__3___closed__3___boxed__const__1; @@ -125,7 +126,6 @@ lean_object* l_Lean_Json_Parser_num___lambda__3___closed__1; lean_object* l_Lean_Json_Parser_num___closed__1; lean_object* l_Lean_Json_Parser_objectCore___closed__1; lean_object* l_Lean_Json_Parser_escapedChar_match__1(lean_object*); -lean_object* l_instDecidableEqOption___rarg(lean_object*, lean_object*, lean_object*); extern lean_object* l_Int_instInhabitedInt___closed__1; lean_object* l_Lean_Quickparse_instMonadQuickparse___closed__9; lean_object* l_Lean_Quickparse_peek_x3f(lean_object*); @@ -3223,14 +3223,14 @@ lean_object* x_41; lean_object* x_42; lean_object* x_43; uint8_t x_44; x_41 = l_Lean_Json_Parser_num___lambda__3___closed__2; x_42 = l_Lean_Json_Parser_num___lambda__3___closed__1; lean_inc(x_40); -x_43 = l_instDecidableEqOption___rarg(x_41, x_40, x_42); +x_43 = l___private_Init_Data_Option_Basic_0__decEqOption____x40_Init_Data_Option_Basic___hyg_530____at_instDecidableEqOption___spec__1___rarg(x_41, x_40, x_42); x_44 = lean_unbox(x_43); lean_dec(x_43); if (x_44 == 0) { lean_object* x_45; lean_object* x_46; uint8_t x_47; x_45 = l_Lean_Json_Parser_num___lambda__3___closed__3; -x_46 = l_instDecidableEqOption___rarg(x_41, x_40, x_45); +x_46 = l___private_Init_Data_Option_Basic_0__decEqOption____x40_Init_Data_Option_Basic___hyg_530____at_instDecidableEqOption___spec__1___rarg(x_41, x_40, x_45); x_47 = lean_unbox(x_46); lean_dec(x_46); if (x_47 == 0) @@ -3389,7 +3389,7 @@ lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; uint x_10 = l_Lean_Json_Parser_num___lambda__5___closed__1; x_11 = l_Lean_Json_Parser_num___lambda__3___closed__2; x_12 = l_Lean_Json_Parser_num___lambda__5___closed__2; -x_13 = l_instDecidableEqOption___rarg(x_11, x_9, x_12); +x_13 = l___private_Init_Data_Option_Basic_0__decEqOption____x40_Init_Data_Option_Basic___hyg_530____at_instDecidableEqOption___spec__1___rarg(x_11, x_9, x_12); x_14 = lean_unbox(x_13); lean_dec(x_13); if (x_14 == 0) diff --git a/stage0/stdlib/Lean/Data/Position.c b/stage0/stdlib/Lean/Data/Position.c index 09a3306f57..6352a56e2f 100644 --- a/stage0/stdlib/Lean/Data/Position.c +++ b/stage0/stdlib/Lean/Data/Position.c @@ -15,8 +15,8 @@ extern "C" { #endif lean_object* l_Lean_FileMap_toPosition_match__1(lean_object*); lean_object* lean_nat_div(lean_object*, lean_object*); +uint8_t l___private_Lean_Data_Position_0__Lean_decEqPosition____x40_Lean_Data_Position___hyg_16_(lean_object*, lean_object*); extern lean_object* l_instReprSigma___rarg___closed__2; -lean_object* l_Lean_Position_instDecidableEqPosition_match__1(lean_object*); lean_object* l_Lean_FileMap_ofString_loop(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_FileMap_ofString___closed__2; lean_object* l_Lean_instInhabitedPosition; @@ -25,20 +25,22 @@ extern lean_object* l_Lean_instInhabitedParserDescr___closed__1; extern lean_object* l_instReprSigma___rarg___closed__1; lean_object* l_Nat_decLt___boxed(lean_object*, lean_object*); extern lean_object* l_instInhabitedNat; -lean_object* l_Lean_Position_instDecidableEqPosition_match__1___rarg(lean_object*, lean_object*); lean_object* lean_array_push(lean_object*, lean_object*); lean_object* lean_array_get_size(lean_object*); lean_object* lean_string_append(lean_object*, lean_object*); lean_object* l_Lean_Position_instToFormatPosition___closed__2; lean_object* l_prodHasDecidableLt___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_formatKVMap___closed__1; +lean_object* l___private_Lean_Data_Position_0__Lean_decEqPosition____x40_Lean_Data_Position___hyg_16__match__1(lean_object*); lean_object* l_Lean_FileMap_ofString___closed__1; lean_object* l_Lean_Position_instToFormatPosition___closed__1; lean_object* l_Lean_Position_lt(lean_object*, lean_object*); lean_object* lean_nat_add(lean_object*, lean_object*); lean_object* lean_string_utf8_next(lean_object*, lean_object*); +lean_object* l___private_Lean_Data_Position_0__Lean_decEqPosition____x40_Lean_Data_Position___hyg_16____boxed(lean_object*, lean_object*); lean_object* l_Lean_FileMap_toPosition_toColumn(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_nat_dec_eq(lean_object*, lean_object*); +lean_object* l___private_Lean_Data_Position_0__Lean_decEqPosition____x40_Lean_Data_Position___hyg_16__match__1___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Position_instToStringPosition_match__1(lean_object*); lean_object* lean_nat_sub(lean_object*, lean_object*); lean_object* l_Array_back___at_Lean_FileMap_toPosition___spec__1___boxed(lean_object*); @@ -52,24 +54,22 @@ lean_object* l_Lean_FileMap_toPosition_loop___boxed(lean_object*, lean_object*, lean_object* l_Lean_FileMap_ofString(lean_object*); lean_object* l_Lean_fmt___at_Lean_Position_instToFormatPosition___spec__1(lean_object*); lean_object* l_Lean_FileMap_toPosition_toColumn___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t l_Lean_instDecidableEqPosition(lean_object*, lean_object*); lean_object* l_Lean_Position_instToStringPosition(lean_object*); lean_object* l_Lean_FileMap_toPosition_loop(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_UInt32_decEq(uint32_t, uint32_t); extern lean_object* l_term_x5b___x5d___closed__5; uint8_t lean_nat_dec_le(lean_object*, lean_object*); lean_object* l_Array_back___at_Lean_FileMap_toPosition___spec__1(lean_object*); +lean_object* l_Lean_instDecidableEqPosition___boxed(lean_object*, lean_object*); lean_object* l_Lean_instInhabitedFileMap___closed__1; lean_object* l_Lean_Position_instToFormatPosition(lean_object*); -uint8_t l_Lean_Position_instDecidableEqPosition(lean_object*, lean_object*); lean_object* l_Lean_Position_lt___closed__1; lean_object* l_Lean_Position_instToFormatPosition_match__1(lean_object*); -lean_object* l_Lean_Position_instDecidableEqPosition_match__2___rarg(lean_object*, lean_object*); lean_object* l_Lean_instInhabitedPosition___closed__1; extern lean_object* l_Lean_mkOptionalNode___closed__2; -lean_object* l_Lean_Position_instDecidableEqPosition___boxed(lean_object*, lean_object*); uint8_t lean_string_utf8_at_end(lean_object*, lean_object*); lean_object* l_Lean_Position_instToStringPosition_match__1___rarg(lean_object*, lean_object*); -lean_object* l_Lean_Position_instDecidableEqPosition_match__2(lean_object*); lean_object* l_Lean_Position_lt___boxed(lean_object*, lean_object*); lean_object* l_Lean_FileMap_toPosition___boxed(lean_object*, lean_object*); lean_object* l_Lean_Position_lt___closed__2; @@ -98,49 +98,33 @@ x_1 = l_Lean_instInhabitedPosition___closed__1; return x_1; } } -lean_object* l_Lean_Position_instDecidableEqPosition_match__1___rarg(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Data_Position_0__Lean_decEqPosition____x40_Lean_Data_Position___hyg_16__match__1___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { -lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_3 = lean_ctor_get(x_1, 0); -lean_inc(x_3); -x_4 = lean_ctor_get(x_1, 1); +lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; +x_4 = lean_ctor_get(x_1, 0); lean_inc(x_4); +x_5 = lean_ctor_get(x_1, 1); +lean_inc(x_5); lean_dec(x_1); -x_5 = lean_apply_2(x_2, x_3, x_4); -return x_5; +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(x_2); +x_8 = lean_apply_4(x_3, x_4, x_5, x_6, x_7); +return x_8; } } -lean_object* l_Lean_Position_instDecidableEqPosition_match__1(lean_object* x_1) { +lean_object* l___private_Lean_Data_Position_0__Lean_decEqPosition____x40_Lean_Data_Position___hyg_16__match__1(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Lean_Position_instDecidableEqPosition_match__1___rarg), 2, 0); +x_2 = lean_alloc_closure((void*)(l___private_Lean_Data_Position_0__Lean_decEqPosition____x40_Lean_Data_Position___hyg_16__match__1___rarg), 3, 0); return x_2; } } -lean_object* l_Lean_Position_instDecidableEqPosition_match__2___rarg(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_1, 0); -lean_inc(x_3); -x_4 = lean_ctor_get(x_1, 1); -lean_inc(x_4); -lean_dec(x_1); -x_5 = lean_apply_2(x_2, x_3, x_4); -return x_5; -} -} -lean_object* l_Lean_Position_instDecidableEqPosition_match__2(lean_object* x_1) { -_start: -{ -lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Lean_Position_instDecidableEqPosition_match__2___rarg), 2, 0); -return x_2; -} -} -uint8_t l_Lean_Position_instDecidableEqPosition(lean_object* x_1, lean_object* x_2) { +uint8_t l___private_Lean_Data_Position_0__Lean_decEqPosition____x40_Lean_Data_Position___hyg_16_(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; @@ -163,11 +147,30 @@ return x_9; } } } -lean_object* l_Lean_Position_instDecidableEqPosition___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Lean_Data_Position_0__Lean_decEqPosition____x40_Lean_Data_Position___hyg_16____boxed(lean_object* x_1, lean_object* x_2) { _start: { uint8_t x_3; lean_object* x_4; -x_3 = l_Lean_Position_instDecidableEqPosition(x_1, x_2); +x_3 = l___private_Lean_Data_Position_0__Lean_decEqPosition____x40_Lean_Data_Position___hyg_16_(x_1, x_2); +lean_dec(x_2); +lean_dec(x_1); +x_4 = lean_box(x_3); +return x_4; +} +} +uint8_t l_Lean_instDecidableEqPosition(lean_object* x_1, lean_object* x_2) { +_start: +{ +uint8_t x_3; +x_3 = l___private_Lean_Data_Position_0__Lean_decEqPosition____x40_Lean_Data_Position___hyg_16_(x_1, x_2); +return x_3; +} +} +lean_object* l_Lean_instDecidableEqPosition___boxed(lean_object* x_1, lean_object* x_2) { +_start: +{ +uint8_t x_3; lean_object* x_4; +x_3 = l_Lean_instDecidableEqPosition(x_1, x_2); lean_dec(x_2); lean_dec(x_1); x_4 = lean_box(x_3); diff --git a/stage0/stdlib/Lean/Elab/Deriving/DecEq.c b/stage0/stdlib/Lean/Elab/Deriving/DecEq.c index 21ae628fd4..a3953868e3 100644 --- a/stage0/stdlib/Lean/Elab/Deriving/DecEq.c +++ b/stage0/stdlib/Lean/Elab/Deriving/DecEq.c @@ -27,6 +27,7 @@ lean_object* l_Lean_Elab_Deriving_DecEq_mkDecEqCmds___closed__2; lean_object* l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__21; lean_object* l_Lean_Elab_Deriving_DecEq_mkMatch_mkAlts_match__3___rarg(lean_object*, lean_object*); extern lean_object* l_Lean_mkDecIsTrue___closed__3; +extern lean_object* l_myMacro____x40_Init_Notation___hyg_12942____closed__2; extern lean_object* l_Lean_Elab_Deriving_mkContext___closed__2; lean_object* l_Lean_Elab_Deriving_DecEq_mkAuxFunction___closed__1; extern lean_object* l_Lean_mkDecIsFalse___closed__1; @@ -39,8 +40,8 @@ lean_object* l_Array_append___rarg(lean_object*, lean_object*); lean_object* l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__2; extern lean_object* l_termIf_____x3a__Then__Else_____closed__3; extern lean_object* l_Lean_getConstInfoInduct___rarg___lambda__1___closed__2; -extern lean_object* l_myMacro____x40_Init_Notation___hyg_11187____closed__3; extern lean_object* l_Lean_Parser_Tactic_intro___closed__4; +extern lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandOptIdent___closed__1; lean_object* l_Lean_Elab_Deriving_DecEq_mkAuxFunction___closed__9; lean_object* l_List_forIn_loop___at_Lean_Elab_Deriving_DecEq_mkMatch_mkAlts___spec__7(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_myMacro____x40_Init_Notation___hyg_12315____closed__10; @@ -48,6 +49,7 @@ extern lean_object* l_Lean_Parser_Term_match___elambda__1___closed__1; lean_object* l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Deriving_DecEq_mkMatch___boxed(lean_object*); lean_object* l_Lean_Elab_Deriving_DecEq_mkAuxFunction___closed__4; +extern lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandOptIdent___closed__2; lean_object* l_Lean_getConstInfo___at_Lean_Elab_Deriving_DecEq_mkDecEqInstanceHandler___spec__2(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Array_empty___closed__1; lean_object* lean_environment_find(lean_object*, lean_object*); @@ -94,6 +96,7 @@ lean_object* l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__11; lean_object* l_Lean_throwError___at_Lean_Elab_Deriving_DecEq_mkDecEqInstanceHandler___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Tactic_subst___closed__2; lean_object* l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__31; +extern lean_object* l_myMacro____x40_Init_Notation___hyg_12942____closed__4; lean_object* l_Lean_getConstInfoInduct___at_Lean_Elab_Deriving_DecEq_mkDecEqInstanceHandler___spec__1(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*); uint8_t lean_nat_dec_eq(lean_object*, lean_object*); @@ -102,7 +105,6 @@ extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_1429 lean_object* lean_st_ref_take(lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Tactic_assumption___closed__1; lean_object* l_Lean_Elab_Deriving_mkInstanceCmds(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l_myMacro____x40_Init_Notation___hyg_11187____closed__13; extern lean_object* l_Lean_Elab_Tactic_evalIntro___closed__3; lean_object* lean_nat_sub(lean_object*, lean_object*); extern lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__29; @@ -128,7 +130,6 @@ extern lean_object* l_Lean_mkDecIsTrue___closed__1; extern lean_object* l_myMacro____x40_Init_NotationExtra___hyg_2986____closed__6; lean_object* l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__9; extern lean_object* l_Lean_Core_betaReduce___closed__2; -extern lean_object* l_myMacro____x40_Init_Notation___hyg_11187____closed__15; lean_object* l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__36; lean_object* l_Lean_Elab_Deriving_DecEq_mkAuxFunction___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__27; @@ -150,8 +151,7 @@ lean_object* l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__35; extern lean_object* l_Lean_mkDecIsTrue___closed__4; extern lean_object* l_myMacro____x40_Init_Notation___hyg_12942____closed__16; extern lean_object* l_Lean_instInhabitedExpr; -extern lean_object* l_myMacro____x40_Init_Notation___hyg_11187____closed__6; -lean_object* l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs_match__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs_match__1___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Deriving_DecEq_mkAuxFunction___closed__7; extern lean_object* l___private_Init_NotationExtra_0__Lean_mkHintBody___closed__2; extern lean_object* l_Lean_KernelException_toMessageData___closed__15; @@ -163,7 +163,6 @@ lean_object* l_Lean_Elab_Deriving_DecEq_mkAuxFunction___closed__10; lean_object* l_Lean_Elab_Deriving_mkContext(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_KernelException_toMessageData___closed__3; size_t lean_usize_of_nat(lean_object*); -extern lean_object* l_myMacro____x40_Init_Notation___hyg_12315____closed__17; lean_object* l_Lean_addTrace___at___private_Lean_Elab_Term_0__Lean_Elab_Term_postponeElabTerm___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_addMacroScope(lean_object*, lean_object*, lean_object*); extern lean_object* l___regBuiltin_Lean_Elab_Term_elabByTactic___closed__2; @@ -176,13 +175,13 @@ extern lean_object* l_Lean_nullKind___closed__2; extern lean_object* l_myMacro____x40_Init_NotationExtra___hyg_2680____closed__2; lean_object* l_Lean_Elab_Deriving_DecEq_mkMatch_mkAlts_match__2(lean_object*); lean_object* l_Lean_Elab_Deriving_DecEq_mkAuxFunction___closed__16; -lean_object* l_Lean_Elab_Deriving_DecEq_initFn____x40_Lean_Elab_Deriving_DecEq___hyg_3673____closed__1; lean_object* l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__26; lean_object* l_Std_Range_forIn_loop___at_Lean_Elab_Deriving_DecEq_mkMatch_mkAlts___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*); extern lean_object* l_Lean_Syntax_mkApp___closed__1; lean_object* l___private_Lean_Util_Trace_0__Lean_checkTraceOptionM___at___private_Lean_Elab_Term_0__Lean_Elab_Term_postponeElabTerm___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Deriving_DecEq_mkHeader___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Array_foldlMUnsafe_fold___at_Lean_withNestedTraces___spec__5___closed__1; +extern lean_object* l_myMacro____x40_Init_Notation___hyg_12942____closed__6; lean_object* l_Lean_Elab_addMacroStack___at_Lean_Elab_Command_instAddErrorMessageContextCommandElabM___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs_match__1(lean_object*); lean_object* l_Lean_Elab_Deriving_DecEq_mkMatch_mkAlts(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -197,7 +196,8 @@ lean_object* l_Std_Range_forIn_loop___at_Lean_Elab_Deriving_DecEq_mkMatch_mkAlts extern lean_object* l_Lean_Parser_Term_ellipsis___elambda__1___closed__2; lean_object* l_Lean_Elab_Deriving_Binary_mkDiscrs(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_appendCore___rarg(lean_object*, lean_object*); -lean_object* l_Lean_Elab_Deriving_DecEq_initFn____x40_Lean_Elab_Deriving_DecEq___hyg_3673_(lean_object*); +lean_object* l_Lean_Elab_Deriving_DecEq_initFn____x40_Lean_Elab_Deriving_DecEq___hyg_2875_(lean_object*); +extern lean_object* l_myMacro____x40_Init_Notation___hyg_12942____closed__14; extern lean_object* l_Lean_Core_betaReduce___closed__1; extern lean_object* l_Lean_myMacro____x40_Init_Notation___hyg_13175____closed__3; extern lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__25; @@ -216,6 +216,7 @@ extern lean_object* l_myMacro____x40_Init_Notation___hyg_11187____closed__8; extern lean_object* l_Lean_getConstInfoCtor___rarg___lambda__1___closed__2; extern lean_object* l_Lean_Elab_Term_expandFunBinders_loop___closed__2; lean_object* l_Lean_Meta_inferType(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Deriving_DecEq_initFn____x40_Lean_Elab_Deriving_DecEq___hyg_2875____closed__1; lean_object* l_Lean_Elab_registerBuiltinDerivingHandler(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__5; lean_object* l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__28; @@ -226,12 +227,10 @@ lean_object* l_Lean_Elab_Deriving_DecEq_mkHeader(lean_object*); extern lean_object* l_myMacro____x40_Init_Notation___hyg_11187____closed__9; lean_object* l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__14; extern lean_object* l_Lean_Parser_Term_matchAlt___closed__1; -extern lean_object* l_Lean_expandExplicitBindersAux_loop___closed__1; lean_object* l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__33; lean_object* l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__18; extern lean_object* l_IO_Prim_fopenFlags___closed__4; extern lean_object* l_Lean_Parser_Tactic_exact___closed__2; -extern lean_object* l_myMacro____x40_Init_NotationExtra___hyg_3477____closed__47; lean_object* l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__22; extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14110____closed__3; lean_object* l_Lean_Elab_Deriving_DecEq_mkMatch_mkAlts_match__2___rarg(lean_object*, lean_object*); @@ -248,7 +247,6 @@ lean_object* l_Lean_Elab_Deriving_DecEq_mkDecEqInstanceHandler(lean_object*, lea lean_object* l_unsafeCast(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_throwError___at_Lean_Elab_Deriving_DecEq_mkDecEqInstanceHandler___spec__4(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__27; -extern lean_object* l_myMacro____x40_Init_Notation___hyg_11187____closed__11; lean_object* l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__16; lean_object* l_Lean_Elab_Deriving_DecEq_mkAuxFunction___closed__11; lean_object* l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__7; @@ -264,10 +262,11 @@ lean_object* l_Lean_Elab_Deriving_DecEq_mkHeader___boxed(lean_object*); extern lean_object* l_myMacro____x40_Init_Notation___hyg_12315____closed__15; extern lean_object* l_Lean_Elab_instToStringVisibility___closed__2; lean_object* l_Lean_throwError___at_Lean_Elab_Deriving_DecEq_mkMatch_mkAlts___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l_myMacro____x40_Init_Notation___hyg_11187____closed__4; +extern lean_object* l_myMacro____x40_Init_Notation___hyg_12942____closed__8; extern lean_object* l_myMacro____x40_Init_Notation___hyg_11187____closed__17; lean_object* l_Lean_Elab_getBetterRef(lean_object*, lean_object*); extern lean_object* l_myMacro____x40_Init_Notation___hyg_658____closed__7; +lean_object* l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__37; lean_object* l_List_forIn_loop___at_Lean_Elab_Deriving_DecEq_mkMatch_mkAlts___spec__6___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_nat_dec_lt(lean_object*, lean_object*); lean_object* l_Lean_Elab_Deriving_DecEq_mkMatch_mkAlts_match__4___rarg(lean_object*, lean_object*); @@ -315,62 +314,38 @@ lean_dec(x_1); return x_2; } } -lean_object* l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs_match__1___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs_match__1___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { if (lean_obj_tag(x_1) == 0) { -lean_object* x_5; lean_object* x_6; -lean_dec(x_4); +lean_object* x_4; lean_object* x_5; lean_dec(x_3); -x_5 = lean_box(0); -x_6 = lean_apply_1(x_2, x_5); -return x_6; +x_4 = lean_box(0); +x_5 = lean_apply_1(x_2, x_4); +return x_5; } else { -lean_object* x_7; lean_object* x_8; lean_object* x_9; uint8_t x_10; +lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_dec(x_2); -x_7 = lean_ctor_get(x_1, 0); +x_6 = lean_ctor_get(x_1, 0); +lean_inc(x_6); +x_7 = lean_ctor_get(x_6, 1); lean_inc(x_7); -x_8 = lean_ctor_get(x_7, 1); +x_8 = lean_ctor_get(x_1, 1); lean_inc(x_8); -x_9 = lean_ctor_get(x_8, 1); +lean_dec(x_1); +x_9 = lean_ctor_get(x_6, 0); lean_inc(x_9); -x_10 = lean_unbox(x_9); -lean_dec(x_9); -if (x_10 == 0) -{ -lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; -lean_dec(x_4); -x_11 = lean_ctor_get(x_1, 1); +lean_dec(x_6); +x_10 = lean_ctor_get(x_7, 0); +lean_inc(x_10); +x_11 = lean_ctor_get(x_7, 1); lean_inc(x_11); -lean_dec(x_1); -x_12 = lean_ctor_get(x_7, 0); -lean_inc(x_12); lean_dec(x_7); -x_13 = lean_ctor_get(x_8, 0); -lean_inc(x_13); -lean_dec(x_8); -x_14 = lean_apply_3(x_3, x_12, x_13, x_11); -return x_14; -} -else -{ -lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; -lean_dec(x_3); -x_15 = lean_ctor_get(x_1, 1); -lean_inc(x_15); -lean_dec(x_1); -x_16 = lean_ctor_get(x_7, 0); -lean_inc(x_16); -lean_dec(x_7); -x_17 = lean_ctor_get(x_8, 0); -lean_inc(x_17); -lean_dec(x_8); -x_18 = lean_apply_3(x_4, x_16, x_17, x_15); -return x_18; -} +x_12 = lean_apply_4(x_3, x_9, x_10, x_11, x_8); +return x_12; } } } @@ -378,7 +353,7 @@ lean_object* l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs_match__1(lean_obje _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs_match__1___rarg), 4, 0); +x_2 = lean_alloc_closure((void*)(l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs_match__1___rarg), 3, 0); return x_2; } } @@ -860,11 +835,24 @@ return x_3; static lean_object* _init_l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__36() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_expandExplicitBindersAux_loop___closed__1; -x_2 = l_myMacro____x40_Init_Notation___hyg_12315____closed__17; -x_3 = lean_array_push(x_1, x_2); -return x_3; +lean_object* x_1; lean_object* x_2; +x_1 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandOptIdent___closed__1; +x_2 = lean_string_utf8_byte_size(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__37() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandOptIdent___closed__1; +x_2 = lean_unsigned_to_nat(0u); +x_3 = l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__36; +x_4 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_4, 0, x_1); +lean_ctor_set(x_4, 1, x_2); +lean_ctor_set(x_4, 2, x_3); +return x_4; } } lean_object* l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { @@ -972,76 +960,72 @@ return x_56; } else { -lean_object* x_57; lean_object* x_58; lean_object* x_59; uint8_t x_60; +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; uint8_t x_66; x_57 = lean_ctor_get(x_2, 0); lean_inc(x_57); x_58 = lean_ctor_get(x_57, 1); lean_inc(x_58); -x_59 = lean_ctor_get(x_58, 1); +x_59 = lean_ctor_get(x_2, 1); lean_inc(x_59); -x_60 = lean_unbox(x_59); -lean_dec(x_59); -if (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; uint8_t x_67; -x_61 = lean_ctor_get(x_2, 1); -lean_inc(x_61); lean_dec(x_2); -x_62 = lean_ctor_get(x_57, 0); -lean_inc(x_62); +x_60 = lean_ctor_get(x_57, 0); +lean_inc(x_60); lean_dec(x_57); -x_63 = lean_ctor_get(x_58, 0); -lean_inc(x_63); +x_61 = lean_ctor_get(x_58, 0); +lean_inc(x_61); +x_62 = lean_ctor_get(x_58, 1); +lean_inc(x_62); lean_dec(x_58); -x_64 = lean_st_ref_take(x_8, x_9); -x_65 = lean_ctor_get(x_64, 0); +x_63 = lean_st_ref_take(x_8, x_9); +x_64 = lean_ctor_get(x_63, 0); +lean_inc(x_64); +x_65 = lean_ctor_get(x_63, 1); lean_inc(x_65); -x_66 = lean_ctor_get(x_64, 1); -lean_inc(x_66); -lean_dec(x_64); -x_67 = !lean_is_exclusive(x_65); -if (x_67 == 0) +lean_dec(x_63); +x_66 = !lean_is_exclusive(x_64); +if (x_66 == 0) { -lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; uint8_t x_73; -x_68 = lean_ctor_get(x_65, 1); -x_69 = lean_unsigned_to_nat(1u); -x_70 = lean_nat_add(x_68, x_69); -lean_ctor_set(x_65, 1, x_70); -x_71 = lean_st_ref_set(x_8, x_65, x_66); -x_72 = lean_ctor_get(x_71, 1); -lean_inc(x_72); -lean_dec(x_71); -x_73 = !lean_is_exclusive(x_3); -if (x_73 == 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_64, 1); +x_68 = lean_unsigned_to_nat(1u); +x_69 = lean_nat_add(x_67, x_68); +lean_ctor_set(x_64, 1, x_69); +x_70 = lean_st_ref_set(x_8, x_64, x_65); +x_71 = lean_ctor_get(x_70, 1); +lean_inc(x_71); +lean_dec(x_70); +x_72 = !lean_is_exclusive(x_3); +if (x_72 == 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; uint8_t x_82; -x_74 = lean_ctor_get(x_3, 4); -lean_dec(x_74); -lean_ctor_set(x_3, 4, x_68); +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_81; +x_73 = lean_ctor_get(x_3, 4); +lean_dec(x_73); +lean_ctor_set(x_3, 4, x_67); lean_inc(x_3); -x_75 = l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs(x_1, x_61, x_3, x_4, x_5, x_6, x_7, x_8, x_72); -x_76 = lean_ctor_get(x_75, 0); +lean_inc(x_1); +x_74 = l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs(x_1, x_59, x_3, x_4, x_5, x_6, x_7, x_8, x_71); +x_75 = lean_ctor_get(x_74, 0); +lean_inc(x_75); +x_76 = lean_ctor_get(x_74, 1); lean_inc(x_76); -x_77 = lean_ctor_get(x_75, 1); -lean_inc(x_77); -lean_dec(x_75); -x_78 = l_Lean_Elab_Term_getCurrMacroScope(x_3, x_4, x_5, x_6, x_7, x_8, x_77); -lean_dec(x_3); -x_79 = lean_ctor_get(x_78, 0); +lean_dec(x_74); +x_77 = l_Lean_Elab_Term_getCurrMacroScope(x_3, x_4, x_5, x_6, x_7, x_8, x_76); +x_78 = lean_ctor_get(x_77, 0); +lean_inc(x_78); +x_79 = lean_ctor_get(x_77, 1); lean_inc(x_79); -x_80 = lean_ctor_get(x_78, 1); -lean_inc(x_80); -lean_dec(x_78); -x_81 = l_Lean_Elab_Term_getMainModule___rarg(x_8, x_80); -x_82 = !lean_is_exclusive(x_81); -if (x_82 == 0) +lean_dec(x_77); +x_80 = l_Lean_Elab_Term_getMainModule___rarg(x_8, x_79); +x_81 = !lean_is_exclusive(x_80); +if (x_81 == 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; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; lean_object* x_153; lean_object* x_154; lean_object* x_155; lean_object* x_156; lean_object* x_157; lean_object* x_158; lean_object* x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; lean_object* x_164; lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; lean_object* x_169; lean_object* x_170; lean_object* x_171; lean_object* x_172; lean_object* x_173; lean_object* x_174; lean_object* x_175; lean_object* x_176; lean_object* x_177; lean_object* x_178; lean_object* x_179; lean_object* x_180; lean_object* x_181; lean_object* x_182; lean_object* x_183; lean_object* x_184; lean_object* x_185; lean_object* x_186; lean_object* x_187; lean_object* x_188; lean_object* x_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; lean_object* x_193; lean_object* x_194; lean_object* x_195; lean_object* x_196; lean_object* x_197; lean_object* x_198; lean_object* x_199; lean_object* x_200; lean_object* x_201; lean_object* x_202; lean_object* x_203; lean_object* x_204; -x_83 = lean_ctor_get(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; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; lean_object* x_153; lean_object* x_154; lean_object* x_155; lean_object* x_156; lean_object* x_157; lean_object* x_158; lean_object* x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; lean_object* x_164; lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; lean_object* x_169; lean_object* x_170; lean_object* x_171; lean_object* x_172; lean_object* x_173; lean_object* x_174; lean_object* x_175; lean_object* x_176; lean_object* x_177; lean_object* x_178; lean_object* x_179; lean_object* x_180; lean_object* x_181; lean_object* x_182; lean_object* x_183; lean_object* x_184; lean_object* x_185; lean_object* x_186; lean_object* x_187; lean_object* x_188; lean_object* x_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; lean_object* x_193; lean_object* x_194; lean_object* x_195; lean_object* x_196; lean_object* x_197; lean_object* x_198; lean_object* x_199; lean_object* x_200; lean_object* x_201; lean_object* x_202; lean_object* x_203; lean_object* x_204; uint8_t x_205; +x_82 = lean_ctor_get(x_80, 0); +x_83 = lean_ctor_get(x_80, 1); x_84 = l_Lean_Elab_Tactic_evalIntro___closed__4; -lean_inc(x_79); -lean_inc(x_83); -x_85 = l_Lean_addMacroScope(x_83, x_84, x_79); +lean_inc(x_78); +lean_inc(x_82); +x_85 = l_Lean_addMacroScope(x_82, x_84, x_78); x_86 = lean_box(0); x_87 = l_Lean_instInhabitedSourceInfo___closed__1; x_88 = l_Lean_Elab_Tactic_evalIntro___closed__3; @@ -1056,10 +1040,12 @@ x_91 = lean_array_push(x_90, x_89); x_92 = l_myMacro____x40_Init_Notation___hyg_12315____closed__10; x_93 = lean_array_push(x_91, x_92); x_94 = l_Array_empty___closed__1; -x_95 = lean_array_push(x_94, x_62); +x_95 = lean_array_push(x_94, x_60); x_96 = l___private_Init_NotationExtra_0__Lean_mkHintBody___closed__2; +lean_inc(x_95); x_97 = lean_array_push(x_95, x_96); -x_98 = lean_array_push(x_97, x_63); +lean_inc(x_61); +x_98 = lean_array_push(x_97, x_61); x_99 = l_term___x3d_____closed__2; x_100 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_100, 0, x_99); @@ -1087,7 +1073,7 @@ lean_ctor_set(x_114, 0, x_105); lean_ctor_set(x_114, 1, x_113); x_115 = lean_array_push(x_94, x_114); x_116 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14290____closed__2; -x_117 = lean_array_push(x_116, x_76); +x_117 = lean_array_push(x_116, x_75); x_118 = l_Lean_Parser_Tactic_exact___closed__2; x_119 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_119, 0, x_118); @@ -1122,9 +1108,9 @@ x_136 = lean_array_push(x_103, x_135); x_137 = l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__18; x_138 = lean_array_push(x_136, x_137); x_139 = l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__21; -lean_inc(x_79); -lean_inc(x_83); -x_140 = l_Lean_addMacroScope(x_83, x_139, x_79); +lean_inc(x_78); +lean_inc(x_82); +x_140 = l_Lean_addMacroScope(x_82, x_139, x_78); x_141 = l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__20; x_142 = l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__23; x_143 = lean_alloc_ctor(3, 4, 0); @@ -1134,7 +1120,7 @@ lean_ctor_set(x_143, 2, x_140); lean_ctor_set(x_143, 3, x_142); x_144 = lean_array_push(x_94, x_143); x_145 = l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__27; -x_146 = l_Lean_addMacroScope(x_83, x_145, x_79); +x_146 = l_Lean_addMacroScope(x_82, x_145, x_78); x_147 = l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__26; x_148 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_148, 0, x_87); @@ -1232,511 +1218,807 @@ x_203 = l_termIf_____x3a__Then__Else_____closed__2; x_204 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_204, 0, x_203); lean_ctor_set(x_204, 1, x_202); -lean_ctor_set(x_81, 0, x_204); -return x_81; +x_205 = lean_unbox(x_62); +lean_dec(x_62); +if (x_205 == 0) +{ +lean_dec(x_95); +lean_dec(x_3); +lean_dec(x_61); +lean_dec(x_1); +lean_ctor_set(x_80, 0, x_204); +return x_80; } else { -lean_object* x_205; lean_object* x_206; lean_object* x_207; lean_object* x_208; lean_object* x_209; lean_object* x_210; lean_object* x_211; lean_object* x_212; lean_object* x_213; lean_object* x_214; lean_object* x_215; lean_object* x_216; lean_object* x_217; lean_object* x_218; lean_object* x_219; lean_object* x_220; lean_object* x_221; lean_object* x_222; lean_object* x_223; lean_object* x_224; lean_object* x_225; lean_object* x_226; lean_object* x_227; lean_object* x_228; lean_object* x_229; lean_object* x_230; lean_object* x_231; lean_object* x_232; lean_object* x_233; lean_object* x_234; lean_object* x_235; lean_object* x_236; lean_object* x_237; lean_object* x_238; lean_object* x_239; lean_object* x_240; lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; lean_object* x_245; lean_object* x_246; lean_object* x_247; lean_object* x_248; lean_object* x_249; lean_object* x_250; lean_object* x_251; lean_object* x_252; lean_object* x_253; lean_object* x_254; lean_object* x_255; lean_object* x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; lean_object* x_260; lean_object* x_261; lean_object* x_262; lean_object* x_263; lean_object* x_264; lean_object* x_265; lean_object* x_266; lean_object* x_267; lean_object* x_268; lean_object* x_269; lean_object* x_270; lean_object* x_271; lean_object* x_272; lean_object* x_273; lean_object* x_274; lean_object* x_275; lean_object* x_276; lean_object* x_277; lean_object* x_278; lean_object* x_279; lean_object* x_280; lean_object* x_281; lean_object* x_282; lean_object* x_283; lean_object* x_284; lean_object* x_285; lean_object* x_286; lean_object* x_287; lean_object* x_288; lean_object* x_289; lean_object* x_290; lean_object* x_291; lean_object* x_292; lean_object* x_293; lean_object* x_294; lean_object* x_295; lean_object* x_296; lean_object* x_297; lean_object* x_298; lean_object* x_299; lean_object* x_300; lean_object* x_301; lean_object* x_302; lean_object* x_303; lean_object* x_304; lean_object* x_305; lean_object* x_306; lean_object* x_307; lean_object* x_308; lean_object* x_309; lean_object* x_310; 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; -x_205 = lean_ctor_get(x_81, 0); -x_206 = lean_ctor_get(x_81, 1); -lean_inc(x_206); -lean_inc(x_205); -lean_dec(x_81); -x_207 = l_Lean_Elab_Tactic_evalIntro___closed__4; -lean_inc(x_79); -lean_inc(x_205); -x_208 = l_Lean_addMacroScope(x_205, x_207, x_79); -x_209 = lean_box(0); -x_210 = l_Lean_instInhabitedSourceInfo___closed__1; -x_211 = l_Lean_Elab_Tactic_evalIntro___closed__3; -x_212 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_212, 0, x_210); -lean_ctor_set(x_212, 1, x_211); -lean_ctor_set(x_212, 2, x_208); -lean_ctor_set(x_212, 3, x_209); -x_213 = l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__9; -lean_inc(x_212); -x_214 = lean_array_push(x_213, x_212); -x_215 = l_myMacro____x40_Init_Notation___hyg_12315____closed__10; -x_216 = lean_array_push(x_214, x_215); -x_217 = l_Array_empty___closed__1; -x_218 = lean_array_push(x_217, x_62); -x_219 = l___private_Init_NotationExtra_0__Lean_mkHintBody___closed__2; +lean_object* x_206; lean_object* x_207; lean_object* x_208; lean_object* x_209; uint8_t x_210; +lean_free_object(x_80); +x_206 = l_Lean_Elab_Term_getCurrMacroScope(x_3, x_4, x_5, x_6, x_7, x_8, x_83); +lean_dec(x_3); +x_207 = lean_ctor_get(x_206, 0); +lean_inc(x_207); +x_208 = lean_ctor_get(x_206, 1); +lean_inc(x_208); +lean_dec(x_206); +x_209 = l_Lean_Elab_Term_getMainModule___rarg(x_8, x_208); +x_210 = !lean_is_exclusive(x_209); +if (x_210 == 0) +{ +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; +x_211 = lean_ctor_get(x_209, 0); +x_212 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandOptIdent___closed__2; +x_213 = l_Lean_addMacroScope(x_211, x_212, x_207); +x_214 = l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__37; +x_215 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_215, 0, x_87); +lean_ctor_set(x_215, 1, x_214); +lean_ctor_set(x_215, 2, x_213); +lean_ctor_set(x_215, 3, x_86); +x_216 = lean_array_push(x_94, x_215); +x_217 = lean_array_push(x_216, x_121); +x_218 = lean_array_push(x_217, x_121); +x_219 = l_myMacro____x40_Init_Notation___hyg_12942____closed__14; x_220 = lean_array_push(x_218, x_219); -x_221 = lean_array_push(x_220, x_63); -x_222 = l_term___x3d_____closed__2; -x_223 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_223, 0, x_222); -lean_ctor_set(x_223, 1, x_221); -x_224 = lean_array_push(x_216, x_223); -x_225 = l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__11; -x_226 = lean_array_push(x_224, x_225); -x_227 = lean_array_push(x_217, x_212); -x_228 = l_Lean_nullKind___closed__2; -lean_inc(x_227); +x_221 = lean_mk_syntax_ident(x_1); +x_222 = lean_array_push(x_94, x_221); +x_223 = lean_array_push(x_95, x_61); +x_224 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_224, 0, x_105); +lean_ctor_set(x_224, 1, x_223); +x_225 = lean_array_push(x_222, x_224); +x_226 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_226, 0, x_170); +lean_ctor_set(x_226, 1, x_225); +x_227 = lean_array_push(x_220, x_226); +x_228 = l_myMacro____x40_Init_Notation___hyg_12942____closed__8; x_229 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_229, 0, x_228); lean_ctor_set(x_229, 1, x_227); -x_230 = l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__16; -x_231 = lean_array_push(x_230, x_229); -x_232 = l_Lean_Parser_Tactic_subst___closed__2; -x_233 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_233, 0, x_232); -lean_ctor_set(x_233, 1, x_231); -x_234 = lean_array_push(x_217, x_233); -x_235 = l_myMacro____x40_Init_Notation___hyg_12942____closed__18; -x_236 = lean_array_push(x_234, x_235); -x_237 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_237, 0, x_228); -lean_ctor_set(x_237, 1, x_236); -x_238 = lean_array_push(x_217, x_237); -x_239 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14290____closed__2; -x_240 = lean_array_push(x_239, x_76); -x_241 = l_Lean_Parser_Tactic_exact___closed__2; -x_242 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_242, 0, x_241); -lean_ctor_set(x_242, 1, x_240); -x_243 = lean_array_push(x_217, x_242); -x_244 = l_myMacro____x40_Init_Notation___hyg_1130____closed__23; -x_245 = lean_array_push(x_243, x_244); -x_246 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_246, 0, x_228); -lean_ctor_set(x_246, 1, x_245); -x_247 = lean_array_push(x_238, x_246); -x_248 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_248, 0, x_228); -lean_ctor_set(x_248, 1, x_247); -x_249 = lean_array_push(x_217, x_248); -x_250 = l___private_Init_Notation_0__Lean_Parser_Tactic_withCheapRefl___closed__5; -x_251 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_251, 0, x_250); -lean_ctor_set(x_251, 1, x_249); -x_252 = lean_array_push(x_217, x_251); -x_253 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14110____closed__3; -x_254 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_254, 0, x_253); -lean_ctor_set(x_254, 1, x_252); -x_255 = l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__14; -x_256 = lean_array_push(x_255, x_254); -x_257 = l___regBuiltin_Lean_Elab_Term_elabByTactic___closed__2; +x_230 = lean_array_push(x_94, x_229); +x_231 = l_myMacro____x40_Init_Notation___hyg_12942____closed__6; +x_232 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_232, 0, x_231); +lean_ctor_set(x_232, 1, x_230); +x_233 = l_myMacro____x40_Init_Notation___hyg_12942____closed__4; +x_234 = lean_array_push(x_233, x_232); +x_235 = lean_array_push(x_234, x_112); +x_236 = lean_array_push(x_235, x_204); +x_237 = l_myMacro____x40_Init_Notation___hyg_12942____closed__2; +x_238 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_238, 0, x_237); +lean_ctor_set(x_238, 1, x_236); +lean_ctor_set(x_209, 0, x_238); +return x_209; +} +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_object* x_246; lean_object* x_247; lean_object* x_248; lean_object* x_249; lean_object* x_250; lean_object* x_251; lean_object* x_252; lean_object* x_253; lean_object* x_254; lean_object* x_255; lean_object* x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; lean_object* x_260; lean_object* x_261; lean_object* x_262; lean_object* x_263; lean_object* x_264; lean_object* x_265; lean_object* x_266; lean_object* x_267; lean_object* x_268; +x_239 = lean_ctor_get(x_209, 0); +x_240 = lean_ctor_get(x_209, 1); +lean_inc(x_240); +lean_inc(x_239); +lean_dec(x_209); +x_241 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandOptIdent___closed__2; +x_242 = l_Lean_addMacroScope(x_239, x_241, x_207); +x_243 = l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__37; +x_244 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_244, 0, x_87); +lean_ctor_set(x_244, 1, x_243); +lean_ctor_set(x_244, 2, x_242); +lean_ctor_set(x_244, 3, x_86); +x_245 = lean_array_push(x_94, x_244); +x_246 = lean_array_push(x_245, x_121); +x_247 = lean_array_push(x_246, x_121); +x_248 = l_myMacro____x40_Init_Notation___hyg_12942____closed__14; +x_249 = lean_array_push(x_247, x_248); +x_250 = lean_mk_syntax_ident(x_1); +x_251 = lean_array_push(x_94, x_250); +x_252 = lean_array_push(x_95, x_61); +x_253 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_253, 0, x_105); +lean_ctor_set(x_253, 1, x_252); +x_254 = lean_array_push(x_251, x_253); +x_255 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_255, 0, x_170); +lean_ctor_set(x_255, 1, x_254); +x_256 = lean_array_push(x_249, x_255); +x_257 = l_myMacro____x40_Init_Notation___hyg_12942____closed__8; x_258 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_258, 0, x_257); lean_ctor_set(x_258, 1, x_256); -x_259 = lean_array_push(x_226, x_258); -x_260 = l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__18; -x_261 = lean_array_push(x_259, x_260); -x_262 = l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__21; -lean_inc(x_79); -lean_inc(x_205); -x_263 = l_Lean_addMacroScope(x_205, x_262, x_79); -x_264 = l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__20; -x_265 = l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__23; -x_266 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_266, 0, x_210); -lean_ctor_set(x_266, 1, x_264); -lean_ctor_set(x_266, 2, x_263); -lean_ctor_set(x_266, 3, x_265); -x_267 = lean_array_push(x_217, x_266); -x_268 = l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__27; -x_269 = l_Lean_addMacroScope(x_205, x_268, x_79); -x_270 = l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__26; -x_271 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_271, 0, x_210); -lean_ctor_set(x_271, 1, x_270); -lean_ctor_set(x_271, 2, x_269); -lean_ctor_set(x_271, 3, x_209); -lean_inc(x_271); -x_272 = lean_array_push(x_217, x_271); -x_273 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_273, 0, x_228); -lean_ctor_set(x_273, 1, x_272); -x_274 = l_myMacro____x40_Init_NotationExtra___hyg_2680____closed__10; -x_275 = lean_array_push(x_274, x_273); -x_276 = l_Lean_Parser_Tactic_intro___closed__4; -x_277 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_277, 0, x_276); -lean_ctor_set(x_277, 1, x_275); -x_278 = lean_array_push(x_217, x_277); -x_279 = lean_array_push(x_278, x_235); -x_280 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_280, 0, x_228); -lean_ctor_set(x_280, 1, x_279); -x_281 = lean_array_push(x_217, x_280); -x_282 = l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__29; -x_283 = lean_array_push(x_282, x_271); -x_284 = lean_array_push(x_283, x_244); -x_285 = l_Lean_Parser_Tactic_injection___closed__2; -x_286 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_286, 0, x_285); -lean_ctor_set(x_286, 1, x_284); -x_287 = lean_array_push(x_217, x_286); -x_288 = lean_array_push(x_287, x_235); -x_289 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_289, 0, x_228); -lean_ctor_set(x_289, 1, x_288); -x_290 = lean_array_push(x_281, x_289); -x_291 = l_Lean_expandExplicitBindersAux_loop___closed__2; -x_292 = lean_array_push(x_227, x_291); -x_293 = l_myMacro____x40_Init_Notation___hyg_2022____closed__4; -x_294 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_294, 0, x_293); -lean_ctor_set(x_294, 1, x_292); -x_295 = l_myMacro____x40_Init_NotationExtra___hyg_2680____closed__2; -x_296 = lean_array_push(x_295, x_294); -x_297 = l_Lean_Parser_Tactic_apply___closed__2; -x_298 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_298, 0, x_297); -lean_ctor_set(x_298, 1, x_296); -x_299 = lean_array_push(x_217, x_298); -x_300 = lean_array_push(x_299, x_235); -x_301 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_301, 0, x_228); -lean_ctor_set(x_301, 1, x_300); -x_302 = lean_array_push(x_290, x_301); -x_303 = l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__35; -x_304 = lean_array_push(x_302, x_303); -x_305 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_305, 0, x_228); -lean_ctor_set(x_305, 1, x_304); -x_306 = lean_array_push(x_217, x_305); -x_307 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_307, 0, x_250); -lean_ctor_set(x_307, 1, x_306); -x_308 = lean_array_push(x_217, x_307); -x_309 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_309, 0, x_253); -lean_ctor_set(x_309, 1, x_308); -x_310 = lean_array_push(x_255, x_309); -x_311 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_311, 0, x_257); -lean_ctor_set(x_311, 1, x_310); -x_312 = lean_array_push(x_217, x_311); -x_313 = lean_array_push(x_312, x_244); -x_314 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_314, 0, x_228); -lean_ctor_set(x_314, 1, x_313); -x_315 = l_myMacro____x40_Init_Notation___hyg_11187____closed__9; -x_316 = lean_array_push(x_315, x_314); -x_317 = l_myMacro____x40_Init_Notation___hyg_658____closed__8; -x_318 = lean_array_push(x_316, x_317); -x_319 = l_myMacro____x40_Init_Notation___hyg_11187____closed__8; -x_320 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_320, 0, x_319); -lean_ctor_set(x_320, 1, x_318); -x_321 = lean_array_push(x_217, x_320); -x_322 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_322, 0, x_228); -lean_ctor_set(x_322, 1, x_321); -x_323 = lean_array_push(x_267, x_322); -x_324 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_324, 0, x_293); -lean_ctor_set(x_324, 1, x_323); -x_325 = lean_array_push(x_261, x_324); -x_326 = l_termIf_____x3a__Then__Else_____closed__2; -x_327 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_327, 0, x_326); -lean_ctor_set(x_327, 1, x_325); -x_328 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_328, 0, x_327); -lean_ctor_set(x_328, 1, x_206); -return x_328; +x_259 = lean_array_push(x_94, x_258); +x_260 = l_myMacro____x40_Init_Notation___hyg_12942____closed__6; +x_261 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_261, 0, x_260); +lean_ctor_set(x_261, 1, x_259); +x_262 = l_myMacro____x40_Init_Notation___hyg_12942____closed__4; +x_263 = lean_array_push(x_262, x_261); +x_264 = lean_array_push(x_263, x_112); +x_265 = lean_array_push(x_264, x_204); +x_266 = l_myMacro____x40_Init_Notation___hyg_12942____closed__2; +x_267 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_267, 0, x_266); +lean_ctor_set(x_267, 1, x_265); +x_268 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_268, 0, x_267); +lean_ctor_set(x_268, 1, x_240); +return x_268; +} } } else { -lean_object* x_329; lean_object* x_330; lean_object* x_331; lean_object* x_332; uint8_t x_333; uint8_t x_334; uint8_t x_335; lean_object* x_336; lean_object* x_337; lean_object* x_338; lean_object* x_339; lean_object* x_340; lean_object* x_341; lean_object* x_342; lean_object* x_343; lean_object* x_344; lean_object* x_345; lean_object* x_346; lean_object* x_347; lean_object* x_348; lean_object* x_349; lean_object* x_350; lean_object* x_351; lean_object* x_352; lean_object* x_353; lean_object* x_354; lean_object* x_355; lean_object* x_356; lean_object* x_357; lean_object* x_358; lean_object* x_359; lean_object* x_360; lean_object* x_361; lean_object* x_362; lean_object* x_363; lean_object* x_364; lean_object* x_365; lean_object* x_366; lean_object* x_367; lean_object* x_368; lean_object* x_369; lean_object* x_370; lean_object* x_371; lean_object* x_372; lean_object* x_373; lean_object* x_374; lean_object* x_375; lean_object* x_376; lean_object* x_377; lean_object* x_378; lean_object* x_379; lean_object* x_380; lean_object* x_381; lean_object* x_382; lean_object* x_383; lean_object* x_384; lean_object* x_385; lean_object* x_386; lean_object* x_387; lean_object* x_388; lean_object* x_389; lean_object* x_390; lean_object* x_391; lean_object* x_392; lean_object* x_393; lean_object* x_394; lean_object* x_395; lean_object* x_396; lean_object* x_397; lean_object* x_398; lean_object* x_399; lean_object* x_400; lean_object* x_401; lean_object* x_402; lean_object* x_403; lean_object* x_404; lean_object* x_405; lean_object* x_406; lean_object* x_407; lean_object* x_408; lean_object* x_409; lean_object* x_410; lean_object* x_411; lean_object* x_412; lean_object* x_413; lean_object* x_414; lean_object* x_415; lean_object* x_416; lean_object* x_417; lean_object* x_418; lean_object* x_419; lean_object* x_420; lean_object* x_421; lean_object* x_422; lean_object* x_423; lean_object* x_424; lean_object* x_425; lean_object* x_426; lean_object* x_427; lean_object* x_428; lean_object* x_429; lean_object* x_430; lean_object* x_431; lean_object* x_432; lean_object* x_433; lean_object* x_434; lean_object* x_435; lean_object* x_436; lean_object* x_437; lean_object* x_438; lean_object* x_439; lean_object* x_440; lean_object* x_441; lean_object* x_442; lean_object* x_443; lean_object* x_444; lean_object* x_445; lean_object* x_446; lean_object* x_447; lean_object* x_448; lean_object* x_449; lean_object* x_450; lean_object* x_451; lean_object* x_452; lean_object* x_453; lean_object* x_454; lean_object* x_455; lean_object* x_456; lean_object* x_457; lean_object* x_458; lean_object* x_459; lean_object* x_460; lean_object* x_461; lean_object* x_462; lean_object* x_463; lean_object* x_464; lean_object* x_465; lean_object* x_466; lean_object* x_467; lean_object* x_468; lean_object* x_469; -x_329 = lean_ctor_get(x_3, 0); -x_330 = lean_ctor_get(x_3, 1); -x_331 = lean_ctor_get(x_3, 2); -x_332 = lean_ctor_get(x_3, 3); -x_333 = lean_ctor_get_uint8(x_3, sizeof(void*)*6); -x_334 = lean_ctor_get_uint8(x_3, sizeof(void*)*6 + 1); -x_335 = lean_ctor_get_uint8(x_3, sizeof(void*)*6 + 2); -x_336 = lean_ctor_get(x_3, 5); -lean_inc(x_336); -lean_inc(x_332); -lean_inc(x_331); -lean_inc(x_330); -lean_inc(x_329); -lean_dec(x_3); -x_337 = lean_alloc_ctor(0, 6, 3); -lean_ctor_set(x_337, 0, x_329); -lean_ctor_set(x_337, 1, x_330); -lean_ctor_set(x_337, 2, x_331); -lean_ctor_set(x_337, 3, x_332); -lean_ctor_set(x_337, 4, x_68); -lean_ctor_set(x_337, 5, x_336); -lean_ctor_set_uint8(x_337, sizeof(void*)*6, x_333); -lean_ctor_set_uint8(x_337, sizeof(void*)*6 + 1, x_334); -lean_ctor_set_uint8(x_337, sizeof(void*)*6 + 2, x_335); -lean_inc(x_337); -x_338 = l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs(x_1, x_61, x_337, x_4, x_5, x_6, x_7, x_8, x_72); -x_339 = lean_ctor_get(x_338, 0); -lean_inc(x_339); -x_340 = lean_ctor_get(x_338, 1); -lean_inc(x_340); -lean_dec(x_338); -x_341 = l_Lean_Elab_Term_getCurrMacroScope(x_337, x_4, x_5, x_6, x_7, x_8, x_340); -lean_dec(x_337); -x_342 = lean_ctor_get(x_341, 0); -lean_inc(x_342); -x_343 = lean_ctor_get(x_341, 1); -lean_inc(x_343); -lean_dec(x_341); -x_344 = l_Lean_Elab_Term_getMainModule___rarg(x_8, x_343); -x_345 = lean_ctor_get(x_344, 0); -lean_inc(x_345); -x_346 = lean_ctor_get(x_344, 1); -lean_inc(x_346); -if (lean_is_exclusive(x_344)) { - lean_ctor_release(x_344, 0); - lean_ctor_release(x_344, 1); - x_347 = x_344; -} else { - lean_dec_ref(x_344); - x_347 = lean_box(0); -} -x_348 = l_Lean_Elab_Tactic_evalIntro___closed__4; -lean_inc(x_342); -lean_inc(x_345); -x_349 = l_Lean_addMacroScope(x_345, x_348, x_342); -x_350 = lean_box(0); -x_351 = l_Lean_instInhabitedSourceInfo___closed__1; -x_352 = l_Lean_Elab_Tactic_evalIntro___closed__3; -x_353 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_353, 0, x_351); +lean_object* x_269; lean_object* x_270; lean_object* x_271; lean_object* x_272; lean_object* x_273; lean_object* x_274; lean_object* x_275; lean_object* x_276; lean_object* x_277; lean_object* x_278; lean_object* x_279; lean_object* x_280; lean_object* x_281; lean_object* x_282; lean_object* x_283; lean_object* x_284; lean_object* x_285; lean_object* x_286; lean_object* x_287; lean_object* x_288; lean_object* x_289; lean_object* x_290; lean_object* x_291; lean_object* x_292; lean_object* x_293; lean_object* x_294; lean_object* x_295; lean_object* x_296; lean_object* x_297; lean_object* x_298; lean_object* x_299; lean_object* x_300; lean_object* x_301; lean_object* x_302; lean_object* x_303; lean_object* x_304; lean_object* x_305; lean_object* x_306; lean_object* x_307; lean_object* x_308; lean_object* x_309; lean_object* x_310; lean_object* x_311; lean_object* x_312; lean_object* x_313; lean_object* x_314; lean_object* x_315; lean_object* x_316; lean_object* x_317; lean_object* x_318; lean_object* x_319; lean_object* x_320; lean_object* x_321; lean_object* x_322; lean_object* x_323; lean_object* x_324; lean_object* x_325; lean_object* x_326; lean_object* x_327; lean_object* x_328; lean_object* x_329; lean_object* x_330; lean_object* x_331; lean_object* x_332; lean_object* x_333; lean_object* x_334; lean_object* x_335; lean_object* x_336; lean_object* x_337; lean_object* x_338; lean_object* x_339; lean_object* x_340; lean_object* x_341; lean_object* x_342; lean_object* x_343; lean_object* x_344; lean_object* x_345; lean_object* x_346; lean_object* x_347; lean_object* x_348; lean_object* x_349; lean_object* x_350; lean_object* x_351; lean_object* x_352; lean_object* x_353; lean_object* x_354; lean_object* x_355; lean_object* x_356; lean_object* x_357; lean_object* x_358; lean_object* x_359; lean_object* x_360; lean_object* x_361; lean_object* x_362; lean_object* x_363; lean_object* x_364; lean_object* x_365; lean_object* x_366; lean_object* x_367; lean_object* x_368; 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; uint8_t x_392; +x_269 = lean_ctor_get(x_80, 0); +x_270 = lean_ctor_get(x_80, 1); +lean_inc(x_270); +lean_inc(x_269); +lean_dec(x_80); +x_271 = l_Lean_Elab_Tactic_evalIntro___closed__4; +lean_inc(x_78); +lean_inc(x_269); +x_272 = l_Lean_addMacroScope(x_269, x_271, x_78); +x_273 = lean_box(0); +x_274 = l_Lean_instInhabitedSourceInfo___closed__1; +x_275 = l_Lean_Elab_Tactic_evalIntro___closed__3; +x_276 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_276, 0, x_274); +lean_ctor_set(x_276, 1, x_275); +lean_ctor_set(x_276, 2, x_272); +lean_ctor_set(x_276, 3, x_273); +x_277 = l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__9; +lean_inc(x_276); +x_278 = lean_array_push(x_277, x_276); +x_279 = l_myMacro____x40_Init_Notation___hyg_12315____closed__10; +x_280 = lean_array_push(x_278, x_279); +x_281 = l_Array_empty___closed__1; +x_282 = lean_array_push(x_281, x_60); +x_283 = l___private_Init_NotationExtra_0__Lean_mkHintBody___closed__2; +lean_inc(x_282); +x_284 = lean_array_push(x_282, x_283); +lean_inc(x_61); +x_285 = lean_array_push(x_284, x_61); +x_286 = l_term___x3d_____closed__2; +x_287 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_287, 0, x_286); +lean_ctor_set(x_287, 1, x_285); +x_288 = lean_array_push(x_280, x_287); +x_289 = l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__11; +x_290 = lean_array_push(x_288, x_289); +x_291 = lean_array_push(x_281, x_276); +x_292 = l_Lean_nullKind___closed__2; +lean_inc(x_291); +x_293 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_293, 0, x_292); +lean_ctor_set(x_293, 1, x_291); +x_294 = l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__16; +x_295 = lean_array_push(x_294, x_293); +x_296 = l_Lean_Parser_Tactic_subst___closed__2; +x_297 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_297, 0, x_296); +lean_ctor_set(x_297, 1, x_295); +x_298 = lean_array_push(x_281, x_297); +x_299 = l_myMacro____x40_Init_Notation___hyg_12942____closed__18; +x_300 = lean_array_push(x_298, x_299); +x_301 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_301, 0, x_292); +lean_ctor_set(x_301, 1, x_300); +x_302 = lean_array_push(x_281, x_301); +x_303 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14290____closed__2; +x_304 = lean_array_push(x_303, x_75); +x_305 = l_Lean_Parser_Tactic_exact___closed__2; +x_306 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_306, 0, x_305); +lean_ctor_set(x_306, 1, x_304); +x_307 = lean_array_push(x_281, x_306); +x_308 = l_myMacro____x40_Init_Notation___hyg_1130____closed__23; +x_309 = lean_array_push(x_307, x_308); +x_310 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_310, 0, x_292); +lean_ctor_set(x_310, 1, x_309); +x_311 = lean_array_push(x_302, x_310); +x_312 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_312, 0, x_292); +lean_ctor_set(x_312, 1, x_311); +x_313 = lean_array_push(x_281, x_312); +x_314 = l___private_Init_Notation_0__Lean_Parser_Tactic_withCheapRefl___closed__5; +x_315 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_315, 0, x_314); +lean_ctor_set(x_315, 1, x_313); +x_316 = lean_array_push(x_281, x_315); +x_317 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14110____closed__3; +x_318 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_318, 0, x_317); +lean_ctor_set(x_318, 1, x_316); +x_319 = l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__14; +x_320 = lean_array_push(x_319, x_318); +x_321 = l___regBuiltin_Lean_Elab_Term_elabByTactic___closed__2; +x_322 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_322, 0, x_321); +lean_ctor_set(x_322, 1, x_320); +x_323 = lean_array_push(x_290, x_322); +x_324 = l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__18; +x_325 = lean_array_push(x_323, x_324); +x_326 = l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__21; +lean_inc(x_78); +lean_inc(x_269); +x_327 = l_Lean_addMacroScope(x_269, x_326, x_78); +x_328 = l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__20; +x_329 = l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__23; +x_330 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_330, 0, x_274); +lean_ctor_set(x_330, 1, x_328); +lean_ctor_set(x_330, 2, x_327); +lean_ctor_set(x_330, 3, x_329); +x_331 = lean_array_push(x_281, x_330); +x_332 = l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__27; +x_333 = l_Lean_addMacroScope(x_269, x_332, x_78); +x_334 = l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__26; +x_335 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_335, 0, x_274); +lean_ctor_set(x_335, 1, x_334); +lean_ctor_set(x_335, 2, x_333); +lean_ctor_set(x_335, 3, x_273); +lean_inc(x_335); +x_336 = lean_array_push(x_281, x_335); +x_337 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_337, 0, x_292); +lean_ctor_set(x_337, 1, x_336); +x_338 = l_myMacro____x40_Init_NotationExtra___hyg_2680____closed__10; +x_339 = lean_array_push(x_338, x_337); +x_340 = l_Lean_Parser_Tactic_intro___closed__4; +x_341 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_341, 0, x_340); +lean_ctor_set(x_341, 1, x_339); +x_342 = lean_array_push(x_281, x_341); +x_343 = lean_array_push(x_342, x_299); +x_344 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_344, 0, x_292); +lean_ctor_set(x_344, 1, x_343); +x_345 = lean_array_push(x_281, x_344); +x_346 = l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__29; +x_347 = lean_array_push(x_346, x_335); +x_348 = lean_array_push(x_347, x_308); +x_349 = l_Lean_Parser_Tactic_injection___closed__2; +x_350 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_350, 0, x_349); +lean_ctor_set(x_350, 1, x_348); +x_351 = lean_array_push(x_281, x_350); +x_352 = lean_array_push(x_351, x_299); +x_353 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_353, 0, x_292); lean_ctor_set(x_353, 1, x_352); -lean_ctor_set(x_353, 2, x_349); -lean_ctor_set(x_353, 3, x_350); -x_354 = l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__9; -lean_inc(x_353); -x_355 = lean_array_push(x_354, x_353); -x_356 = l_myMacro____x40_Init_Notation___hyg_12315____closed__10; -x_357 = lean_array_push(x_355, x_356); -x_358 = l_Array_empty___closed__1; -x_359 = lean_array_push(x_358, x_62); -x_360 = l___private_Init_NotationExtra_0__Lean_mkHintBody___closed__2; -x_361 = lean_array_push(x_359, x_360); -x_362 = lean_array_push(x_361, x_63); -x_363 = l_term___x3d_____closed__2; -x_364 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_364, 0, x_363); -lean_ctor_set(x_364, 1, x_362); -x_365 = lean_array_push(x_357, x_364); -x_366 = l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__11; -x_367 = lean_array_push(x_365, x_366); -x_368 = lean_array_push(x_358, x_353); -x_369 = l_Lean_nullKind___closed__2; -lean_inc(x_368); -x_370 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_370, 0, x_369); -lean_ctor_set(x_370, 1, x_368); -x_371 = l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__16; -x_372 = lean_array_push(x_371, x_370); -x_373 = l_Lean_Parser_Tactic_subst___closed__2; -x_374 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_374, 0, x_373); -lean_ctor_set(x_374, 1, x_372); -x_375 = lean_array_push(x_358, x_374); -x_376 = l_myMacro____x40_Init_Notation___hyg_12942____closed__18; -x_377 = lean_array_push(x_375, x_376); +x_354 = lean_array_push(x_345, x_353); +x_355 = l_Lean_expandExplicitBindersAux_loop___closed__2; +x_356 = lean_array_push(x_291, x_355); +x_357 = l_myMacro____x40_Init_Notation___hyg_2022____closed__4; +x_358 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_358, 0, x_357); +lean_ctor_set(x_358, 1, x_356); +x_359 = l_myMacro____x40_Init_NotationExtra___hyg_2680____closed__2; +x_360 = lean_array_push(x_359, x_358); +x_361 = l_Lean_Parser_Tactic_apply___closed__2; +x_362 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_362, 0, x_361); +lean_ctor_set(x_362, 1, x_360); +x_363 = lean_array_push(x_281, x_362); +x_364 = lean_array_push(x_363, x_299); +x_365 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_365, 0, x_292); +lean_ctor_set(x_365, 1, x_364); +x_366 = lean_array_push(x_354, x_365); +x_367 = l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__35; +x_368 = lean_array_push(x_366, x_367); +x_369 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_369, 0, x_292); +lean_ctor_set(x_369, 1, x_368); +x_370 = lean_array_push(x_281, x_369); +x_371 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_371, 0, x_314); +lean_ctor_set(x_371, 1, x_370); +x_372 = lean_array_push(x_281, x_371); +x_373 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_373, 0, x_317); +lean_ctor_set(x_373, 1, x_372); +x_374 = lean_array_push(x_319, x_373); +x_375 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_375, 0, x_321); +lean_ctor_set(x_375, 1, x_374); +x_376 = lean_array_push(x_281, x_375); +x_377 = lean_array_push(x_376, x_308); x_378 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_378, 0, x_369); +lean_ctor_set(x_378, 0, x_292); lean_ctor_set(x_378, 1, x_377); -x_379 = lean_array_push(x_358, x_378); -x_380 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14290____closed__2; -x_381 = lean_array_push(x_380, x_339); -x_382 = l_Lean_Parser_Tactic_exact___closed__2; -x_383 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_383, 0, x_382); -lean_ctor_set(x_383, 1, x_381); -x_384 = lean_array_push(x_358, x_383); -x_385 = l_myMacro____x40_Init_Notation___hyg_1130____closed__23; -x_386 = lean_array_push(x_384, x_385); -x_387 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_387, 0, x_369); -lean_ctor_set(x_387, 1, x_386); -x_388 = lean_array_push(x_379, x_387); -x_389 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_389, 0, x_369); -lean_ctor_set(x_389, 1, x_388); -x_390 = lean_array_push(x_358, x_389); -x_391 = l___private_Init_Notation_0__Lean_Parser_Tactic_withCheapRefl___closed__5; -x_392 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_392, 0, x_391); -lean_ctor_set(x_392, 1, x_390); -x_393 = lean_array_push(x_358, x_392); -x_394 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14110____closed__3; -x_395 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_395, 0, x_394); -lean_ctor_set(x_395, 1, x_393); -x_396 = l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__14; -x_397 = lean_array_push(x_396, x_395); -x_398 = l___regBuiltin_Lean_Elab_Term_elabByTactic___closed__2; -x_399 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_399, 0, x_398); -lean_ctor_set(x_399, 1, x_397); -x_400 = lean_array_push(x_367, x_399); -x_401 = l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__18; -x_402 = lean_array_push(x_400, x_401); -x_403 = l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__21; -lean_inc(x_342); -lean_inc(x_345); -x_404 = l_Lean_addMacroScope(x_345, x_403, x_342); -x_405 = l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__20; -x_406 = l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__23; -x_407 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_407, 0, x_351); -lean_ctor_set(x_407, 1, x_405); -lean_ctor_set(x_407, 2, x_404); -lean_ctor_set(x_407, 3, x_406); -x_408 = lean_array_push(x_358, x_407); -x_409 = l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__27; -x_410 = l_Lean_addMacroScope(x_345, x_409, x_342); -x_411 = l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__26; -x_412 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_412, 0, x_351); -lean_ctor_set(x_412, 1, x_411); -lean_ctor_set(x_412, 2, x_410); -lean_ctor_set(x_412, 3, x_350); -lean_inc(x_412); -x_413 = lean_array_push(x_358, x_412); -x_414 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_414, 0, x_369); -lean_ctor_set(x_414, 1, x_413); -x_415 = l_myMacro____x40_Init_NotationExtra___hyg_2680____closed__10; -x_416 = lean_array_push(x_415, x_414); -x_417 = l_Lean_Parser_Tactic_intro___closed__4; +x_379 = l_myMacro____x40_Init_Notation___hyg_11187____closed__9; +x_380 = lean_array_push(x_379, x_378); +x_381 = l_myMacro____x40_Init_Notation___hyg_658____closed__8; +x_382 = lean_array_push(x_380, x_381); +x_383 = l_myMacro____x40_Init_Notation___hyg_11187____closed__8; +x_384 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_384, 0, x_383); +lean_ctor_set(x_384, 1, x_382); +x_385 = lean_array_push(x_281, x_384); +x_386 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_386, 0, x_292); +lean_ctor_set(x_386, 1, x_385); +x_387 = lean_array_push(x_331, x_386); +x_388 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_388, 0, x_357); +lean_ctor_set(x_388, 1, x_387); +x_389 = lean_array_push(x_325, x_388); +x_390 = l_termIf_____x3a__Then__Else_____closed__2; +x_391 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_391, 0, x_390); +lean_ctor_set(x_391, 1, x_389); +x_392 = lean_unbox(x_62); +lean_dec(x_62); +if (x_392 == 0) +{ +lean_object* x_393; +lean_dec(x_282); +lean_dec(x_3); +lean_dec(x_61); +lean_dec(x_1); +x_393 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_393, 0, x_391); +lean_ctor_set(x_393, 1, x_270); +return x_393; +} +else +{ +lean_object* x_394; lean_object* x_395; lean_object* x_396; lean_object* x_397; lean_object* x_398; lean_object* x_399; lean_object* x_400; lean_object* x_401; lean_object* x_402; lean_object* x_403; lean_object* x_404; lean_object* x_405; lean_object* x_406; lean_object* x_407; lean_object* x_408; lean_object* x_409; lean_object* x_410; lean_object* x_411; lean_object* x_412; lean_object* x_413; lean_object* x_414; lean_object* x_415; lean_object* x_416; lean_object* x_417; lean_object* x_418; lean_object* x_419; lean_object* x_420; lean_object* x_421; lean_object* x_422; lean_object* x_423; lean_object* x_424; lean_object* x_425; lean_object* x_426; lean_object* x_427; lean_object* x_428; +x_394 = l_Lean_Elab_Term_getCurrMacroScope(x_3, x_4, x_5, x_6, x_7, x_8, x_270); +lean_dec(x_3); +x_395 = lean_ctor_get(x_394, 0); +lean_inc(x_395); +x_396 = lean_ctor_get(x_394, 1); +lean_inc(x_396); +lean_dec(x_394); +x_397 = l_Lean_Elab_Term_getMainModule___rarg(x_8, x_396); +x_398 = lean_ctor_get(x_397, 0); +lean_inc(x_398); +x_399 = lean_ctor_get(x_397, 1); +lean_inc(x_399); +if (lean_is_exclusive(x_397)) { + lean_ctor_release(x_397, 0); + lean_ctor_release(x_397, 1); + x_400 = x_397; +} else { + lean_dec_ref(x_397); + x_400 = lean_box(0); +} +x_401 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandOptIdent___closed__2; +x_402 = l_Lean_addMacroScope(x_398, x_401, x_395); +x_403 = l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__37; +x_404 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_404, 0, x_274); +lean_ctor_set(x_404, 1, x_403); +lean_ctor_set(x_404, 2, x_402); +lean_ctor_set(x_404, 3, x_273); +x_405 = lean_array_push(x_281, x_404); +x_406 = lean_array_push(x_405, x_308); +x_407 = lean_array_push(x_406, x_308); +x_408 = l_myMacro____x40_Init_Notation___hyg_12942____closed__14; +x_409 = lean_array_push(x_407, x_408); +x_410 = lean_mk_syntax_ident(x_1); +x_411 = lean_array_push(x_281, x_410); +x_412 = lean_array_push(x_282, x_61); +x_413 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_413, 0, x_292); +lean_ctor_set(x_413, 1, x_412); +x_414 = lean_array_push(x_411, x_413); +x_415 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_415, 0, x_357); +lean_ctor_set(x_415, 1, x_414); +x_416 = lean_array_push(x_409, x_415); +x_417 = l_myMacro____x40_Init_Notation___hyg_12942____closed__8; x_418 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_418, 0, x_417); lean_ctor_set(x_418, 1, x_416); -x_419 = lean_array_push(x_358, x_418); -x_420 = lean_array_push(x_419, x_376); +x_419 = lean_array_push(x_281, x_418); +x_420 = l_myMacro____x40_Init_Notation___hyg_12942____closed__6; x_421 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_421, 0, x_369); -lean_ctor_set(x_421, 1, x_420); -x_422 = lean_array_push(x_358, x_421); -x_423 = l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__29; -x_424 = lean_array_push(x_423, x_412); -x_425 = lean_array_push(x_424, x_385); -x_426 = l_Lean_Parser_Tactic_injection___closed__2; +lean_ctor_set(x_421, 0, x_420); +lean_ctor_set(x_421, 1, x_419); +x_422 = l_myMacro____x40_Init_Notation___hyg_12942____closed__4; +x_423 = lean_array_push(x_422, x_421); +x_424 = lean_array_push(x_423, x_299); +x_425 = lean_array_push(x_424, x_391); +x_426 = l_myMacro____x40_Init_Notation___hyg_12942____closed__2; x_427 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_427, 0, x_426); lean_ctor_set(x_427, 1, x_425); -x_428 = lean_array_push(x_358, x_427); -x_429 = lean_array_push(x_428, x_376); -x_430 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_430, 0, x_369); -lean_ctor_set(x_430, 1, x_429); -x_431 = lean_array_push(x_422, x_430); -x_432 = l_Lean_expandExplicitBindersAux_loop___closed__2; -x_433 = lean_array_push(x_368, x_432); -x_434 = l_myMacro____x40_Init_Notation___hyg_2022____closed__4; -x_435 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_435, 0, x_434); -lean_ctor_set(x_435, 1, x_433); -x_436 = l_myMacro____x40_Init_NotationExtra___hyg_2680____closed__2; -x_437 = lean_array_push(x_436, x_435); -x_438 = l_Lean_Parser_Tactic_apply___closed__2; -x_439 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_439, 0, x_438); -lean_ctor_set(x_439, 1, x_437); -x_440 = lean_array_push(x_358, x_439); -x_441 = lean_array_push(x_440, x_376); -x_442 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_442, 0, x_369); -lean_ctor_set(x_442, 1, x_441); -x_443 = lean_array_push(x_431, x_442); -x_444 = l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__35; -x_445 = lean_array_push(x_443, x_444); -x_446 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_446, 0, x_369); -lean_ctor_set(x_446, 1, x_445); -x_447 = lean_array_push(x_358, x_446); -x_448 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_448, 0, x_391); -lean_ctor_set(x_448, 1, x_447); -x_449 = lean_array_push(x_358, x_448); -x_450 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_450, 0, x_394); -lean_ctor_set(x_450, 1, x_449); -x_451 = lean_array_push(x_396, x_450); -x_452 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_452, 0, x_398); -lean_ctor_set(x_452, 1, x_451); -x_453 = lean_array_push(x_358, x_452); -x_454 = lean_array_push(x_453, x_385); -x_455 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_455, 0, x_369); -lean_ctor_set(x_455, 1, x_454); -x_456 = l_myMacro____x40_Init_Notation___hyg_11187____closed__9; -x_457 = lean_array_push(x_456, x_455); -x_458 = l_myMacro____x40_Init_Notation___hyg_658____closed__8; -x_459 = lean_array_push(x_457, x_458); -x_460 = l_myMacro____x40_Init_Notation___hyg_11187____closed__8; -x_461 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_461, 0, x_460); -lean_ctor_set(x_461, 1, x_459); -x_462 = lean_array_push(x_358, x_461); -x_463 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_463, 0, x_369); -lean_ctor_set(x_463, 1, x_462); -x_464 = lean_array_push(x_408, x_463); -x_465 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_465, 0, x_434); -lean_ctor_set(x_465, 1, x_464); -x_466 = lean_array_push(x_402, x_465); -x_467 = l_termIf_____x3a__Then__Else_____closed__2; -x_468 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_468, 0, x_467); -lean_ctor_set(x_468, 1, x_466); -if (lean_is_scalar(x_347)) { - x_469 = lean_alloc_ctor(0, 2, 0); +if (lean_is_scalar(x_400)) { + x_428 = lean_alloc_ctor(0, 2, 0); } else { - x_469 = x_347; + x_428 = x_400; +} +lean_ctor_set(x_428, 0, x_427); +lean_ctor_set(x_428, 1, x_399); +return x_428; } -lean_ctor_set(x_469, 0, x_468); -lean_ctor_set(x_469, 1, x_346); -return x_469; } } 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; lean_object* x_476; lean_object* x_477; lean_object* x_478; lean_object* x_479; lean_object* x_480; lean_object* x_481; lean_object* x_482; uint8_t x_483; uint8_t x_484; uint8_t x_485; lean_object* x_486; lean_object* x_487; lean_object* x_488; lean_object* x_489; lean_object* x_490; lean_object* x_491; lean_object* x_492; lean_object* x_493; lean_object* x_494; lean_object* x_495; lean_object* x_496; lean_object* x_497; lean_object* x_498; lean_object* x_499; lean_object* x_500; lean_object* x_501; lean_object* x_502; lean_object* x_503; lean_object* x_504; lean_object* x_505; lean_object* x_506; lean_object* x_507; lean_object* x_508; lean_object* x_509; lean_object* x_510; lean_object* x_511; lean_object* x_512; lean_object* x_513; lean_object* x_514; lean_object* x_515; lean_object* x_516; lean_object* x_517; lean_object* x_518; lean_object* x_519; lean_object* x_520; lean_object* x_521; lean_object* x_522; lean_object* x_523; lean_object* x_524; lean_object* x_525; lean_object* x_526; lean_object* x_527; lean_object* x_528; lean_object* x_529; lean_object* x_530; lean_object* x_531; lean_object* x_532; lean_object* x_533; lean_object* x_534; lean_object* x_535; lean_object* x_536; lean_object* x_537; lean_object* x_538; lean_object* x_539; lean_object* x_540; lean_object* x_541; lean_object* x_542; lean_object* x_543; lean_object* x_544; lean_object* x_545; lean_object* x_546; lean_object* x_547; lean_object* x_548; lean_object* x_549; lean_object* x_550; lean_object* x_551; lean_object* x_552; lean_object* x_553; lean_object* x_554; lean_object* x_555; lean_object* x_556; lean_object* x_557; lean_object* x_558; lean_object* x_559; lean_object* x_560; lean_object* x_561; lean_object* x_562; lean_object* x_563; lean_object* x_564; lean_object* x_565; lean_object* x_566; lean_object* x_567; lean_object* x_568; lean_object* x_569; lean_object* x_570; lean_object* x_571; lean_object* x_572; lean_object* x_573; lean_object* x_574; lean_object* x_575; lean_object* x_576; lean_object* x_577; lean_object* x_578; lean_object* x_579; lean_object* x_580; lean_object* x_581; lean_object* x_582; lean_object* x_583; lean_object* x_584; lean_object* x_585; lean_object* x_586; lean_object* x_587; lean_object* x_588; lean_object* x_589; lean_object* x_590; lean_object* x_591; lean_object* x_592; lean_object* x_593; lean_object* x_594; lean_object* x_595; lean_object* x_596; lean_object* x_597; lean_object* x_598; lean_object* x_599; lean_object* x_600; lean_object* x_601; lean_object* x_602; lean_object* x_603; lean_object* x_604; lean_object* x_605; lean_object* x_606; lean_object* x_607; lean_object* x_608; lean_object* x_609; lean_object* x_610; lean_object* x_611; lean_object* x_612; lean_object* x_613; lean_object* x_614; lean_object* x_615; lean_object* x_616; lean_object* x_617; lean_object* x_618; lean_object* x_619; lean_object* x_620; -x_470 = lean_ctor_get(x_65, 0); -x_471 = lean_ctor_get(x_65, 1); -x_472 = lean_ctor_get(x_65, 2); -x_473 = lean_ctor_get(x_65, 3); -lean_inc(x_473); -lean_inc(x_472); -lean_inc(x_471); -lean_inc(x_470); -lean_dec(x_65); -x_474 = lean_unsigned_to_nat(1u); -x_475 = lean_nat_add(x_471, x_474); -x_476 = lean_alloc_ctor(0, 4, 0); -lean_ctor_set(x_476, 0, x_470); -lean_ctor_set(x_476, 1, x_475); -lean_ctor_set(x_476, 2, x_472); -lean_ctor_set(x_476, 3, x_473); -x_477 = lean_st_ref_set(x_8, x_476, x_66); -x_478 = lean_ctor_get(x_477, 1); -lean_inc(x_478); -lean_dec(x_477); -x_479 = lean_ctor_get(x_3, 0); -lean_inc(x_479); -x_480 = lean_ctor_get(x_3, 1); -lean_inc(x_480); -x_481 = lean_ctor_get(x_3, 2); -lean_inc(x_481); -x_482 = lean_ctor_get(x_3, 3); -lean_inc(x_482); -x_483 = lean_ctor_get_uint8(x_3, sizeof(void*)*6); -x_484 = lean_ctor_get_uint8(x_3, sizeof(void*)*6 + 1); -x_485 = lean_ctor_get_uint8(x_3, sizeof(void*)*6 + 2); -x_486 = lean_ctor_get(x_3, 5); -lean_inc(x_486); +lean_object* x_429; lean_object* x_430; lean_object* x_431; lean_object* x_432; uint8_t x_433; uint8_t 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; lean_object* x_446; lean_object* x_447; lean_object* x_448; lean_object* x_449; lean_object* x_450; lean_object* x_451; lean_object* x_452; lean_object* x_453; lean_object* x_454; lean_object* x_455; lean_object* x_456; lean_object* x_457; lean_object* x_458; lean_object* x_459; lean_object* x_460; lean_object* x_461; lean_object* x_462; lean_object* x_463; lean_object* x_464; lean_object* x_465; lean_object* x_466; lean_object* x_467; lean_object* x_468; lean_object* x_469; lean_object* x_470; lean_object* x_471; lean_object* x_472; lean_object* x_473; lean_object* x_474; lean_object* x_475; lean_object* x_476; lean_object* x_477; lean_object* x_478; lean_object* x_479; lean_object* x_480; lean_object* x_481; lean_object* x_482; lean_object* x_483; lean_object* x_484; lean_object* x_485; lean_object* x_486; lean_object* x_487; lean_object* x_488; lean_object* x_489; lean_object* x_490; lean_object* x_491; lean_object* x_492; lean_object* x_493; lean_object* x_494; lean_object* x_495; lean_object* x_496; lean_object* x_497; lean_object* x_498; lean_object* x_499; lean_object* x_500; lean_object* x_501; lean_object* x_502; lean_object* x_503; lean_object* x_504; lean_object* x_505; lean_object* x_506; lean_object* x_507; lean_object* x_508; lean_object* x_509; lean_object* x_510; lean_object* x_511; lean_object* x_512; lean_object* x_513; lean_object* x_514; lean_object* x_515; lean_object* x_516; lean_object* x_517; lean_object* x_518; lean_object* x_519; lean_object* x_520; lean_object* x_521; lean_object* x_522; lean_object* x_523; lean_object* x_524; lean_object* x_525; lean_object* x_526; lean_object* x_527; lean_object* x_528; lean_object* x_529; lean_object* x_530; lean_object* x_531; lean_object* x_532; lean_object* x_533; lean_object* x_534; lean_object* x_535; lean_object* x_536; lean_object* x_537; lean_object* x_538; lean_object* x_539; lean_object* x_540; lean_object* x_541; lean_object* x_542; lean_object* x_543; lean_object* x_544; lean_object* x_545; lean_object* x_546; lean_object* x_547; lean_object* x_548; lean_object* x_549; lean_object* x_550; lean_object* x_551; lean_object* x_552; lean_object* x_553; lean_object* x_554; lean_object* x_555; lean_object* x_556; lean_object* x_557; lean_object* x_558; lean_object* x_559; lean_object* x_560; lean_object* x_561; lean_object* x_562; lean_object* x_563; lean_object* x_564; lean_object* x_565; lean_object* x_566; lean_object* x_567; lean_object* x_568; uint8_t x_569; +x_429 = lean_ctor_get(x_3, 0); +x_430 = lean_ctor_get(x_3, 1); +x_431 = lean_ctor_get(x_3, 2); +x_432 = lean_ctor_get(x_3, 3); +x_433 = lean_ctor_get_uint8(x_3, sizeof(void*)*6); +x_434 = lean_ctor_get_uint8(x_3, sizeof(void*)*6 + 1); +x_435 = lean_ctor_get_uint8(x_3, sizeof(void*)*6 + 2); +x_436 = lean_ctor_get(x_3, 5); +lean_inc(x_436); +lean_inc(x_432); +lean_inc(x_431); +lean_inc(x_430); +lean_inc(x_429); +lean_dec(x_3); +x_437 = lean_alloc_ctor(0, 6, 3); +lean_ctor_set(x_437, 0, x_429); +lean_ctor_set(x_437, 1, x_430); +lean_ctor_set(x_437, 2, x_431); +lean_ctor_set(x_437, 3, x_432); +lean_ctor_set(x_437, 4, x_67); +lean_ctor_set(x_437, 5, x_436); +lean_ctor_set_uint8(x_437, sizeof(void*)*6, x_433); +lean_ctor_set_uint8(x_437, sizeof(void*)*6 + 1, x_434); +lean_ctor_set_uint8(x_437, sizeof(void*)*6 + 2, x_435); +lean_inc(x_437); +lean_inc(x_1); +x_438 = l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs(x_1, x_59, x_437, x_4, x_5, x_6, x_7, x_8, x_71); +x_439 = lean_ctor_get(x_438, 0); +lean_inc(x_439); +x_440 = lean_ctor_get(x_438, 1); +lean_inc(x_440); +lean_dec(x_438); +x_441 = l_Lean_Elab_Term_getCurrMacroScope(x_437, x_4, x_5, x_6, x_7, x_8, x_440); +x_442 = lean_ctor_get(x_441, 0); +lean_inc(x_442); +x_443 = lean_ctor_get(x_441, 1); +lean_inc(x_443); +lean_dec(x_441); +x_444 = l_Lean_Elab_Term_getMainModule___rarg(x_8, x_443); +x_445 = lean_ctor_get(x_444, 0); +lean_inc(x_445); +x_446 = lean_ctor_get(x_444, 1); +lean_inc(x_446); +if (lean_is_exclusive(x_444)) { + lean_ctor_release(x_444, 0); + lean_ctor_release(x_444, 1); + x_447 = x_444; +} else { + lean_dec_ref(x_444); + x_447 = lean_box(0); +} +x_448 = l_Lean_Elab_Tactic_evalIntro___closed__4; +lean_inc(x_442); +lean_inc(x_445); +x_449 = l_Lean_addMacroScope(x_445, x_448, x_442); +x_450 = lean_box(0); +x_451 = l_Lean_instInhabitedSourceInfo___closed__1; +x_452 = l_Lean_Elab_Tactic_evalIntro___closed__3; +x_453 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_453, 0, x_451); +lean_ctor_set(x_453, 1, x_452); +lean_ctor_set(x_453, 2, x_449); +lean_ctor_set(x_453, 3, x_450); +x_454 = l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__9; +lean_inc(x_453); +x_455 = lean_array_push(x_454, x_453); +x_456 = l_myMacro____x40_Init_Notation___hyg_12315____closed__10; +x_457 = lean_array_push(x_455, x_456); +x_458 = l_Array_empty___closed__1; +x_459 = lean_array_push(x_458, x_60); +x_460 = l___private_Init_NotationExtra_0__Lean_mkHintBody___closed__2; +lean_inc(x_459); +x_461 = lean_array_push(x_459, x_460); +lean_inc(x_61); +x_462 = lean_array_push(x_461, x_61); +x_463 = l_term___x3d_____closed__2; +x_464 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_464, 0, x_463); +lean_ctor_set(x_464, 1, x_462); +x_465 = lean_array_push(x_457, x_464); +x_466 = l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__11; +x_467 = lean_array_push(x_465, x_466); +x_468 = lean_array_push(x_458, x_453); +x_469 = l_Lean_nullKind___closed__2; +lean_inc(x_468); +x_470 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_470, 0, x_469); +lean_ctor_set(x_470, 1, x_468); +x_471 = l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__16; +x_472 = lean_array_push(x_471, x_470); +x_473 = l_Lean_Parser_Tactic_subst___closed__2; +x_474 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_474, 0, x_473); +lean_ctor_set(x_474, 1, x_472); +x_475 = lean_array_push(x_458, x_474); +x_476 = l_myMacro____x40_Init_Notation___hyg_12942____closed__18; +x_477 = lean_array_push(x_475, x_476); +x_478 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_478, 0, x_469); +lean_ctor_set(x_478, 1, x_477); +x_479 = lean_array_push(x_458, x_478); +x_480 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14290____closed__2; +x_481 = lean_array_push(x_480, x_439); +x_482 = l_Lean_Parser_Tactic_exact___closed__2; +x_483 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_483, 0, x_482); +lean_ctor_set(x_483, 1, x_481); +x_484 = lean_array_push(x_458, x_483); +x_485 = l_myMacro____x40_Init_Notation___hyg_1130____closed__23; +x_486 = lean_array_push(x_484, x_485); +x_487 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_487, 0, x_469); +lean_ctor_set(x_487, 1, x_486); +x_488 = lean_array_push(x_479, x_487); +x_489 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_489, 0, x_469); +lean_ctor_set(x_489, 1, x_488); +x_490 = lean_array_push(x_458, x_489); +x_491 = l___private_Init_Notation_0__Lean_Parser_Tactic_withCheapRefl___closed__5; +x_492 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_492, 0, x_491); +lean_ctor_set(x_492, 1, x_490); +x_493 = lean_array_push(x_458, x_492); +x_494 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14110____closed__3; +x_495 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_495, 0, x_494); +lean_ctor_set(x_495, 1, x_493); +x_496 = l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__14; +x_497 = lean_array_push(x_496, x_495); +x_498 = l___regBuiltin_Lean_Elab_Term_elabByTactic___closed__2; +x_499 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_499, 0, x_498); +lean_ctor_set(x_499, 1, x_497); +x_500 = lean_array_push(x_467, x_499); +x_501 = l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__18; +x_502 = lean_array_push(x_500, x_501); +x_503 = l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__21; +lean_inc(x_442); +lean_inc(x_445); +x_504 = l_Lean_addMacroScope(x_445, x_503, x_442); +x_505 = l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__20; +x_506 = l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__23; +x_507 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_507, 0, x_451); +lean_ctor_set(x_507, 1, x_505); +lean_ctor_set(x_507, 2, x_504); +lean_ctor_set(x_507, 3, x_506); +x_508 = lean_array_push(x_458, x_507); +x_509 = l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__27; +x_510 = l_Lean_addMacroScope(x_445, x_509, x_442); +x_511 = l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__26; +x_512 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_512, 0, x_451); +lean_ctor_set(x_512, 1, x_511); +lean_ctor_set(x_512, 2, x_510); +lean_ctor_set(x_512, 3, x_450); +lean_inc(x_512); +x_513 = lean_array_push(x_458, x_512); +x_514 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_514, 0, x_469); +lean_ctor_set(x_514, 1, x_513); +x_515 = l_myMacro____x40_Init_NotationExtra___hyg_2680____closed__10; +x_516 = lean_array_push(x_515, x_514); +x_517 = l_Lean_Parser_Tactic_intro___closed__4; +x_518 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_518, 0, x_517); +lean_ctor_set(x_518, 1, x_516); +x_519 = lean_array_push(x_458, x_518); +x_520 = lean_array_push(x_519, x_476); +x_521 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_521, 0, x_469); +lean_ctor_set(x_521, 1, x_520); +x_522 = lean_array_push(x_458, x_521); +x_523 = l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__29; +x_524 = lean_array_push(x_523, x_512); +x_525 = lean_array_push(x_524, x_485); +x_526 = l_Lean_Parser_Tactic_injection___closed__2; +x_527 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_527, 0, x_526); +lean_ctor_set(x_527, 1, x_525); +x_528 = lean_array_push(x_458, x_527); +x_529 = lean_array_push(x_528, x_476); +x_530 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_530, 0, x_469); +lean_ctor_set(x_530, 1, x_529); +x_531 = lean_array_push(x_522, x_530); +x_532 = l_Lean_expandExplicitBindersAux_loop___closed__2; +x_533 = lean_array_push(x_468, x_532); +x_534 = l_myMacro____x40_Init_Notation___hyg_2022____closed__4; +x_535 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_535, 0, x_534); +lean_ctor_set(x_535, 1, x_533); +x_536 = l_myMacro____x40_Init_NotationExtra___hyg_2680____closed__2; +x_537 = lean_array_push(x_536, x_535); +x_538 = l_Lean_Parser_Tactic_apply___closed__2; +x_539 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_539, 0, x_538); +lean_ctor_set(x_539, 1, x_537); +x_540 = lean_array_push(x_458, x_539); +x_541 = lean_array_push(x_540, x_476); +x_542 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_542, 0, x_469); +lean_ctor_set(x_542, 1, x_541); +x_543 = lean_array_push(x_531, x_542); +x_544 = l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__35; +x_545 = lean_array_push(x_543, x_544); +x_546 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_546, 0, x_469); +lean_ctor_set(x_546, 1, x_545); +x_547 = lean_array_push(x_458, x_546); +x_548 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_548, 0, x_491); +lean_ctor_set(x_548, 1, x_547); +x_549 = lean_array_push(x_458, x_548); +x_550 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_550, 0, x_494); +lean_ctor_set(x_550, 1, x_549); +x_551 = lean_array_push(x_496, x_550); +x_552 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_552, 0, x_498); +lean_ctor_set(x_552, 1, x_551); +x_553 = lean_array_push(x_458, x_552); +x_554 = lean_array_push(x_553, x_485); +x_555 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_555, 0, x_469); +lean_ctor_set(x_555, 1, x_554); +x_556 = l_myMacro____x40_Init_Notation___hyg_11187____closed__9; +x_557 = lean_array_push(x_556, x_555); +x_558 = l_myMacro____x40_Init_Notation___hyg_658____closed__8; +x_559 = lean_array_push(x_557, x_558); +x_560 = l_myMacro____x40_Init_Notation___hyg_11187____closed__8; +x_561 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_561, 0, x_560); +lean_ctor_set(x_561, 1, x_559); +x_562 = lean_array_push(x_458, x_561); +x_563 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_563, 0, x_469); +lean_ctor_set(x_563, 1, x_562); +x_564 = lean_array_push(x_508, x_563); +x_565 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_565, 0, x_534); +lean_ctor_set(x_565, 1, x_564); +x_566 = lean_array_push(x_502, x_565); +x_567 = l_termIf_____x3a__Then__Else_____closed__2; +x_568 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_568, 0, x_567); +lean_ctor_set(x_568, 1, x_566); +x_569 = lean_unbox(x_62); +lean_dec(x_62); +if (x_569 == 0) +{ +lean_object* x_570; +lean_dec(x_459); +lean_dec(x_437); +lean_dec(x_61); +lean_dec(x_1); +if (lean_is_scalar(x_447)) { + x_570 = lean_alloc_ctor(0, 2, 0); +} else { + x_570 = x_447; +} +lean_ctor_set(x_570, 0, x_568); +lean_ctor_set(x_570, 1, x_446); +return x_570; +} +else +{ +lean_object* x_571; lean_object* x_572; lean_object* x_573; lean_object* x_574; lean_object* x_575; lean_object* x_576; lean_object* x_577; lean_object* x_578; lean_object* x_579; lean_object* x_580; lean_object* x_581; lean_object* x_582; lean_object* x_583; lean_object* x_584; lean_object* x_585; lean_object* x_586; lean_object* x_587; lean_object* x_588; lean_object* x_589; lean_object* x_590; lean_object* x_591; lean_object* x_592; lean_object* x_593; lean_object* x_594; lean_object* x_595; lean_object* x_596; lean_object* x_597; lean_object* x_598; lean_object* x_599; lean_object* x_600; lean_object* x_601; lean_object* x_602; lean_object* x_603; lean_object* x_604; lean_object* x_605; +lean_dec(x_447); +x_571 = l_Lean_Elab_Term_getCurrMacroScope(x_437, x_4, x_5, x_6, x_7, x_8, x_446); +lean_dec(x_437); +x_572 = lean_ctor_get(x_571, 0); +lean_inc(x_572); +x_573 = lean_ctor_get(x_571, 1); +lean_inc(x_573); +lean_dec(x_571); +x_574 = l_Lean_Elab_Term_getMainModule___rarg(x_8, x_573); +x_575 = lean_ctor_get(x_574, 0); +lean_inc(x_575); +x_576 = lean_ctor_get(x_574, 1); +lean_inc(x_576); +if (lean_is_exclusive(x_574)) { + lean_ctor_release(x_574, 0); + lean_ctor_release(x_574, 1); + x_577 = x_574; +} else { + lean_dec_ref(x_574); + x_577 = lean_box(0); +} +x_578 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandOptIdent___closed__2; +x_579 = l_Lean_addMacroScope(x_575, x_578, x_572); +x_580 = l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__37; +x_581 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_581, 0, x_451); +lean_ctor_set(x_581, 1, x_580); +lean_ctor_set(x_581, 2, x_579); +lean_ctor_set(x_581, 3, x_450); +x_582 = lean_array_push(x_458, x_581); +x_583 = lean_array_push(x_582, x_485); +x_584 = lean_array_push(x_583, x_485); +x_585 = l_myMacro____x40_Init_Notation___hyg_12942____closed__14; +x_586 = lean_array_push(x_584, x_585); +x_587 = lean_mk_syntax_ident(x_1); +x_588 = lean_array_push(x_458, x_587); +x_589 = lean_array_push(x_459, x_61); +x_590 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_590, 0, x_469); +lean_ctor_set(x_590, 1, x_589); +x_591 = lean_array_push(x_588, x_590); +x_592 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_592, 0, x_534); +lean_ctor_set(x_592, 1, x_591); +x_593 = lean_array_push(x_586, x_592); +x_594 = l_myMacro____x40_Init_Notation___hyg_12942____closed__8; +x_595 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_595, 0, x_594); +lean_ctor_set(x_595, 1, x_593); +x_596 = lean_array_push(x_458, x_595); +x_597 = l_myMacro____x40_Init_Notation___hyg_12942____closed__6; +x_598 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_598, 0, x_597); +lean_ctor_set(x_598, 1, x_596); +x_599 = l_myMacro____x40_Init_Notation___hyg_12942____closed__4; +x_600 = lean_array_push(x_599, x_598); +x_601 = lean_array_push(x_600, x_476); +x_602 = lean_array_push(x_601, x_568); +x_603 = l_myMacro____x40_Init_Notation___hyg_12942____closed__2; +x_604 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_604, 0, x_603); +lean_ctor_set(x_604, 1, x_602); +if (lean_is_scalar(x_577)) { + x_605 = lean_alloc_ctor(0, 2, 0); +} else { + x_605 = x_577; +} +lean_ctor_set(x_605, 0, x_604); +lean_ctor_set(x_605, 1, x_576); +return x_605; +} +} +} +else +{ +lean_object* x_606; lean_object* x_607; lean_object* x_608; lean_object* x_609; lean_object* x_610; lean_object* x_611; lean_object* x_612; lean_object* x_613; lean_object* x_614; lean_object* x_615; lean_object* x_616; lean_object* x_617; lean_object* x_618; uint8_t x_619; uint8_t 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_631; lean_object* x_632; lean_object* x_633; lean_object* x_634; lean_object* x_635; lean_object* x_636; lean_object* x_637; lean_object* x_638; lean_object* x_639; lean_object* x_640; lean_object* x_641; lean_object* x_642; lean_object* x_643; lean_object* x_644; lean_object* x_645; lean_object* x_646; lean_object* x_647; lean_object* x_648; lean_object* x_649; lean_object* x_650; lean_object* x_651; lean_object* x_652; lean_object* x_653; lean_object* x_654; lean_object* x_655; lean_object* x_656; lean_object* x_657; lean_object* x_658; lean_object* x_659; lean_object* x_660; lean_object* x_661; lean_object* x_662; lean_object* x_663; lean_object* x_664; lean_object* x_665; lean_object* x_666; lean_object* x_667; lean_object* x_668; lean_object* x_669; lean_object* x_670; lean_object* x_671; lean_object* x_672; lean_object* x_673; lean_object* x_674; lean_object* x_675; lean_object* x_676; lean_object* x_677; lean_object* x_678; lean_object* x_679; lean_object* x_680; lean_object* x_681; lean_object* x_682; lean_object* x_683; lean_object* x_684; lean_object* x_685; lean_object* x_686; lean_object* x_687; lean_object* x_688; lean_object* x_689; lean_object* x_690; lean_object* x_691; lean_object* x_692; lean_object* x_693; lean_object* x_694; lean_object* x_695; lean_object* x_696; lean_object* x_697; lean_object* x_698; lean_object* x_699; lean_object* x_700; lean_object* x_701; lean_object* x_702; lean_object* x_703; lean_object* x_704; lean_object* x_705; lean_object* x_706; lean_object* x_707; lean_object* x_708; lean_object* x_709; lean_object* x_710; lean_object* x_711; lean_object* x_712; lean_object* x_713; lean_object* x_714; lean_object* x_715; lean_object* x_716; lean_object* x_717; lean_object* x_718; lean_object* x_719; lean_object* x_720; lean_object* x_721; lean_object* x_722; lean_object* x_723; lean_object* x_724; lean_object* x_725; lean_object* x_726; lean_object* x_727; lean_object* x_728; lean_object* x_729; lean_object* x_730; lean_object* x_731; lean_object* x_732; lean_object* x_733; lean_object* x_734; lean_object* x_735; lean_object* x_736; lean_object* x_737; lean_object* x_738; lean_object* x_739; lean_object* x_740; lean_object* x_741; lean_object* x_742; lean_object* x_743; lean_object* x_744; lean_object* x_745; lean_object* x_746; lean_object* x_747; lean_object* x_748; lean_object* x_749; lean_object* x_750; lean_object* x_751; lean_object* x_752; lean_object* x_753; lean_object* x_754; lean_object* x_755; uint8_t x_756; +x_606 = lean_ctor_get(x_64, 0); +x_607 = lean_ctor_get(x_64, 1); +x_608 = lean_ctor_get(x_64, 2); +x_609 = lean_ctor_get(x_64, 3); +lean_inc(x_609); +lean_inc(x_608); +lean_inc(x_607); +lean_inc(x_606); +lean_dec(x_64); +x_610 = lean_unsigned_to_nat(1u); +x_611 = lean_nat_add(x_607, x_610); +x_612 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_612, 0, x_606); +lean_ctor_set(x_612, 1, x_611); +lean_ctor_set(x_612, 2, x_608); +lean_ctor_set(x_612, 3, x_609); +x_613 = lean_st_ref_set(x_8, x_612, x_65); +x_614 = lean_ctor_get(x_613, 1); +lean_inc(x_614); +lean_dec(x_613); +x_615 = lean_ctor_get(x_3, 0); +lean_inc(x_615); +x_616 = lean_ctor_get(x_3, 1); +lean_inc(x_616); +x_617 = lean_ctor_get(x_3, 2); +lean_inc(x_617); +x_618 = lean_ctor_get(x_3, 3); +lean_inc(x_618); +x_619 = lean_ctor_get_uint8(x_3, sizeof(void*)*6); +x_620 = lean_ctor_get_uint8(x_3, sizeof(void*)*6 + 1); +x_621 = lean_ctor_get_uint8(x_3, sizeof(void*)*6 + 2); +x_622 = lean_ctor_get(x_3, 5); +lean_inc(x_622); if (lean_is_exclusive(x_3)) { lean_ctor_release(x_3, 0); lean_ctor_release(x_3, 1); @@ -1744,1550 +2026,339 @@ if (lean_is_exclusive(x_3)) { lean_ctor_release(x_3, 3); lean_ctor_release(x_3, 4); lean_ctor_release(x_3, 5); - x_487 = x_3; + x_623 = x_3; } else { lean_dec_ref(x_3); - x_487 = lean_box(0); + x_623 = lean_box(0); } -if (lean_is_scalar(x_487)) { - x_488 = lean_alloc_ctor(0, 6, 3); +if (lean_is_scalar(x_623)) { + x_624 = lean_alloc_ctor(0, 6, 3); } else { - x_488 = x_487; + x_624 = x_623; } -lean_ctor_set(x_488, 0, x_479); -lean_ctor_set(x_488, 1, x_480); -lean_ctor_set(x_488, 2, x_481); -lean_ctor_set(x_488, 3, x_482); -lean_ctor_set(x_488, 4, x_471); -lean_ctor_set(x_488, 5, x_486); -lean_ctor_set_uint8(x_488, sizeof(void*)*6, x_483); -lean_ctor_set_uint8(x_488, sizeof(void*)*6 + 1, x_484); -lean_ctor_set_uint8(x_488, sizeof(void*)*6 + 2, x_485); -lean_inc(x_488); -x_489 = l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs(x_1, x_61, x_488, x_4, x_5, x_6, x_7, x_8, x_478); -x_490 = lean_ctor_get(x_489, 0); -lean_inc(x_490); -x_491 = lean_ctor_get(x_489, 1); -lean_inc(x_491); -lean_dec(x_489); -x_492 = l_Lean_Elab_Term_getCurrMacroScope(x_488, x_4, x_5, x_6, x_7, x_8, x_491); -lean_dec(x_488); -x_493 = lean_ctor_get(x_492, 0); -lean_inc(x_493); -x_494 = lean_ctor_get(x_492, 1); -lean_inc(x_494); -lean_dec(x_492); -x_495 = l_Lean_Elab_Term_getMainModule___rarg(x_8, x_494); -x_496 = lean_ctor_get(x_495, 0); -lean_inc(x_496); -x_497 = lean_ctor_get(x_495, 1); -lean_inc(x_497); -if (lean_is_exclusive(x_495)) { - lean_ctor_release(x_495, 0); - lean_ctor_release(x_495, 1); - x_498 = x_495; -} else { - lean_dec_ref(x_495); - x_498 = lean_box(0); -} -x_499 = l_Lean_Elab_Tactic_evalIntro___closed__4; -lean_inc(x_493); -lean_inc(x_496); -x_500 = l_Lean_addMacroScope(x_496, x_499, x_493); -x_501 = lean_box(0); -x_502 = l_Lean_instInhabitedSourceInfo___closed__1; -x_503 = l_Lean_Elab_Tactic_evalIntro___closed__3; -x_504 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_504, 0, x_502); -lean_ctor_set(x_504, 1, x_503); -lean_ctor_set(x_504, 2, x_500); -lean_ctor_set(x_504, 3, x_501); -x_505 = l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__9; -lean_inc(x_504); -x_506 = lean_array_push(x_505, x_504); -x_507 = l_myMacro____x40_Init_Notation___hyg_12315____closed__10; -x_508 = lean_array_push(x_506, x_507); -x_509 = l_Array_empty___closed__1; -x_510 = lean_array_push(x_509, x_62); -x_511 = l___private_Init_NotationExtra_0__Lean_mkHintBody___closed__2; -x_512 = lean_array_push(x_510, x_511); -x_513 = lean_array_push(x_512, x_63); -x_514 = l_term___x3d_____closed__2; -x_515 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_515, 0, x_514); -lean_ctor_set(x_515, 1, x_513); -x_516 = lean_array_push(x_508, x_515); -x_517 = l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__11; -x_518 = lean_array_push(x_516, x_517); -x_519 = lean_array_push(x_509, x_504); -x_520 = l_Lean_nullKind___closed__2; -lean_inc(x_519); -x_521 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_521, 0, x_520); -lean_ctor_set(x_521, 1, x_519); -x_522 = l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__16; -x_523 = lean_array_push(x_522, x_521); -x_524 = l_Lean_Parser_Tactic_subst___closed__2; -x_525 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_525, 0, x_524); -lean_ctor_set(x_525, 1, x_523); -x_526 = lean_array_push(x_509, x_525); -x_527 = l_myMacro____x40_Init_Notation___hyg_12942____closed__18; -x_528 = lean_array_push(x_526, x_527); -x_529 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_529, 0, x_520); -lean_ctor_set(x_529, 1, x_528); -x_530 = lean_array_push(x_509, x_529); -x_531 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14290____closed__2; -x_532 = lean_array_push(x_531, x_490); -x_533 = l_Lean_Parser_Tactic_exact___closed__2; -x_534 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_534, 0, x_533); -lean_ctor_set(x_534, 1, x_532); -x_535 = lean_array_push(x_509, x_534); -x_536 = l_myMacro____x40_Init_Notation___hyg_1130____closed__23; -x_537 = lean_array_push(x_535, x_536); -x_538 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_538, 0, x_520); -lean_ctor_set(x_538, 1, x_537); -x_539 = lean_array_push(x_530, x_538); -x_540 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_540, 0, x_520); -lean_ctor_set(x_540, 1, x_539); -x_541 = lean_array_push(x_509, x_540); -x_542 = l___private_Init_Notation_0__Lean_Parser_Tactic_withCheapRefl___closed__5; -x_543 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_543, 0, x_542); -lean_ctor_set(x_543, 1, x_541); -x_544 = lean_array_push(x_509, x_543); -x_545 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14110____closed__3; -x_546 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_546, 0, x_545); -lean_ctor_set(x_546, 1, x_544); -x_547 = l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__14; -x_548 = lean_array_push(x_547, x_546); -x_549 = l___regBuiltin_Lean_Elab_Term_elabByTactic___closed__2; -x_550 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_550, 0, x_549); -lean_ctor_set(x_550, 1, x_548); -x_551 = lean_array_push(x_518, x_550); -x_552 = l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__18; -x_553 = lean_array_push(x_551, x_552); -x_554 = l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__21; -lean_inc(x_493); -lean_inc(x_496); -x_555 = l_Lean_addMacroScope(x_496, x_554, x_493); -x_556 = l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__20; -x_557 = l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__23; -x_558 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_558, 0, x_502); -lean_ctor_set(x_558, 1, x_556); -lean_ctor_set(x_558, 2, x_555); -lean_ctor_set(x_558, 3, x_557); -x_559 = lean_array_push(x_509, x_558); -x_560 = l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__27; -x_561 = l_Lean_addMacroScope(x_496, x_560, x_493); -x_562 = l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__26; -x_563 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_563, 0, x_502); -lean_ctor_set(x_563, 1, x_562); -lean_ctor_set(x_563, 2, x_561); -lean_ctor_set(x_563, 3, x_501); -lean_inc(x_563); -x_564 = lean_array_push(x_509, x_563); -x_565 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_565, 0, x_520); -lean_ctor_set(x_565, 1, x_564); -x_566 = l_myMacro____x40_Init_NotationExtra___hyg_2680____closed__10; -x_567 = lean_array_push(x_566, x_565); -x_568 = l_Lean_Parser_Tactic_intro___closed__4; -x_569 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_569, 0, x_568); -lean_ctor_set(x_569, 1, x_567); -x_570 = lean_array_push(x_509, x_569); -x_571 = lean_array_push(x_570, x_527); -x_572 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_572, 0, x_520); -lean_ctor_set(x_572, 1, x_571); -x_573 = lean_array_push(x_509, x_572); -x_574 = l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__29; -x_575 = lean_array_push(x_574, x_563); -x_576 = lean_array_push(x_575, x_536); -x_577 = l_Lean_Parser_Tactic_injection___closed__2; -x_578 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_578, 0, x_577); -lean_ctor_set(x_578, 1, x_576); -x_579 = lean_array_push(x_509, x_578); -x_580 = lean_array_push(x_579, x_527); -x_581 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_581, 0, x_520); -lean_ctor_set(x_581, 1, x_580); -x_582 = lean_array_push(x_573, x_581); -x_583 = l_Lean_expandExplicitBindersAux_loop___closed__2; -x_584 = lean_array_push(x_519, x_583); -x_585 = l_myMacro____x40_Init_Notation___hyg_2022____closed__4; -x_586 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_586, 0, x_585); -lean_ctor_set(x_586, 1, x_584); -x_587 = l_myMacro____x40_Init_NotationExtra___hyg_2680____closed__2; -x_588 = lean_array_push(x_587, x_586); -x_589 = l_Lean_Parser_Tactic_apply___closed__2; -x_590 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_590, 0, x_589); -lean_ctor_set(x_590, 1, x_588); -x_591 = lean_array_push(x_509, x_590); -x_592 = lean_array_push(x_591, x_527); -x_593 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_593, 0, x_520); -lean_ctor_set(x_593, 1, x_592); -x_594 = lean_array_push(x_582, x_593); -x_595 = l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__35; -x_596 = lean_array_push(x_594, x_595); -x_597 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_597, 0, x_520); -lean_ctor_set(x_597, 1, x_596); -x_598 = lean_array_push(x_509, x_597); -x_599 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_599, 0, x_542); -lean_ctor_set(x_599, 1, x_598); -x_600 = lean_array_push(x_509, x_599); -x_601 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_601, 0, x_545); -lean_ctor_set(x_601, 1, x_600); -x_602 = lean_array_push(x_547, x_601); -x_603 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_603, 0, x_549); -lean_ctor_set(x_603, 1, x_602); -x_604 = lean_array_push(x_509, x_603); -x_605 = lean_array_push(x_604, x_536); -x_606 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_606, 0, x_520); -lean_ctor_set(x_606, 1, x_605); -x_607 = l_myMacro____x40_Init_Notation___hyg_11187____closed__9; -x_608 = lean_array_push(x_607, x_606); -x_609 = l_myMacro____x40_Init_Notation___hyg_658____closed__8; -x_610 = lean_array_push(x_608, x_609); -x_611 = l_myMacro____x40_Init_Notation___hyg_11187____closed__8; -x_612 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_612, 0, x_611); -lean_ctor_set(x_612, 1, x_610); -x_613 = lean_array_push(x_509, x_612); -x_614 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_614, 0, x_520); -lean_ctor_set(x_614, 1, x_613); -x_615 = lean_array_push(x_559, x_614); -x_616 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_616, 0, x_585); -lean_ctor_set(x_616, 1, x_615); -x_617 = lean_array_push(x_553, x_616); -x_618 = l_termIf_____x3a__Then__Else_____closed__2; -x_619 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_619, 0, x_618); -lean_ctor_set(x_619, 1, x_617); -if (lean_is_scalar(x_498)) { - x_620 = lean_alloc_ctor(0, 2, 0); -} else { - x_620 = x_498; -} -lean_ctor_set(x_620, 0, x_619); -lean_ctor_set(x_620, 1, x_497); -return x_620; -} -} -else -{ -lean_object* x_621; lean_object* x_622; lean_object* x_623; lean_object* x_624; lean_object* x_625; lean_object* x_626; uint8_t x_627; -x_621 = lean_ctor_get(x_2, 1); -lean_inc(x_621); -lean_dec(x_2); -x_622 = lean_ctor_get(x_57, 0); -lean_inc(x_622); -lean_dec(x_57); -x_623 = lean_ctor_get(x_58, 0); -lean_inc(x_623); -lean_dec(x_58); -x_624 = lean_st_ref_take(x_8, x_9); -x_625 = lean_ctor_get(x_624, 0); -lean_inc(x_625); -x_626 = lean_ctor_get(x_624, 1); -lean_inc(x_626); -lean_dec(x_624); -x_627 = !lean_is_exclusive(x_625); -if (x_627 == 0) -{ -lean_object* x_628; lean_object* x_629; lean_object* x_630; lean_object* x_631; lean_object* x_632; uint8_t x_633; -x_628 = lean_ctor_get(x_625, 1); -x_629 = lean_unsigned_to_nat(1u); -x_630 = lean_nat_add(x_628, x_629); -lean_ctor_set(x_625, 1, x_630); -x_631 = lean_st_ref_set(x_8, x_625, x_626); -x_632 = lean_ctor_get(x_631, 1); -lean_inc(x_632); -lean_dec(x_631); -x_633 = !lean_is_exclusive(x_3); -if (x_633 == 0) -{ -lean_object* x_634; lean_object* x_635; lean_object* x_636; lean_object* x_637; lean_object* x_638; lean_object* x_639; lean_object* x_640; lean_object* x_641; uint8_t x_642; -x_634 = lean_ctor_get(x_3, 4); -lean_dec(x_634); -lean_ctor_set(x_3, 4, x_628); -lean_inc(x_3); +lean_ctor_set(x_624, 0, x_615); +lean_ctor_set(x_624, 1, x_616); +lean_ctor_set(x_624, 2, x_617); +lean_ctor_set(x_624, 3, x_618); +lean_ctor_set(x_624, 4, x_607); +lean_ctor_set(x_624, 5, x_622); +lean_ctor_set_uint8(x_624, sizeof(void*)*6, x_619); +lean_ctor_set_uint8(x_624, sizeof(void*)*6 + 1, x_620); +lean_ctor_set_uint8(x_624, sizeof(void*)*6 + 2, x_621); +lean_inc(x_624); lean_inc(x_1); -x_635 = l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs(x_1, x_621, x_3, x_4, x_5, x_6, x_7, x_8, x_632); -x_636 = lean_ctor_get(x_635, 0); -lean_inc(x_636); -x_637 = lean_ctor_get(x_635, 1); -lean_inc(x_637); -lean_dec(x_635); -x_638 = l_Lean_Elab_Term_getCurrMacroScope(x_3, x_4, x_5, x_6, x_7, x_8, x_637); -lean_dec(x_3); -x_639 = lean_ctor_get(x_638, 0); -lean_inc(x_639); -x_640 = lean_ctor_get(x_638, 1); +x_625 = l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs(x_1, x_59, x_624, x_4, x_5, x_6, x_7, x_8, x_614); +x_626 = lean_ctor_get(x_625, 0); +lean_inc(x_626); +x_627 = lean_ctor_get(x_625, 1); +lean_inc(x_627); +lean_dec(x_625); +x_628 = l_Lean_Elab_Term_getCurrMacroScope(x_624, x_4, x_5, x_6, x_7, x_8, x_627); +x_629 = lean_ctor_get(x_628, 0); +lean_inc(x_629); +x_630 = lean_ctor_get(x_628, 1); +lean_inc(x_630); +lean_dec(x_628); +x_631 = l_Lean_Elab_Term_getMainModule___rarg(x_8, x_630); +x_632 = lean_ctor_get(x_631, 0); +lean_inc(x_632); +x_633 = lean_ctor_get(x_631, 1); +lean_inc(x_633); +if (lean_is_exclusive(x_631)) { + lean_ctor_release(x_631, 0); + lean_ctor_release(x_631, 1); + x_634 = x_631; +} else { + lean_dec_ref(x_631); + x_634 = lean_box(0); +} +x_635 = l_Lean_Elab_Tactic_evalIntro___closed__4; +lean_inc(x_629); +lean_inc(x_632); +x_636 = l_Lean_addMacroScope(x_632, x_635, x_629); +x_637 = lean_box(0); +x_638 = l_Lean_instInhabitedSourceInfo___closed__1; +x_639 = l_Lean_Elab_Tactic_evalIntro___closed__3; +x_640 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_640, 0, x_638); +lean_ctor_set(x_640, 1, x_639); +lean_ctor_set(x_640, 2, x_636); +lean_ctor_set(x_640, 3, x_637); +x_641 = l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__9; lean_inc(x_640); -lean_dec(x_638); -x_641 = l_Lean_Elab_Term_getMainModule___rarg(x_8, x_640); -x_642 = !lean_is_exclusive(x_641); -if (x_642 == 0) -{ -lean_object* x_643; lean_object* x_644; lean_object* x_645; lean_object* x_646; lean_object* x_647; lean_object* x_648; lean_object* x_649; lean_object* x_650; lean_object* x_651; lean_object* x_652; lean_object* x_653; lean_object* x_654; lean_object* x_655; lean_object* x_656; lean_object* x_657; lean_object* x_658; lean_object* x_659; lean_object* x_660; lean_object* x_661; lean_object* x_662; lean_object* x_663; lean_object* x_664; lean_object* x_665; lean_object* x_666; lean_object* x_667; lean_object* x_668; lean_object* x_669; lean_object* x_670; lean_object* x_671; lean_object* x_672; lean_object* x_673; lean_object* x_674; lean_object* x_675; lean_object* x_676; lean_object* x_677; lean_object* x_678; lean_object* x_679; lean_object* x_680; lean_object* x_681; lean_object* x_682; lean_object* x_683; lean_object* x_684; lean_object* x_685; lean_object* x_686; lean_object* x_687; lean_object* x_688; lean_object* x_689; lean_object* x_690; lean_object* x_691; lean_object* x_692; lean_object* x_693; lean_object* x_694; lean_object* x_695; lean_object* x_696; lean_object* x_697; lean_object* x_698; lean_object* x_699; lean_object* x_700; lean_object* x_701; lean_object* x_702; lean_object* x_703; lean_object* x_704; lean_object* x_705; lean_object* x_706; lean_object* x_707; lean_object* x_708; lean_object* x_709; lean_object* x_710; lean_object* x_711; lean_object* x_712; lean_object* x_713; lean_object* x_714; lean_object* x_715; lean_object* x_716; lean_object* x_717; lean_object* x_718; lean_object* x_719; lean_object* x_720; lean_object* x_721; lean_object* x_722; lean_object* x_723; lean_object* x_724; lean_object* x_725; lean_object* x_726; lean_object* x_727; lean_object* x_728; lean_object* x_729; lean_object* x_730; lean_object* x_731; lean_object* x_732; lean_object* x_733; lean_object* x_734; lean_object* x_735; lean_object* x_736; lean_object* x_737; lean_object* x_738; lean_object* x_739; lean_object* x_740; lean_object* x_741; lean_object* x_742; lean_object* x_743; lean_object* x_744; lean_object* x_745; lean_object* x_746; lean_object* x_747; lean_object* x_748; lean_object* x_749; lean_object* x_750; lean_object* x_751; lean_object* x_752; lean_object* x_753; lean_object* x_754; lean_object* x_755; lean_object* x_756; lean_object* x_757; lean_object* x_758; lean_object* x_759; lean_object* x_760; lean_object* x_761; lean_object* x_762; lean_object* x_763; lean_object* x_764; lean_object* x_765; lean_object* x_766; lean_object* x_767; lean_object* x_768; lean_object* x_769; lean_object* x_770; lean_object* x_771; lean_object* x_772; lean_object* x_773; lean_object* x_774; lean_object* x_775; lean_object* x_776; lean_object* x_777; lean_object* x_778; lean_object* x_779; lean_object* x_780; lean_object* x_781; lean_object* x_782; lean_object* x_783; lean_object* x_784; lean_object* x_785; lean_object* x_786; lean_object* x_787; lean_object* x_788; lean_object* x_789; lean_object* x_790; lean_object* x_791; lean_object* x_792; lean_object* x_793; lean_object* x_794; lean_object* x_795; lean_object* x_796; lean_object* x_797; lean_object* x_798; lean_object* x_799; lean_object* x_800; lean_object* x_801; -x_643 = lean_ctor_get(x_641, 0); -x_644 = l_myMacro____x40_Init_Notation___hyg_11187____closed__4; -lean_inc(x_639); -lean_inc(x_643); -x_645 = l_Lean_addMacroScope(x_643, x_644, x_639); -x_646 = lean_box(0); -x_647 = l_Lean_instInhabitedSourceInfo___closed__1; -x_648 = l_myMacro____x40_Init_Notation___hyg_11187____closed__3; -x_649 = l_myMacro____x40_Init_Notation___hyg_11187____closed__6; -x_650 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_650, 0, x_647); -lean_ctor_set(x_650, 1, x_648); -lean_ctor_set(x_650, 2, x_645); -lean_ctor_set(x_650, 3, x_649); -x_651 = l_myMacro____x40_Init_NotationExtra___hyg_3477____closed__47; -x_652 = lean_array_push(x_651, x_650); -x_653 = l_myMacro____x40_Init_NotationExtra___hyg_3477____closed__44; -x_654 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_654, 0, x_653); -lean_ctor_set(x_654, 1, x_652); -x_655 = l_Array_empty___closed__1; -x_656 = lean_array_push(x_655, x_654); -x_657 = lean_mk_syntax_ident(x_1); -x_658 = lean_array_push(x_655, x_657); -x_659 = lean_array_push(x_655, x_622); -x_660 = lean_array_push(x_659, x_623); -x_661 = l_Lean_nullKind___closed__2; -x_662 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_662, 0, x_661); -lean_ctor_set(x_662, 1, x_660); -x_663 = lean_array_push(x_658, x_662); -x_664 = l_myMacro____x40_Init_Notation___hyg_2022____closed__4; +x_642 = lean_array_push(x_641, x_640); +x_643 = l_myMacro____x40_Init_Notation___hyg_12315____closed__10; +x_644 = lean_array_push(x_642, x_643); +x_645 = l_Array_empty___closed__1; +x_646 = lean_array_push(x_645, x_60); +x_647 = l___private_Init_NotationExtra_0__Lean_mkHintBody___closed__2; +lean_inc(x_646); +x_648 = lean_array_push(x_646, x_647); +lean_inc(x_61); +x_649 = lean_array_push(x_648, x_61); +x_650 = l_term___x3d_____closed__2; +x_651 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_651, 0, x_650); +lean_ctor_set(x_651, 1, x_649); +x_652 = lean_array_push(x_644, x_651); +x_653 = l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__11; +x_654 = lean_array_push(x_652, x_653); +x_655 = lean_array_push(x_645, x_640); +x_656 = l_Lean_nullKind___closed__2; +lean_inc(x_655); +x_657 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_657, 0, x_656); +lean_ctor_set(x_657, 1, x_655); +x_658 = l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__16; +x_659 = lean_array_push(x_658, x_657); +x_660 = l_Lean_Parser_Tactic_subst___closed__2; +x_661 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_661, 0, x_660); +lean_ctor_set(x_661, 1, x_659); +x_662 = lean_array_push(x_645, x_661); +x_663 = l_myMacro____x40_Init_Notation___hyg_12942____closed__18; +x_664 = lean_array_push(x_662, x_663); x_665 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_665, 0, x_664); -lean_ctor_set(x_665, 1, x_663); -x_666 = lean_array_push(x_655, x_665); -x_667 = l_myMacro____x40_Init_Notation___hyg_1130____closed__23; -x_668 = lean_array_push(x_666, x_667); -x_669 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_669, 0, x_661); -lean_ctor_set(x_669, 1, x_668); -x_670 = l_myMacro____x40_Init_Notation___hyg_11187____closed__9; -x_671 = lean_array_push(x_670, x_669); -x_672 = l_myMacro____x40_Init_Notation___hyg_658____closed__8; +lean_ctor_set(x_665, 0, x_656); +lean_ctor_set(x_665, 1, x_664); +x_666 = lean_array_push(x_645, x_665); +x_667 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14290____closed__2; +x_668 = lean_array_push(x_667, x_626); +x_669 = l_Lean_Parser_Tactic_exact___closed__2; +x_670 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_670, 0, x_669); +lean_ctor_set(x_670, 1, x_668); +x_671 = lean_array_push(x_645, x_670); +x_672 = l_myMacro____x40_Init_Notation___hyg_1130____closed__23; x_673 = lean_array_push(x_671, x_672); -x_674 = l_myMacro____x40_Init_Notation___hyg_11187____closed__8; -x_675 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_675, 0, x_674); -lean_ctor_set(x_675, 1, x_673); -x_676 = l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__36; -x_677 = lean_array_push(x_676, x_675); -x_678 = l_Lean_Elab_Tactic_evalIntro___closed__4; -lean_inc(x_639); -lean_inc(x_643); -x_679 = l_Lean_addMacroScope(x_643, x_678, x_639); -x_680 = l_Lean_Elab_Tactic_evalIntro___closed__3; -x_681 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_681, 0, x_647); -lean_ctor_set(x_681, 1, x_680); -lean_ctor_set(x_681, 2, x_679); -lean_ctor_set(x_681, 3, x_646); -x_682 = lean_array_push(x_655, x_681); -lean_inc(x_682); -x_683 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_683, 0, x_661); -lean_ctor_set(x_683, 1, x_682); -lean_inc(x_683); -x_684 = lean_array_push(x_655, x_683); -x_685 = l_myMacro____x40_Init_Notation___hyg_11187____closed__17; -x_686 = lean_array_push(x_684, x_685); -x_687 = l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__16; -x_688 = lean_array_push(x_687, x_683); -x_689 = l_Lean_Parser_Tactic_subst___closed__2; -x_690 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_690, 0, x_689); -lean_ctor_set(x_690, 1, x_688); -x_691 = lean_array_push(x_655, x_690); -x_692 = l_myMacro____x40_Init_Notation___hyg_12942____closed__18; -x_693 = lean_array_push(x_691, x_692); -x_694 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_694, 0, x_661); -lean_ctor_set(x_694, 1, x_693); -x_695 = lean_array_push(x_655, x_694); -x_696 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14290____closed__2; -x_697 = lean_array_push(x_696, x_636); -x_698 = l_Lean_Parser_Tactic_exact___closed__2; -x_699 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_699, 0, x_698); -lean_ctor_set(x_699, 1, x_697); -x_700 = lean_array_push(x_655, x_699); -x_701 = lean_array_push(x_700, x_667); -x_702 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_702, 0, x_661); -lean_ctor_set(x_702, 1, x_701); -x_703 = lean_array_push(x_695, x_702); -x_704 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_704, 0, x_661); -lean_ctor_set(x_704, 1, x_703); -x_705 = lean_array_push(x_655, x_704); -x_706 = l___private_Init_Notation_0__Lean_Parser_Tactic_withCheapRefl___closed__5; -x_707 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_707, 0, x_706); -lean_ctor_set(x_707, 1, x_705); -x_708 = lean_array_push(x_655, x_707); -x_709 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14110____closed__3; -x_710 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_710, 0, x_709); -lean_ctor_set(x_710, 1, x_708); -x_711 = l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__14; -x_712 = lean_array_push(x_711, x_710); -x_713 = l___regBuiltin_Lean_Elab_Term_elabByTactic___closed__2; +x_674 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_674, 0, x_656); +lean_ctor_set(x_674, 1, x_673); +x_675 = lean_array_push(x_666, x_674); +x_676 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_676, 0, x_656); +lean_ctor_set(x_676, 1, x_675); +x_677 = lean_array_push(x_645, x_676); +x_678 = l___private_Init_Notation_0__Lean_Parser_Tactic_withCheapRefl___closed__5; +x_679 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_679, 0, x_678); +lean_ctor_set(x_679, 1, x_677); +x_680 = lean_array_push(x_645, x_679); +x_681 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14110____closed__3; +x_682 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_682, 0, x_681); +lean_ctor_set(x_682, 1, x_680); +x_683 = l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__14; +x_684 = lean_array_push(x_683, x_682); +x_685 = l___regBuiltin_Lean_Elab_Term_elabByTactic___closed__2; +x_686 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_686, 0, x_685); +lean_ctor_set(x_686, 1, x_684); +x_687 = lean_array_push(x_654, x_686); +x_688 = l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__18; +x_689 = lean_array_push(x_687, x_688); +x_690 = l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__21; +lean_inc(x_629); +lean_inc(x_632); +x_691 = l_Lean_addMacroScope(x_632, x_690, x_629); +x_692 = l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__20; +x_693 = l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__23; +x_694 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_694, 0, x_638); +lean_ctor_set(x_694, 1, x_692); +lean_ctor_set(x_694, 2, x_691); +lean_ctor_set(x_694, 3, x_693); +x_695 = lean_array_push(x_645, x_694); +x_696 = l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__27; +x_697 = l_Lean_addMacroScope(x_632, x_696, x_629); +x_698 = l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__26; +x_699 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_699, 0, x_638); +lean_ctor_set(x_699, 1, x_698); +lean_ctor_set(x_699, 2, x_697); +lean_ctor_set(x_699, 3, x_637); +lean_inc(x_699); +x_700 = lean_array_push(x_645, x_699); +x_701 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_701, 0, x_656); +lean_ctor_set(x_701, 1, x_700); +x_702 = l_myMacro____x40_Init_NotationExtra___hyg_2680____closed__10; +x_703 = lean_array_push(x_702, x_701); +x_704 = l_Lean_Parser_Tactic_intro___closed__4; +x_705 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_705, 0, x_704); +lean_ctor_set(x_705, 1, x_703); +x_706 = lean_array_push(x_645, x_705); +x_707 = lean_array_push(x_706, x_663); +x_708 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_708, 0, x_656); +lean_ctor_set(x_708, 1, x_707); +x_709 = lean_array_push(x_645, x_708); +x_710 = l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__29; +x_711 = lean_array_push(x_710, x_699); +x_712 = lean_array_push(x_711, x_672); +x_713 = l_Lean_Parser_Tactic_injection___closed__2; x_714 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_714, 0, x_713); lean_ctor_set(x_714, 1, x_712); -lean_inc(x_686); -x_715 = lean_array_push(x_686, x_714); -x_716 = l_myMacro____x40_Init_Notation___hyg_11187____closed__15; +x_715 = lean_array_push(x_645, x_714); +x_716 = lean_array_push(x_715, x_663); x_717 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_717, 0, x_716); -lean_ctor_set(x_717, 1, x_715); -x_718 = l_myMacro____x40_Init_Notation___hyg_11187____closed__13; -x_719 = lean_array_push(x_718, x_717); -x_720 = l_myMacro____x40_Init_Notation___hyg_11187____closed__11; -x_721 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_721, 0, x_720); -lean_ctor_set(x_721, 1, x_719); -x_722 = lean_array_push(x_655, x_721); -x_723 = lean_array_push(x_722, x_667); -x_724 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_724, 0, x_661); -lean_ctor_set(x_724, 1, x_723); -x_725 = lean_array_push(x_670, x_724); -x_726 = lean_array_push(x_725, x_672); -x_727 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_727, 0, x_674); -lean_ctor_set(x_727, 1, x_726); -x_728 = lean_array_push(x_677, x_727); -x_729 = l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__21; -lean_inc(x_639); -lean_inc(x_643); -x_730 = l_Lean_addMacroScope(x_643, x_729, x_639); -x_731 = l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__20; -x_732 = l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__23; -x_733 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_733, 0, x_647); -lean_ctor_set(x_733, 1, x_731); -lean_ctor_set(x_733, 2, x_730); -lean_ctor_set(x_733, 3, x_732); -x_734 = lean_array_push(x_655, x_733); -x_735 = l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__27; -x_736 = l_Lean_addMacroScope(x_643, x_735, x_639); -x_737 = l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__26; -x_738 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_738, 0, x_647); -lean_ctor_set(x_738, 1, x_737); -lean_ctor_set(x_738, 2, x_736); -lean_ctor_set(x_738, 3, x_646); -lean_inc(x_738); -x_739 = lean_array_push(x_655, x_738); -x_740 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_740, 0, x_661); -lean_ctor_set(x_740, 1, x_739); -x_741 = l_myMacro____x40_Init_NotationExtra___hyg_2680____closed__10; -x_742 = lean_array_push(x_741, x_740); -x_743 = l_Lean_Parser_Tactic_intro___closed__4; -x_744 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_744, 0, x_743); -lean_ctor_set(x_744, 1, x_742); -x_745 = lean_array_push(x_655, x_744); -x_746 = lean_array_push(x_745, x_692); -x_747 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_747, 0, x_661); -lean_ctor_set(x_747, 1, x_746); -x_748 = lean_array_push(x_655, x_747); -x_749 = l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__29; -x_750 = lean_array_push(x_749, x_738); -x_751 = lean_array_push(x_750, x_667); -x_752 = l_Lean_Parser_Tactic_injection___closed__2; -x_753 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_753, 0, x_752); -lean_ctor_set(x_753, 1, x_751); -x_754 = lean_array_push(x_655, x_753); -x_755 = lean_array_push(x_754, x_692); -x_756 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_756, 0, x_661); -lean_ctor_set(x_756, 1, x_755); -x_757 = lean_array_push(x_748, x_756); -x_758 = l_Lean_expandExplicitBindersAux_loop___closed__2; -x_759 = lean_array_push(x_682, x_758); -x_760 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_760, 0, x_664); -lean_ctor_set(x_760, 1, x_759); -x_761 = l_myMacro____x40_Init_NotationExtra___hyg_2680____closed__2; -x_762 = lean_array_push(x_761, x_760); -x_763 = l_Lean_Parser_Tactic_apply___closed__2; -x_764 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_764, 0, x_763); -lean_ctor_set(x_764, 1, x_762); -x_765 = lean_array_push(x_655, x_764); -x_766 = lean_array_push(x_765, x_692); -x_767 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_767, 0, x_661); -lean_ctor_set(x_767, 1, x_766); -x_768 = lean_array_push(x_757, x_767); -x_769 = l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__35; -x_770 = lean_array_push(x_768, x_769); -x_771 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_771, 0, x_661); -lean_ctor_set(x_771, 1, x_770); -x_772 = lean_array_push(x_655, x_771); -x_773 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_773, 0, x_706); -lean_ctor_set(x_773, 1, x_772); -x_774 = lean_array_push(x_655, x_773); -x_775 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_775, 0, x_709); -lean_ctor_set(x_775, 1, x_774); -x_776 = lean_array_push(x_711, x_775); +lean_ctor_set(x_717, 0, x_656); +lean_ctor_set(x_717, 1, x_716); +x_718 = lean_array_push(x_709, x_717); +x_719 = l_Lean_expandExplicitBindersAux_loop___closed__2; +x_720 = lean_array_push(x_655, x_719); +x_721 = l_myMacro____x40_Init_Notation___hyg_2022____closed__4; +x_722 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_722, 0, x_721); +lean_ctor_set(x_722, 1, x_720); +x_723 = l_myMacro____x40_Init_NotationExtra___hyg_2680____closed__2; +x_724 = lean_array_push(x_723, x_722); +x_725 = l_Lean_Parser_Tactic_apply___closed__2; +x_726 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_726, 0, x_725); +lean_ctor_set(x_726, 1, x_724); +x_727 = lean_array_push(x_645, x_726); +x_728 = lean_array_push(x_727, x_663); +x_729 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_729, 0, x_656); +lean_ctor_set(x_729, 1, x_728); +x_730 = lean_array_push(x_718, x_729); +x_731 = l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__35; +x_732 = lean_array_push(x_730, x_731); +x_733 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_733, 0, x_656); +lean_ctor_set(x_733, 1, x_732); +x_734 = lean_array_push(x_645, x_733); +x_735 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_735, 0, x_678); +lean_ctor_set(x_735, 1, x_734); +x_736 = lean_array_push(x_645, x_735); +x_737 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_737, 0, x_681); +lean_ctor_set(x_737, 1, x_736); +x_738 = lean_array_push(x_683, x_737); +x_739 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_739, 0, x_685); +lean_ctor_set(x_739, 1, x_738); +x_740 = lean_array_push(x_645, x_739); +x_741 = lean_array_push(x_740, x_672); +x_742 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_742, 0, x_656); +lean_ctor_set(x_742, 1, x_741); +x_743 = l_myMacro____x40_Init_Notation___hyg_11187____closed__9; +x_744 = lean_array_push(x_743, x_742); +x_745 = l_myMacro____x40_Init_Notation___hyg_658____closed__8; +x_746 = lean_array_push(x_744, x_745); +x_747 = l_myMacro____x40_Init_Notation___hyg_11187____closed__8; +x_748 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_748, 0, x_747); +lean_ctor_set(x_748, 1, x_746); +x_749 = lean_array_push(x_645, x_748); +x_750 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_750, 0, x_656); +lean_ctor_set(x_750, 1, x_749); +x_751 = lean_array_push(x_695, x_750); +x_752 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_752, 0, x_721); +lean_ctor_set(x_752, 1, x_751); +x_753 = lean_array_push(x_689, x_752); +x_754 = l_termIf_____x3a__Then__Else_____closed__2; +x_755 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_755, 0, x_754); +lean_ctor_set(x_755, 1, x_753); +x_756 = lean_unbox(x_62); +lean_dec(x_62); +if (x_756 == 0) +{ +lean_object* x_757; +lean_dec(x_646); +lean_dec(x_624); +lean_dec(x_61); +lean_dec(x_1); +if (lean_is_scalar(x_634)) { + x_757 = lean_alloc_ctor(0, 2, 0); +} else { + x_757 = x_634; +} +lean_ctor_set(x_757, 0, x_755); +lean_ctor_set(x_757, 1, x_633); +return x_757; +} +else +{ +lean_object* x_758; lean_object* x_759; lean_object* x_760; lean_object* x_761; lean_object* x_762; lean_object* x_763; lean_object* x_764; lean_object* x_765; lean_object* x_766; lean_object* x_767; lean_object* x_768; lean_object* x_769; lean_object* x_770; lean_object* x_771; lean_object* x_772; lean_object* x_773; lean_object* x_774; lean_object* x_775; lean_object* x_776; lean_object* x_777; lean_object* x_778; lean_object* x_779; lean_object* x_780; lean_object* x_781; lean_object* x_782; lean_object* x_783; lean_object* x_784; lean_object* x_785; lean_object* x_786; lean_object* x_787; lean_object* x_788; lean_object* x_789; lean_object* x_790; lean_object* x_791; lean_object* x_792; +lean_dec(x_634); +x_758 = l_Lean_Elab_Term_getCurrMacroScope(x_624, x_4, x_5, x_6, x_7, x_8, x_633); +lean_dec(x_624); +x_759 = lean_ctor_get(x_758, 0); +lean_inc(x_759); +x_760 = lean_ctor_get(x_758, 1); +lean_inc(x_760); +lean_dec(x_758); +x_761 = l_Lean_Elab_Term_getMainModule___rarg(x_8, x_760); +x_762 = lean_ctor_get(x_761, 0); +lean_inc(x_762); +x_763 = lean_ctor_get(x_761, 1); +lean_inc(x_763); +if (lean_is_exclusive(x_761)) { + lean_ctor_release(x_761, 0); + lean_ctor_release(x_761, 1); + x_764 = x_761; +} else { + lean_dec_ref(x_761); + x_764 = lean_box(0); +} +x_765 = l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandOptIdent___closed__2; +x_766 = l_Lean_addMacroScope(x_762, x_765, x_759); +x_767 = l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__37; +x_768 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_768, 0, x_638); +lean_ctor_set(x_768, 1, x_767); +lean_ctor_set(x_768, 2, x_766); +lean_ctor_set(x_768, 3, x_637); +x_769 = lean_array_push(x_645, x_768); +x_770 = lean_array_push(x_769, x_672); +x_771 = lean_array_push(x_770, x_672); +x_772 = l_myMacro____x40_Init_Notation___hyg_12942____closed__14; +x_773 = lean_array_push(x_771, x_772); +x_774 = lean_mk_syntax_ident(x_1); +x_775 = lean_array_push(x_645, x_774); +x_776 = lean_array_push(x_646, x_61); x_777 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_777, 0, x_713); +lean_ctor_set(x_777, 0, x_656); lean_ctor_set(x_777, 1, x_776); -x_778 = lean_array_push(x_655, x_777); -x_779 = lean_array_push(x_778, x_667); -x_780 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_780, 0, x_661); -lean_ctor_set(x_780, 1, x_779); -x_781 = lean_array_push(x_670, x_780); -x_782 = lean_array_push(x_781, x_672); -x_783 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_783, 0, x_674); -lean_ctor_set(x_783, 1, x_782); -x_784 = lean_array_push(x_655, x_783); +x_778 = lean_array_push(x_775, x_777); +x_779 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_779, 0, x_721); +lean_ctor_set(x_779, 1, x_778); +x_780 = lean_array_push(x_773, x_779); +x_781 = l_myMacro____x40_Init_Notation___hyg_12942____closed__8; +x_782 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_782, 0, x_781); +lean_ctor_set(x_782, 1, x_780); +x_783 = lean_array_push(x_645, x_782); +x_784 = l_myMacro____x40_Init_Notation___hyg_12942____closed__6; x_785 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_785, 0, x_661); -lean_ctor_set(x_785, 1, x_784); -x_786 = lean_array_push(x_734, x_785); -x_787 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_787, 0, x_664); -lean_ctor_set(x_787, 1, x_786); -x_788 = lean_array_push(x_686, x_787); -x_789 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_789, 0, x_716); -lean_ctor_set(x_789, 1, x_788); -x_790 = lean_array_push(x_718, x_789); +lean_ctor_set(x_785, 0, x_784); +lean_ctor_set(x_785, 1, x_783); +x_786 = l_myMacro____x40_Init_Notation___hyg_12942____closed__4; +x_787 = lean_array_push(x_786, x_785); +x_788 = lean_array_push(x_787, x_663); +x_789 = lean_array_push(x_788, x_755); +x_790 = l_myMacro____x40_Init_Notation___hyg_12942____closed__2; x_791 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_791, 0, x_720); -lean_ctor_set(x_791, 1, x_790); -x_792 = lean_array_push(x_655, x_791); -x_793 = lean_array_push(x_792, x_667); -x_794 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_794, 0, x_661); -lean_ctor_set(x_794, 1, x_793); -x_795 = lean_array_push(x_670, x_794); -x_796 = lean_array_push(x_795, x_672); -x_797 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_797, 0, x_674); -lean_ctor_set(x_797, 1, x_796); -x_798 = lean_array_push(x_728, x_797); -x_799 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_799, 0, x_661); -lean_ctor_set(x_799, 1, x_798); -x_800 = lean_array_push(x_656, x_799); -x_801 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_801, 0, x_664); -lean_ctor_set(x_801, 1, x_800); -lean_ctor_set(x_641, 0, x_801); -return x_641; -} -else -{ -lean_object* x_802; lean_object* x_803; lean_object* x_804; lean_object* x_805; lean_object* x_806; lean_object* x_807; lean_object* x_808; lean_object* x_809; lean_object* x_810; lean_object* x_811; lean_object* x_812; lean_object* x_813; lean_object* x_814; lean_object* x_815; lean_object* x_816; lean_object* x_817; lean_object* x_818; lean_object* x_819; lean_object* x_820; lean_object* x_821; lean_object* x_822; lean_object* x_823; lean_object* x_824; lean_object* x_825; lean_object* x_826; lean_object* x_827; lean_object* x_828; lean_object* x_829; lean_object* x_830; lean_object* x_831; lean_object* x_832; lean_object* x_833; lean_object* x_834; lean_object* x_835; lean_object* x_836; lean_object* x_837; lean_object* x_838; lean_object* x_839; lean_object* x_840; lean_object* x_841; lean_object* x_842; lean_object* x_843; lean_object* x_844; lean_object* x_845; lean_object* x_846; lean_object* x_847; lean_object* x_848; lean_object* x_849; lean_object* x_850; lean_object* x_851; lean_object* x_852; lean_object* x_853; lean_object* x_854; lean_object* x_855; lean_object* x_856; lean_object* x_857; lean_object* x_858; lean_object* x_859; lean_object* x_860; lean_object* x_861; lean_object* x_862; lean_object* x_863; lean_object* x_864; lean_object* x_865; lean_object* x_866; lean_object* x_867; lean_object* x_868; lean_object* x_869; lean_object* x_870; lean_object* x_871; lean_object* x_872; lean_object* x_873; lean_object* x_874; lean_object* x_875; lean_object* x_876; lean_object* x_877; lean_object* x_878; lean_object* x_879; lean_object* x_880; lean_object* x_881; lean_object* x_882; lean_object* x_883; lean_object* x_884; lean_object* x_885; lean_object* x_886; lean_object* x_887; lean_object* x_888; lean_object* x_889; lean_object* x_890; lean_object* x_891; lean_object* x_892; lean_object* x_893; lean_object* x_894; lean_object* x_895; lean_object* x_896; lean_object* x_897; lean_object* x_898; lean_object* x_899; lean_object* x_900; lean_object* x_901; lean_object* x_902; lean_object* x_903; lean_object* x_904; lean_object* x_905; lean_object* x_906; lean_object* x_907; lean_object* x_908; lean_object* x_909; lean_object* x_910; lean_object* x_911; lean_object* x_912; lean_object* x_913; lean_object* x_914; lean_object* x_915; lean_object* x_916; lean_object* x_917; lean_object* x_918; lean_object* x_919; lean_object* x_920; lean_object* x_921; lean_object* x_922; lean_object* x_923; lean_object* x_924; lean_object* x_925; lean_object* x_926; lean_object* x_927; lean_object* x_928; lean_object* x_929; lean_object* x_930; lean_object* x_931; lean_object* x_932; lean_object* x_933; lean_object* x_934; lean_object* x_935; lean_object* x_936; lean_object* x_937; lean_object* x_938; lean_object* x_939; lean_object* x_940; lean_object* x_941; lean_object* x_942; lean_object* x_943; lean_object* x_944; lean_object* x_945; lean_object* x_946; lean_object* x_947; lean_object* x_948; lean_object* x_949; lean_object* x_950; lean_object* x_951; lean_object* x_952; lean_object* x_953; lean_object* x_954; lean_object* x_955; lean_object* x_956; lean_object* x_957; lean_object* x_958; lean_object* x_959; lean_object* x_960; lean_object* x_961; lean_object* x_962; -x_802 = lean_ctor_get(x_641, 0); -x_803 = lean_ctor_get(x_641, 1); -lean_inc(x_803); -lean_inc(x_802); -lean_dec(x_641); -x_804 = l_myMacro____x40_Init_Notation___hyg_11187____closed__4; -lean_inc(x_639); -lean_inc(x_802); -x_805 = l_Lean_addMacroScope(x_802, x_804, x_639); -x_806 = lean_box(0); -x_807 = l_Lean_instInhabitedSourceInfo___closed__1; -x_808 = l_myMacro____x40_Init_Notation___hyg_11187____closed__3; -x_809 = l_myMacro____x40_Init_Notation___hyg_11187____closed__6; -x_810 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_810, 0, x_807); -lean_ctor_set(x_810, 1, x_808); -lean_ctor_set(x_810, 2, x_805); -lean_ctor_set(x_810, 3, x_809); -x_811 = l_myMacro____x40_Init_NotationExtra___hyg_3477____closed__47; -x_812 = lean_array_push(x_811, x_810); -x_813 = l_myMacro____x40_Init_NotationExtra___hyg_3477____closed__44; -x_814 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_814, 0, x_813); -lean_ctor_set(x_814, 1, x_812); -x_815 = l_Array_empty___closed__1; -x_816 = lean_array_push(x_815, x_814); -x_817 = lean_mk_syntax_ident(x_1); -x_818 = lean_array_push(x_815, x_817); -x_819 = lean_array_push(x_815, x_622); -x_820 = lean_array_push(x_819, x_623); -x_821 = l_Lean_nullKind___closed__2; -x_822 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_822, 0, x_821); -lean_ctor_set(x_822, 1, x_820); -x_823 = lean_array_push(x_818, x_822); -x_824 = l_myMacro____x40_Init_Notation___hyg_2022____closed__4; -x_825 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_825, 0, x_824); -lean_ctor_set(x_825, 1, x_823); -x_826 = lean_array_push(x_815, x_825); -x_827 = l_myMacro____x40_Init_Notation___hyg_1130____closed__23; -x_828 = lean_array_push(x_826, x_827); -x_829 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_829, 0, x_821); -lean_ctor_set(x_829, 1, x_828); -x_830 = l_myMacro____x40_Init_Notation___hyg_11187____closed__9; -x_831 = lean_array_push(x_830, x_829); -x_832 = l_myMacro____x40_Init_Notation___hyg_658____closed__8; -x_833 = lean_array_push(x_831, x_832); -x_834 = l_myMacro____x40_Init_Notation___hyg_11187____closed__8; -x_835 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_835, 0, x_834); -lean_ctor_set(x_835, 1, x_833); -x_836 = l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__36; -x_837 = lean_array_push(x_836, x_835); -x_838 = l_Lean_Elab_Tactic_evalIntro___closed__4; -lean_inc(x_639); -lean_inc(x_802); -x_839 = l_Lean_addMacroScope(x_802, x_838, x_639); -x_840 = l_Lean_Elab_Tactic_evalIntro___closed__3; -x_841 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_841, 0, x_807); -lean_ctor_set(x_841, 1, x_840); -lean_ctor_set(x_841, 2, x_839); -lean_ctor_set(x_841, 3, x_806); -x_842 = lean_array_push(x_815, x_841); -lean_inc(x_842); -x_843 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_843, 0, x_821); -lean_ctor_set(x_843, 1, x_842); -lean_inc(x_843); -x_844 = lean_array_push(x_815, x_843); -x_845 = l_myMacro____x40_Init_Notation___hyg_11187____closed__17; -x_846 = lean_array_push(x_844, x_845); -x_847 = l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__16; -x_848 = lean_array_push(x_847, x_843); -x_849 = l_Lean_Parser_Tactic_subst___closed__2; -x_850 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_850, 0, x_849); -lean_ctor_set(x_850, 1, x_848); -x_851 = lean_array_push(x_815, x_850); -x_852 = l_myMacro____x40_Init_Notation___hyg_12942____closed__18; -x_853 = lean_array_push(x_851, x_852); -x_854 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_854, 0, x_821); -lean_ctor_set(x_854, 1, x_853); -x_855 = lean_array_push(x_815, x_854); -x_856 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14290____closed__2; -x_857 = lean_array_push(x_856, x_636); -x_858 = l_Lean_Parser_Tactic_exact___closed__2; -x_859 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_859, 0, x_858); -lean_ctor_set(x_859, 1, x_857); -x_860 = lean_array_push(x_815, x_859); -x_861 = lean_array_push(x_860, x_827); -x_862 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_862, 0, x_821); -lean_ctor_set(x_862, 1, x_861); -x_863 = lean_array_push(x_855, x_862); -x_864 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_864, 0, x_821); -lean_ctor_set(x_864, 1, x_863); -x_865 = lean_array_push(x_815, x_864); -x_866 = l___private_Init_Notation_0__Lean_Parser_Tactic_withCheapRefl___closed__5; -x_867 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_867, 0, x_866); -lean_ctor_set(x_867, 1, x_865); -x_868 = lean_array_push(x_815, x_867); -x_869 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14110____closed__3; -x_870 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_870, 0, x_869); -lean_ctor_set(x_870, 1, x_868); -x_871 = l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__14; -x_872 = lean_array_push(x_871, x_870); -x_873 = l___regBuiltin_Lean_Elab_Term_elabByTactic___closed__2; -x_874 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_874, 0, x_873); -lean_ctor_set(x_874, 1, x_872); -lean_inc(x_846); -x_875 = lean_array_push(x_846, x_874); -x_876 = l_myMacro____x40_Init_Notation___hyg_11187____closed__15; -x_877 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_877, 0, x_876); -lean_ctor_set(x_877, 1, x_875); -x_878 = l_myMacro____x40_Init_Notation___hyg_11187____closed__13; -x_879 = lean_array_push(x_878, x_877); -x_880 = l_myMacro____x40_Init_Notation___hyg_11187____closed__11; -x_881 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_881, 0, x_880); -lean_ctor_set(x_881, 1, x_879); -x_882 = lean_array_push(x_815, x_881); -x_883 = lean_array_push(x_882, x_827); -x_884 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_884, 0, x_821); -lean_ctor_set(x_884, 1, x_883); -x_885 = lean_array_push(x_830, x_884); -x_886 = lean_array_push(x_885, x_832); -x_887 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_887, 0, x_834); -lean_ctor_set(x_887, 1, x_886); -x_888 = lean_array_push(x_837, x_887); -x_889 = l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__21; -lean_inc(x_639); -lean_inc(x_802); -x_890 = l_Lean_addMacroScope(x_802, x_889, x_639); -x_891 = l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__20; -x_892 = l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__23; -x_893 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_893, 0, x_807); -lean_ctor_set(x_893, 1, x_891); -lean_ctor_set(x_893, 2, x_890); -lean_ctor_set(x_893, 3, x_892); -x_894 = lean_array_push(x_815, x_893); -x_895 = l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__27; -x_896 = l_Lean_addMacroScope(x_802, x_895, x_639); -x_897 = l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__26; -x_898 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_898, 0, x_807); -lean_ctor_set(x_898, 1, x_897); -lean_ctor_set(x_898, 2, x_896); -lean_ctor_set(x_898, 3, x_806); -lean_inc(x_898); -x_899 = lean_array_push(x_815, x_898); -x_900 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_900, 0, x_821); -lean_ctor_set(x_900, 1, x_899); -x_901 = l_myMacro____x40_Init_NotationExtra___hyg_2680____closed__10; -x_902 = lean_array_push(x_901, x_900); -x_903 = l_Lean_Parser_Tactic_intro___closed__4; -x_904 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_904, 0, x_903); -lean_ctor_set(x_904, 1, x_902); -x_905 = lean_array_push(x_815, x_904); -x_906 = lean_array_push(x_905, x_852); -x_907 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_907, 0, x_821); -lean_ctor_set(x_907, 1, x_906); -x_908 = lean_array_push(x_815, x_907); -x_909 = l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__29; -x_910 = lean_array_push(x_909, x_898); -x_911 = lean_array_push(x_910, x_827); -x_912 = l_Lean_Parser_Tactic_injection___closed__2; -x_913 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_913, 0, x_912); -lean_ctor_set(x_913, 1, x_911); -x_914 = lean_array_push(x_815, x_913); -x_915 = lean_array_push(x_914, x_852); -x_916 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_916, 0, x_821); -lean_ctor_set(x_916, 1, x_915); -x_917 = lean_array_push(x_908, x_916); -x_918 = l_Lean_expandExplicitBindersAux_loop___closed__2; -x_919 = lean_array_push(x_842, x_918); -x_920 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_920, 0, x_824); -lean_ctor_set(x_920, 1, x_919); -x_921 = l_myMacro____x40_Init_NotationExtra___hyg_2680____closed__2; -x_922 = lean_array_push(x_921, x_920); -x_923 = l_Lean_Parser_Tactic_apply___closed__2; -x_924 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_924, 0, x_923); -lean_ctor_set(x_924, 1, x_922); -x_925 = lean_array_push(x_815, x_924); -x_926 = lean_array_push(x_925, x_852); -x_927 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_927, 0, x_821); -lean_ctor_set(x_927, 1, x_926); -x_928 = lean_array_push(x_917, x_927); -x_929 = l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__35; -x_930 = lean_array_push(x_928, x_929); -x_931 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_931, 0, x_821); -lean_ctor_set(x_931, 1, x_930); -x_932 = lean_array_push(x_815, x_931); -x_933 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_933, 0, x_866); -lean_ctor_set(x_933, 1, x_932); -x_934 = lean_array_push(x_815, x_933); -x_935 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_935, 0, x_869); -lean_ctor_set(x_935, 1, x_934); -x_936 = lean_array_push(x_871, x_935); -x_937 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_937, 0, x_873); -lean_ctor_set(x_937, 1, x_936); -x_938 = lean_array_push(x_815, x_937); -x_939 = lean_array_push(x_938, x_827); -x_940 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_940, 0, x_821); -lean_ctor_set(x_940, 1, x_939); -x_941 = lean_array_push(x_830, x_940); -x_942 = lean_array_push(x_941, x_832); -x_943 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_943, 0, x_834); -lean_ctor_set(x_943, 1, x_942); -x_944 = lean_array_push(x_815, x_943); -x_945 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_945, 0, x_821); -lean_ctor_set(x_945, 1, x_944); -x_946 = lean_array_push(x_894, x_945); -x_947 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_947, 0, x_824); -lean_ctor_set(x_947, 1, x_946); -x_948 = lean_array_push(x_846, x_947); -x_949 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_949, 0, x_876); -lean_ctor_set(x_949, 1, x_948); -x_950 = lean_array_push(x_878, x_949); -x_951 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_951, 0, x_880); -lean_ctor_set(x_951, 1, x_950); -x_952 = lean_array_push(x_815, x_951); -x_953 = lean_array_push(x_952, x_827); -x_954 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_954, 0, x_821); -lean_ctor_set(x_954, 1, x_953); -x_955 = lean_array_push(x_830, x_954); -x_956 = lean_array_push(x_955, x_832); -x_957 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_957, 0, x_834); -lean_ctor_set(x_957, 1, x_956); -x_958 = lean_array_push(x_888, x_957); -x_959 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_959, 0, x_821); -lean_ctor_set(x_959, 1, x_958); -x_960 = lean_array_push(x_816, x_959); -x_961 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_961, 0, x_824); -lean_ctor_set(x_961, 1, x_960); -x_962 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_962, 0, x_961); -lean_ctor_set(x_962, 1, x_803); -return x_962; -} -} -else -{ -lean_object* x_963; lean_object* x_964; lean_object* x_965; lean_object* x_966; uint8_t x_967; uint8_t x_968; uint8_t x_969; lean_object* x_970; lean_object* x_971; lean_object* x_972; lean_object* x_973; lean_object* x_974; lean_object* x_975; lean_object* x_976; lean_object* x_977; lean_object* x_978; lean_object* x_979; lean_object* x_980; lean_object* x_981; lean_object* x_982; lean_object* x_983; lean_object* x_984; lean_object* x_985; lean_object* x_986; lean_object* x_987; lean_object* x_988; lean_object* x_989; lean_object* x_990; lean_object* x_991; lean_object* x_992; lean_object* x_993; lean_object* x_994; lean_object* x_995; lean_object* x_996; lean_object* x_997; lean_object* x_998; lean_object* x_999; lean_object* x_1000; lean_object* x_1001; lean_object* x_1002; lean_object* x_1003; lean_object* x_1004; lean_object* x_1005; lean_object* x_1006; lean_object* x_1007; lean_object* x_1008; lean_object* x_1009; lean_object* x_1010; lean_object* x_1011; lean_object* x_1012; lean_object* x_1013; lean_object* x_1014; lean_object* x_1015; lean_object* x_1016; lean_object* x_1017; lean_object* x_1018; lean_object* x_1019; lean_object* x_1020; lean_object* x_1021; lean_object* x_1022; lean_object* x_1023; lean_object* x_1024; lean_object* x_1025; lean_object* x_1026; lean_object* x_1027; lean_object* x_1028; lean_object* x_1029; lean_object* x_1030; lean_object* x_1031; lean_object* x_1032; lean_object* x_1033; lean_object* x_1034; lean_object* x_1035; lean_object* x_1036; lean_object* x_1037; lean_object* x_1038; lean_object* x_1039; lean_object* x_1040; lean_object* x_1041; lean_object* x_1042; lean_object* x_1043; lean_object* x_1044; lean_object* x_1045; lean_object* x_1046; lean_object* x_1047; lean_object* x_1048; lean_object* x_1049; lean_object* x_1050; lean_object* x_1051; lean_object* x_1052; lean_object* x_1053; lean_object* x_1054; lean_object* x_1055; lean_object* x_1056; lean_object* x_1057; lean_object* x_1058; lean_object* x_1059; lean_object* x_1060; lean_object* x_1061; lean_object* x_1062; lean_object* x_1063; lean_object* x_1064; lean_object* x_1065; lean_object* x_1066; lean_object* x_1067; lean_object* x_1068; lean_object* x_1069; lean_object* x_1070; lean_object* x_1071; lean_object* x_1072; lean_object* x_1073; lean_object* x_1074; lean_object* x_1075; lean_object* x_1076; lean_object* x_1077; lean_object* x_1078; lean_object* x_1079; lean_object* x_1080; lean_object* x_1081; lean_object* x_1082; lean_object* x_1083; lean_object* x_1084; lean_object* x_1085; lean_object* x_1086; lean_object* x_1087; lean_object* x_1088; lean_object* x_1089; lean_object* x_1090; lean_object* x_1091; lean_object* x_1092; lean_object* x_1093; lean_object* x_1094; lean_object* x_1095; lean_object* x_1096; lean_object* x_1097; lean_object* x_1098; lean_object* x_1099; lean_object* x_1100; lean_object* x_1101; lean_object* x_1102; lean_object* x_1103; lean_object* x_1104; lean_object* x_1105; lean_object* x_1106; lean_object* x_1107; lean_object* x_1108; lean_object* x_1109; lean_object* x_1110; lean_object* x_1111; lean_object* x_1112; lean_object* x_1113; lean_object* x_1114; lean_object* x_1115; lean_object* x_1116; lean_object* x_1117; lean_object* x_1118; lean_object* x_1119; lean_object* x_1120; lean_object* x_1121; lean_object* x_1122; lean_object* x_1123; lean_object* x_1124; lean_object* x_1125; lean_object* x_1126; lean_object* x_1127; lean_object* x_1128; lean_object* x_1129; lean_object* x_1130; lean_object* x_1131; lean_object* x_1132; lean_object* x_1133; lean_object* x_1134; lean_object* x_1135; lean_object* x_1136; lean_object* x_1137; lean_object* x_1138; lean_object* x_1139; lean_object* x_1140; -x_963 = lean_ctor_get(x_3, 0); -x_964 = lean_ctor_get(x_3, 1); -x_965 = lean_ctor_get(x_3, 2); -x_966 = lean_ctor_get(x_3, 3); -x_967 = lean_ctor_get_uint8(x_3, sizeof(void*)*6); -x_968 = lean_ctor_get_uint8(x_3, sizeof(void*)*6 + 1); -x_969 = lean_ctor_get_uint8(x_3, sizeof(void*)*6 + 2); -x_970 = lean_ctor_get(x_3, 5); -lean_inc(x_970); -lean_inc(x_966); -lean_inc(x_965); -lean_inc(x_964); -lean_inc(x_963); -lean_dec(x_3); -x_971 = lean_alloc_ctor(0, 6, 3); -lean_ctor_set(x_971, 0, x_963); -lean_ctor_set(x_971, 1, x_964); -lean_ctor_set(x_971, 2, x_965); -lean_ctor_set(x_971, 3, x_966); -lean_ctor_set(x_971, 4, x_628); -lean_ctor_set(x_971, 5, x_970); -lean_ctor_set_uint8(x_971, sizeof(void*)*6, x_967); -lean_ctor_set_uint8(x_971, sizeof(void*)*6 + 1, x_968); -lean_ctor_set_uint8(x_971, sizeof(void*)*6 + 2, x_969); -lean_inc(x_971); -lean_inc(x_1); -x_972 = l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs(x_1, x_621, x_971, x_4, x_5, x_6, x_7, x_8, x_632); -x_973 = lean_ctor_get(x_972, 0); -lean_inc(x_973); -x_974 = lean_ctor_get(x_972, 1); -lean_inc(x_974); -lean_dec(x_972); -x_975 = l_Lean_Elab_Term_getCurrMacroScope(x_971, x_4, x_5, x_6, x_7, x_8, x_974); -lean_dec(x_971); -x_976 = lean_ctor_get(x_975, 0); -lean_inc(x_976); -x_977 = lean_ctor_get(x_975, 1); -lean_inc(x_977); -lean_dec(x_975); -x_978 = l_Lean_Elab_Term_getMainModule___rarg(x_8, x_977); -x_979 = lean_ctor_get(x_978, 0); -lean_inc(x_979); -x_980 = lean_ctor_get(x_978, 1); -lean_inc(x_980); -if (lean_is_exclusive(x_978)) { - lean_ctor_release(x_978, 0); - lean_ctor_release(x_978, 1); - x_981 = x_978; +lean_ctor_set(x_791, 0, x_790); +lean_ctor_set(x_791, 1, x_789); +if (lean_is_scalar(x_764)) { + x_792 = lean_alloc_ctor(0, 2, 0); } else { - lean_dec_ref(x_978); - x_981 = lean_box(0); + x_792 = x_764; } -x_982 = l_myMacro____x40_Init_Notation___hyg_11187____closed__4; -lean_inc(x_976); -lean_inc(x_979); -x_983 = l_Lean_addMacroScope(x_979, x_982, x_976); -x_984 = lean_box(0); -x_985 = l_Lean_instInhabitedSourceInfo___closed__1; -x_986 = l_myMacro____x40_Init_Notation___hyg_11187____closed__3; -x_987 = l_myMacro____x40_Init_Notation___hyg_11187____closed__6; -x_988 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_988, 0, x_985); -lean_ctor_set(x_988, 1, x_986); -lean_ctor_set(x_988, 2, x_983); -lean_ctor_set(x_988, 3, x_987); -x_989 = l_myMacro____x40_Init_NotationExtra___hyg_3477____closed__47; -x_990 = lean_array_push(x_989, x_988); -x_991 = l_myMacro____x40_Init_NotationExtra___hyg_3477____closed__44; -x_992 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_992, 0, x_991); -lean_ctor_set(x_992, 1, x_990); -x_993 = l_Array_empty___closed__1; -x_994 = lean_array_push(x_993, x_992); -x_995 = lean_mk_syntax_ident(x_1); -x_996 = lean_array_push(x_993, x_995); -x_997 = lean_array_push(x_993, x_622); -x_998 = lean_array_push(x_997, x_623); -x_999 = l_Lean_nullKind___closed__2; -x_1000 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1000, 0, x_999); -lean_ctor_set(x_1000, 1, x_998); -x_1001 = lean_array_push(x_996, x_1000); -x_1002 = l_myMacro____x40_Init_Notation___hyg_2022____closed__4; -x_1003 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1003, 0, x_1002); -lean_ctor_set(x_1003, 1, x_1001); -x_1004 = lean_array_push(x_993, x_1003); -x_1005 = l_myMacro____x40_Init_Notation___hyg_1130____closed__23; -x_1006 = lean_array_push(x_1004, x_1005); -x_1007 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1007, 0, x_999); -lean_ctor_set(x_1007, 1, x_1006); -x_1008 = l_myMacro____x40_Init_Notation___hyg_11187____closed__9; -x_1009 = lean_array_push(x_1008, x_1007); -x_1010 = l_myMacro____x40_Init_Notation___hyg_658____closed__8; -x_1011 = lean_array_push(x_1009, x_1010); -x_1012 = l_myMacro____x40_Init_Notation___hyg_11187____closed__8; -x_1013 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1013, 0, x_1012); -lean_ctor_set(x_1013, 1, x_1011); -x_1014 = l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__36; -x_1015 = lean_array_push(x_1014, x_1013); -x_1016 = l_Lean_Elab_Tactic_evalIntro___closed__4; -lean_inc(x_976); -lean_inc(x_979); -x_1017 = l_Lean_addMacroScope(x_979, x_1016, x_976); -x_1018 = l_Lean_Elab_Tactic_evalIntro___closed__3; -x_1019 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1019, 0, x_985); -lean_ctor_set(x_1019, 1, x_1018); -lean_ctor_set(x_1019, 2, x_1017); -lean_ctor_set(x_1019, 3, x_984); -x_1020 = lean_array_push(x_993, x_1019); -lean_inc(x_1020); -x_1021 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1021, 0, x_999); -lean_ctor_set(x_1021, 1, x_1020); -lean_inc(x_1021); -x_1022 = lean_array_push(x_993, x_1021); -x_1023 = l_myMacro____x40_Init_Notation___hyg_11187____closed__17; -x_1024 = lean_array_push(x_1022, x_1023); -x_1025 = l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__16; -x_1026 = lean_array_push(x_1025, x_1021); -x_1027 = l_Lean_Parser_Tactic_subst___closed__2; -x_1028 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1028, 0, x_1027); -lean_ctor_set(x_1028, 1, x_1026); -x_1029 = lean_array_push(x_993, x_1028); -x_1030 = l_myMacro____x40_Init_Notation___hyg_12942____closed__18; -x_1031 = lean_array_push(x_1029, x_1030); -x_1032 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1032, 0, x_999); -lean_ctor_set(x_1032, 1, x_1031); -x_1033 = lean_array_push(x_993, x_1032); -x_1034 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14290____closed__2; -x_1035 = lean_array_push(x_1034, x_973); -x_1036 = l_Lean_Parser_Tactic_exact___closed__2; -x_1037 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1037, 0, x_1036); -lean_ctor_set(x_1037, 1, x_1035); -x_1038 = lean_array_push(x_993, x_1037); -x_1039 = lean_array_push(x_1038, x_1005); -x_1040 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1040, 0, x_999); -lean_ctor_set(x_1040, 1, x_1039); -x_1041 = lean_array_push(x_1033, x_1040); -x_1042 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1042, 0, x_999); -lean_ctor_set(x_1042, 1, x_1041); -x_1043 = lean_array_push(x_993, x_1042); -x_1044 = l___private_Init_Notation_0__Lean_Parser_Tactic_withCheapRefl___closed__5; -x_1045 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1045, 0, x_1044); -lean_ctor_set(x_1045, 1, x_1043); -x_1046 = lean_array_push(x_993, x_1045); -x_1047 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14110____closed__3; -x_1048 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1048, 0, x_1047); -lean_ctor_set(x_1048, 1, x_1046); -x_1049 = l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__14; -x_1050 = lean_array_push(x_1049, x_1048); -x_1051 = l___regBuiltin_Lean_Elab_Term_elabByTactic___closed__2; -x_1052 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1052, 0, x_1051); -lean_ctor_set(x_1052, 1, x_1050); -lean_inc(x_1024); -x_1053 = lean_array_push(x_1024, x_1052); -x_1054 = l_myMacro____x40_Init_Notation___hyg_11187____closed__15; -x_1055 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1055, 0, x_1054); -lean_ctor_set(x_1055, 1, x_1053); -x_1056 = l_myMacro____x40_Init_Notation___hyg_11187____closed__13; -x_1057 = lean_array_push(x_1056, x_1055); -x_1058 = l_myMacro____x40_Init_Notation___hyg_11187____closed__11; -x_1059 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1059, 0, x_1058); -lean_ctor_set(x_1059, 1, x_1057); -x_1060 = lean_array_push(x_993, x_1059); -x_1061 = lean_array_push(x_1060, x_1005); -x_1062 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1062, 0, x_999); -lean_ctor_set(x_1062, 1, x_1061); -x_1063 = lean_array_push(x_1008, x_1062); -x_1064 = lean_array_push(x_1063, x_1010); -x_1065 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1065, 0, x_1012); -lean_ctor_set(x_1065, 1, x_1064); -x_1066 = lean_array_push(x_1015, x_1065); -x_1067 = l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__21; -lean_inc(x_976); -lean_inc(x_979); -x_1068 = l_Lean_addMacroScope(x_979, x_1067, x_976); -x_1069 = l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__20; -x_1070 = l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__23; -x_1071 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1071, 0, x_985); -lean_ctor_set(x_1071, 1, x_1069); -lean_ctor_set(x_1071, 2, x_1068); -lean_ctor_set(x_1071, 3, x_1070); -x_1072 = lean_array_push(x_993, x_1071); -x_1073 = l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__27; -x_1074 = l_Lean_addMacroScope(x_979, x_1073, x_976); -x_1075 = l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__26; -x_1076 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1076, 0, x_985); -lean_ctor_set(x_1076, 1, x_1075); -lean_ctor_set(x_1076, 2, x_1074); -lean_ctor_set(x_1076, 3, x_984); -lean_inc(x_1076); -x_1077 = lean_array_push(x_993, x_1076); -x_1078 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1078, 0, x_999); -lean_ctor_set(x_1078, 1, x_1077); -x_1079 = l_myMacro____x40_Init_NotationExtra___hyg_2680____closed__10; -x_1080 = lean_array_push(x_1079, x_1078); -x_1081 = l_Lean_Parser_Tactic_intro___closed__4; -x_1082 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1082, 0, x_1081); -lean_ctor_set(x_1082, 1, x_1080); -x_1083 = lean_array_push(x_993, x_1082); -x_1084 = lean_array_push(x_1083, x_1030); -x_1085 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1085, 0, x_999); -lean_ctor_set(x_1085, 1, x_1084); -x_1086 = lean_array_push(x_993, x_1085); -x_1087 = l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__29; -x_1088 = lean_array_push(x_1087, x_1076); -x_1089 = lean_array_push(x_1088, x_1005); -x_1090 = l_Lean_Parser_Tactic_injection___closed__2; -x_1091 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1091, 0, x_1090); -lean_ctor_set(x_1091, 1, x_1089); -x_1092 = lean_array_push(x_993, x_1091); -x_1093 = lean_array_push(x_1092, x_1030); -x_1094 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1094, 0, x_999); -lean_ctor_set(x_1094, 1, x_1093); -x_1095 = lean_array_push(x_1086, x_1094); -x_1096 = l_Lean_expandExplicitBindersAux_loop___closed__2; -x_1097 = lean_array_push(x_1020, x_1096); -x_1098 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1098, 0, x_1002); -lean_ctor_set(x_1098, 1, x_1097); -x_1099 = l_myMacro____x40_Init_NotationExtra___hyg_2680____closed__2; -x_1100 = lean_array_push(x_1099, x_1098); -x_1101 = l_Lean_Parser_Tactic_apply___closed__2; -x_1102 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1102, 0, x_1101); -lean_ctor_set(x_1102, 1, x_1100); -x_1103 = lean_array_push(x_993, x_1102); -x_1104 = lean_array_push(x_1103, x_1030); -x_1105 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1105, 0, x_999); -lean_ctor_set(x_1105, 1, x_1104); -x_1106 = lean_array_push(x_1095, x_1105); -x_1107 = l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__35; -x_1108 = lean_array_push(x_1106, x_1107); -x_1109 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1109, 0, x_999); -lean_ctor_set(x_1109, 1, x_1108); -x_1110 = lean_array_push(x_993, x_1109); -x_1111 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1111, 0, x_1044); -lean_ctor_set(x_1111, 1, x_1110); -x_1112 = lean_array_push(x_993, x_1111); -x_1113 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1113, 0, x_1047); -lean_ctor_set(x_1113, 1, x_1112); -x_1114 = lean_array_push(x_1049, x_1113); -x_1115 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1115, 0, x_1051); -lean_ctor_set(x_1115, 1, x_1114); -x_1116 = lean_array_push(x_993, x_1115); -x_1117 = lean_array_push(x_1116, x_1005); -x_1118 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1118, 0, x_999); -lean_ctor_set(x_1118, 1, x_1117); -x_1119 = lean_array_push(x_1008, x_1118); -x_1120 = lean_array_push(x_1119, x_1010); -x_1121 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1121, 0, x_1012); -lean_ctor_set(x_1121, 1, x_1120); -x_1122 = lean_array_push(x_993, x_1121); -x_1123 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1123, 0, x_999); -lean_ctor_set(x_1123, 1, x_1122); -x_1124 = lean_array_push(x_1072, x_1123); -x_1125 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1125, 0, x_1002); -lean_ctor_set(x_1125, 1, x_1124); -x_1126 = lean_array_push(x_1024, x_1125); -x_1127 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1127, 0, x_1054); -lean_ctor_set(x_1127, 1, x_1126); -x_1128 = lean_array_push(x_1056, x_1127); -x_1129 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1129, 0, x_1058); -lean_ctor_set(x_1129, 1, x_1128); -x_1130 = lean_array_push(x_993, x_1129); -x_1131 = lean_array_push(x_1130, x_1005); -x_1132 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1132, 0, x_999); -lean_ctor_set(x_1132, 1, x_1131); -x_1133 = lean_array_push(x_1008, x_1132); -x_1134 = lean_array_push(x_1133, x_1010); -x_1135 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1135, 0, x_1012); -lean_ctor_set(x_1135, 1, x_1134); -x_1136 = lean_array_push(x_1066, x_1135); -x_1137 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1137, 0, x_999); -lean_ctor_set(x_1137, 1, x_1136); -x_1138 = lean_array_push(x_994, x_1137); -x_1139 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1139, 0, x_1002); -lean_ctor_set(x_1139, 1, x_1138); -if (lean_is_scalar(x_981)) { - x_1140 = lean_alloc_ctor(0, 2, 0); -} else { - x_1140 = x_981; -} -lean_ctor_set(x_1140, 0, x_1139); -lean_ctor_set(x_1140, 1, x_980); -return x_1140; -} -} -else -{ -lean_object* x_1141; lean_object* x_1142; lean_object* x_1143; lean_object* x_1144; lean_object* x_1145; lean_object* x_1146; lean_object* x_1147; lean_object* x_1148; lean_object* x_1149; lean_object* x_1150; lean_object* x_1151; lean_object* x_1152; lean_object* x_1153; uint8_t x_1154; uint8_t x_1155; uint8_t x_1156; lean_object* x_1157; lean_object* x_1158; lean_object* x_1159; lean_object* x_1160; lean_object* x_1161; lean_object* x_1162; lean_object* x_1163; lean_object* x_1164; lean_object* x_1165; lean_object* x_1166; lean_object* x_1167; lean_object* x_1168; lean_object* x_1169; lean_object* x_1170; lean_object* x_1171; lean_object* x_1172; lean_object* x_1173; lean_object* x_1174; lean_object* x_1175; lean_object* x_1176; lean_object* x_1177; lean_object* x_1178; lean_object* x_1179; lean_object* x_1180; lean_object* x_1181; lean_object* x_1182; lean_object* x_1183; lean_object* x_1184; lean_object* x_1185; lean_object* x_1186; lean_object* x_1187; lean_object* x_1188; lean_object* x_1189; lean_object* x_1190; lean_object* x_1191; lean_object* x_1192; lean_object* x_1193; lean_object* x_1194; lean_object* x_1195; lean_object* x_1196; lean_object* x_1197; lean_object* x_1198; lean_object* x_1199; lean_object* x_1200; lean_object* x_1201; lean_object* x_1202; lean_object* x_1203; lean_object* x_1204; lean_object* x_1205; lean_object* x_1206; lean_object* x_1207; lean_object* x_1208; lean_object* x_1209; lean_object* x_1210; lean_object* x_1211; lean_object* x_1212; lean_object* x_1213; lean_object* x_1214; lean_object* x_1215; lean_object* x_1216; lean_object* x_1217; lean_object* x_1218; lean_object* x_1219; lean_object* x_1220; lean_object* x_1221; lean_object* x_1222; lean_object* x_1223; lean_object* x_1224; lean_object* x_1225; lean_object* x_1226; lean_object* x_1227; lean_object* x_1228; lean_object* x_1229; lean_object* x_1230; lean_object* x_1231; lean_object* x_1232; lean_object* x_1233; lean_object* x_1234; lean_object* x_1235; lean_object* x_1236; lean_object* x_1237; lean_object* x_1238; lean_object* x_1239; lean_object* x_1240; lean_object* x_1241; lean_object* x_1242; lean_object* x_1243; lean_object* x_1244; lean_object* x_1245; lean_object* x_1246; lean_object* x_1247; lean_object* x_1248; lean_object* x_1249; lean_object* x_1250; lean_object* x_1251; lean_object* x_1252; lean_object* x_1253; lean_object* x_1254; lean_object* x_1255; lean_object* x_1256; lean_object* x_1257; lean_object* x_1258; lean_object* x_1259; lean_object* x_1260; lean_object* x_1261; lean_object* x_1262; lean_object* x_1263; lean_object* x_1264; lean_object* x_1265; lean_object* x_1266; lean_object* x_1267; lean_object* x_1268; lean_object* x_1269; lean_object* x_1270; lean_object* x_1271; lean_object* x_1272; lean_object* x_1273; lean_object* x_1274; lean_object* x_1275; lean_object* x_1276; lean_object* x_1277; lean_object* x_1278; lean_object* x_1279; lean_object* x_1280; lean_object* x_1281; lean_object* x_1282; lean_object* x_1283; lean_object* x_1284; lean_object* x_1285; lean_object* x_1286; lean_object* x_1287; lean_object* x_1288; lean_object* x_1289; lean_object* x_1290; lean_object* x_1291; lean_object* x_1292; lean_object* x_1293; lean_object* x_1294; lean_object* x_1295; lean_object* x_1296; lean_object* x_1297; lean_object* x_1298; lean_object* x_1299; lean_object* x_1300; lean_object* x_1301; lean_object* x_1302; lean_object* x_1303; lean_object* x_1304; lean_object* x_1305; lean_object* x_1306; lean_object* x_1307; lean_object* x_1308; lean_object* x_1309; lean_object* x_1310; lean_object* x_1311; lean_object* x_1312; lean_object* x_1313; lean_object* x_1314; lean_object* x_1315; lean_object* x_1316; lean_object* x_1317; lean_object* x_1318; lean_object* x_1319; lean_object* x_1320; lean_object* x_1321; lean_object* x_1322; lean_object* x_1323; lean_object* x_1324; lean_object* x_1325; lean_object* x_1326; lean_object* x_1327; lean_object* x_1328; -x_1141 = lean_ctor_get(x_625, 0); -x_1142 = lean_ctor_get(x_625, 1); -x_1143 = lean_ctor_get(x_625, 2); -x_1144 = lean_ctor_get(x_625, 3); -lean_inc(x_1144); -lean_inc(x_1143); -lean_inc(x_1142); -lean_inc(x_1141); -lean_dec(x_625); -x_1145 = lean_unsigned_to_nat(1u); -x_1146 = lean_nat_add(x_1142, x_1145); -x_1147 = lean_alloc_ctor(0, 4, 0); -lean_ctor_set(x_1147, 0, x_1141); -lean_ctor_set(x_1147, 1, x_1146); -lean_ctor_set(x_1147, 2, x_1143); -lean_ctor_set(x_1147, 3, x_1144); -x_1148 = lean_st_ref_set(x_8, x_1147, x_626); -x_1149 = lean_ctor_get(x_1148, 1); -lean_inc(x_1149); -lean_dec(x_1148); -x_1150 = lean_ctor_get(x_3, 0); -lean_inc(x_1150); -x_1151 = lean_ctor_get(x_3, 1); -lean_inc(x_1151); -x_1152 = lean_ctor_get(x_3, 2); -lean_inc(x_1152); -x_1153 = lean_ctor_get(x_3, 3); -lean_inc(x_1153); -x_1154 = lean_ctor_get_uint8(x_3, sizeof(void*)*6); -x_1155 = lean_ctor_get_uint8(x_3, sizeof(void*)*6 + 1); -x_1156 = lean_ctor_get_uint8(x_3, sizeof(void*)*6 + 2); -x_1157 = lean_ctor_get(x_3, 5); -lean_inc(x_1157); -if (lean_is_exclusive(x_3)) { - lean_ctor_release(x_3, 0); - lean_ctor_release(x_3, 1); - lean_ctor_release(x_3, 2); - lean_ctor_release(x_3, 3); - lean_ctor_release(x_3, 4); - lean_ctor_release(x_3, 5); - x_1158 = x_3; -} else { - lean_dec_ref(x_3); - x_1158 = lean_box(0); -} -if (lean_is_scalar(x_1158)) { - x_1159 = lean_alloc_ctor(0, 6, 3); -} else { - x_1159 = x_1158; -} -lean_ctor_set(x_1159, 0, x_1150); -lean_ctor_set(x_1159, 1, x_1151); -lean_ctor_set(x_1159, 2, x_1152); -lean_ctor_set(x_1159, 3, x_1153); -lean_ctor_set(x_1159, 4, x_1142); -lean_ctor_set(x_1159, 5, x_1157); -lean_ctor_set_uint8(x_1159, sizeof(void*)*6, x_1154); -lean_ctor_set_uint8(x_1159, sizeof(void*)*6 + 1, x_1155); -lean_ctor_set_uint8(x_1159, sizeof(void*)*6 + 2, x_1156); -lean_inc(x_1159); -lean_inc(x_1); -x_1160 = l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs(x_1, x_621, x_1159, x_4, x_5, x_6, x_7, x_8, x_1149); -x_1161 = lean_ctor_get(x_1160, 0); -lean_inc(x_1161); -x_1162 = lean_ctor_get(x_1160, 1); -lean_inc(x_1162); -lean_dec(x_1160); -x_1163 = l_Lean_Elab_Term_getCurrMacroScope(x_1159, x_4, x_5, x_6, x_7, x_8, x_1162); -lean_dec(x_1159); -x_1164 = lean_ctor_get(x_1163, 0); -lean_inc(x_1164); -x_1165 = lean_ctor_get(x_1163, 1); -lean_inc(x_1165); -lean_dec(x_1163); -x_1166 = l_Lean_Elab_Term_getMainModule___rarg(x_8, x_1165); -x_1167 = lean_ctor_get(x_1166, 0); -lean_inc(x_1167); -x_1168 = lean_ctor_get(x_1166, 1); -lean_inc(x_1168); -if (lean_is_exclusive(x_1166)) { - lean_ctor_release(x_1166, 0); - lean_ctor_release(x_1166, 1); - x_1169 = x_1166; -} else { - lean_dec_ref(x_1166); - x_1169 = lean_box(0); -} -x_1170 = l_myMacro____x40_Init_Notation___hyg_11187____closed__4; -lean_inc(x_1164); -lean_inc(x_1167); -x_1171 = l_Lean_addMacroScope(x_1167, x_1170, x_1164); -x_1172 = lean_box(0); -x_1173 = l_Lean_instInhabitedSourceInfo___closed__1; -x_1174 = l_myMacro____x40_Init_Notation___hyg_11187____closed__3; -x_1175 = l_myMacro____x40_Init_Notation___hyg_11187____closed__6; -x_1176 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1176, 0, x_1173); -lean_ctor_set(x_1176, 1, x_1174); -lean_ctor_set(x_1176, 2, x_1171); -lean_ctor_set(x_1176, 3, x_1175); -x_1177 = l_myMacro____x40_Init_NotationExtra___hyg_3477____closed__47; -x_1178 = lean_array_push(x_1177, x_1176); -x_1179 = l_myMacro____x40_Init_NotationExtra___hyg_3477____closed__44; -x_1180 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1180, 0, x_1179); -lean_ctor_set(x_1180, 1, x_1178); -x_1181 = l_Array_empty___closed__1; -x_1182 = lean_array_push(x_1181, x_1180); -x_1183 = lean_mk_syntax_ident(x_1); -x_1184 = lean_array_push(x_1181, x_1183); -x_1185 = lean_array_push(x_1181, x_622); -x_1186 = lean_array_push(x_1185, x_623); -x_1187 = l_Lean_nullKind___closed__2; -x_1188 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1188, 0, x_1187); -lean_ctor_set(x_1188, 1, x_1186); -x_1189 = lean_array_push(x_1184, x_1188); -x_1190 = l_myMacro____x40_Init_Notation___hyg_2022____closed__4; -x_1191 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1191, 0, x_1190); -lean_ctor_set(x_1191, 1, x_1189); -x_1192 = lean_array_push(x_1181, x_1191); -x_1193 = l_myMacro____x40_Init_Notation___hyg_1130____closed__23; -x_1194 = lean_array_push(x_1192, x_1193); -x_1195 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1195, 0, x_1187); -lean_ctor_set(x_1195, 1, x_1194); -x_1196 = l_myMacro____x40_Init_Notation___hyg_11187____closed__9; -x_1197 = lean_array_push(x_1196, x_1195); -x_1198 = l_myMacro____x40_Init_Notation___hyg_658____closed__8; -x_1199 = lean_array_push(x_1197, x_1198); -x_1200 = l_myMacro____x40_Init_Notation___hyg_11187____closed__8; -x_1201 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1201, 0, x_1200); -lean_ctor_set(x_1201, 1, x_1199); -x_1202 = l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__36; -x_1203 = lean_array_push(x_1202, x_1201); -x_1204 = l_Lean_Elab_Tactic_evalIntro___closed__4; -lean_inc(x_1164); -lean_inc(x_1167); -x_1205 = l_Lean_addMacroScope(x_1167, x_1204, x_1164); -x_1206 = l_Lean_Elab_Tactic_evalIntro___closed__3; -x_1207 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1207, 0, x_1173); -lean_ctor_set(x_1207, 1, x_1206); -lean_ctor_set(x_1207, 2, x_1205); -lean_ctor_set(x_1207, 3, x_1172); -x_1208 = lean_array_push(x_1181, x_1207); -lean_inc(x_1208); -x_1209 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1209, 0, x_1187); -lean_ctor_set(x_1209, 1, x_1208); -lean_inc(x_1209); -x_1210 = lean_array_push(x_1181, x_1209); -x_1211 = l_myMacro____x40_Init_Notation___hyg_11187____closed__17; -x_1212 = lean_array_push(x_1210, x_1211); -x_1213 = l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__16; -x_1214 = lean_array_push(x_1213, x_1209); -x_1215 = l_Lean_Parser_Tactic_subst___closed__2; -x_1216 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1216, 0, x_1215); -lean_ctor_set(x_1216, 1, x_1214); -x_1217 = lean_array_push(x_1181, x_1216); -x_1218 = l_myMacro____x40_Init_Notation___hyg_12942____closed__18; -x_1219 = lean_array_push(x_1217, x_1218); -x_1220 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1220, 0, x_1187); -lean_ctor_set(x_1220, 1, x_1219); -x_1221 = lean_array_push(x_1181, x_1220); -x_1222 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14290____closed__2; -x_1223 = lean_array_push(x_1222, x_1161); -x_1224 = l_Lean_Parser_Tactic_exact___closed__2; -x_1225 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1225, 0, x_1224); -lean_ctor_set(x_1225, 1, x_1223); -x_1226 = lean_array_push(x_1181, x_1225); -x_1227 = lean_array_push(x_1226, x_1193); -x_1228 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1228, 0, x_1187); -lean_ctor_set(x_1228, 1, x_1227); -x_1229 = lean_array_push(x_1221, x_1228); -x_1230 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1230, 0, x_1187); -lean_ctor_set(x_1230, 1, x_1229); -x_1231 = lean_array_push(x_1181, x_1230); -x_1232 = l___private_Init_Notation_0__Lean_Parser_Tactic_withCheapRefl___closed__5; -x_1233 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1233, 0, x_1232); -lean_ctor_set(x_1233, 1, x_1231); -x_1234 = lean_array_push(x_1181, x_1233); -x_1235 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14110____closed__3; -x_1236 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1236, 0, x_1235); -lean_ctor_set(x_1236, 1, x_1234); -x_1237 = l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__14; -x_1238 = lean_array_push(x_1237, x_1236); -x_1239 = l___regBuiltin_Lean_Elab_Term_elabByTactic___closed__2; -x_1240 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1240, 0, x_1239); -lean_ctor_set(x_1240, 1, x_1238); -lean_inc(x_1212); -x_1241 = lean_array_push(x_1212, x_1240); -x_1242 = l_myMacro____x40_Init_Notation___hyg_11187____closed__15; -x_1243 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1243, 0, x_1242); -lean_ctor_set(x_1243, 1, x_1241); -x_1244 = l_myMacro____x40_Init_Notation___hyg_11187____closed__13; -x_1245 = lean_array_push(x_1244, x_1243); -x_1246 = l_myMacro____x40_Init_Notation___hyg_11187____closed__11; -x_1247 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1247, 0, x_1246); -lean_ctor_set(x_1247, 1, x_1245); -x_1248 = lean_array_push(x_1181, x_1247); -x_1249 = lean_array_push(x_1248, x_1193); -x_1250 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1250, 0, x_1187); -lean_ctor_set(x_1250, 1, x_1249); -x_1251 = lean_array_push(x_1196, x_1250); -x_1252 = lean_array_push(x_1251, x_1198); -x_1253 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1253, 0, x_1200); -lean_ctor_set(x_1253, 1, x_1252); -x_1254 = lean_array_push(x_1203, x_1253); -x_1255 = l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__21; -lean_inc(x_1164); -lean_inc(x_1167); -x_1256 = l_Lean_addMacroScope(x_1167, x_1255, x_1164); -x_1257 = l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__20; -x_1258 = l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__23; -x_1259 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1259, 0, x_1173); -lean_ctor_set(x_1259, 1, x_1257); -lean_ctor_set(x_1259, 2, x_1256); -lean_ctor_set(x_1259, 3, x_1258); -x_1260 = lean_array_push(x_1181, x_1259); -x_1261 = l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__27; -x_1262 = l_Lean_addMacroScope(x_1167, x_1261, x_1164); -x_1263 = l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__26; -x_1264 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1264, 0, x_1173); -lean_ctor_set(x_1264, 1, x_1263); -lean_ctor_set(x_1264, 2, x_1262); -lean_ctor_set(x_1264, 3, x_1172); -lean_inc(x_1264); -x_1265 = lean_array_push(x_1181, x_1264); -x_1266 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1266, 0, x_1187); -lean_ctor_set(x_1266, 1, x_1265); -x_1267 = l_myMacro____x40_Init_NotationExtra___hyg_2680____closed__10; -x_1268 = lean_array_push(x_1267, x_1266); -x_1269 = l_Lean_Parser_Tactic_intro___closed__4; -x_1270 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1270, 0, x_1269); -lean_ctor_set(x_1270, 1, x_1268); -x_1271 = lean_array_push(x_1181, x_1270); -x_1272 = lean_array_push(x_1271, x_1218); -x_1273 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1273, 0, x_1187); -lean_ctor_set(x_1273, 1, x_1272); -x_1274 = lean_array_push(x_1181, x_1273); -x_1275 = l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__29; -x_1276 = lean_array_push(x_1275, x_1264); -x_1277 = lean_array_push(x_1276, x_1193); -x_1278 = l_Lean_Parser_Tactic_injection___closed__2; -x_1279 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1279, 0, x_1278); -lean_ctor_set(x_1279, 1, x_1277); -x_1280 = lean_array_push(x_1181, x_1279); -x_1281 = lean_array_push(x_1280, x_1218); -x_1282 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1282, 0, x_1187); -lean_ctor_set(x_1282, 1, x_1281); -x_1283 = lean_array_push(x_1274, x_1282); -x_1284 = l_Lean_expandExplicitBindersAux_loop___closed__2; -x_1285 = lean_array_push(x_1208, x_1284); -x_1286 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1286, 0, x_1190); -lean_ctor_set(x_1286, 1, x_1285); -x_1287 = l_myMacro____x40_Init_NotationExtra___hyg_2680____closed__2; -x_1288 = lean_array_push(x_1287, x_1286); -x_1289 = l_Lean_Parser_Tactic_apply___closed__2; -x_1290 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1290, 0, x_1289); -lean_ctor_set(x_1290, 1, x_1288); -x_1291 = lean_array_push(x_1181, x_1290); -x_1292 = lean_array_push(x_1291, x_1218); -x_1293 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1293, 0, x_1187); -lean_ctor_set(x_1293, 1, x_1292); -x_1294 = lean_array_push(x_1283, x_1293); -x_1295 = l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__35; -x_1296 = lean_array_push(x_1294, x_1295); -x_1297 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1297, 0, x_1187); -lean_ctor_set(x_1297, 1, x_1296); -x_1298 = lean_array_push(x_1181, x_1297); -x_1299 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1299, 0, x_1232); -lean_ctor_set(x_1299, 1, x_1298); -x_1300 = lean_array_push(x_1181, x_1299); -x_1301 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1301, 0, x_1235); -lean_ctor_set(x_1301, 1, x_1300); -x_1302 = lean_array_push(x_1237, x_1301); -x_1303 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1303, 0, x_1239); -lean_ctor_set(x_1303, 1, x_1302); -x_1304 = lean_array_push(x_1181, x_1303); -x_1305 = lean_array_push(x_1304, x_1193); -x_1306 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1306, 0, x_1187); -lean_ctor_set(x_1306, 1, x_1305); -x_1307 = lean_array_push(x_1196, x_1306); -x_1308 = lean_array_push(x_1307, x_1198); -x_1309 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1309, 0, x_1200); -lean_ctor_set(x_1309, 1, x_1308); -x_1310 = lean_array_push(x_1181, x_1309); -x_1311 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1311, 0, x_1187); -lean_ctor_set(x_1311, 1, x_1310); -x_1312 = lean_array_push(x_1260, x_1311); -x_1313 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1313, 0, x_1190); -lean_ctor_set(x_1313, 1, x_1312); -x_1314 = lean_array_push(x_1212, x_1313); -x_1315 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1315, 0, x_1242); -lean_ctor_set(x_1315, 1, x_1314); -x_1316 = lean_array_push(x_1244, x_1315); -x_1317 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1317, 0, x_1246); -lean_ctor_set(x_1317, 1, x_1316); -x_1318 = lean_array_push(x_1181, x_1317); -x_1319 = lean_array_push(x_1318, x_1193); -x_1320 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1320, 0, x_1187); -lean_ctor_set(x_1320, 1, x_1319); -x_1321 = lean_array_push(x_1196, x_1320); -x_1322 = lean_array_push(x_1321, x_1198); -x_1323 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1323, 0, x_1200); -lean_ctor_set(x_1323, 1, x_1322); -x_1324 = lean_array_push(x_1254, x_1323); -x_1325 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1325, 0, x_1187); -lean_ctor_set(x_1325, 1, x_1324); -x_1326 = lean_array_push(x_1182, x_1325); -x_1327 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1327, 0, x_1190); -lean_ctor_set(x_1327, 1, x_1326); -if (lean_is_scalar(x_1169)) { - x_1328 = lean_alloc_ctor(0, 2, 0); -} else { - x_1328 = x_1169; -} -lean_ctor_set(x_1328, 0, x_1327); -lean_ctor_set(x_1328, 1, x_1168); -return x_1328; +lean_ctor_set(x_792, 0, x_791); +lean_ctor_set(x_792, 1, x_763); +return x_792; } } } @@ -7138,7 +6209,7 @@ lean_dec(x_1); return x_5; } } -static lean_object* _init_l_Lean_Elab_Deriving_DecEq_initFn____x40_Lean_Elab_Deriving_DecEq___hyg_3673____closed__1() { +static lean_object* _init_l_Lean_Elab_Deriving_DecEq_initFn____x40_Lean_Elab_Deriving_DecEq___hyg_2875____closed__1() { _start: { lean_object* x_1; @@ -7146,12 +6217,12 @@ x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Deriving_DecEq_mkDecEqInstanceHandl return x_1; } } -lean_object* l_Lean_Elab_Deriving_DecEq_initFn____x40_Lean_Elab_Deriving_DecEq___hyg_3673_(lean_object* x_1) { +lean_object* l_Lean_Elab_Deriving_DecEq_initFn____x40_Lean_Elab_Deriving_DecEq___hyg_2875_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; x_2 = l_Lean_Elab_Deriving_DecEq_mkHeader___rarg___closed__2; -x_3 = l_Lean_Elab_Deriving_DecEq_initFn____x40_Lean_Elab_Deriving_DecEq___hyg_3673____closed__1; +x_3 = l_Lean_Elab_Deriving_DecEq_initFn____x40_Lean_Elab_Deriving_DecEq___hyg_2875____closed__1; x_4 = l_Lean_Elab_registerBuiltinDerivingHandler(x_2, x_3, x_1); if (lean_obj_tag(x_4) == 0) { @@ -7288,6 +6359,8 @@ l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__35 = _init_l_Lean_Ela lean_mark_persistent(l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__35); l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__36 = _init_l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__36(); lean_mark_persistent(l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__36); +l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__37 = _init_l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__37(); +lean_mark_persistent(l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__37); l_Std_Range_forIn_loop___at_Lean_Elab_Deriving_DecEq_mkMatch_mkAlts___spec__5___closed__1 = _init_l_Std_Range_forIn_loop___at_Lean_Elab_Deriving_DecEq_mkMatch_mkAlts___spec__5___closed__1(); lean_mark_persistent(l_Std_Range_forIn_loop___at_Lean_Elab_Deriving_DecEq_mkMatch_mkAlts___spec__5___closed__1); l_List_forIn_loop___at_Lean_Elab_Deriving_DecEq_mkMatch_mkAlts___spec__6___closed__1 = _init_l_List_forIn_loop___at_Lean_Elab_Deriving_DecEq_mkMatch_mkAlts___spec__6___closed__1(); @@ -7332,9 +6405,9 @@ l_Lean_Elab_Deriving_DecEq_mkDecEqCmds___closed__1 = _init_l_Lean_Elab_Deriving_ lean_mark_persistent(l_Lean_Elab_Deriving_DecEq_mkDecEqCmds___closed__1); l_Lean_Elab_Deriving_DecEq_mkDecEqCmds___closed__2 = _init_l_Lean_Elab_Deriving_DecEq_mkDecEqCmds___closed__2(); lean_mark_persistent(l_Lean_Elab_Deriving_DecEq_mkDecEqCmds___closed__2); -l_Lean_Elab_Deriving_DecEq_initFn____x40_Lean_Elab_Deriving_DecEq___hyg_3673____closed__1 = _init_l_Lean_Elab_Deriving_DecEq_initFn____x40_Lean_Elab_Deriving_DecEq___hyg_3673____closed__1(); -lean_mark_persistent(l_Lean_Elab_Deriving_DecEq_initFn____x40_Lean_Elab_Deriving_DecEq___hyg_3673____closed__1); -res = l_Lean_Elab_Deriving_DecEq_initFn____x40_Lean_Elab_Deriving_DecEq___hyg_3673_(lean_io_mk_world()); +l_Lean_Elab_Deriving_DecEq_initFn____x40_Lean_Elab_Deriving_DecEq___hyg_2875____closed__1 = _init_l_Lean_Elab_Deriving_DecEq_initFn____x40_Lean_Elab_Deriving_DecEq___hyg_2875____closed__1(); +lean_mark_persistent(l_Lean_Elab_Deriving_DecEq_initFn____x40_Lean_Elab_Deriving_DecEq___hyg_2875____closed__1); +res = l_Lean_Elab_Deriving_DecEq_initFn____x40_Lean_Elab_Deriving_DecEq___hyg_2875_(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/PreDefinition/Main.c b/stage0/stdlib/Lean/Elab/PreDefinition/Main.c index d6a2c87b11..771e6b7129 100644 --- a/stage0/stdlib/Lean/Elab/PreDefinition/Main.c +++ b/stage0/stdlib/Lean/Elab/PreDefinition/Main.c @@ -182,6 +182,7 @@ extern lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_DefView___hyg_98 extern lean_object* l_Array_findSomeM_x3f___rarg___closed__1; lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_addPreDefinitions___spec__1___closed__1; lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_PreDefinition_Main_0__Lean_Elab_addAndCompilePartial___spec__1___lambda__2___closed__1; +uint8_t l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Meta_InfoCacheKey_instBEqInfoCacheKey___spec__1(lean_object*, lean_object*); uint8_t lean_nat_dec_lt(lean_object*, lean_object*); lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_addPreDefinitions___spec__6___boxed(lean_object*, lean_object*, lean_object*); static lean_object* _init_l_Array_forInUnsafe_loop___at___private_Lean_Elab_PreDefinition_Main_0__Lean_Elab_addAndCompilePartial___spec__1___lambda__1___closed__1() { @@ -1966,225 +1967,136 @@ return x_2; lean_object* l___private_Lean_Util_SCC_0__Lean_SCC_sccAux___at___private_Lean_Elab_PreDefinition_Main_0__Lean_Elab_partitionPreDefs___spec__9(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_44; size_t x_45; size_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; size_t x_54; +lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_27; size_t x_28; size_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; size_t x_37; lean_inc(x_2); x_4 = l___private_Lean_Util_SCC_0__Lean_SCC_push___at___private_Lean_Elab_PreDefinition_Main_0__Lean_Elab_partitionPreDefs___spec__10(x_2, x_3); x_5 = lean_ctor_get(x_4, 1); lean_inc(x_5); lean_dec(x_4); -x_44 = lean_array_get_size(x_1); -x_45 = lean_usize_of_nat(x_44); -x_46 = 0; -x_47 = l_Array_findSomeM_x3f___rarg___closed__1; -x_48 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_PreDefinition_Main_0__Lean_Elab_partitionPreDefs___spec__3(x_2, x_47, x_1, x_45, x_46, x_47); -x_49 = lean_ctor_get(x_48, 0); -lean_inc(x_49); -lean_dec(x_48); -x_50 = lean_box(0); -x_51 = l___private_Lean_Util_SCC_0__Lean_SCC_sccAux___at___private_Lean_Elab_PreDefinition_Main_0__Lean_Elab_partitionPreDefs___spec__9___boxed__const__1; -x_52 = lean_box_usize(x_45); +x_27 = lean_array_get_size(x_1); +x_28 = lean_usize_of_nat(x_27); +x_29 = 0; +x_30 = l_Array_findSomeM_x3f___rarg___closed__1; +x_31 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_PreDefinition_Main_0__Lean_Elab_partitionPreDefs___spec__3(x_2, x_30, x_1, x_28, x_29, x_30); +x_32 = lean_ctor_get(x_31, 0); +lean_inc(x_32); +lean_dec(x_31); +x_33 = lean_box(0); +x_34 = l___private_Lean_Util_SCC_0__Lean_SCC_sccAux___at___private_Lean_Elab_PreDefinition_Main_0__Lean_Elab_partitionPreDefs___spec__9___boxed__const__1; +x_35 = lean_box_usize(x_28); lean_inc(x_1); -x_53 = lean_alloc_closure((void*)(l___private_Lean_Util_SCC_0__Lean_SCC_sccAux___at___private_Lean_Elab_PreDefinition_Main_0__Lean_Elab_partitionPreDefs___spec__9___lambda__1___boxed), 6, 4); -lean_closure_set(x_53, 0, x_44); -lean_closure_set(x_53, 1, x_1); -lean_closure_set(x_53, 2, x_51); -lean_closure_set(x_53, 3, x_52); -x_54 = 8192; -if (lean_obj_tag(x_49) == 0) +x_36 = lean_alloc_closure((void*)(l___private_Lean_Util_SCC_0__Lean_SCC_sccAux___at___private_Lean_Elab_PreDefinition_Main_0__Lean_Elab_partitionPreDefs___spec__9___lambda__1___boxed), 6, 4); +lean_closure_set(x_36, 0, x_27); +lean_closure_set(x_36, 1, x_1); +lean_closure_set(x_36, 2, x_34); +lean_closure_set(x_36, 3, x_35); +x_37 = 8192; +if (lean_obj_tag(x_32) == 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; -x_55 = l_Lean_Elab_instInhabitedPreDefinition__1; -x_56 = l_Option_get_x21___rarg___closed__4; -x_57 = lean_panic_fn(x_55, x_56); -x_58 = lean_ctor_get(x_57, 4); -lean_inc(x_58); -lean_dec(x_57); -x_59 = l_Lean_Expr_FoldConstsImpl_initCache; -x_60 = l_Lean_Expr_FoldConstsImpl_fold_visit___rarg(x_53, x_54, x_58, x_50, x_59); -x_61 = lean_ctor_get(x_60, 0); -lean_inc(x_61); -lean_dec(x_60); -x_6 = x_61; -goto block_43; +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 = l_Lean_Elab_instInhabitedPreDefinition__1; +x_39 = l_Option_get_x21___rarg___closed__4; +x_40 = lean_panic_fn(x_38, x_39); +x_41 = lean_ctor_get(x_40, 4); +lean_inc(x_41); +lean_dec(x_40); +x_42 = l_Lean_Expr_FoldConstsImpl_initCache; +x_43 = l_Lean_Expr_FoldConstsImpl_fold_visit___rarg(x_36, x_37, x_41, x_33, x_42); +x_44 = lean_ctor_get(x_43, 0); +lean_inc(x_44); +lean_dec(x_43); +x_6 = x_44; +goto block_26; } else { -lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; -x_62 = lean_ctor_get(x_49, 0); -lean_inc(x_62); -lean_dec(x_49); -x_63 = lean_ctor_get(x_62, 4); -lean_inc(x_63); -lean_dec(x_62); -x_64 = l_Lean_Expr_FoldConstsImpl_initCache; -x_65 = l_Lean_Expr_FoldConstsImpl_fold_visit___rarg(x_53, x_54, x_63, x_50, x_64); -x_66 = lean_ctor_get(x_65, 0); -lean_inc(x_66); -lean_dec(x_65); -x_6 = x_66; -goto block_43; +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_32, 0); +lean_inc(x_45); +lean_dec(x_32); +x_46 = lean_ctor_get(x_45, 4); +lean_inc(x_46); +lean_dec(x_45); +x_47 = l_Lean_Expr_FoldConstsImpl_initCache; +x_48 = l_Lean_Expr_FoldConstsImpl_fold_visit___rarg(x_36, x_37, x_46, x_33, x_47); +x_49 = lean_ctor_get(x_48, 0); +lean_inc(x_49); +lean_dec(x_48); +x_6 = x_49; +goto block_26; } -block_43: +block_26: { -lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; +lean_object* x_7; lean_object* x_8; lean_object* x_9; uint8_t x_10; lean_inc(x_2); x_7 = l_List_forM___at___private_Lean_Elab_PreDefinition_Main_0__Lean_Elab_partitionPreDefs___spec__19(x_1, x_2, x_6, x_5); x_8 = lean_ctor_get(x_7, 1); lean_inc(x_8); lean_dec(x_7); x_9 = l___private_Lean_Util_SCC_0__Lean_SCC_getDataOf___at___private_Lean_Elab_PreDefinition_Main_0__Lean_Elab_partitionPreDefs___spec__6(x_2, x_8); -x_10 = lean_ctor_get(x_9, 0); -lean_inc(x_10); -x_11 = lean_ctor_get(x_10, 1); -lean_inc(x_11); -if (lean_obj_tag(x_11) == 0) +x_10 = !lean_is_exclusive(x_9); +if (x_10 == 0) { -lean_object* x_12; -x_12 = lean_ctor_get(x_10, 0); -lean_inc(x_12); -lean_dec(x_10); -if (lean_obj_tag(x_12) == 0) -{ -lean_object* x_13; lean_object* x_14; -x_13 = lean_ctor_get(x_9, 1); +lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; uint8_t x_15; +x_11 = lean_ctor_get(x_9, 0); +x_12 = lean_ctor_get(x_9, 1); +x_13 = lean_ctor_get(x_11, 1); lean_inc(x_13); -lean_dec(x_9); -x_14 = l___private_Lean_Util_SCC_0__Lean_SCC_addSCC___at___private_Lean_Elab_PreDefinition_Main_0__Lean_Elab_partitionPreDefs___spec__20(x_2, x_13); -lean_dec(x_2); -return x_14; -} -else -{ -uint8_t x_15; -lean_dec(x_12); -lean_dec(x_2); -x_15 = !lean_is_exclusive(x_9); +x_14 = lean_ctor_get(x_11, 0); +lean_inc(x_14); +lean_dec(x_11); +x_15 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Meta_InfoCacheKey_instBEqInfoCacheKey___spec__1(x_13, x_14); +lean_dec(x_14); +lean_dec(x_13); if (x_15 == 0) { -lean_object* x_16; lean_object* x_17; -x_16 = lean_ctor_get(x_9, 0); -lean_dec(x_16); -x_17 = lean_box(0); -lean_ctor_set(x_9, 0, x_17); +lean_object* x_16; +lean_dec(x_2); +x_16 = lean_box(0); +lean_ctor_set(x_9, 0, x_16); return x_9; } else { -lean_object* x_18; lean_object* x_19; lean_object* x_20; -x_18 = lean_ctor_get(x_9, 1); -lean_inc(x_18); -lean_dec(x_9); -x_19 = lean_box(0); -x_20 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_20, 0, x_19); -lean_ctor_set(x_20, 1, x_18); -return x_20; -} +lean_object* x_17; +lean_free_object(x_9); +x_17 = l___private_Lean_Util_SCC_0__Lean_SCC_addSCC___at___private_Lean_Elab_PreDefinition_Main_0__Lean_Elab_partitionPreDefs___spec__20(x_2, x_12); +lean_dec(x_2); +return x_17; } } else { -lean_object* x_21; -x_21 = lean_ctor_get(x_10, 0); +lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; uint8_t x_22; +x_18 = lean_ctor_get(x_9, 0); +x_19 = lean_ctor_get(x_9, 1); +lean_inc(x_19); +lean_inc(x_18); +lean_dec(x_9); +x_20 = lean_ctor_get(x_18, 1); +lean_inc(x_20); +x_21 = lean_ctor_get(x_18, 0); lean_inc(x_21); -lean_dec(x_10); -if (lean_obj_tag(x_21) == 0) -{ -uint8_t x_22; -lean_dec(x_11); -lean_dec(x_2); -x_22 = !lean_is_exclusive(x_9); +lean_dec(x_18); +x_22 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Meta_InfoCacheKey_instBEqInfoCacheKey___spec__1(x_20, x_21); +lean_dec(x_21); +lean_dec(x_20); if (x_22 == 0) { lean_object* x_23; lean_object* x_24; -x_23 = lean_ctor_get(x_9, 0); -lean_dec(x_23); -x_24 = lean_box(0); -lean_ctor_set(x_9, 0, x_24); -return x_9; -} -else -{ -lean_object* x_25; lean_object* x_26; lean_object* x_27; -x_25 = lean_ctor_get(x_9, 1); -lean_inc(x_25); -lean_dec(x_9); -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_25); -return x_27; -} -} -else -{ -uint8_t x_28; -x_28 = !lean_is_exclusive(x_9); -if (x_28 == 0) -{ -lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; uint8_t x_33; -x_29 = lean_ctor_get(x_9, 1); -x_30 = lean_ctor_get(x_9, 0); -lean_dec(x_30); -x_31 = lean_ctor_get(x_11, 0); -lean_inc(x_31); -lean_dec(x_11); -x_32 = lean_ctor_get(x_21, 0); -lean_inc(x_32); -lean_dec(x_21); -x_33 = lean_nat_dec_eq(x_31, x_32); -lean_dec(x_32); -lean_dec(x_31); -if (x_33 == 0) -{ -lean_object* x_34; lean_dec(x_2); -x_34 = lean_box(0); -lean_ctor_set(x_9, 0, x_34); -return x_9; +x_23 = lean_box(0); +x_24 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_24, 0, x_23); +lean_ctor_set(x_24, 1, x_19); +return x_24; } else { -lean_object* x_35; -lean_free_object(x_9); -x_35 = l___private_Lean_Util_SCC_0__Lean_SCC_addSCC___at___private_Lean_Elab_PreDefinition_Main_0__Lean_Elab_partitionPreDefs___spec__20(x_2, x_29); +lean_object* x_25; +x_25 = l___private_Lean_Util_SCC_0__Lean_SCC_addSCC___at___private_Lean_Elab_PreDefinition_Main_0__Lean_Elab_partitionPreDefs___spec__20(x_2, x_19); lean_dec(x_2); -return x_35; -} -} -else -{ -lean_object* x_36; lean_object* x_37; lean_object* x_38; uint8_t x_39; -x_36 = lean_ctor_get(x_9, 1); -lean_inc(x_36); -lean_dec(x_9); -x_37 = lean_ctor_get(x_11, 0); -lean_inc(x_37); -lean_dec(x_11); -x_38 = lean_ctor_get(x_21, 0); -lean_inc(x_38); -lean_dec(x_21); -x_39 = lean_nat_dec_eq(x_37, x_38); -lean_dec(x_38); -lean_dec(x_37); -if (x_39 == 0) -{ -lean_object* x_40; lean_object* x_41; -lean_dec(x_2); -x_40 = lean_box(0); -x_41 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_41, 0, x_40); -lean_ctor_set(x_41, 1, x_36); -return x_41; -} -else -{ -lean_object* x_42; -x_42 = l___private_Lean_Util_SCC_0__Lean_SCC_addSCC___at___private_Lean_Elab_PreDefinition_Main_0__Lean_Elab_partitionPreDefs___spec__20(x_2, x_36); -lean_dec(x_2); -return x_42; -} -} +return x_25; } } } diff --git a/stage0/stdlib/Lean/Elab/Quotation.c b/stage0/stdlib/Lean/Elab/Quotation.c index 518af6f1c8..b509fcf801 100644 --- a/stage0/stdlib/Lean/Elab/Quotation.c +++ b/stage0/stdlib/Lean/Elab/Quotation.c @@ -31,24 +31,26 @@ lean_object* l_Lean_Syntax_unescapeAntiquot(lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_explodeHeadPat___closed__1; uint8_t l_Lean_Syntax_isAntiquotSuffixSplice(lean_object*); extern lean_object* l_myMacro____x40_Init_Notation___hyg_2022____closed__2; +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__5; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__4; extern lean_object* l_myMacro____x40_Init_Notation___hyg_8107____closed__3; +lean_object* l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__15___closed__3; lean_object* l_Lean_Elab_Term_Quotation_match__syntax_expand_match__2(lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__34; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__51; +lean_object* l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__15___closed__5; size_t l_USize_add(size_t, size_t); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepFromSplice___closed__3; extern lean_object* l_Lean_fieldIdxKind; extern lean_object* l_Array_term_____x5b___x3a___x5d___closed__2; lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__21; lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4152____closed__2; -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___boxed__const__1; lean_object* l_Lean_addTrace___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__2___closed__1; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__6; -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__8; -lean_object* l_List_tail_x21___rarg(lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__43; extern lean_object* l_Lean_Syntax_strLitToAtom___closed__3; lean_object* l_Lean_registerTraceClass(lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__41; @@ -58,11 +60,12 @@ lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Q lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__13; lean_object* l_Lean_stringToMessageData(lean_object*); extern lean_object* l_instReprOption___rarg___closed__1; +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__32; +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__10; extern lean_object* l_Lean_Syntax_isQuot_match__1___rarg___closed__1; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__40; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__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_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__27; -lean_object* l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__6___boxed(lean_object*); lean_object* l_Lean_Elab_Term_Quotation_HeadInfo_generalizes_match__1___rarg(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_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3687____closed__13; @@ -70,11 +73,11 @@ lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compile extern lean_object* l_termIf__Then__Else_____closed__2; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_explodeHeadPat___closed__2; lean_object* l_List_head_x21___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__1(lean_object*); -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_nullKind; extern lean_object* l_myMacro____x40_Init_Notation___hyg_12942____closed__2; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__21; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__38; +lean_object* l_List_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__6(lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__17; extern lean_object* l_Lean_Parser_Syntax_addPrec___closed__2; extern lean_object* l_Lean_identKind___closed__1; @@ -84,14 +87,15 @@ lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Q lean_object* l_Array_eraseIdx___rarg(lean_object*, lean_object*); uint8_t l_USize_decEq(size_t, size_t); lean_object* lean_array_uget(lean_object*, size_t); -lean_object* l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___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*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__44; +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__2___closed__9; lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__4(size_t, size_t, lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__8; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_explodeHeadPat_match__2(lean_object*); lean_object* l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__9___boxed(lean_object**); lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__2(lean_object*, size_t, size_t, lean_object*); extern lean_object* l_termIf_____x3a__Then__Else_____closed__3; +lean_object* l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__7(lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss_match__1___rarg(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_List_format___rarg___closed__2; @@ -102,14 +106,15 @@ lean_object* l_Lean_Syntax_antiquotSuffixSplice_x3f(lean_object*); extern lean_object* l_myMacro____x40_Init_NotationExtra___hyg_3477____closed__45; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__37; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax_match__5___rarg(lean_object*, lean_object*); -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__19; lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3687____closed__24; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__3; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___boxed(lean_object**); +lean_object* l_List_filterAux___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__3___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Quotation_mkTuple_match__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_uset(lean_object*, size_t, lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__32; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__55; +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__2___closed__2; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__20; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__16; extern lean_object* l_Lean_Parser_Term_match___elambda__1___closed__1; @@ -119,21 +124,20 @@ extern lean_object* l_Lean_List_format___rarg___closed__1; extern lean_object* l_myMacro____x40_Init_Notation___hyg_876____closed__1; extern lean_object* l_myMacro____x40_Init_Notation___hyg_12942____closed__13; extern lean_object* l_Lean_Elab_Term_mkTermElabAttributeUnsafe___closed__1; -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___boxed(lean_object**); lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3687____closed__7; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__10; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__24; uint8_t l_Lean_Syntax_structEq(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Quotation_BasicHeadInfo_argPats___default; -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__1; -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__40; +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__16; +lean_object* l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__7(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Quotation_commandElabStxQuot_x21_______closed__6; extern lean_object* l_Array_empty___closed__1; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_explodeHeadPat_match__2___rarg(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_261____closed__19; extern lean_object* l_Lean_Parser_Syntax_addPrec___closed__13; -lean_object* l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5(lean_object*); +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__24; uint8_t l_Lean_checkTraceOption(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Quotation_BasicHeadInfo_kind___default; lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__9; @@ -147,60 +151,57 @@ extern lean_object* l_Lean_Parser_Tactic_matchAlts___closed__1; lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3687____closed__8; lean_object* l_List_append___rarg(lean_object*, lean_object*); extern lean_object* l_myMacro____x40_Init_Notation___hyg_8107____closed__4; +lean_object* l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__15___closed__7; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__12; uint8_t lean_name_eq(lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__26; +lean_object* l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__7___closed__3; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___closed__6; +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__7; uint8_t l_Array_anyMUnsafe_any___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__10(size_t, lean_object*, size_t, size_t); extern lean_object* l_myMacro____x40_Init_Notation___hyg_10899____closed__6; extern lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__31; +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__2___closed__8; +lean_object* l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___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_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_myMacro____x40_Init_Notation___hyg_11187____closed__10; -lean_object* l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__2; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__24; lean_object* l_Lean_Elab_Term_Quotation_commandElabStxQuot_x21____; lean_object* l_Lean_Elab_Term_Quotation_mkTuple_match__1(lean_object*); lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__2; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__39; -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__9; extern lean_object* l_term_x25_x5b___x7c___x5d___closed__6; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax_match__5(lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__16; lean_object* lean_array_push(lean_object*, lean_object*); lean_object* lean_array_get_size(lean_object*); -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__27; lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3687____closed__17; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch_match__2(lean_object*); -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__39; -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__35; +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__2___closed__4; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__19; extern lean_object* l_Array_getEvenElems___rarg___closed__1; lean_object* l_List_range(lean_object*); lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3687____closed__21; lean_object* l_Lean_MessageData_ofList(lean_object*); -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_List_zipWith___rarg(lean_object*, lean_object*, lean_object*); -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__1___closed__1; +lean_object* l_Lean_fmt___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__17(lean_object*); lean_object* lean_string_utf8_extract(lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss_match__2___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_ReaderT_pure___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__1(lean_object*); lean_object* l_Lean_Syntax_getAntiquotTerm(lean_object*); +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__20; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__7; -lean_object* l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__4; -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__31; lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__3(size_t, size_t, lean_object*); lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__1; lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__1; -lean_object* l_List_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__21(lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepFromSplice_match__1___rarg(lean_object*, lean_object*, lean_object*); -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__1___closed__2; lean_object* l___private_Lean_Util_Trace_0__Lean_checkTraceOptionM___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3687____closed__14; lean_object* lean_string_utf8_byte_size(lean_object*); lean_object* l_Lean_mkAtom(lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss_match__1(lean_object*); lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3687____closed__28; -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__26; lean_object* l_Lean_Elab_Term_Quotation_getPatternsVars(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__3; lean_object* l_Lean_Elab_Term_Quotation_mkTuple(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__13; @@ -209,15 +210,14 @@ extern lean_object* l_myMacro____x40_Init_Notation___hyg_767____closed__1; lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3687____closed__3; extern lean_object* l_instReprBool___closed__2; lean_object* l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__1___closed__4; lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3687____closed__15; lean_object* l_Lean_Elab_Term_getMainModule___rarg(lean_object*, lean_object*); uint8_t l_USize_decLt(size_t, size_t); -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__36; extern lean_object* l_Lean_instToMessageDataOption___rarg___closed__4; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__3; lean_object* l_Lean_Elab_Term_Quotation_match__syntax_expand(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__36; +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__15; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__11; extern lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__13; lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4147_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -237,7 +237,6 @@ lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSy lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__4; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__60; lean_object* lean_nat_add(lean_object*, lean_object*); -lean_object* l_List_foldl___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__3(lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch_match__7___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Quotation_mkTuple___closed__3; extern lean_object* l_Lean_myMacro____x40_Init_Notation___hyg_13175____closed__11; @@ -246,7 +245,6 @@ uint8_t l_Array_anyMUnsafe_any___at_Lean_Elab_Term_Quotation_match__syntax_expan extern lean_object* l_myMacro____x40_Init_Notation___hyg_12315____closed__11; extern lean_object* l_myMacro____x40_Init_Notation___hyg_11187____closed__7; lean_object* l_Array_anyMUnsafe_any___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__9___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__11; extern lean_object* l_Lean_Format_sbracket___closed__2; lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__18; lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__5; @@ -255,8 +253,12 @@ lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compile lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_zip___rarg(lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Term_matchAlts___elambda__1___closed__1; -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__10; +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__11; +lean_object* l_List_filterAux___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__5___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__26; lean_object* l_Lean_Elab_Term_Quotation_mkTuple___closed__5; +lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__10___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__31; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__10; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__46; @@ -267,24 +269,24 @@ lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compile lean_object* l_List_replicate___rarg(lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__25; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__10___closed__2; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__52; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__18; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__15; +extern lean_object* l_Lean_Syntax_antiquotKind_x3f___closed__1; extern lean_object* l___private_Init_Meta_0__Lean_quoteOption___rarg___closed__6; -lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__12___closed__2; extern lean_object* l_Lean_Elab_Term_mkTermElabAttributeUnsafe___closed__5; -lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__12(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_instQuoteBool___closed__5; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__1; -lean_object* l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__16___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3687____closed__16; -lean_object* l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__16___closed__1; lean_object* l_Lean_Elab_Term_Quotation_instInhabitedHeadInfo; +lean_object* l_Lean_Format_joinSep___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__19(lean_object*, lean_object*); extern lean_object* l_myMacro____x40_Init_Notation___hyg_12942____closed__4; lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4202____closed__2; lean_object* lean_array_fget(lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__29; +lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__10___closed__1; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_myMacro____x40_Init_NotationExtra___hyg_3477____closed__43; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__14; @@ -294,11 +296,13 @@ lean_object* lean_st_ref_take(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Quotation_instInhabitedHeadInfo___closed__3; extern lean_object* l_Lean_numLitKind; lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4192____closed__1; +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__2___closed__11; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch_match__2___rarg(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_myMacro____x40_Init_Notation___hyg_11187____closed__13; lean_object* lean_nat_sub(lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__31; extern lean_object* l_Lean_instQuoteProd___rarg___closed__2; +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5(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* l_Array_mapMUnsafe_map___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__3___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__17; lean_object* l_Lean_Syntax_mkCApp(lean_object*, lean_object*); @@ -318,7 +322,7 @@ lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Q lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__7___boxed(lean_object**); lean_object* l_Lean_Elab_Term_Quotation_commandElabStxQuot_x21_______closed__7; extern lean_object* l_Lean_Parser_Level_quot___elambda__1___closed__1; -lean_object* l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__15___closed__6; extern lean_object* l_Lean_Parser_Syntax_addPrio___closed__3; lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3687____closed__22; lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4157____closed__1; @@ -328,9 +332,10 @@ extern lean_object* l_Lean_instQuoteProd___rarg___closed__1; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__7; lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4197____closed__2; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch_match__6___rarg(lean_object*, lean_object*); -lean_object* l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__16___closed__4; +lean_object* l_Lean_List_format___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__18(lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__9; -lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__12___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_List_filterAux___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__5(lean_object*, lean_object*, lean_object*); +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__12; extern lean_object* l_Lean_Parser_Tactic_matchAlt___closed__1; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___closed__7; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__57; @@ -339,30 +344,26 @@ lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compile lean_object* lean_array_get(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Unhygienic_run___rarg(lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__11; +lean_object* l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__15(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4202____closed__4; -lean_object* l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__16___closed__2; lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__6; lean_object* l_Lean_Elab_Term_Quotation_mkTuple___closed__9; extern lean_object* l_Lean_Parser_Syntax_addPrec___closed__5; lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4147____closed__1; +lean_object* l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__12___boxed(lean_object**); lean_object* l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__6(lean_object*); extern lean_object* l_myMacro____x40_Init_Notation___hyg_12315____closed__12; extern lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__10; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__38; -lean_object* l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__16___closed__8; -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__10; -lean_object* l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__10(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__21; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch_match__3___rarg(lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4187____closed__1; -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__32; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__26; extern lean_object* l_myMacro____x40_Init_Notation___hyg_12942____closed__7; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax_match__3(lean_object*); -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__7; lean_object* l_instInhabited___rarg(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Quotation_match__syntax_expand_match__1(lean_object*); -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__43; +lean_object* l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___boxed(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Quotation_match__syntax_expand___lambda__3(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* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3687____closed__29; extern lean_object* l_myMacro____x40_Init_Notation___hyg_9100____closed__7; @@ -371,9 +372,7 @@ lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSy lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_sepByElemParser___closed__1; extern lean_object* l_Lean_MessageData_instCoeOptionExprMessageData___closed__1; -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__12; lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3687____closed__30; -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__20; lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4197____closed__3; extern lean_object* l_myMacro____x40_Init_Notation___hyg_11187____closed__15; lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3687____closed__18; @@ -396,6 +395,7 @@ lean_object* l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_E lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__13; extern lean_object* l_myMacro____x40_Init_NotationExtra___hyg_3477____closed__44; lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3687____closed__5; +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__39; lean_object* l_Lean_Elab_Term_Quotation_commandElabStxQuot_x21_______closed__4; lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4167____closed__1; lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax(lean_object*); @@ -403,10 +403,10 @@ extern lean_object* l_myMacro____x40_Init_Notation___hyg_11187____closed__16; lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__14; lean_object* l_Lean_Elab_Term_Quotation_mkTuple___closed__1; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__13; +lean_object* l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__7___boxed(lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__1; lean_object* l_Lean_Elab_Term_Quotation_commandElabStxQuot_x21_______closed__8; -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__16; -lean_object* l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__16___closed__6; +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__35; lean_object* l_Lean_Elab_Term_getCurrMacroScope(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4162____closed__1; lean_object* lean_array_to_list(lean_object*, lean_object*); @@ -417,7 +417,7 @@ lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Q extern lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__19; lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3687____closed__20; extern lean_object* l_Lean_Unhygienic_instMonadQuotationUnhygienic___closed__4; -lean_object* l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__6; +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__17; lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___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___private_Init_Meta_0__Lean_quoteName(lean_object*); lean_object* l_Lean_Syntax_mkStrLit(lean_object*, lean_object*); @@ -427,14 +427,18 @@ lean_object* l_Lean_Elab_Term_Quotation_getAntiquotationIds(lean_object*, lean_o lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__1___closed__2; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__11; -lean_object* l_Lean_Elab_Term_Quotation_initFn____x40_Lean_Elab_Quotation___hyg_10038_(lean_object*); +lean_object* l_Lean_Elab_Term_Quotation_initFn____x40_Lean_Elab_Quotation___hyg_10021_(lean_object*); +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__21; +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__38; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__3; lean_object* l___private_Init_Util_0__mkPanicMessageWithDecl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_KernelException_toMessageData___closed__15; +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Quotation_match__syntax_expand_match__3(lean_object*); extern lean_object* l_Lean_instInhabitedSyntax; extern lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__50; +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__1___closed__4; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__49; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch_match__4___rarg(lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo_match__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -444,18 +448,18 @@ lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_explode extern lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_870____closed__1; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch_match__4(lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax_match__4___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_List_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__7(lean_object*); +lean_object* l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__7___closed__6; lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3687____closed__12; extern lean_object* l_Lean_Parser_Syntax_addPrec___closed__10; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_String_dropRight(lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__9; -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__1___closed__3; +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__2___closed__10; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__1___closed__1; -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4(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*); extern lean_object* l_Lean_Parser_Term_bracketedBinder_quot___elambda__1___closed__2; extern lean_object* l_Lean_Elab_Term_getFVarLocalDecl_x21___closed__1; lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3687____closed__26; +lean_object* l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__7___closed__2; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_explodeHeadPat___lambda__1(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_KernelException_toMessageData___closed__3; size_t lean_usize_of_nat(lean_object*); @@ -472,7 +476,6 @@ lean_object* l_Lean_addTrace___at___private_Lean_Elab_Term_0__Lean_Elab_Term_pos lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__36; lean_object* l_Lean_addMacroScope(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Meta_mkArrow___closed__1; -lean_object* l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__16(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Quotation_commandElabStxQuot_x21_______closed__2; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___closed__8; extern lean_object* l_Lean_Parser_Term_matchDiscr_quot___elambda__1___closed__1; @@ -483,19 +486,19 @@ lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSy lean_object* l_ReaderT_pure___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__2___lambda__1___closed__2; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__2___closed__7; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__43; extern lean_object* l_Lean_Meta_DiscrTree_Trie_format___rarg___closed__1; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_explodeHeadPat___lambda__1___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__2___lambda__1___closed__1; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Syntax_isAtom(lean_object*); -lean_object* l_List_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__17(lean_object*); -lean_object* l_List_filterAux___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__6(lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__35; extern lean_object* l_myMacro____x40_Init_Notation___hyg_658____closed__8; extern lean_object* l_Lean_nullKind___closed__2; lean_object* l_Lean_Elab_throwUnsupportedSyntax___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabTermAux___spec__3___rarg(lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__17; +lean_object* l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__7___boxed(lean_object**); extern lean_object* l_Lean_Elab_Term_termElabAttribute; extern lean_object* l_Lean_Format_sbracket___closed__3; extern lean_object* l_Lean_Parser_Tactic_quotSeq___elambda__1___closed__2; @@ -508,27 +511,32 @@ lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__1___closed__2; lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__2___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch_match__3(lean_object*); -lean_object* l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3(lean_object*); +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__8; +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___boxed__const__1; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__8; +lean_object* l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__7___closed__1; +lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__10(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_instToMessageDataOption___rarg___closed__3; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__45; extern lean_object* l_Lean_Parser_Term_funBinder_quot___elambda__1___closed__3; +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__4; extern lean_object* l_Lean_Parser_Tactic_match___closed__1; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__4; extern lean_object* l_myMacro____x40_Init_Notation___hyg_9871____closed__7; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepFromSplice(lean_object*); -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__7; +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__19; +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__15___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_getQuotContent(lean_object*); lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__5(size_t, size_t, lean_object*); lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__10; lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3687____closed__10; extern lean_object* l_Lean_Syntax_mkApp___closed__1; -lean_object* l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__15___boxed(lean_object**); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__6; -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__24; extern lean_object* l_Lean_Parser_Tactic_match___closed__3; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__12; +lean_object* l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_List_redLength___rarg(lean_object*); lean_object* l_Std_PersistentArray_push___rarg(lean_object*, lean_object*); extern lean_object* l_Lean_Elab_Term_mkTermElabAttributeUnsafe___closed__4; @@ -538,11 +546,12 @@ lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSy lean_object* l_Lean_Elab_Term_Quotation_mkTuple___closed__6; extern lean_object* l_Lean_Elab_Term_mkTermElabAttributeUnsafe___closed__8; extern lean_object* l_myMacro____x40_Init_NotationExtra___hyg_2986____closed__1; -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__3; +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__27; lean_object* l___private_Lean_Util_Trace_0__Lean_checkTraceOptionM___at___private_Lean_Elab_Term_0__Lean_Elab_Term_postponeElabTerm___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__27; lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__7; extern lean_object* l_myMacro____x40_Init_Notation___hyg_5846____closed__3; +lean_object* l_List_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__16(lean_object*); lean_object* l_List_head_x21___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__2___closed__2; extern lean_object* l_Lean_Expr_ctorName___closed__10; lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4207_(lean_object*); @@ -566,11 +575,11 @@ lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_E extern lean_object* l_myMacro____x40_Init_Notation___hyg_12942____closed__6; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch_match__1(lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__18; -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__6; +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__40; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__17; -lean_object* l_Lean_List_format___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__19(lean_object*); lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__20; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__30; +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__9; extern lean_object* l_stx___x3c_x7c_x3e_____closed__5; lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4207____closed__1; extern lean_object* l_Id_instMonadId; @@ -579,12 +588,15 @@ extern lean_object* l_myMacro____x40_Init_Notation___hyg_11551____closed__3; uint8_t lean_nat_dec_le(lean_object*, lean_object*); lean_object* l_List_head_x21___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__2___boxed(lean_object*); lean_object* l_Lean_Elab_Term_Quotation_match__syntax_expand___lambda__3___closed__1; +lean_object* l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__15___closed__4; +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__36; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__4; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__42; +lean_object* l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__15___closed__1; lean_object* l_Lean_Elab_Term_Quotation_match__syntax_expand___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepFromSplice_match__1(lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_explodeHeadPat___closed__4; -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__37; +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__2; extern lean_object* l_Lean_Format_sbracket___closed__4; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__30; lean_object* l_Lean_Syntax_getArgs(lean_object*); @@ -598,8 +610,6 @@ extern lean_object* l_myMacro____x40_Init_Notation___hyg_12942____closed__18; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_explodeHeadPat(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__28; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__5; -lean_object* l_List_filterAux___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__6___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__42; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__33; lean_object* lean_panic_fn(lean_object*, lean_object*); @@ -609,9 +619,11 @@ extern lean_object* l_Std_PersistentHashMap_mkCollisionNode___rarg___closed__1; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch_match__6(lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__45; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__50; -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__22; extern lean_object* l_Lean_instQuoteSubstring___closed__4; +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__2___closed__5; +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__34; lean_object* l_List_head_x21___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__2___closed__1; +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__1___closed__1; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__54; extern lean_object* l_Lean_Format_paren___closed__2; extern lean_object* l_myMacro____x40_Init_Notation___hyg_12942____closed__14; @@ -619,13 +631,13 @@ lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHead lean_object* l_List_head_x21___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__1___boxed(lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___closed__1; lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3687____closed__11; -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__25; extern lean_object* l_Lean_myMacro____x40_Init_Notation___hyg_13175____closed__3; +lean_object* l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__15___closed__8; lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__2___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__16___closed__7; lean_object* l_ReaderT_bind___at_Lean_PrettyPrinter_Parenthesizer_term_parenthesizer___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Format_paren___closed__4; extern lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__25; +lean_object* l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__15___closed__2; lean_object* l_Lean_Elab_Term_Quotation_match__syntax_expand_match__3___rarg(lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__14; extern lean_object* l_List_head_x21___rarg___closed__3; @@ -639,70 +651,69 @@ lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSy lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss_match__2(lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__4___closed__1; extern lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__5; -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__5; lean_object* l_Lean_Elab_Term_Quotation_commandElabStxQuot_x21_______closed__5; -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__28; +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__28; extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_16099____closed__5; lean_object* l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__9(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_st_ref_set(lean_object*, lean_object*, lean_object*); -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__14; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__6___boxed(lean_object**); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__39; lean_object* l_Lean_resolveGlobalName___at_Lean_Elab_Term_resolveName___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_myMacro____x40_Init_Notation___hyg_12315____closed__22; +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__18; lean_object* l_Lean_addMessageContextFull___at_Lean_Meta_instAddMessageContextMetaM___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_myMacro____x40_Init_Notation___hyg_11187____closed__8; -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__29; +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__14; lean_object* l_List_toArrayAux___rarg(lean_object*, lean_object*); lean_object* l_Array_sequenceMap_loop___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__7; -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__2; +lean_object* l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch_match__5___rarg(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__7___closed__4; +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__22; extern lean_object* l_myMacro____x40_Init_Notation___hyg_985____closed__7; lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__2(size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_throwError___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabTermAux___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__30; +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__5; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__19; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax_match__1(lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___closed__5; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__12; -lean_object* l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__16___closed__5; lean_object* l_Lean_Elab_Term_Quotation_BasicHeadInfo_rhsFn___default___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__18; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__10; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax_match__2___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Quotation_match__syntax_expand_match__2___rarg(lean_object*, lean_object*, lean_object*); -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__15; lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3687____closed__27; +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__1___closed__2; lean_object* l_Lean_Syntax_getAntiquotSpliceContents(lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__2; extern lean_object* l_myMacro____x40_Init_Notation___hyg_6100____closed__3; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__61; lean_object* l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___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_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__30; extern lean_object* l_myMacro____x40_Init_Notation___hyg_11187____closed__9; lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3687____closed__19; +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__2___closed__3; +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__33; lean_object* l_Lean_Elab_Term_Quotation_elabMatchSyntax(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_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__1; lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__16; lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3687____closed__9; -lean_object* l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__10___boxed(lean_object**); extern lean_object* l_Lean_Parser_Term_matchAlt___closed__1; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__58; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax_match__3___rarg(lean_object*, lean_object*, lean_object*); -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_throwErrorAt___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabTermAux___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_List_filterAux___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__3(lean_object*, lean_object*, lean_object*); extern lean_object* l_myMacro____x40_Init_Notation___hyg_1130____closed__1; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepFromSplice___closed__2; -lean_object* l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__3; -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__6; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__11; lean_object* l_Array_sequenceMap_loop___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_explodeHeadPat___closed__5; -lean_object* l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__16___closed__3; +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___boxed(lean_object**); extern lean_object* l_prec_x28___x29___closed__7; extern lean_object* l_myMacro____x40_Init_NotationExtra___hyg_3477____closed__47; +lean_object* l_List_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__20(lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__10; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__32; lean_object* l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__13___boxed(lean_object**); @@ -710,22 +721,22 @@ lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__11___closed__2; extern lean_object* l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_905____closed__10; extern lean_object* l_Lean_Parser_Tactic_changeWith___closed__3; +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__2___closed__6; extern lean_object* l_myMacro____x40_Init_Data_Array_Basic___hyg_3404____closed__5; uint8_t l_Lean_Syntax_isEscapedAntiquot(lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__3; -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__8; lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__8___rarg(lean_object*); lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__5___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__23; extern lean_object* l_prec_x28___x29___closed__3; extern lean_object* l_Lean_List_format___rarg___closed__3; extern lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__15; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepFromSplice___boxed(lean_object*); +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__1; lean_object* l_Lean_Elab_Term_Quotation_commandElabStxQuot_x21_______closed__3; extern lean_object* l_Lean_expandExplicitBindersAux_loop___closed__8; lean_object* l_Lean_Syntax_getArg(lean_object*, lean_object*); +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__29; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__6; -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__33; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__33; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepFromSplice___closed__1; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch_match__7(lean_object*); @@ -736,27 +747,25 @@ lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compile lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3687____closed__1; extern lean_object* l_Lean_Meta_mkPure___rarg___closed__4; lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__11___closed__1; +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__25; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms_match__1___rarg(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_expandExplicitBindersAux_loop___closed__2; -lean_object* l_List_filterAux___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__4___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__9; -lean_object* l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__5; +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__13; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__35; lean_object* l_Lean_Syntax_antiquotSpliceKind_x3f(lean_object*); lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___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* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__41; extern lean_object* l_Lean_expandExplicitBindersAux_loop___closed__4; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__4; -lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__12___closed__1; lean_object* l_Lean_Elab_Term_Quotation_mkTuple___closed__7; extern lean_object* l_myMacro____x40_Init_Notation___hyg_6100____closed__7; lean_object* l_unsafeCast(lean_object*, lean_object*, lean_object*); lean_object* l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___boxed(lean_object**); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__14; +uint8_t l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3687____closed__31; lean_object* l_List_lengthAux___rarg(lean_object*, lean_object*); extern lean_object* l_myMacro____x40_Init_Notation___hyg_12942____closed__1; -lean_object* l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__1; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__27; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__16; @@ -767,12 +776,11 @@ lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepF lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__9; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__3___closed__2; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__2; -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__41; -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__13; -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__2; +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__6; lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3687_(lean_object*, lean_object*, lean_object*); lean_object* l_Array_sequenceMap___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__1(lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Term_dynamicQuot___elambda__1___closed__10; +lean_object* l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__7___closed__5; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__4___closed__2; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax_match__2(lean_object*); lean_object* l___private_Lean_Util_Trace_0__Lean_checkTraceOptionM___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -791,42 +799,34 @@ extern lean_object* l_myMacro____x40_Init_Notation___hyg_2022____closed__3; extern lean_object* l___private_Init_Meta_0__Lean_quoteList___rarg___closed__1; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__4___boxed(lean_object**); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__1; -lean_object* l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_explodeHeadPat_match__1(lean_object*); -lean_object* l_List_filterAux___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__4(lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__3___boxed(lean_object**); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax_match__6(lean_object*); lean_object* l_Lean_Elab_Term_Quotation_commandElabStxQuot_x21_______closed__1; -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__34; lean_object* l_Lean_Elab_Term_Quotation_myMacro____x40_Lean_Elab_Quotation___hyg_3687____closed__23; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__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_object*, lean_object*); lean_object* l_Lean_Syntax_antiquotKind_x3f(lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__3; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Elab_Term_Quotation_HeadInfo_generalizes(lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__1; lean_object* l_Lean_Syntax_formatStxAux(lean_object*, uint8_t, lean_object*, lean_object*); +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__42; lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_setOptionFromString___closed__3; lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Syntax_SepArray_getElems___spec__1(lean_object*, size_t, size_t, lean_object*); lean_object* l_Lean_Elab_Term_Quotation_match__syntax_expand___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__6; -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__4; +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__1___closed__3; lean_object* l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__14___boxed(lean_object**); lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__11; -lean_object* l_Lean_Format_joinSep___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__20(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Quotation_instInhabitedHeadInfo___closed__2; -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__17; -lean_object* l_Lean_fmt___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__18(lean_object*); lean_object* l_Array_anyMUnsafe_any___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__10___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__1___closed__1; -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__38; -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__21; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__4; -lean_object* l_List_foldl___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__3___boxed(lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch_match__5(lean_object*); extern lean_object* l_myMacro____x40_Init_Notation___hyg_12942____closed__8; +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__37; extern lean_object* l_myMacro____x40_Init_Notation___hyg_11187____closed__17; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__43; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo_match__1(lean_object*); @@ -838,10 +838,11 @@ lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__19; uint8_t lean_nat_dec_lt(lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__3___closed__1; lean_object* l_Lean_Elab_Term_Quotation_match__syntax_expand___closed__1; +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__23; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__8; +lean_object* l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4(lean_object*); lean_object* l_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__1; uint8_t l_Lean_Syntax_isIdent(lean_object*); -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__5; lean_object* l_Lean_Elab_Term_Quotation_mkTuple___closed__10; lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__8___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Syntax_isAntiquotSplice(lean_object*); @@ -2261,7 +2262,44 @@ return x_29; } } } -lean_object* l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3(lean_object* x_1) { +uint8_t l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3(lean_object* x_1, lean_object* x_2) { +_start: +{ +if (lean_obj_tag(x_1) == 0) +{ +if (lean_obj_tag(x_2) == 0) +{ +uint8_t x_3; +x_3 = 1; +return x_3; +} +else +{ +uint8_t x_4; +x_4 = 0; +return x_4; +} +} +else +{ +if (lean_obj_tag(x_2) == 0) +{ +uint8_t x_5; +x_5 = 0; +return x_5; +} +else +{ +lean_object* x_6; lean_object* x_7; uint8_t x_8; +x_6 = lean_ctor_get(x_1, 0); +x_7 = lean_ctor_get(x_2, 0); +x_8 = lean_name_eq(x_6, x_7); +return x_8; +} +} +} +} +lean_object* l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4(lean_object* x_1) { _start: { if (lean_obj_tag(x_1) == 0) @@ -2278,7 +2316,7 @@ lean_inc(x_3); x_4 = lean_ctor_get(x_1, 1); lean_inc(x_4); lean_dec(x_1); -x_5 = l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3(x_4); +x_5 = l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4(x_4); x_6 = l_Lean_Syntax_mkApp___closed__1; x_7 = lean_array_push(x_6, x_3); x_8 = lean_array_push(x_7, x_5); @@ -2288,7 +2326,7 @@ return x_10; } } } -static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__1___closed__1() { +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__1___closed__1() { _start: { lean_object* x_1; @@ -2296,22 +2334,22 @@ x_1 = lean_mk_string("Array.appendCore"); return x_1; } } -static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__1___closed__2() { +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__1___closed__1; +x_1 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__1___closed__1; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__1___closed__3() { +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__1___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__1___closed__1; +x_1 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__1___closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__1___closed__2; +x_3 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__1___closed__2; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -2319,7 +2357,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__1___closed__4() { +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__1___closed__4() { _start: { lean_object* x_1; @@ -2327,7 +2365,7 @@ x_1 = lean_mk_string("appendCore"); return x_1; } } -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { _start: { lean_object* x_15; @@ -2364,7 +2402,7 @@ 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; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; x_23 = lean_ctor_get(x_21, 0); -x_24 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__1___closed__4; +x_24 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__1___closed__4; x_25 = lean_name_mk_string(x_2, x_24); lean_inc(x_25); x_26 = l_Lean_addMacroScope(x_23, x_25, x_19); @@ -2374,7 +2412,7 @@ lean_ctor_set(x_27, 1, x_3); x_28 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_28, 0, x_27); lean_ctor_set(x_28, 1, x_4); -x_29 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__1___closed__3; +x_29 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__1___closed__3; x_30 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_30, 0, x_5); lean_ctor_set(x_30, 1, x_29); @@ -2404,7 +2442,7 @@ x_41 = lean_ctor_get(x_21, 1); lean_inc(x_41); lean_inc(x_40); lean_dec(x_21); -x_42 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__1___closed__4; +x_42 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__1___closed__4; x_43 = lean_name_mk_string(x_2, x_42); lean_inc(x_43); x_44 = l_Lean_addMacroScope(x_40, x_43, x_19); @@ -2414,7 +2452,7 @@ lean_ctor_set(x_45, 1, x_3); x_46 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_46, 0, x_45); lean_ctor_set(x_46, 1, x_4); -x_47 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__1___closed__3; +x_47 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__1___closed__3; x_48 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_48, 0, x_5); lean_ctor_set(x_48, 1, x_47); @@ -2474,7 +2512,17 @@ return x_62; } } } -static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__1() { +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__2___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_sepByElemParser___closed__1; +x_2 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__2___closed__2() { _start: { lean_object* x_1; @@ -2482,22 +2530,22 @@ x_1 = lean_mk_string("mkSepArray"); return x_1; } } -static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__2() { +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__2___closed__3() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__1; +x_1 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__2___closed__2; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__3() { +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__2___closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__1; +x_1 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__2___closed__2; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__2; +x_3 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__2___closed__3; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -2505,27 +2553,27 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__4() { +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__2___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__1; +x_2 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__2___closed__2; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__5() { +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__2___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Syntax_addPrec___closed__2; -x_2 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__1; +x_2 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__2___closed__2; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__6() { +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__2___closed__7() { _start: { lean_object* x_1; @@ -2533,22 +2581,22 @@ x_1 = lean_mk_string("mkAtom"); return x_1; } } -static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__7() { +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__2___closed__8() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__6; +x_1 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__2___closed__7; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__8() { +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__2___closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__6; +x_1 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__2___closed__7; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__7; +x_3 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__2___closed__8; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -2556,153 +2604,143 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__9() { +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__2___closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__6; +x_2 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__2___closed__7; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__10() { +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__2___closed__11() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Syntax_addPrec___closed__2; -x_2 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__6; +x_2 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__2___closed__7; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__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* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__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) { _start: { -if (lean_obj_tag(x_7) == 0) +lean_object* x_17; uint8_t x_18; +x_17 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__2___closed__1; +x_18 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3(x_7, x_17); +if (x_18 == 0) { -lean_object* x_17; -x_17 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16); -return x_17; +lean_object* x_19; +x_19 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16); +return x_19; } else { -lean_object* x_18; lean_object* x_19; uint8_t x_20; -x_18 = lean_ctor_get(x_7, 0); -x_19 = l_Lean_Parser_sepByElemParser___closed__1; -x_20 = lean_name_eq(x_18, x_19); -if (x_20 == 0) -{ -lean_object* x_21; -x_21 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16); -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; 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; -x_22 = l_Lean_Elab_Term_getCurrMacroScope(x_10, x_11, x_12, x_13, x_14, x_15, x_16); -x_23 = lean_ctor_get(x_22, 0); -lean_inc(x_23); -x_24 = lean_ctor_get(x_22, 1); +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; +x_20 = l_Lean_Elab_Term_getCurrMacroScope(x_10, x_11, x_12, x_13, x_14, x_15, x_16); +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(x_20); +x_23 = l_Lean_Elab_Term_getMainModule___rarg(x_15, x_22); +x_24 = lean_ctor_get(x_23, 0); lean_inc(x_24); -lean_dec(x_22); -x_25 = l_Lean_Elab_Term_getMainModule___rarg(x_15, x_24); -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(x_25); -x_28 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__4; -lean_inc(x_23); -lean_inc(x_26); -x_29 = l_Lean_addMacroScope(x_26, x_28, x_23); -x_30 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__5; +x_25 = lean_ctor_get(x_23, 1); +lean_inc(x_25); +lean_dec(x_23); +x_26 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__2___closed__5; +lean_inc(x_21); +lean_inc(x_24); +x_27 = l_Lean_addMacroScope(x_24, x_26, x_21); +x_28 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__2___closed__6; lean_inc(x_3); -x_31 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_31, 0, x_30); -lean_ctor_set(x_31, 1, x_3); +x_29 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_29, 0, x_28); +lean_ctor_set(x_29, 1, x_3); lean_inc(x_4); -x_32 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_32, 0, x_31); -lean_ctor_set(x_32, 1, x_4); -x_33 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__3; +x_30 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_30, 0, x_29); +lean_ctor_set(x_30, 1, x_4); +x_31 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__2___closed__4; lean_inc(x_5); -x_34 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_34, 0, x_5); -lean_ctor_set(x_34, 1, x_33); -lean_ctor_set(x_34, 2, x_29); -lean_ctor_set(x_34, 3, x_32); -x_35 = l_Array_empty___closed__1; -x_36 = lean_array_push(x_35, x_34); -x_37 = lean_array_push(x_35, x_9); -x_38 = l_prec_x28___x29___closed__3; +x_32 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_32, 0, x_5); +lean_ctor_set(x_32, 1, x_31); +lean_ctor_set(x_32, 2, x_27); +lean_ctor_set(x_32, 3, x_30); +x_33 = l_Array_empty___closed__1; +x_34 = lean_array_push(x_33, x_32); +x_35 = lean_array_push(x_33, x_9); +x_36 = l_prec_x28___x29___closed__3; lean_inc(x_5); -x_39 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_39, 0, x_5); -lean_ctor_set(x_39, 1, x_38); -x_40 = lean_array_push(x_35, x_39); -x_41 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__9; -x_42 = l_Lean_addMacroScope(x_26, x_41, x_23); -x_43 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__10; +x_37 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_37, 0, x_5); +lean_ctor_set(x_37, 1, x_36); +x_38 = lean_array_push(x_33, x_37); +x_39 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__2___closed__10; +x_40 = l_Lean_addMacroScope(x_24, x_39, x_21); +x_41 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__2___closed__11; lean_inc(x_3); -x_44 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_44, 0, x_43); -lean_ctor_set(x_44, 1, x_3); +x_42 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_42, 0, x_41); +lean_ctor_set(x_42, 1, x_3); lean_inc(x_4); -x_45 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_45, 0, x_44); -lean_ctor_set(x_45, 1, x_4); -x_46 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__8; +x_43 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_43, 0, x_42); +lean_ctor_set(x_43, 1, x_4); +x_44 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__2___closed__9; lean_inc(x_5); -x_47 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_47, 0, x_5); -lean_ctor_set(x_47, 1, x_46); -lean_ctor_set(x_47, 2, x_42); -lean_ctor_set(x_47, 3, x_45); -x_48 = lean_array_push(x_35, x_47); -x_49 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepFromSplice(x_8); -x_50 = lean_array_push(x_35, x_49); -x_51 = l_Lean_nullKind___closed__2; -x_52 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_52, 0, x_51); -lean_ctor_set(x_52, 1, x_50); -x_53 = lean_array_push(x_48, x_52); -x_54 = l_myMacro____x40_Init_Notation___hyg_2022____closed__4; -x_55 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_55, 0, x_54); -lean_ctor_set(x_55, 1, x_53); -x_56 = lean_array_push(x_35, x_55); -x_57 = l_myMacro____x40_Init_Notation___hyg_1130____closed__23; -x_58 = lean_array_push(x_56, x_57); -x_59 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_59, 0, x_51); -lean_ctor_set(x_59, 1, x_58); -x_60 = lean_array_push(x_40, x_59); -x_61 = l_prec_x28___x29___closed__7; +x_45 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_45, 0, x_5); +lean_ctor_set(x_45, 1, x_44); +lean_ctor_set(x_45, 2, x_40); +lean_ctor_set(x_45, 3, x_43); +x_46 = lean_array_push(x_33, x_45); +x_47 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepFromSplice(x_8); +x_48 = lean_array_push(x_33, x_47); +x_49 = l_Lean_nullKind___closed__2; +x_50 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_50, 0, x_49); +lean_ctor_set(x_50, 1, x_48); +x_51 = lean_array_push(x_46, x_50); +x_52 = l_myMacro____x40_Init_Notation___hyg_2022____closed__4; +x_53 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_53, 0, x_52); +lean_ctor_set(x_53, 1, x_51); +x_54 = lean_array_push(x_33, x_53); +x_55 = l_myMacro____x40_Init_Notation___hyg_1130____closed__23; +x_56 = lean_array_push(x_54, x_55); +x_57 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_57, 0, x_49); +lean_ctor_set(x_57, 1, x_56); +x_58 = lean_array_push(x_38, x_57); +x_59 = l_prec_x28___x29___closed__7; lean_inc(x_5); -x_62 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_62, 0, x_5); -lean_ctor_set(x_62, 1, x_61); -x_63 = lean_array_push(x_60, x_62); -x_64 = l_myMacro____x40_Init_Notation___hyg_11187____closed__8; +x_60 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_60, 0, x_5); +lean_ctor_set(x_60, 1, x_59); +x_61 = lean_array_push(x_58, x_60); +x_62 = l_myMacro____x40_Init_Notation___hyg_11187____closed__8; +x_63 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_63, 0, x_62); +lean_ctor_set(x_63, 1, x_61); +x_64 = lean_array_push(x_35, x_63); x_65 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_65, 0, x_64); -lean_ctor_set(x_65, 1, x_63); -x_66 = lean_array_push(x_37, x_65); +lean_ctor_set(x_65, 0, x_49); +lean_ctor_set(x_65, 1, x_64); +x_66 = lean_array_push(x_34, x_65); x_67 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_67, 0, x_51); +lean_ctor_set(x_67, 0, x_52); lean_ctor_set(x_67, 1, x_66); -x_68 = lean_array_push(x_36, x_67); -x_69 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_69, 0, x_54); -lean_ctor_set(x_69, 1, x_68); -x_70 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_69, x_10, x_11, x_12, x_13, x_14, x_15, x_27); -return x_70; +x_68 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_67, x_10, x_11, x_12, x_13, x_14, x_15, x_25); +return x_68; } } } -} -static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__1() { +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__1() { _start: { lean_object* x_1; @@ -2710,22 +2748,22 @@ x_1 = lean_mk_string("Array.push"); return x_1; } } -static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__2() { +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__1; +x_1 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__1; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__3() { +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__1; +x_1 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__2; +x_3 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__2; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -2733,7 +2771,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__4() { +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__4() { _start: { lean_object* x_1; @@ -2741,7 +2779,7 @@ x_1 = lean_mk_string("push"); return x_1; } } -static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__5() { +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__5() { _start: { lean_object* x_1; @@ -2749,7 +2787,7 @@ x_1 = lean_alloc_closure((void*)(l_ReaderT_pure___at___private_Lean_Elab_Quotati return x_1; } } -static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__6() { +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__6() { _start: { lean_object* x_1; @@ -2757,27 +2795,27 @@ x_1 = lean_mk_string("too many antiquotations in antiquotation splice; don't be return x_1; } } -static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__7() { +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__7() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__6; +x_1 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__6; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__8() { +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__8() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__7; +x_1 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__7; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__9() { +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__9() { _start: { lean_object* x_1; @@ -2785,22 +2823,22 @@ x_1 = lean_mk_string("Array.zipWith"); return x_1; } } -static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__10() { +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__10() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__9; +x_1 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__9; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__11() { +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__11() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__9; +x_1 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__9; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__10; +x_3 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__10; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -2808,7 +2846,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__12() { +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__12() { _start: { lean_object* x_1; @@ -2816,7 +2854,7 @@ x_1 = lean_mk_string("zipWith"); return x_1; } } -static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__13() { +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__13() { _start: { lean_object* x_1; @@ -2824,7 +2862,7 @@ x_1 = lean_mk_string("with"); return x_1; } } -static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__14() { +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__14() { _start: { lean_object* x_1; lean_object* x_2; @@ -2833,13 +2871,13 @@ x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__15() { +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__15() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; x_1 = l___private_Init_Meta_0__Lean_quoteOption___rarg___closed__5; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__14; +x_3 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__14; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -2847,7 +2885,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__16() { +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__16() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -2857,7 +2895,7 @@ x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__17() { +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__17() { _start: { lean_object* x_1; @@ -2865,22 +2903,22 @@ x_1 = lean_mk_string("Array.map"); return x_1; } } -static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__18() { +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__18() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__17; +x_1 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__17; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__19() { +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__19() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__17; +x_1 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__17; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__18; +x_3 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__18; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -2888,7 +2926,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__20() { +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__20() { _start: { lean_object* x_1; lean_object* x_2; @@ -2897,13 +2935,13 @@ x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__21() { +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__21() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; x_1 = l_instReprOption___rarg___closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__20; +x_3 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__20; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -2911,7 +2949,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__22() { +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__22() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -2921,7 +2959,7 @@ x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__23() { +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__23() { _start: { lean_object* x_1; @@ -2929,27 +2967,27 @@ x_1 = lean_mk_string("antiquotation splice must contain at least one antiquotati return x_1; } } -static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__24() { +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__24() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__23; +x_1 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__23; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__25() { +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__25() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__24; +x_1 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__24; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__26() { +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__26() { _start: { lean_object* x_1; @@ -2957,20 +2995,20 @@ x_1 = lean_mk_string("invalid antiquotation suffix splice kind '"); return x_1; } } -static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__27() { +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__27() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__26; +x_1 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__26; x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__28() { +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__28() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__27; +x_1 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__27; x_2 = l_Lean_MessageData_instCoeOptionExprMessageData___closed__1; x_3 = lean_alloc_ctor(10, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -2978,11 +3016,11 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__29() { +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__29() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__28; +x_1 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__28; x_2 = l_Lean_KernelException_toMessageData___closed__3; x_3 = lean_alloc_ctor(10, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -2990,7 +3028,7 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__30() { +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__30() { _start: { lean_object* x_1; @@ -2998,22 +3036,22 @@ x_1 = lean_mk_string("SepArray.elemsAndSeps"); return x_1; } } -static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__31() { +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__31() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__30; +x_1 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__30; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__32() { +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__32() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__30; +x_1 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__30; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__31; +x_3 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__31; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -3021,7 +3059,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__33() { +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__33() { _start: { lean_object* x_1; @@ -3029,17 +3067,17 @@ x_1 = lean_mk_string("SepArray"); return x_1; } } -static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__34() { +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__34() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__33; +x_2 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__33; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__35() { +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__35() { _start: { lean_object* x_1; @@ -3047,37 +3085,37 @@ x_1 = lean_mk_string("elemsAndSeps"); return x_1; } } -static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__36() { +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__36() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__34; -x_2 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__35; +x_1 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__34; +x_2 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__35; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__37() { +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__37() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l___private_Lean_Elab_Util_0__Lean_Elab_evalSyntaxConstantUnsafe___closed__1; -x_2 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__33; +x_2 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__33; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__38() { +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__38() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__37; -x_2 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__35; +x_1 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__37; +x_2 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__35; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__39() { +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__39() { _start: { lean_object* x_1; lean_object* x_2; @@ -3086,13 +3124,13 @@ x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__40() { +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__40() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; x_1 = l_Lean_Meta_mkArrow___closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__39; +x_3 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__39; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -3100,7 +3138,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__41() { +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__41() { _start: { lean_object* x_1; @@ -3108,22 +3146,22 @@ x_1 = lean_mk_string("Array.empty.push"); return x_1; } } -static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__42() { +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__42() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__41; +x_1 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__41; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__43() { +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__43() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__41; +x_1 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__41; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__42; +x_3 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__42; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -3131,7 +3169,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___boxed__const__1() { +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___boxed__const__1() { _start: { size_t x_1; lean_object* x_2; @@ -3140,7 +3178,7 @@ x_2 = lean_box_usize(x_1); return x_2; } } -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___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, size_t 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* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___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, size_t 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) { _start: { lean_object* x_21; uint8_t x_32; @@ -3177,7 +3215,7 @@ else { lean_object* x_90; lean_object* x_91; lean_object* x_92; x_90 = l_Lean_Syntax_antiquotSpliceKind_x3f(x_33); -x_91 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__5; +x_91 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__5; lean_inc(x_19); lean_inc(x_18); lean_inc(x_17); @@ -3205,7 +3243,7 @@ x_100 = lean_usize_of_nat(x_99); lean_dec(x_99); x_101 = x_98; x_102 = lean_box_usize(x_100); -x_103 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___boxed__const__1; +x_103 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___boxed__const__1; x_104 = lean_alloc_closure((void*)(l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__2___boxed), 10, 3); lean_closure_set(x_104, 0, x_102); lean_closure_set(x_104, 1, x_103); @@ -3261,7 +3299,7 @@ lean_dec(x_97); lean_dec(x_96); lean_dec(x_90); lean_dec(x_13); -x_119 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__8; +x_119 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__8; lean_inc(x_18); lean_inc(x_14); x_120 = l_Lean_throwErrorAt___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabTermAux___spec__1(x_9, x_119, x_14, x_15, x_16, x_17, x_18, x_19, x_111); @@ -3307,7 +3345,7 @@ lean_inc(x_131); x_132 = lean_ctor_get(x_130, 1); lean_inc(x_132); lean_dec(x_130); -x_133 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__12; +x_133 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__12; lean_inc(x_4); x_134 = lean_name_mk_string(x_4, x_133); lean_inc(x_134); @@ -3319,7 +3357,7 @@ lean_inc(x_7); x_136 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_136, 0, x_93); lean_ctor_set(x_136, 1, x_7); -x_137 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__11; +x_137 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__11; lean_inc(x_2); x_138 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_138, 0, x_2); @@ -3380,7 +3418,7 @@ lean_inc(x_2); lean_inc(x_7); lean_inc(x_6); lean_inc(x_4); -x_165 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2(x_97, x_4, x_6, x_7, x_2, x_13, x_90, x_96, x_164, x_14, x_15, x_16, x_17, x_18, x_19, x_132); +x_165 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__2(x_97, x_4, x_6, x_7, x_2, x_13, x_90, x_96, x_164, x_14, x_15, x_16, x_17, x_18, x_19, x_132); lean_dec(x_96); x_21 = x_165; goto block_31; @@ -3419,7 +3457,7 @@ lean_inc(x_175); x_176 = lean_ctor_get(x_174, 1); lean_inc(x_176); lean_dec(x_174); -x_177 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__12; +x_177 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__12; lean_inc(x_4); x_178 = lean_name_mk_string(x_4, x_177); lean_inc(x_178); @@ -3431,7 +3469,7 @@ lean_inc(x_7); x_180 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_180, 0, x_93); lean_ctor_set(x_180, 1, x_7); -x_181 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__11; +x_181 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__11; lean_inc(x_2); x_182 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_182, 0, x_2); @@ -3492,7 +3530,7 @@ lean_inc(x_2); lean_inc(x_7); lean_inc(x_6); lean_inc(x_4); -x_209 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2(x_97, x_4, x_6, x_7, x_2, x_13, x_90, x_96, x_208, x_14, x_15, x_16, x_17, x_18, x_19, x_176); +x_209 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__2(x_97, x_4, x_6, x_7, x_2, x_13, x_90, x_96, x_208, x_14, x_15, x_16, x_17, x_18, x_19, x_176); lean_dec(x_96); lean_dec(x_90); x_21 = x_209; @@ -3548,7 +3586,7 @@ lean_ctor_set(x_232, 1, x_230); x_233 = lean_array_push(x_219, x_232); x_234 = l_myMacro____x40_Init_Notation___hyg_1130____closed__23; x_235 = lean_array_push(x_233, x_234); -x_236 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__13; +x_236 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__13; lean_inc(x_2); x_237 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_237, 0, x_2); @@ -3560,7 +3598,7 @@ x_240 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_240, 0, x_2); lean_ctor_set(x_240, 1, x_239); x_241 = lean_array_push(x_218, x_240); -x_242 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__16; +x_242 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__16; lean_inc(x_211); lean_inc(x_214); x_243 = l_Lean_addMacroScope(x_214, x_242, x_211); @@ -3572,7 +3610,7 @@ lean_inc(x_7); x_245 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_245, 0, x_93); lean_ctor_set(x_245, 1, x_7); -x_246 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__15; +x_246 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__15; lean_inc(x_2); x_247 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_247, 0, x_2); @@ -3614,7 +3652,7 @@ lean_ctor_set(x_264, 1, x_263); lean_inc(x_264); x_265 = lean_array_push(x_262, x_264); x_266 = lean_array_to_list(lean_box(0), x_107); -x_267 = l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3(x_266); +x_267 = l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4(x_266); x_268 = l_Lean_mkOptionalNode___closed__2; x_269 = lean_array_push(x_268, x_267); x_270 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3404____closed__5; @@ -3679,7 +3717,7 @@ lean_inc(x_2); lean_inc(x_7); lean_inc(x_6); lean_inc(x_4); -x_297 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2(x_97, x_4, x_6, x_7, x_2, x_13, x_90, x_96, x_296, x_14, x_15, x_16, x_17, x_18, x_19, x_215); +x_297 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__2(x_97, x_4, x_6, x_7, x_2, x_13, x_90, x_96, x_296, x_14, x_15, x_16, x_17, x_18, x_19, x_215); lean_dec(x_96); lean_dec(x_90); x_21 = x_297; @@ -3703,7 +3741,7 @@ lean_inc(x_302); x_303 = lean_ctor_get(x_301, 1); lean_inc(x_303); lean_dec(x_301); -x_304 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__12; +x_304 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__12; lean_inc(x_4); x_305 = lean_name_mk_string(x_4, x_304); lean_inc(x_305); @@ -3715,7 +3753,7 @@ lean_inc(x_7); x_307 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_307, 0, x_93); lean_ctor_set(x_307, 1, x_7); -x_308 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__11; +x_308 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__11; lean_inc(x_2); x_309 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_309, 0, x_2); @@ -3776,7 +3814,7 @@ lean_inc(x_2); lean_inc(x_7); lean_inc(x_6); lean_inc(x_4); -x_336 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2(x_97, x_4, x_6, x_7, x_2, x_13, x_90, x_96, x_335, x_14, x_15, x_16, x_17, x_18, x_19, x_303); +x_336 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__2(x_97, x_4, x_6, x_7, x_2, x_13, x_90, x_96, x_335, x_14, x_15, x_16, x_17, x_18, x_19, x_303); lean_dec(x_96); lean_dec(x_90); x_21 = x_336; @@ -3799,7 +3837,7 @@ lean_inc(x_341); x_342 = lean_ctor_get(x_340, 1); lean_inc(x_342); lean_dec(x_340); -x_343 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__12; +x_343 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__12; lean_inc(x_4); x_344 = lean_name_mk_string(x_4, x_343); lean_inc(x_344); @@ -3811,7 +3849,7 @@ lean_inc(x_7); x_346 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_346, 0, x_93); lean_ctor_set(x_346, 1, x_7); -x_347 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__11; +x_347 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__11; lean_inc(x_2); x_348 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_348, 0, x_2); @@ -3872,7 +3910,7 @@ lean_inc(x_2); lean_inc(x_7); lean_inc(x_6); lean_inc(x_4); -x_375 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2(x_97, x_4, x_6, x_7, x_2, x_13, x_90, x_96, x_374, x_14, x_15, x_16, x_17, x_18, x_19, x_342); +x_375 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__2(x_97, x_4, x_6, x_7, x_2, x_13, x_90, x_96, x_374, x_14, x_15, x_16, x_17, x_18, x_19, x_342); lean_dec(x_96); lean_dec(x_90); x_21 = x_375; @@ -3914,7 +3952,7 @@ lean_inc(x_7); x_386 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_386, 0, x_93); lean_ctor_set(x_386, 1, x_7); -x_387 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__19; +x_387 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__19; lean_inc(x_2); x_388 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_388, 0, x_2); @@ -3998,7 +4036,7 @@ lean_inc(x_2); lean_inc(x_7); lean_inc(x_6); lean_inc(x_4); -x_428 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2(x_97, x_4, x_6, x_7, x_2, x_13, x_90, x_96, x_427, x_14, x_15, x_16, x_17, x_18, x_19, x_382); +x_428 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__2(x_97, x_4, x_6, x_7, x_2, x_13, x_90, x_96, x_427, x_14, x_15, x_16, x_17, x_18, x_19, x_382); lean_dec(x_96); x_21 = x_428; goto block_31; @@ -4049,7 +4087,7 @@ lean_inc(x_7); x_443 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_443, 0, x_93); lean_ctor_set(x_443, 1, x_7); -x_444 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__19; +x_444 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__19; lean_inc(x_2); x_445 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_445, 0, x_2); @@ -4133,7 +4171,7 @@ lean_inc(x_2); lean_inc(x_7); lean_inc(x_6); lean_inc(x_4); -x_485 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2(x_97, x_4, x_6, x_7, x_2, x_13, x_90, x_96, x_484, x_14, x_15, x_16, x_17, x_18, x_19, x_439); +x_485 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__2(x_97, x_4, x_6, x_7, x_2, x_13, x_90, x_96, x_484, x_14, x_15, x_16, x_17, x_18, x_19, x_439); lean_dec(x_96); lean_dec(x_90); x_21 = x_485; @@ -4176,7 +4214,7 @@ lean_ctor_set(x_502, 1, x_500); x_503 = lean_array_push(x_495, x_502); x_504 = l_myMacro____x40_Init_Notation___hyg_1130____closed__23; x_505 = lean_array_push(x_503, x_504); -x_506 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__13; +x_506 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__13; lean_inc(x_2); x_507 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_507, 0, x_2); @@ -4188,7 +4226,7 @@ x_510 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_510, 0, x_2); lean_ctor_set(x_510, 1, x_509); x_511 = lean_array_push(x_494, x_510); -x_512 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__16; +x_512 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__16; lean_inc(x_487); lean_inc(x_490); x_513 = l_Lean_addMacroScope(x_490, x_512, x_487); @@ -4200,7 +4238,7 @@ lean_inc(x_7); x_515 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_515, 0, x_93); lean_ctor_set(x_515, 1, x_7); -x_516 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__15; +x_516 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__15; lean_inc(x_2); x_517 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_517, 0, x_2); @@ -4231,7 +4269,7 @@ lean_ctor_set(x_528, 1, x_527); lean_inc(x_528); x_529 = lean_array_push(x_526, x_528); x_530 = lean_array_to_list(lean_box(0), x_107); -x_531 = l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3(x_530); +x_531 = l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4(x_530); x_532 = l_Lean_mkOptionalNode___closed__2; x_533 = lean_array_push(x_532, x_531); x_534 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3404____closed__5; @@ -4242,7 +4280,7 @@ x_538 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_538, 0, x_537); lean_ctor_set(x_538, 1, x_536); x_539 = lean_array_push(x_494, x_538); -x_540 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__22; +x_540 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__22; lean_inc(x_487); lean_inc(x_490); x_541 = l_Lean_addMacroScope(x_490, x_540, x_487); @@ -4255,7 +4293,7 @@ lean_inc(x_7); x_544 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_544, 0, x_543); lean_ctor_set(x_544, 1, x_7); -x_545 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__21; +x_545 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__21; lean_inc(x_2); x_546 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_546, 0, x_2); @@ -4306,7 +4344,7 @@ lean_inc(x_2); lean_inc(x_7); lean_inc(x_6); lean_inc(x_4); -x_563 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2(x_97, x_4, x_6, x_7, x_2, x_13, x_90, x_96, x_562, x_14, x_15, x_16, x_17, x_18, x_19, x_491); +x_563 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__2(x_97, x_4, x_6, x_7, x_2, x_13, x_90, x_96, x_562, x_14, x_15, x_16, x_17, x_18, x_19, x_491); lean_dec(x_96); lean_dec(x_90); x_21 = x_563; @@ -4342,7 +4380,7 @@ lean_inc(x_7); x_573 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_573, 0, x_93); lean_ctor_set(x_573, 1, x_7); -x_574 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__19; +x_574 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__19; lean_inc(x_2); x_575 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_575, 0, x_2); @@ -4426,7 +4464,7 @@ lean_inc(x_2); lean_inc(x_7); lean_inc(x_6); lean_inc(x_4); -x_615 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2(x_97, x_4, x_6, x_7, x_2, x_13, x_90, x_96, x_614, x_14, x_15, x_16, x_17, x_18, x_19, x_569); +x_615 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__2(x_97, x_4, x_6, x_7, x_2, x_13, x_90, x_96, x_614, x_14, x_15, x_16, x_17, x_18, x_19, x_569); lean_dec(x_96); lean_dec(x_90); x_21 = x_615; @@ -4461,7 +4499,7 @@ lean_inc(x_7); x_625 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_625, 0, x_93); lean_ctor_set(x_625, 1, x_7); -x_626 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__19; +x_626 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__19; lean_inc(x_2); x_627 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_627, 0, x_2); @@ -4545,7 +4583,7 @@ lean_inc(x_2); lean_inc(x_7); lean_inc(x_6); lean_inc(x_4); -x_667 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2(x_97, x_4, x_6, x_7, x_2, x_13, x_90, x_96, x_666, x_14, x_15, x_16, x_17, x_18, x_19, x_621); +x_667 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__2(x_97, x_4, x_6, x_7, x_2, x_13, x_90, x_96, x_666, x_14, x_15, x_16, x_17, x_18, x_19, x_621); lean_dec(x_96); lean_dec(x_90); x_21 = x_667; @@ -4565,7 +4603,7 @@ lean_dec(x_97); lean_dec(x_96); lean_dec(x_90); lean_dec(x_13); -x_668 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__25; +x_668 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__25; lean_inc(x_18); lean_inc(x_14); x_669 = l_Lean_throwErrorAt___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabTermAux___spec__1(x_9, x_668, x_14, x_15, x_16, x_17, x_18, x_19, x_111); @@ -4666,7 +4704,7 @@ x_686 = lean_usize_of_nat(x_685); lean_dec(x_685); x_687 = x_684; x_688 = lean_box_usize(x_686); -x_689 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___boxed__const__1; +x_689 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___boxed__const__1; x_690 = lean_alloc_closure((void*)(l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__2___boxed), 10, 3); lean_closure_set(x_690, 0, x_688); lean_closure_set(x_690, 1, x_689); @@ -4721,7 +4759,7 @@ lean_dec(x_683); lean_dec(x_682); lean_dec(x_90); lean_dec(x_13); -x_705 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__8; +x_705 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__8; lean_inc(x_18); lean_inc(x_14); x_706 = l_Lean_throwErrorAt___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabTermAux___spec__1(x_9, x_705, x_14, x_15, x_16, x_17, x_18, x_19, x_697); @@ -4768,7 +4806,7 @@ lean_inc(x_717); x_718 = lean_ctor_get(x_716, 1); lean_inc(x_718); lean_dec(x_716); -x_719 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__12; +x_719 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__12; lean_inc(x_4); x_720 = lean_name_mk_string(x_4, x_719); lean_inc(x_720); @@ -4781,7 +4819,7 @@ lean_inc(x_7); x_723 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_723, 0, x_722); lean_ctor_set(x_723, 1, x_7); -x_724 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__11; +x_724 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__11; lean_inc(x_2); x_725 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_725, 0, x_2); @@ -4842,7 +4880,7 @@ lean_inc(x_2); lean_inc(x_7); lean_inc(x_6); lean_inc(x_4); -x_752 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2(x_683, x_4, x_6, x_7, x_2, x_13, x_90, x_682, x_751, x_14, x_15, x_16, x_17, x_18, x_19, x_718); +x_752 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__2(x_683, x_4, x_6, x_7, x_2, x_13, x_90, x_682, x_751, x_14, x_15, x_16, x_17, x_18, x_19, x_718); lean_dec(x_682); x_21 = x_752; goto block_31; @@ -4881,7 +4919,7 @@ lean_inc(x_762); x_763 = lean_ctor_get(x_761, 1); lean_inc(x_763); lean_dec(x_761); -x_764 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__12; +x_764 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__12; lean_inc(x_4); x_765 = lean_name_mk_string(x_4, x_764); lean_inc(x_765); @@ -4894,7 +4932,7 @@ lean_inc(x_7); x_768 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_768, 0, x_767); lean_ctor_set(x_768, 1, x_7); -x_769 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__11; +x_769 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__11; lean_inc(x_2); x_770 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_770, 0, x_2); @@ -4955,7 +4993,7 @@ lean_inc(x_2); lean_inc(x_7); lean_inc(x_6); lean_inc(x_4); -x_797 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2(x_683, x_4, x_6, x_7, x_2, x_13, x_90, x_682, x_796, x_14, x_15, x_16, x_17, x_18, x_19, x_763); +x_797 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__2(x_683, x_4, x_6, x_7, x_2, x_13, x_90, x_682, x_796, x_14, x_15, x_16, x_17, x_18, x_19, x_763); lean_dec(x_682); lean_dec(x_90); x_21 = x_797; @@ -5011,7 +5049,7 @@ lean_ctor_set(x_820, 1, x_818); x_821 = lean_array_push(x_807, x_820); x_822 = l_myMacro____x40_Init_Notation___hyg_1130____closed__23; x_823 = lean_array_push(x_821, x_822); -x_824 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__13; +x_824 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__13; lean_inc(x_2); x_825 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_825, 0, x_2); @@ -5023,7 +5061,7 @@ x_828 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_828, 0, x_2); lean_ctor_set(x_828, 1, x_827); x_829 = lean_array_push(x_806, x_828); -x_830 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__16; +x_830 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__16; lean_inc(x_799); lean_inc(x_802); x_831 = l_Lean_addMacroScope(x_802, x_830, x_799); @@ -5036,7 +5074,7 @@ lean_inc(x_7); x_834 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_834, 0, x_833); lean_ctor_set(x_834, 1, x_7); -x_835 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__15; +x_835 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__15; lean_inc(x_2); x_836 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_836, 0, x_2); @@ -5078,7 +5116,7 @@ lean_ctor_set(x_853, 1, x_852); lean_inc(x_853); x_854 = lean_array_push(x_851, x_853); x_855 = lean_array_to_list(lean_box(0), x_693); -x_856 = l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3(x_855); +x_856 = l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4(x_855); x_857 = l_Lean_mkOptionalNode___closed__2; x_858 = lean_array_push(x_857, x_856); x_859 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3404____closed__5; @@ -5143,7 +5181,7 @@ lean_inc(x_2); lean_inc(x_7); lean_inc(x_6); lean_inc(x_4); -x_886 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2(x_683, x_4, x_6, x_7, x_2, x_13, x_90, x_682, x_885, x_14, x_15, x_16, x_17, x_18, x_19, x_803); +x_886 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__2(x_683, x_4, x_6, x_7, x_2, x_13, x_90, x_682, x_885, x_14, x_15, x_16, x_17, x_18, x_19, x_803); lean_dec(x_682); lean_dec(x_90); x_21 = x_886; @@ -5167,7 +5205,7 @@ lean_inc(x_891); x_892 = lean_ctor_get(x_890, 1); lean_inc(x_892); lean_dec(x_890); -x_893 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__12; +x_893 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__12; lean_inc(x_4); x_894 = lean_name_mk_string(x_4, x_893); lean_inc(x_894); @@ -5180,7 +5218,7 @@ lean_inc(x_7); x_897 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_897, 0, x_896); lean_ctor_set(x_897, 1, x_7); -x_898 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__11; +x_898 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__11; lean_inc(x_2); x_899 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_899, 0, x_2); @@ -5241,7 +5279,7 @@ lean_inc(x_2); lean_inc(x_7); lean_inc(x_6); lean_inc(x_4); -x_926 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2(x_683, x_4, x_6, x_7, x_2, x_13, x_90, x_682, x_925, x_14, x_15, x_16, x_17, x_18, x_19, x_892); +x_926 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__2(x_683, x_4, x_6, x_7, x_2, x_13, x_90, x_682, x_925, x_14, x_15, x_16, x_17, x_18, x_19, x_892); lean_dec(x_682); lean_dec(x_90); x_21 = x_926; @@ -5264,7 +5302,7 @@ lean_inc(x_931); x_932 = lean_ctor_get(x_930, 1); lean_inc(x_932); lean_dec(x_930); -x_933 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__12; +x_933 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__12; lean_inc(x_4); x_934 = lean_name_mk_string(x_4, x_933); lean_inc(x_934); @@ -5277,7 +5315,7 @@ lean_inc(x_7); x_937 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_937, 0, x_936); lean_ctor_set(x_937, 1, x_7); -x_938 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__11; +x_938 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__11; lean_inc(x_2); x_939 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_939, 0, x_2); @@ -5338,7 +5376,7 @@ lean_inc(x_2); lean_inc(x_7); lean_inc(x_6); lean_inc(x_4); -x_966 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2(x_683, x_4, x_6, x_7, x_2, x_13, x_90, x_682, x_965, x_14, x_15, x_16, x_17, x_18, x_19, x_932); +x_966 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__2(x_683, x_4, x_6, x_7, x_2, x_13, x_90, x_682, x_965, x_14, x_15, x_16, x_17, x_18, x_19, x_932); lean_dec(x_682); lean_dec(x_90); x_21 = x_966; @@ -5381,7 +5419,7 @@ lean_inc(x_7); x_978 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_978, 0, x_977); lean_ctor_set(x_978, 1, x_7); -x_979 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__19; +x_979 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__19; lean_inc(x_2); x_980 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_980, 0, x_2); @@ -5465,7 +5503,7 @@ lean_inc(x_2); lean_inc(x_7); lean_inc(x_6); lean_inc(x_4); -x_1020 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2(x_683, x_4, x_6, x_7, x_2, x_13, x_90, x_682, x_1019, x_14, x_15, x_16, x_17, x_18, x_19, x_973); +x_1020 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__2(x_683, x_4, x_6, x_7, x_2, x_13, x_90, x_682, x_1019, x_14, x_15, x_16, x_17, x_18, x_19, x_973); lean_dec(x_682); x_21 = x_1020; goto block_31; @@ -5517,7 +5555,7 @@ lean_inc(x_7); x_1036 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1036, 0, x_1035); lean_ctor_set(x_1036, 1, x_7); -x_1037 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__19; +x_1037 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__19; lean_inc(x_2); x_1038 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_1038, 0, x_2); @@ -5601,7 +5639,7 @@ lean_inc(x_2); lean_inc(x_7); lean_inc(x_6); lean_inc(x_4); -x_1078 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2(x_683, x_4, x_6, x_7, x_2, x_13, x_90, x_682, x_1077, x_14, x_15, x_16, x_17, x_18, x_19, x_1031); +x_1078 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__2(x_683, x_4, x_6, x_7, x_2, x_13, x_90, x_682, x_1077, x_14, x_15, x_16, x_17, x_18, x_19, x_1031); lean_dec(x_682); lean_dec(x_90); x_21 = x_1078; @@ -5644,7 +5682,7 @@ lean_ctor_set(x_1095, 1, x_1093); x_1096 = lean_array_push(x_1088, x_1095); x_1097 = l_myMacro____x40_Init_Notation___hyg_1130____closed__23; x_1098 = lean_array_push(x_1096, x_1097); -x_1099 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__13; +x_1099 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__13; lean_inc(x_2); x_1100 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_1100, 0, x_2); @@ -5656,7 +5694,7 @@ x_1103 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_1103, 0, x_2); lean_ctor_set(x_1103, 1, x_1102); x_1104 = lean_array_push(x_1087, x_1103); -x_1105 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__16; +x_1105 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__16; lean_inc(x_1080); lean_inc(x_1083); x_1106 = l_Lean_addMacroScope(x_1083, x_1105, x_1080); @@ -5669,7 +5707,7 @@ lean_inc(x_7); x_1109 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1109, 0, x_1108); lean_ctor_set(x_1109, 1, x_7); -x_1110 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__15; +x_1110 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__15; lean_inc(x_2); x_1111 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_1111, 0, x_2); @@ -5700,7 +5738,7 @@ lean_ctor_set(x_1122, 1, x_1121); lean_inc(x_1122); x_1123 = lean_array_push(x_1120, x_1122); x_1124 = lean_array_to_list(lean_box(0), x_693); -x_1125 = l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3(x_1124); +x_1125 = l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4(x_1124); x_1126 = l_Lean_mkOptionalNode___closed__2; x_1127 = lean_array_push(x_1126, x_1125); x_1128 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3404____closed__5; @@ -5711,7 +5749,7 @@ x_1132 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1132, 0, x_1131); lean_ctor_set(x_1132, 1, x_1130); x_1133 = lean_array_push(x_1087, x_1132); -x_1134 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__22; +x_1134 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__22; lean_inc(x_1080); lean_inc(x_1083); x_1135 = l_Lean_addMacroScope(x_1083, x_1134, x_1080); @@ -5724,7 +5762,7 @@ lean_inc(x_7); x_1138 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1138, 0, x_1137); lean_ctor_set(x_1138, 1, x_7); -x_1139 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__21; +x_1139 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__21; lean_inc(x_2); x_1140 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_1140, 0, x_2); @@ -5775,7 +5813,7 @@ lean_inc(x_2); lean_inc(x_7); lean_inc(x_6); lean_inc(x_4); -x_1157 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2(x_683, x_4, x_6, x_7, x_2, x_13, x_90, x_682, x_1156, x_14, x_15, x_16, x_17, x_18, x_19, x_1084); +x_1157 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__2(x_683, x_4, x_6, x_7, x_2, x_13, x_90, x_682, x_1156, x_14, x_15, x_16, x_17, x_18, x_19, x_1084); lean_dec(x_682); lean_dec(x_90); x_21 = x_1157; @@ -5812,7 +5850,7 @@ lean_inc(x_7); x_1168 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1168, 0, x_1167); lean_ctor_set(x_1168, 1, x_7); -x_1169 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__19; +x_1169 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__19; lean_inc(x_2); x_1170 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_1170, 0, x_2); @@ -5896,7 +5934,7 @@ lean_inc(x_2); lean_inc(x_7); lean_inc(x_6); lean_inc(x_4); -x_1210 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2(x_683, x_4, x_6, x_7, x_2, x_13, x_90, x_682, x_1209, x_14, x_15, x_16, x_17, x_18, x_19, x_1163); +x_1210 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__2(x_683, x_4, x_6, x_7, x_2, x_13, x_90, x_682, x_1209, x_14, x_15, x_16, x_17, x_18, x_19, x_1163); lean_dec(x_682); lean_dec(x_90); x_21 = x_1210; @@ -5932,7 +5970,7 @@ lean_inc(x_7); x_1221 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1221, 0, x_1220); lean_ctor_set(x_1221, 1, x_7); -x_1222 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__19; +x_1222 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__19; lean_inc(x_2); x_1223 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_1223, 0, x_2); @@ -6016,7 +6054,7 @@ lean_inc(x_2); lean_inc(x_7); lean_inc(x_6); lean_inc(x_4); -x_1263 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2(x_683, x_4, x_6, x_7, x_2, x_13, x_90, x_682, x_1262, x_14, x_15, x_16, x_17, x_18, x_19, x_1216); +x_1263 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__2(x_683, x_4, x_6, x_7, x_2, x_13, x_90, x_682, x_1262, x_14, x_15, x_16, x_17, x_18, x_19, x_1216); lean_dec(x_682); lean_dec(x_90); x_21 = x_1263; @@ -6035,7 +6073,7 @@ lean_dec(x_683); lean_dec(x_682); lean_dec(x_90); lean_dec(x_13); -x_1264 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__25; +x_1264 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__25; lean_inc(x_18); lean_inc(x_14); x_1265 = l_Lean_throwErrorAt___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabTermAux___spec__1(x_9, x_1264, x_14, x_15, x_16, x_17, x_18, x_19, x_697); @@ -6163,7 +6201,7 @@ if (lean_obj_tag(x_1284) == 0) lean_object* x_1285; lean_object* x_1286; lean_dec(x_1283); lean_dec(x_13); -x_1285 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__29; +x_1285 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__29; lean_inc(x_18); lean_inc(x_14); x_1286 = l_Lean_throwErrorAt___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabTermAux___spec__1(x_33, x_1285, x_14, x_15, x_16, x_17, x_18, x_19, x_20); @@ -6215,7 +6253,7 @@ x_1299 = l_Lean_instToMessageDataOption___rarg___closed__4; x_1300 = lean_alloc_ctor(10, 2, 0); lean_ctor_set(x_1300, 0, x_1298); lean_ctor_set(x_1300, 1, x_1299); -x_1301 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__27; +x_1301 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__27; x_1302 = lean_alloc_ctor(10, 2, 0); lean_ctor_set(x_1302, 0, x_1301); lean_ctor_set(x_1302, 1, x_1300); @@ -6246,7 +6284,7 @@ if (x_1310 == 0) { lean_object* x_1311; lean_object* x_1312; lean_object* x_1313; lean_object* x_1314; lean_object* x_1315; lean_object* x_1316; lean_object* x_1317; lean_object* x_1318; lean_object* x_1319; lean_object* x_1320; lean_object* x_1321; lean_object* x_1322; lean_object* x_1323; lean_object* x_1324; lean_object* x_1325; lean_object* x_1326; lean_object* x_1327; lean_object* x_1328; lean_object* x_1329; lean_object* x_1330; lean_object* x_1331; lean_object* x_1332; lean_object* x_1333; lean_object* x_1334; lean_object* x_1335; lean_object* x_1336; lean_object* x_1337; lean_object* x_1338; lean_object* x_1339; lean_object* x_1340; lean_object* x_1341; lean_object* x_1342; lean_object* x_1343; lean_object* x_1344; lean_object* x_1345; lean_object* x_1346; lean_object* x_1347; lean_object* x_1348; lean_object* x_1349; lean_object* x_1350; lean_object* x_1351; lean_object* x_1352; lean_object* x_1353; lean_object* x_1354; lean_object* x_1355; lean_object* x_1356; lean_object* x_1357; lean_object* x_1358; lean_object* x_1359; lean_object* x_1360; lean_object* x_1361; x_1311 = lean_ctor_get(x_1309, 0); -x_1312 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__1___closed__4; +x_1312 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__1___closed__4; lean_inc(x_4); x_1313 = lean_name_mk_string(x_4, x_1312); lean_inc(x_1307); @@ -6261,7 +6299,7 @@ lean_inc(x_7); x_1316 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1316, 0, x_1315); lean_ctor_set(x_1316, 1, x_7); -x_1317 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__1___closed__3; +x_1317 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__1___closed__3; lean_inc(x_2); x_1318 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_1318, 0, x_2); @@ -6283,9 +6321,9 @@ x_1326 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_1326, 0, x_2); lean_ctor_set(x_1326, 1, x_1325); x_1327 = lean_array_push(x_1319, x_1326); -x_1328 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__36; +x_1328 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__36; x_1329 = l_Lean_addMacroScope(x_1311, x_1328, x_1307); -x_1330 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__38; +x_1330 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__38; lean_inc(x_6); x_1331 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_1331, 0, x_1330); @@ -6294,7 +6332,7 @@ lean_inc(x_7); x_1332 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1332, 0, x_1331); lean_ctor_set(x_1332, 1, x_7); -x_1333 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__32; +x_1333 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__32; lean_inc(x_2); x_1334 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_1334, 0, x_2); @@ -6359,7 +6397,7 @@ x_1363 = lean_ctor_get(x_1309, 1); lean_inc(x_1363); lean_inc(x_1362); lean_dec(x_1309); -x_1364 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__1___closed__4; +x_1364 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__1___closed__4; lean_inc(x_4); x_1365 = lean_name_mk_string(x_4, x_1364); lean_inc(x_1307); @@ -6374,7 +6412,7 @@ lean_inc(x_7); x_1368 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1368, 0, x_1367); lean_ctor_set(x_1368, 1, x_7); -x_1369 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__1___closed__3; +x_1369 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__1___closed__3; lean_inc(x_2); x_1370 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_1370, 0, x_2); @@ -6396,9 +6434,9 @@ x_1378 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_1378, 0, x_2); lean_ctor_set(x_1378, 1, x_1377); x_1379 = lean_array_push(x_1371, x_1378); -x_1380 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__36; +x_1380 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__36; x_1381 = l_Lean_addMacroScope(x_1362, x_1380, x_1307); -x_1382 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__38; +x_1382 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__38; lean_inc(x_6); x_1383 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_1383, 0, x_1382); @@ -6407,7 +6445,7 @@ lean_inc(x_7); x_1384 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1384, 0, x_1383); lean_ctor_set(x_1384, 1, x_7); -x_1385 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__32; +x_1385 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__32; lean_inc(x_2); x_1386 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_1386, 0, x_2); @@ -6486,7 +6524,7 @@ if (x_1419 == 0) { lean_object* x_1420; lean_object* x_1421; lean_object* x_1422; lean_object* x_1423; lean_object* x_1424; lean_object* x_1425; lean_object* x_1426; lean_object* x_1427; lean_object* x_1428; lean_object* x_1429; lean_object* x_1430; lean_object* x_1431; lean_object* x_1432; lean_object* x_1433; lean_object* x_1434; lean_object* x_1435; lean_object* x_1436; lean_object* x_1437; x_1420 = lean_ctor_get(x_1418, 0); -x_1421 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__1___closed__4; +x_1421 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__1___closed__4; lean_inc(x_4); x_1422 = lean_name_mk_string(x_4, x_1421); lean_inc(x_1422); @@ -6499,7 +6537,7 @@ lean_inc(x_7); x_1425 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1425, 0, x_1424); lean_ctor_set(x_1425, 1, x_7); -x_1426 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__1___closed__3; +x_1426 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__1___closed__3; lean_inc(x_2); x_1427 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_1427, 0, x_2); @@ -6533,7 +6571,7 @@ x_1439 = lean_ctor_get(x_1418, 1); lean_inc(x_1439); lean_inc(x_1438); lean_dec(x_1418); -x_1440 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__1___closed__4; +x_1440 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__1___closed__4; lean_inc(x_4); x_1441 = lean_name_mk_string(x_4, x_1440); lean_inc(x_1441); @@ -6546,7 +6584,7 @@ lean_inc(x_7); x_1444 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1444, 0, x_1443); lean_ctor_set(x_1444, 1, x_7); -x_1445 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__1___closed__3; +x_1445 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__1___closed__3; lean_inc(x_2); x_1446 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_1446, 0, x_2); @@ -6594,7 +6632,7 @@ if (x_1462 == 0) { lean_object* x_1463; lean_object* x_1464; lean_object* x_1465; lean_object* x_1466; lean_object* x_1467; lean_object* x_1468; lean_object* x_1469; lean_object* x_1470; lean_object* x_1471; lean_object* x_1472; lean_object* x_1473; lean_object* x_1474; lean_object* x_1475; lean_object* x_1476; lean_object* x_1477; lean_object* x_1478; lean_object* x_1479; lean_object* x_1480; lean_object* x_1481; lean_object* x_1482; lean_object* x_1483; lean_object* x_1484; lean_object* x_1485; lean_object* x_1486; lean_object* x_1487; lean_object* x_1488; lean_object* x_1489; lean_object* x_1490; lean_object* x_1491; lean_object* x_1492; lean_object* x_1493; lean_object* x_1494; lean_object* x_1495; lean_object* x_1496; lean_object* x_1497; lean_object* x_1498; lean_object* x_1499; lean_object* x_1500; lean_object* x_1501; lean_object* x_1502; lean_object* x_1503; lean_object* x_1504; lean_object* x_1505; lean_object* x_1506; lean_object* x_1507; lean_object* x_1508; lean_object* x_1509; lean_object* x_1510; lean_object* x_1511; lean_object* x_1512; lean_object* x_1513; lean_object* x_1514; lean_object* x_1515; lean_object* x_1516; lean_object* x_1517; lean_object* x_1518; lean_object* x_1519; lean_object* x_1520; lean_object* x_1521; lean_object* x_1522; lean_object* x_1523; lean_object* x_1524; lean_object* x_1525; lean_object* x_1526; lean_object* x_1527; lean_object* x_1528; lean_object* x_1529; lean_object* x_1530; lean_object* x_1531; lean_object* x_1532; lean_object* x_1533; lean_object* x_1534; lean_object* x_1535; lean_object* x_1536; lean_object* x_1537; lean_object* x_1538; lean_object* x_1539; lean_object* x_1540; lean_object* x_1541; lean_object* x_1542; lean_object* x_1543; lean_object* x_1544; lean_object* x_1545; lean_object* x_1546; lean_object* x_1547; lean_object* x_1548; lean_object* x_1549; lean_object* x_1550; lean_object* x_1551; lean_object* x_1552; lean_object* x_1553; lean_object* x_1554; lean_object* x_1555; lean_object* x_1556; lean_object* x_1557; lean_object* x_1558; lean_object* x_1559; lean_object* x_1560; lean_object* x_1561; lean_object* x_1562; lean_object* x_1563; lean_object* x_1564; lean_object* x_1565; lean_object* x_1566; lean_object* x_1567; lean_object* x_1568; lean_object* x_1569; lean_object* x_1570; x_1463 = lean_ctor_get(x_1461, 0); -x_1464 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__1___closed__4; +x_1464 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__1___closed__4; lean_inc(x_4); x_1465 = lean_name_mk_string(x_4, x_1464); lean_inc(x_1459); @@ -6609,7 +6647,7 @@ lean_inc(x_7); x_1468 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1468, 0, x_1467); lean_ctor_set(x_1468, 1, x_7); -x_1469 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__1___closed__3; +x_1469 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__1___closed__3; lean_inc(x_2); x_1470 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_1470, 0, x_2); @@ -6647,7 +6685,7 @@ lean_ctor_set(x_1487, 1, x_1485); x_1488 = lean_array_push(x_1479, x_1487); x_1489 = l_myMacro____x40_Init_Notation___hyg_1130____closed__23; x_1490 = lean_array_push(x_1488, x_1489); -x_1491 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__13; +x_1491 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__13; lean_inc(x_2); x_1492 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_1492, 0, x_2); @@ -6659,7 +6697,7 @@ x_1495 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_1495, 0, x_2); lean_ctor_set(x_1495, 1, x_1494); x_1496 = lean_array_push(x_1471, x_1495); -x_1497 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__16; +x_1497 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__16; lean_inc(x_1459); lean_inc(x_1463); x_1498 = l_Lean_addMacroScope(x_1463, x_1497, x_1459); @@ -6672,7 +6710,7 @@ lean_inc(x_7); x_1501 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1501, 0, x_1500); lean_ctor_set(x_1501, 1, x_7); -x_1502 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__15; +x_1502 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__15; lean_inc(x_2); x_1503 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_1503, 0, x_2); @@ -6684,7 +6722,7 @@ x_1505 = l_Lean_Meta_mkArrow___closed__2; lean_inc(x_1459); lean_inc(x_1463); x_1506 = l_Lean_addMacroScope(x_1463, x_1505, x_1459); -x_1507 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__40; +x_1507 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__40; lean_inc(x_7); lean_inc(x_2); x_1508 = lean_alloc_ctor(3, 4, 0); @@ -6715,7 +6753,7 @@ lean_ctor_set(x_1518, 0, x_2); lean_ctor_set(x_1518, 1, x_1517); lean_inc(x_1518); x_1519 = lean_array_push(x_1516, x_1518); -x_1520 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__4; +x_1520 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__4; lean_inc(x_5); x_1521 = lean_name_mk_string(x_5, x_1520); lean_inc(x_1459); @@ -6733,7 +6771,7 @@ lean_inc(x_7); x_1525 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1525, 0, x_1524); lean_ctor_set(x_1525, 1, x_7); -x_1526 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__43; +x_1526 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__43; lean_inc(x_2); x_1527 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_1527, 0, x_2); @@ -6751,7 +6789,7 @@ x_1533 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1533, 0, x_1532); lean_ctor_set(x_1533, 1, x_1531); x_1534 = lean_array_push(x_1471, x_1533); -x_1535 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__22; +x_1535 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__22; lean_inc(x_1459); lean_inc(x_1463); x_1536 = l_Lean_addMacroScope(x_1463, x_1535, x_1459); @@ -6764,7 +6802,7 @@ lean_inc(x_7); x_1539 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1539, 0, x_1538); lean_ctor_set(x_1539, 1, x_7); -x_1540 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__21; +x_1540 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__21; lean_inc(x_2); x_1541 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_1541, 0, x_2); @@ -6841,7 +6879,7 @@ x_1572 = lean_ctor_get(x_1461, 1); lean_inc(x_1572); lean_inc(x_1571); lean_dec(x_1461); -x_1573 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__1___closed__4; +x_1573 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__1___closed__4; lean_inc(x_4); x_1574 = lean_name_mk_string(x_4, x_1573); lean_inc(x_1459); @@ -6856,7 +6894,7 @@ lean_inc(x_7); x_1577 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1577, 0, x_1576); lean_ctor_set(x_1577, 1, x_7); -x_1578 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__1___closed__3; +x_1578 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__1___closed__3; lean_inc(x_2); x_1579 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_1579, 0, x_2); @@ -6894,7 +6932,7 @@ lean_ctor_set(x_1596, 1, x_1594); x_1597 = lean_array_push(x_1588, x_1596); x_1598 = l_myMacro____x40_Init_Notation___hyg_1130____closed__23; x_1599 = lean_array_push(x_1597, x_1598); -x_1600 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__13; +x_1600 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__13; lean_inc(x_2); x_1601 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_1601, 0, x_2); @@ -6906,7 +6944,7 @@ x_1604 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_1604, 0, x_2); lean_ctor_set(x_1604, 1, x_1603); x_1605 = lean_array_push(x_1580, x_1604); -x_1606 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__16; +x_1606 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__16; lean_inc(x_1459); lean_inc(x_1571); x_1607 = l_Lean_addMacroScope(x_1571, x_1606, x_1459); @@ -6919,7 +6957,7 @@ lean_inc(x_7); x_1610 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1610, 0, x_1609); lean_ctor_set(x_1610, 1, x_7); -x_1611 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__15; +x_1611 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__15; lean_inc(x_2); x_1612 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_1612, 0, x_2); @@ -6931,7 +6969,7 @@ x_1614 = l_Lean_Meta_mkArrow___closed__2; lean_inc(x_1459); lean_inc(x_1571); x_1615 = l_Lean_addMacroScope(x_1571, x_1614, x_1459); -x_1616 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__40; +x_1616 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__40; lean_inc(x_7); lean_inc(x_2); x_1617 = lean_alloc_ctor(3, 4, 0); @@ -6962,7 +7000,7 @@ lean_ctor_set(x_1627, 0, x_2); lean_ctor_set(x_1627, 1, x_1626); lean_inc(x_1627); x_1628 = lean_array_push(x_1625, x_1627); -x_1629 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__4; +x_1629 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__4; lean_inc(x_5); x_1630 = lean_name_mk_string(x_5, x_1629); lean_inc(x_1459); @@ -6980,7 +7018,7 @@ lean_inc(x_7); x_1634 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1634, 0, x_1633); lean_ctor_set(x_1634, 1, x_7); -x_1635 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__43; +x_1635 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__43; lean_inc(x_2); x_1636 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_1636, 0, x_2); @@ -6998,7 +7036,7 @@ x_1642 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1642, 0, x_1641); lean_ctor_set(x_1642, 1, x_1640); x_1643 = lean_array_push(x_1580, x_1642); -x_1644 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__22; +x_1644 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__22; lean_inc(x_1459); lean_inc(x_1571); x_1645 = l_Lean_addMacroScope(x_1571, x_1644, x_1459); @@ -7011,7 +7049,7 @@ lean_inc(x_7); x_1648 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1648, 0, x_1647); lean_ctor_set(x_1648, 1, x_7); -x_1649 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__21; +x_1649 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__21; lean_inc(x_2); x_1650 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_1650, 0, x_2); @@ -7100,7 +7138,7 @@ x_1684 = l_Lean_instToMessageDataOption___rarg___closed__4; x_1685 = lean_alloc_ctor(10, 2, 0); lean_ctor_set(x_1685, 0, x_1683); lean_ctor_set(x_1685, 1, x_1684); -x_1686 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__27; +x_1686 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__27; x_1687 = lean_alloc_ctor(10, 2, 0); lean_ctor_set(x_1687, 0, x_1686); lean_ctor_set(x_1687, 1, x_1685); @@ -7131,7 +7169,7 @@ x_1694 = l_Lean_instToMessageDataOption___rarg___closed__4; x_1695 = lean_alloc_ctor(10, 2, 0); lean_ctor_set(x_1695, 0, x_1693); lean_ctor_set(x_1695, 1, x_1694); -x_1696 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__27; +x_1696 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__27; x_1697 = lean_alloc_ctor(10, 2, 0); lean_ctor_set(x_1697, 0, x_1696); lean_ctor_set(x_1697, 1, x_1695); @@ -7180,7 +7218,7 @@ 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; 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; x_43 = lean_ctor_get(x_41, 0); -x_44 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__4; +x_44 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__4; lean_inc(x_4); x_45 = lean_name_mk_string(x_4, x_44); lean_inc(x_45); @@ -7193,7 +7231,7 @@ lean_inc(x_7); x_48 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_48, 0, x_47); lean_ctor_set(x_48, 1, x_7); -x_49 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__3; +x_49 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__3; lean_inc(x_2); x_50 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_50, 0, x_2); @@ -7225,7 +7263,7 @@ x_61 = lean_ctor_get(x_41, 1); lean_inc(x_61); lean_inc(x_60); lean_dec(x_41); -x_62 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__4; +x_62 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__4; lean_inc(x_4); x_63 = lean_name_mk_string(x_4, x_62); lean_inc(x_63); @@ -7238,7 +7276,7 @@ lean_inc(x_7); x_66 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_66, 0, x_65); lean_ctor_set(x_66, 1, x_7); -x_67 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__3; +x_67 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__3; lean_inc(x_2); x_68 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_68, 0, x_2); @@ -7368,7 +7406,7 @@ return x_30; } } } -lean_object* l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__6(lean_object* x_1) { +lean_object* l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__7(lean_object* x_1) { _start: { if (lean_obj_tag(x_1) == 0) @@ -7384,7 +7422,7 @@ x_3 = lean_ctor_get(x_1, 0); x_4 = lean_ctor_get(x_1, 1); x_5 = l_Lean_instInhabitedSourceInfo___closed__1; x_6 = l_Lean_Syntax_mkStrLit(x_3, x_5); -x_7 = l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__6(x_4); +x_7 = l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__7(x_4); x_8 = l_Lean_Syntax_mkApp___closed__1; x_9 = lean_array_push(x_8, x_6); x_10 = lean_array_push(x_9, x_7); @@ -7394,7 +7432,7 @@ return x_12; } } } -lean_object* l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5(lean_object* x_1) { +lean_object* l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__6(lean_object* x_1) { _start: { if (lean_obj_tag(x_1) == 0) @@ -7411,14 +7449,14 @@ lean_inc(x_3); x_4 = lean_ctor_get(x_1, 1); lean_inc(x_4); lean_dec(x_1); -x_5 = l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5(x_4); +x_5 = l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__6(x_4); x_6 = lean_ctor_get(x_3, 0); lean_inc(x_6); x_7 = lean_ctor_get(x_3, 1); lean_inc(x_7); lean_dec(x_3); x_8 = l___private_Init_Meta_0__Lean_quoteName(x_6); -x_9 = l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__6(x_7); +x_9 = l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__7(x_7); lean_dec(x_7); x_10 = l_Lean_Syntax_mkApp___closed__1; x_11 = lean_array_push(x_10, x_8); @@ -8196,7 +8234,7 @@ lean_inc(x_5); lean_inc(x_4); lean_inc(x_3); lean_inc(x_2); -x_79 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4(x_13, x_24, x_25, x_78, x_21, x_23, x_23, x_26, x_70, x_71, x_76, x_77, x_27, x_2, x_3, x_4, x_5, x_6, x_7, x_20); +x_79 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5(x_13, x_24, x_25, x_78, x_21, x_23, x_23, x_26, x_70, x_71, x_76, x_77, x_27, x_2, x_3, x_4, x_5, x_6, x_7, x_20); lean_dec(x_71); lean_dec(x_70); if (lean_obj_tag(x_79) == 0) @@ -8450,9 +8488,9 @@ lean_ctor_set(x_127, 1, x_125); lean_ctor_set(x_127, 2, x_124); lean_ctor_set(x_127, 3, x_126); x_128 = lean_array_push(x_121, x_127); -x_129 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__22; +x_129 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__22; x_130 = l_Lean_addMacroScope(x_114, x_129, x_110); -x_131 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__21; +x_131 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__21; x_132 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__39; x_133 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_133, 0, x_117); @@ -8535,9 +8573,9 @@ lean_ctor_set(x_171, 1, x_169); lean_ctor_set(x_171, 2, x_168); lean_ctor_set(x_171, 3, x_170); x_172 = lean_array_push(x_165, x_171); -x_173 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__22; +x_173 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__22; x_174 = l_Lean_addMacroScope(x_157, x_173, x_110); -x_175 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__21; +x_175 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__21; x_176 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__39; x_177 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_177, 0, x_161); @@ -8646,9 +8684,9 @@ lean_ctor_set(x_222, 1, x_220); lean_ctor_set(x_222, 2, x_219); lean_ctor_set(x_222, 3, x_221); x_223 = lean_array_push(x_216, x_222); -x_224 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__22; +x_224 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__22; x_225 = l_Lean_addMacroScope(x_207, x_224, x_204); -x_226 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__21; +x_226 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__21; x_227 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__39; x_228 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_228, 0, x_212); @@ -8770,11 +8808,11 @@ lean_ctor_set(x_282, 1, x_280); lean_ctor_set(x_282, 2, x_279); lean_ctor_set(x_282, 3, x_281); x_283 = lean_array_push(x_276, x_282); -x_284 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__22; +x_284 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__22; lean_inc(x_265); lean_inc(x_269); x_285 = l_Lean_addMacroScope(x_269, x_284, x_265); -x_286 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__21; +x_286 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__21; x_287 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__39; x_288 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_288, 0, x_273); @@ -8860,7 +8898,7 @@ x_332 = lean_array_push(x_331, x_303); x_333 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_333, 0, x_305); lean_ctor_set(x_333, 1, x_332); -x_334 = l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5(x_262); +x_334 = l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__6(x_262); x_335 = lean_ctor_get(x_255, 0); lean_inc(x_335); x_336 = lean_ctor_get(x_255, 1); @@ -8925,11 +8963,11 @@ lean_ctor_set(x_364, 1, x_362); lean_ctor_set(x_364, 2, x_361); lean_ctor_set(x_364, 3, x_363); x_365 = lean_array_push(x_358, x_364); -x_366 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__22; +x_366 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__22; lean_inc(x_265); lean_inc(x_350); x_367 = l_Lean_addMacroScope(x_350, x_366, x_265); -x_368 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__21; +x_368 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__21; x_369 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__39; x_370 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_370, 0, x_355); @@ -9015,7 +9053,7 @@ x_414 = lean_array_push(x_413, x_385); x_415 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_415, 0, x_387); lean_ctor_set(x_415, 1, x_414); -x_416 = l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5(x_262); +x_416 = l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__6(x_262); x_417 = lean_ctor_get(x_255, 0); lean_inc(x_417); x_418 = lean_ctor_get(x_255, 1); @@ -9121,11 +9159,11 @@ lean_ctor_set(x_461, 1, x_459); lean_ctor_set(x_461, 2, x_458); lean_ctor_set(x_461, 3, x_460); x_462 = lean_array_push(x_455, x_461); -x_463 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__22; +x_463 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__22; lean_inc(x_442); lean_inc(x_445); x_464 = l_Lean_addMacroScope(x_445, x_463, x_442); -x_465 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__21; +x_465 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__21; x_466 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__39; x_467 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_467, 0, x_451); @@ -9211,7 +9249,7 @@ x_511 = lean_array_push(x_510, x_482); x_512 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_512, 0, x_484); lean_ctor_set(x_512, 1, x_511); -x_513 = l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5(x_439); +x_513 = l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__6(x_439); x_514 = lean_ctor_get(x_433, 0); lean_inc(x_514); x_515 = lean_ctor_get(x_433, 1); @@ -9278,17 +9316,28 @@ x_13 = l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Te return x_13; } } -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16) { +lean_object* l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___boxed(lean_object* x_1, lean_object* x_2) { +_start: +{ +uint8_t x_3; lean_object* x_4; +x_3 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3(x_1, x_2); +lean_dec(x_2); +lean_dec(x_1); +x_4 = lean_box(x_3); +return x_4; +} +} +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, 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_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__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 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__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); lean_dec(x_8); lean_dec(x_7); return x_17; } } -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___boxed(lean_object** _args) { +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___boxed(lean_object** _args) { lean_object* x_1 = _args[0]; lean_object* x_2 = _args[1]; lean_object* x_3 = _args[2]; @@ -9316,18 +9365,18 @@ x_21 = lean_unbox_usize(x_11); lean_dec(x_11); x_22 = lean_unbox_usize(x_12); lean_dec(x_12); -x_23 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_21, x_22, x_13, x_14, x_15, x_16, x_17, x_18, x_19, x_20); +x_23 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_21, x_22, x_13, x_14, x_15, x_16, x_17, x_18, x_19, x_20); lean_dec(x_10); lean_dec(x_9); lean_dec(x_1); return x_23; } } -lean_object* l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__6___boxed(lean_object* x_1) { +lean_object* l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__7___boxed(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__6(x_1); +x_2 = l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__7(x_1); lean_dec(x_1); return x_2; } @@ -12074,7 +12123,7 @@ static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quot _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__34; +x_1 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__34; x_2 = l_Lean_instQuoteProd___rarg___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -12231,7 +12280,7 @@ lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); -x_15 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__29; +x_15 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__29; x_16 = l_Lean_throwErrorAt___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabTermAux___spec__1(x_2, x_15, x_7, x_8, x_9, x_10, x_11, x_12, x_13); return x_16; } @@ -12281,7 +12330,7 @@ x_29 = l_Lean_instToMessageDataOption___rarg___closed__4; x_30 = lean_alloc_ctor(10, 2, 0); lean_ctor_set(x_30, 0, x_28); lean_ctor_set(x_30, 1, x_29); -x_31 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__27; +x_31 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__27; x_32 = lean_alloc_ctor(10, 2, 0); lean_ctor_set(x_32, 0, x_31); lean_ctor_set(x_32, 1, x_30); @@ -12338,7 +12387,7 @@ lean_inc(x_41); x_60 = l_Lean_addMacroScope(x_41, x_59, x_37); x_61 = l_Lean_Parser_Syntax_addPrec___closed__5; x_62 = lean_name_mk_string(x_5, x_61); -x_63 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__33; +x_63 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__33; lean_inc(x_62); x_64 = lean_name_mk_string(x_62, x_63); x_65 = l_Lean_instQuoteProd___rarg___closed__1; @@ -12479,7 +12528,7 @@ lean_inc(x_121); x_141 = l_Lean_addMacroScope(x_121, x_140, x_37); x_142 = l_Lean_Parser_Syntax_addPrec___closed__5; x_143 = lean_name_mk_string(x_5, x_142); -x_144 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__33; +x_144 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__33; lean_inc(x_143); x_145 = lean_name_mk_string(x_143, x_144); x_146 = l_Lean_instQuoteProd___rarg___closed__1; @@ -12976,7 +13025,7 @@ x_412 = l_Lean_instToMessageDataOption___rarg___closed__4; x_413 = lean_alloc_ctor(10, 2, 0); lean_ctor_set(x_413, 0, x_411); lean_ctor_set(x_413, 1, x_412); -x_414 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__27; +x_414 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__27; x_415 = lean_alloc_ctor(10, 2, 0); lean_ctor_set(x_415, 0, x_414); lean_ctor_set(x_415, 1, x_413); @@ -13005,7 +13054,7 @@ x_422 = l_Lean_instToMessageDataOption___rarg___closed__4; x_423 = lean_alloc_ctor(10, 2, 0); lean_ctor_set(x_423, 0, x_421); lean_ctor_set(x_423, 1, x_422); -x_424 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__27; +x_424 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__27; x_425 = lean_alloc_ctor(10, 2, 0); lean_ctor_set(x_425, 0, x_424); lean_ctor_set(x_425, 1, x_423); @@ -13402,82 +13451,79 @@ uint8_t x_57; x_57 = l_Lean_Syntax_isEscapedAntiquot(x_14); if (x_57 == 0) { -lean_object* x_58; lean_object* x_59; uint8_t x_60; lean_object* x_61; +lean_object* x_58; lean_object* x_59; uint8_t x_60; lean_object* x_61; uint8_t x_62; lean_object* x_63; x_58 = l_Lean_Syntax_antiquotKind_x3f(x_14); -x_59 = l_Lean_Syntax_getAntiquotTerm(x_14); +x_59 = l_Lean_Syntax_antiquotKind_x3f___closed__1; +x_60 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3(x_58, x_59); +x_61 = l_Lean_Syntax_getAntiquotTerm(x_14); lean_dec(x_14); -x_60 = l_Lean_Syntax_isIdent(x_59); -if (lean_obj_tag(x_58) == 0) -{ -x_61 = x_58; -goto block_68; -} -else -{ -lean_object* x_69; lean_object* x_70; uint8_t x_71; -x_69 = lean_ctor_get(x_58, 0); -lean_inc(x_69); -x_70 = lean_box(0); -x_71 = lean_name_eq(x_69, x_70); -lean_dec(x_69); -if (x_71 == 0) -{ -x_61 = x_58; -goto block_68; -} -else -{ -lean_object* x_72; -lean_dec(x_58); -x_72 = lean_box(0); -x_61 = x_72; -goto block_68; -} -} -block_68: -{ +x_62 = l_Lean_Syntax_isIdent(x_61); if (x_60 == 0) { -lean_object* x_62; -lean_dec(x_61); -x_62 = lean_alloc_closure((void*)(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__4___boxed), 9, 1); -lean_closure_set(x_62, 0, x_59); -x_4 = x_62; +x_63 = x_58; +goto block_70; +} +else +{ +lean_object* x_71; +lean_dec(x_58); +x_71 = lean_box(0); +x_63 = x_71; +goto block_70; +} +block_70: +{ +if (x_62 == 0) +{ +lean_object* x_64; +lean_dec(x_63); +x_64 = lean_alloc_closure((void*)(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__4___boxed), 9, 1); +lean_closure_set(x_64, 0, x_61); +x_4 = x_64; goto block_8; } else { -lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; -x_63 = lean_box(0); -x_64 = l_myMacro____x40_Init_Notation___hyg_2022____closed__2; -x_65 = lean_alloc_closure((void*)(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__5___boxed), 11, 3); -lean_closure_set(x_65, 0, x_64); -lean_closure_set(x_65, 1, x_63); -lean_closure_set(x_65, 2, x_59); -x_66 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_66, 0, x_61); -lean_ctor_set(x_66, 1, x_63); -lean_ctor_set(x_66, 2, x_65); -x_67 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_67, 0, x_66); -return x_67; +lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; +x_65 = lean_box(0); +x_66 = l_myMacro____x40_Init_Notation___hyg_2022____closed__2; +x_67 = lean_alloc_closure((void*)(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__5___boxed), 11, 3); +lean_closure_set(x_67, 0, x_66); +lean_closure_set(x_67, 1, x_65); +lean_closure_set(x_67, 2, x_61); +x_68 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_68, 0, x_63); +lean_ctor_set(x_68, 1, x_65); +lean_ctor_set(x_68, 2, x_67); +x_69 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_69, 0, x_68); +return x_69; } } } else { +uint8_t x_72; +x_72 = l_Lean_Syntax_isAntiquotSuffixSplice(x_14); +if (x_72 == 0) +{ uint8_t x_73; -x_73 = l_Lean_Syntax_isAntiquotSuffixSplice(x_14); +x_73 = l_Lean_Syntax_isAntiquotSplice(x_14); if (x_73 == 0) { -uint8_t x_74; -x_74 = l_Lean_Syntax_isAntiquotSplice(x_14); -if (x_74 == 0) +lean_object* x_74; +x_74 = lean_box(0); +x_32 = x_74; +goto block_49; +} +else { lean_object* x_75; -x_75 = lean_box(0); -x_32 = x_75; -goto block_49; +x_75 = lean_alloc_closure((void*)(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__3___boxed), 9, 1); +lean_closure_set(x_75, 0, x_14); +x_4 = x_75; +goto block_8; +} } else { @@ -13488,23 +13534,14 @@ x_4 = x_76; goto block_8; } } +} +} else { lean_object* x_77; -x_77 = lean_alloc_closure((void*)(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__3___boxed), 9, 1); -lean_closure_set(x_77, 0, x_14); -x_4 = x_77; -goto block_8; -} -} -} -} -else -{ -lean_object* x_78; lean_dec(x_14); -x_78 = l_Lean_Elab_Term_Quotation_instInhabitedHeadInfo___closed__1; -x_4 = x_78; +x_77 = l_Lean_Elab_Term_Quotation_instInhabitedHeadInfo___closed__1; +x_4 = x_77; goto block_8; } block_31: @@ -13602,19 +13639,19 @@ goto block_8; } else { -lean_object* x_79; +lean_object* x_78; lean_dec(x_3); -x_79 = l_Lean_Elab_Term_Quotation_instInhabitedHeadInfo___closed__1; -x_4 = x_79; +x_78 = l_Lean_Elab_Term_Quotation_instInhabitedHeadInfo___closed__1; +x_4 = x_78; goto block_8; } } else { -lean_object* x_80; -x_80 = lean_alloc_closure((void*)(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__6___boxed), 9, 1); -lean_closure_set(x_80, 0, x_3); -x_4 = x_80; +lean_object* x_79; +x_79 = lean_alloc_closure((void*)(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__6___boxed), 9, 1); +lean_closure_set(x_79, 0, x_3); +x_4 = x_79; goto block_8; } block_8: @@ -14868,37 +14905,7 @@ return x_5; } } } -lean_object* l_List_foldl___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__3(lean_object* x_1, lean_object* x_2) { -_start: -{ -if (lean_obj_tag(x_2) == 0) -{ -lean_inc(x_1); -return x_1; -} -else -{ -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_2, 0); -x_4 = lean_ctor_get(x_2, 1); -x_5 = lean_ctor_get(x_1, 0); -x_6 = lean_ctor_get(x_3, 0); -x_7 = l_Lean_Elab_Term_Quotation_HeadInfo_generalizes(x_5, x_6); -if (x_7 == 0) -{ -x_2 = x_4; -goto _start; -} -else -{ -x_1 = x_3; -x_2 = x_4; -goto _start; -} -} -} -} -lean_object* l_List_filterAux___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__4(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_List_filterAux___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__3(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { if (lean_obj_tag(x_2) == 0) @@ -14971,7 +14978,7 @@ goto _start; } } } -lean_object* l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___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* l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___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: { if (lean_obj_tag(x_2) == 0) @@ -15015,7 +15022,7 @@ lean_inc(x_18); x_19 = lean_ctor_get(x_17, 1); lean_inc(x_19); lean_dec(x_17); -x_20 = l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__5(x_1, x_14, x_3, x_4, x_5, x_6, x_7, x_8, x_19); +x_20 = l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__4(x_1, x_14, x_3, x_4, x_5, x_6, x_7, x_8, x_19); if (lean_obj_tag(x_20) == 0) { uint8_t x_21; @@ -15126,7 +15133,7 @@ lean_inc(x_39); x_40 = lean_ctor_get(x_38, 1); lean_inc(x_40); lean_dec(x_38); -x_41 = l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__5(x_1, x_35, x_3, x_4, x_5, x_6, x_7, x_8, x_40); +x_41 = l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__4(x_1, x_35, x_3, x_4, x_5, x_6, x_7, x_8, x_40); 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; @@ -15215,7 +15222,7 @@ return x_54; } } } -lean_object* l_List_filterAux___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__6(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_List_filterAux___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__5(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { if (lean_obj_tag(x_2) == 0) @@ -15288,7 +15295,7 @@ goto _start; } } } -lean_object* l_List_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__7(lean_object* x_1) { +lean_object* l_List_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__6(lean_object* x_1) { _start: { if (lean_obj_tag(x_1) == 0) @@ -15309,7 +15316,7 @@ x_5 = lean_ctor_get(x_1, 1); x_6 = lean_ctor_get(x_4, 1); lean_inc(x_6); lean_dec(x_4); -x_7 = l_List_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__7(x_5); +x_7 = l_List_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__6(x_5); lean_ctor_set(x_1, 1, x_7); lean_ctor_set(x_1, 0, x_6); return x_1; @@ -15325,7 +15332,7 @@ lean_dec(x_1); x_10 = lean_ctor_get(x_8, 1); lean_inc(x_10); lean_dec(x_8); -x_11 = l_List_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__7(x_9); +x_11 = l_List_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__6(x_9); x_12 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_12, 0, x_10); lean_ctor_set(x_12, 1, x_11); @@ -15334,7 +15341,7 @@ return x_12; } } } -static lean_object* _init_l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__1() { +static lean_object* _init_l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__7___closed__1() { _start: { lean_object* x_1; @@ -15342,22 +15349,22 @@ x_1 = lean_mk_string("tuples.map"); return x_1; } } -static lean_object* _init_l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__2() { +static lean_object* _init_l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__7___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__1; +x_1 = l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__7___closed__1; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__3() { +static lean_object* _init_l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__7___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__1; +x_1 = l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__7___closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__2; +x_3 = l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__7___closed__2; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -15365,7 +15372,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__4() { +static lean_object* _init_l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__7___closed__4() { _start: { lean_object* x_1; @@ -15373,26 +15380,242 @@ x_1 = lean_mk_string("tuples"); return x_1; } } -static lean_object* _init_l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__5() { +static lean_object* _init_l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__7___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__4; +x_2 = l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__7___closed__4; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__6() { +static lean_object* _init_l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__7___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__5; +x_1 = l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__7___closed__5; x_2 = l_myMacro____x40_Init_Notation___hyg_10899____closed__6; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } +lean_object* l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___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_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; uint8_t x_20; +x_19 = lean_ctor_get(x_8, 1); +x_20 = lean_nat_dec_le(x_19, x_10); +if (x_20 == 0) +{ +lean_object* x_21; uint8_t x_22; +x_21 = lean_unsigned_to_nat(0u); +x_22 = lean_nat_dec_eq(x_9, 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; 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; +x_23 = lean_unsigned_to_nat(1u); +x_24 = lean_nat_sub(x_9, x_23); +lean_dec(x_9); +x_25 = lean_nat_add(x_10, x_23); +x_26 = l_Nat_repr(x_25); +x_27 = l_Lean_fieldIdxKind; +lean_inc(x_5); +x_28 = l_Lean_Syntax_mkLit(x_27, x_26, x_5); +x_29 = l_Lean_Elab_Term_getCurrMacroScope(x_12, x_13, x_14, x_15, x_16, x_17, x_18); +x_30 = lean_ctor_get(x_29, 0); +lean_inc(x_30); +x_31 = lean_ctor_get(x_29, 1); +lean_inc(x_31); +lean_dec(x_29); +x_32 = l_Lean_Elab_Term_getMainModule___rarg(x_17, x_31); +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(x_32); +x_35 = l_myMacro____x40_Init_Notation___hyg_12942____closed__1; +lean_inc(x_2); +x_36 = lean_name_mk_string(x_2, x_35); +lean_inc(x_5); +x_37 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_37, 0, x_5); +lean_ctor_set(x_37, 1, x_35); +lean_inc(x_4); +x_38 = lean_array_push(x_4, x_37); +x_39 = l_myMacro____x40_Init_Notation___hyg_12942____closed__5; +lean_inc(x_2); +x_40 = lean_name_mk_string(x_2, x_39); +x_41 = l_myMacro____x40_Init_Notation___hyg_12942____closed__7; +lean_inc(x_2); +x_42 = lean_name_mk_string(x_2, x_41); +x_43 = l_Lean_instInhabitedSyntax; +x_44 = lean_array_get(x_43, x_1, x_10); +lean_inc(x_4); +x_45 = lean_array_push(x_4, x_44); +lean_inc(x_4); +lean_inc(x_7); +x_46 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_46, 0, x_7); +lean_ctor_set(x_46, 1, x_4); +lean_inc(x_46); +x_47 = lean_array_push(x_45, x_46); +lean_inc(x_46); +x_48 = lean_array_push(x_47, x_46); +x_49 = l_myMacro____x40_Init_Notation___hyg_12942____closed__13; +lean_inc(x_5); +x_50 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_50, 0, x_5); +lean_ctor_set(x_50, 1, x_49); +x_51 = lean_array_push(x_48, x_50); +x_52 = l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__7___closed__6; +x_53 = l_Lean_addMacroScope(x_33, x_52, x_30); +x_54 = l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__7___closed__3; +lean_inc(x_6); +lean_inc(x_5); +x_55 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_55, 0, x_5); +lean_ctor_set(x_55, 1, x_54); +lean_ctor_set(x_55, 2, x_53); +lean_ctor_set(x_55, 3, x_6); +lean_inc(x_4); +x_56 = lean_array_push(x_4, x_55); +x_57 = l_myMacro____x40_Init_Notation___hyg_11187____closed__7; +lean_inc(x_2); +x_58 = lean_name_mk_string(x_2, x_57); +x_59 = l_prec_x28___x29___closed__3; +lean_inc(x_5); +x_60 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_60, 0, x_5); +lean_ctor_set(x_60, 1, x_59); +lean_inc(x_4); +x_61 = lean_array_push(x_4, x_60); +x_62 = l_Lean_Expr_ctorName___closed__10; +lean_inc(x_2); +x_63 = lean_name_mk_string(x_2, x_62); +x_64 = l_Lean_Parser_Term_cdot___elambda__1___closed__1; +lean_inc(x_2); +x_65 = lean_name_mk_string(x_2, x_64); +x_66 = l_Lean_Parser_Term_cdot___elambda__1___closed__5; +lean_inc(x_5); +x_67 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_67, 0, x_5); +lean_ctor_set(x_67, 1, x_66); +lean_inc(x_4); +x_68 = lean_array_push(x_4, x_67); +x_69 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_69, 0, x_65); +lean_ctor_set(x_69, 1, x_68); +lean_inc(x_4); +x_70 = lean_array_push(x_4, x_69); +x_71 = l_Lean_Name_toString___closed__1; +lean_inc(x_5); +x_72 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_72, 0, x_5); +lean_ctor_set(x_72, 1, x_71); +x_73 = lean_array_push(x_70, x_72); +x_74 = lean_array_push(x_73, x_28); +x_75 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_75, 0, x_63); +lean_ctor_set(x_75, 1, x_74); +lean_inc(x_4); +x_76 = lean_array_push(x_4, x_75); +x_77 = lean_array_push(x_76, x_46); +lean_inc(x_7); +x_78 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_78, 0, x_7); +lean_ctor_set(x_78, 1, x_77); +x_79 = lean_array_push(x_61, x_78); +x_80 = l_prec_x28___x29___closed__7; +lean_inc(x_5); +x_81 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_81, 0, x_5); +lean_ctor_set(x_81, 1, x_80); +x_82 = lean_array_push(x_79, x_81); +x_83 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_83, 0, x_58); +lean_ctor_set(x_83, 1, x_82); +lean_inc(x_4); +x_84 = lean_array_push(x_4, x_83); +lean_inc(x_7); +x_85 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_85, 0, x_7); +lean_ctor_set(x_85, 1, x_84); +x_86 = lean_array_push(x_56, x_85); +lean_inc(x_3); +x_87 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_87, 0, x_3); +lean_ctor_set(x_87, 1, x_86); +x_88 = lean_array_push(x_51, x_87); +x_89 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_89, 0, x_42); +lean_ctor_set(x_89, 1, x_88); +lean_inc(x_4); +x_90 = lean_array_push(x_4, x_89); +x_91 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_91, 0, x_40); +lean_ctor_set(x_91, 1, x_90); +x_92 = lean_array_push(x_38, x_91); +x_93 = l_myMacro____x40_Init_Notation___hyg_12942____closed__15; +lean_inc(x_5); +x_94 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_94, 0, x_5); +lean_ctor_set(x_94, 1, x_93); +lean_inc(x_4); +x_95 = lean_array_push(x_4, x_94); +lean_inc(x_7); +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 = lean_array_push(x_92, x_96); +x_98 = lean_array_push(x_97, x_11); +x_99 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_99, 0, x_36); +lean_ctor_set(x_99, 1, x_98); +x_100 = lean_ctor_get(x_8, 2); +x_101 = lean_nat_add(x_10, x_100); +lean_dec(x_10); +x_9 = x_24; +x_10 = x_101; +x_11 = x_99; +x_18 = x_34; +goto _start; +} +else +{ +lean_object* x_103; +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_103 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_103, 0, x_11); +lean_ctor_set(x_103, 1, x_18); +return x_103; +} +} +else +{ +lean_object* x_104; +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_104 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_104, 0, x_11); +lean_ctor_set(x_104, 1, x_18); +return x_104; +} +} +} lean_object* l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___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, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18) { _start: { @@ -15461,9 +15684,9 @@ x_50 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_50, 0, x_5); lean_ctor_set(x_50, 1, x_49); x_51 = lean_array_push(x_48, x_50); -x_52 = l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__6; +x_52 = l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__7___closed__6; x_53 = l_Lean_addMacroScope(x_33, x_52, x_30); -x_54 = l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__3; +x_54 = l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__7___closed__3; lean_inc(x_6); lean_inc(x_5); x_55 = lean_alloc_ctor(3, 4, 0); @@ -15677,9 +15900,9 @@ x_50 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_50, 0, x_5); lean_ctor_set(x_50, 1, x_49); x_51 = lean_array_push(x_48, x_50); -x_52 = l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__6; +x_52 = l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__7___closed__6; x_53 = l_Lean_addMacroScope(x_33, x_52, x_30); -x_54 = l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__3; +x_54 = l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__7___closed__3; lean_inc(x_6); lean_inc(x_5); x_55 = lean_alloc_ctor(3, 4, 0); @@ -15825,7 +16048,214 @@ return x_104; } } } -lean_object* l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__10(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18) { +static lean_object* _init_l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__10___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___private_Init_Meta_0__Lean_quoteOption___rarg___closed__6; +x_3 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); +return x_3; +} +} +static lean_object* _init_l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__10___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__10___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_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___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) { +_start: +{ +uint8_t x_12; +x_12 = x_3 < x_2; +if (x_12 == 0) +{ +lean_object* x_13; +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; 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; size_t x_53; size_t x_54; +x_14 = lean_array_uget(x_1, x_3); +x_15 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, 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); +lean_dec(x_15); +x_18 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_17); +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(x_18); +x_21 = l_Array_empty___closed__1; +x_22 = lean_array_push(x_21, x_14); +x_23 = l_myMacro____x40_Init_Notation___hyg_1130____closed__23; +lean_inc(x_22); +x_24 = lean_array_push(x_22, x_23); +x_25 = lean_array_push(x_24, x_23); +x_26 = l_myMacro____x40_Init_Notation___hyg_12942____closed__14; +x_27 = lean_array_push(x_25, x_26); +x_28 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__16; +x_29 = l_Lean_addMacroScope(x_19, x_28, x_16); +x_30 = l_Lean_instInhabitedSourceInfo___closed__1; +x_31 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__15; +x_32 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__10___closed__2; +x_33 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_33, 0, x_30); +lean_ctor_set(x_33, 1, x_31); +lean_ctor_set(x_33, 2, x_29); +lean_ctor_set(x_33, 3, x_32); +x_34 = lean_array_push(x_21, x_33); +x_35 = l_Lean_nullKind___closed__2; +x_36 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_36, 0, x_35); +lean_ctor_set(x_36, 1, x_22); +x_37 = lean_array_push(x_34, x_36); +x_38 = l_myMacro____x40_Init_Notation___hyg_2022____closed__4; +x_39 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_39, 0, x_38); +lean_ctor_set(x_39, 1, x_37); +x_40 = lean_array_push(x_27, x_39); +x_41 = l_myMacro____x40_Init_Notation___hyg_12942____closed__8; +x_42 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_42, 0, x_41); +lean_ctor_set(x_42, 1, x_40); +x_43 = lean_array_push(x_21, x_42); +x_44 = l_myMacro____x40_Init_Notation___hyg_12942____closed__6; +x_45 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_45, 0, x_44); +lean_ctor_set(x_45, 1, x_43); +x_46 = l_myMacro____x40_Init_Notation___hyg_12942____closed__4; +x_47 = lean_array_push(x_46, x_45); +x_48 = l_myMacro____x40_Init_Notation___hyg_12942____closed__18; +x_49 = lean_array_push(x_47, x_48); +x_50 = lean_array_push(x_49, x_4); +x_51 = l_myMacro____x40_Init_Notation___hyg_12942____closed__2; +x_52 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_52, 0, x_51); +lean_ctor_set(x_52, 1, x_50); +x_53 = 1; +x_54 = x_3 + x_53; +x_3 = x_54; +x_4 = x_52; +x_11 = x_20; +goto _start; +} +} +} +static lean_object* _init_l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__11___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___private_Init_Meta_0__Lean_quoteOption___rarg___closed__3; +x_3 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); +return x_3; +} +} +static lean_object* _init_l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__11___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__11___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_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__11(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 = x_3 < x_2; +if (x_12 == 0) +{ +lean_object* x_13; +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; 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; size_t x_47; size_t x_48; +x_14 = lean_array_uget(x_1, x_3); +x_15 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, 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); +lean_dec(x_15); +x_18 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_17); +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(x_18); +x_21 = l_Array_empty___closed__1; +x_22 = lean_array_push(x_21, x_14); +x_23 = l_myMacro____x40_Init_Notation___hyg_1130____closed__23; +x_24 = lean_array_push(x_22, x_23); +x_25 = lean_array_push(x_24, x_23); +x_26 = l_myMacro____x40_Init_Notation___hyg_12942____closed__14; +x_27 = lean_array_push(x_25, x_26); +x_28 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__22; +x_29 = l_Lean_addMacroScope(x_19, x_28, x_16); +x_30 = l_Lean_instInhabitedSourceInfo___closed__1; +x_31 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__21; +x_32 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__11___closed__2; +x_33 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_33, 0, x_30); +lean_ctor_set(x_33, 1, x_31); +lean_ctor_set(x_33, 2, x_29); +lean_ctor_set(x_33, 3, x_32); +x_34 = lean_array_push(x_27, x_33); +x_35 = l_myMacro____x40_Init_Notation___hyg_12942____closed__8; +x_36 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_36, 0, x_35); +lean_ctor_set(x_36, 1, x_34); +x_37 = lean_array_push(x_21, x_36); +x_38 = l_myMacro____x40_Init_Notation___hyg_12942____closed__6; +x_39 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_39, 0, x_38); +lean_ctor_set(x_39, 1, x_37); +x_40 = l_myMacro____x40_Init_Notation___hyg_12942____closed__4; +x_41 = lean_array_push(x_40, x_39); +x_42 = l_myMacro____x40_Init_Notation___hyg_12942____closed__18; +x_43 = lean_array_push(x_41, x_42); +x_44 = lean_array_push(x_43, x_4); +x_45 = l_myMacro____x40_Init_Notation___hyg_12942____closed__2; +x_46 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_46, 0, x_45); +lean_ctor_set(x_46, 1, x_44); +x_47 = 1; +x_48 = x_3 + x_47; +x_3 = x_48; +x_4 = x_46; +x_11 = x_20; +goto _start; +} +} +} +lean_object* l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___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, 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; uint8_t x_20; @@ -15893,9 +16323,9 @@ x_50 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_50, 0, x_5); lean_ctor_set(x_50, 1, x_49); x_51 = lean_array_push(x_48, x_50); -x_52 = l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__6; +x_52 = l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__7___closed__6; x_53 = l_Lean_addMacroScope(x_33, x_52, x_30); -x_54 = l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__3; +x_54 = l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__7___closed__3; lean_inc(x_6); lean_inc(x_5); x_55 = lean_alloc_ctor(3, 4, 0); @@ -16041,213 +16471,6 @@ return x_104; } } } -static lean_object* _init_l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__11___closed__1() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___private_Init_Meta_0__Lean_quoteOption___rarg___closed__6; -x_3 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_3, 0, x_2); -lean_ctor_set(x_3, 1, x_1); -return x_3; -} -} -static lean_object* _init_l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__11___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__11___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_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__11(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 = x_3 < x_2; -if (x_12 == 0) -{ -lean_object* x_13; -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; 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; size_t x_53; size_t x_54; -x_14 = lean_array_uget(x_1, x_3); -x_15 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, 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); -lean_dec(x_15); -x_18 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_17); -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(x_18); -x_21 = l_Array_empty___closed__1; -x_22 = lean_array_push(x_21, x_14); -x_23 = l_myMacro____x40_Init_Notation___hyg_1130____closed__23; -lean_inc(x_22); -x_24 = lean_array_push(x_22, x_23); -x_25 = lean_array_push(x_24, x_23); -x_26 = l_myMacro____x40_Init_Notation___hyg_12942____closed__14; -x_27 = lean_array_push(x_25, x_26); -x_28 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__16; -x_29 = l_Lean_addMacroScope(x_19, x_28, x_16); -x_30 = l_Lean_instInhabitedSourceInfo___closed__1; -x_31 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__15; -x_32 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__11___closed__2; -x_33 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_33, 0, x_30); -lean_ctor_set(x_33, 1, x_31); -lean_ctor_set(x_33, 2, x_29); -lean_ctor_set(x_33, 3, x_32); -x_34 = lean_array_push(x_21, x_33); -x_35 = l_Lean_nullKind___closed__2; -x_36 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_36, 0, x_35); -lean_ctor_set(x_36, 1, x_22); -x_37 = lean_array_push(x_34, x_36); -x_38 = l_myMacro____x40_Init_Notation___hyg_2022____closed__4; -x_39 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_39, 0, x_38); -lean_ctor_set(x_39, 1, x_37); -x_40 = lean_array_push(x_27, x_39); -x_41 = l_myMacro____x40_Init_Notation___hyg_12942____closed__8; -x_42 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_42, 0, x_41); -lean_ctor_set(x_42, 1, x_40); -x_43 = lean_array_push(x_21, x_42); -x_44 = l_myMacro____x40_Init_Notation___hyg_12942____closed__6; -x_45 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_45, 0, x_44); -lean_ctor_set(x_45, 1, x_43); -x_46 = l_myMacro____x40_Init_Notation___hyg_12942____closed__4; -x_47 = lean_array_push(x_46, x_45); -x_48 = l_myMacro____x40_Init_Notation___hyg_12942____closed__18; -x_49 = lean_array_push(x_47, x_48); -x_50 = lean_array_push(x_49, x_4); -x_51 = l_myMacro____x40_Init_Notation___hyg_12942____closed__2; -x_52 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_52, 0, x_51); -lean_ctor_set(x_52, 1, x_50); -x_53 = 1; -x_54 = x_3 + x_53; -x_3 = x_54; -x_4 = x_52; -x_11 = x_20; -goto _start; -} -} -} -static lean_object* _init_l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__12___closed__1() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___private_Init_Meta_0__Lean_quoteOption___rarg___closed__3; -x_3 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_3, 0, x_2); -lean_ctor_set(x_3, 1, x_1); -return x_3; -} -} -static lean_object* _init_l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__12___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__12___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_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__12(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 = x_3 < x_2; -if (x_12 == 0) -{ -lean_object* x_13; -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; 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; size_t x_47; size_t x_48; -x_14 = lean_array_uget(x_1, x_3); -x_15 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, 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); -lean_dec(x_15); -x_18 = l_Lean_Elab_Term_getMainModule___rarg(x_10, x_17); -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(x_18); -x_21 = l_Array_empty___closed__1; -x_22 = lean_array_push(x_21, x_14); -x_23 = l_myMacro____x40_Init_Notation___hyg_1130____closed__23; -x_24 = lean_array_push(x_22, x_23); -x_25 = lean_array_push(x_24, x_23); -x_26 = l_myMacro____x40_Init_Notation___hyg_12942____closed__14; -x_27 = lean_array_push(x_25, x_26); -x_28 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__22; -x_29 = l_Lean_addMacroScope(x_19, x_28, x_16); -x_30 = l_Lean_instInhabitedSourceInfo___closed__1; -x_31 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__21; -x_32 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__12___closed__2; -x_33 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_33, 0, x_30); -lean_ctor_set(x_33, 1, x_31); -lean_ctor_set(x_33, 2, x_29); -lean_ctor_set(x_33, 3, x_32); -x_34 = lean_array_push(x_27, x_33); -x_35 = l_myMacro____x40_Init_Notation___hyg_12942____closed__8; -x_36 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_36, 0, x_35); -lean_ctor_set(x_36, 1, x_34); -x_37 = lean_array_push(x_21, x_36); -x_38 = l_myMacro____x40_Init_Notation___hyg_12942____closed__6; -x_39 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_39, 0, x_38); -lean_ctor_set(x_39, 1, x_37); -x_40 = l_myMacro____x40_Init_Notation___hyg_12942____closed__4; -x_41 = lean_array_push(x_40, x_39); -x_42 = l_myMacro____x40_Init_Notation___hyg_12942____closed__18; -x_43 = lean_array_push(x_41, x_42); -x_44 = lean_array_push(x_43, x_4); -x_45 = l_myMacro____x40_Init_Notation___hyg_12942____closed__2; -x_46 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_46, 0, x_45); -lean_ctor_set(x_46, 1, x_44); -x_47 = 1; -x_48 = x_3 + x_47; -x_3 = x_48; -x_4 = x_46; -x_11 = x_20; -goto _start; -} -} -} lean_object* l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___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, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18) { _start: { @@ -16316,9 +16539,9 @@ x_50 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_50, 0, x_5); lean_ctor_set(x_50, 1, x_49); x_51 = lean_array_push(x_48, x_50); -x_52 = l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__6; +x_52 = l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__7___closed__6; x_53 = l_Lean_addMacroScope(x_33, x_52, x_30); -x_54 = l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__3; +x_54 = l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__7___closed__3; lean_inc(x_6); lean_inc(x_5); x_55 = lean_alloc_ctor(3, 4, 0); @@ -16532,9 +16755,9 @@ x_50 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_50, 0, x_5); lean_ctor_set(x_50, 1, x_49); x_51 = lean_array_push(x_48, x_50); -x_52 = l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__6; +x_52 = l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__7___closed__6; x_53 = l_Lean_addMacroScope(x_33, x_52, x_30); -x_54 = l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__3; +x_54 = l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__7___closed__3; lean_inc(x_6); lean_inc(x_5); x_55 = lean_alloc_ctor(3, 4, 0); @@ -16680,223 +16903,7 @@ return x_104; } } } -lean_object* l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___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, 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; uint8_t x_20; -x_19 = lean_ctor_get(x_8, 1); -x_20 = lean_nat_dec_le(x_19, x_10); -if (x_20 == 0) -{ -lean_object* x_21; uint8_t x_22; -x_21 = lean_unsigned_to_nat(0u); -x_22 = lean_nat_dec_eq(x_9, 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; 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; -x_23 = lean_unsigned_to_nat(1u); -x_24 = lean_nat_sub(x_9, x_23); -lean_dec(x_9); -x_25 = lean_nat_add(x_10, x_23); -x_26 = l_Nat_repr(x_25); -x_27 = l_Lean_fieldIdxKind; -lean_inc(x_5); -x_28 = l_Lean_Syntax_mkLit(x_27, x_26, x_5); -x_29 = l_Lean_Elab_Term_getCurrMacroScope(x_12, x_13, x_14, x_15, x_16, x_17, x_18); -x_30 = lean_ctor_get(x_29, 0); -lean_inc(x_30); -x_31 = lean_ctor_get(x_29, 1); -lean_inc(x_31); -lean_dec(x_29); -x_32 = l_Lean_Elab_Term_getMainModule___rarg(x_17, x_31); -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(x_32); -x_35 = l_myMacro____x40_Init_Notation___hyg_12942____closed__1; -lean_inc(x_2); -x_36 = lean_name_mk_string(x_2, x_35); -lean_inc(x_5); -x_37 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_37, 0, x_5); -lean_ctor_set(x_37, 1, x_35); -lean_inc(x_4); -x_38 = lean_array_push(x_4, x_37); -x_39 = l_myMacro____x40_Init_Notation___hyg_12942____closed__5; -lean_inc(x_2); -x_40 = lean_name_mk_string(x_2, x_39); -x_41 = l_myMacro____x40_Init_Notation___hyg_12942____closed__7; -lean_inc(x_2); -x_42 = lean_name_mk_string(x_2, x_41); -x_43 = l_Lean_instInhabitedSyntax; -x_44 = lean_array_get(x_43, x_1, x_10); -lean_inc(x_4); -x_45 = lean_array_push(x_4, x_44); -lean_inc(x_4); -lean_inc(x_7); -x_46 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_46, 0, x_7); -lean_ctor_set(x_46, 1, x_4); -lean_inc(x_46); -x_47 = lean_array_push(x_45, x_46); -lean_inc(x_46); -x_48 = lean_array_push(x_47, x_46); -x_49 = l_myMacro____x40_Init_Notation___hyg_12942____closed__13; -lean_inc(x_5); -x_50 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_50, 0, x_5); -lean_ctor_set(x_50, 1, x_49); -x_51 = lean_array_push(x_48, x_50); -x_52 = l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__6; -x_53 = l_Lean_addMacroScope(x_33, x_52, x_30); -x_54 = l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__3; -lean_inc(x_6); -lean_inc(x_5); -x_55 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_55, 0, x_5); -lean_ctor_set(x_55, 1, x_54); -lean_ctor_set(x_55, 2, x_53); -lean_ctor_set(x_55, 3, x_6); -lean_inc(x_4); -x_56 = lean_array_push(x_4, x_55); -x_57 = l_myMacro____x40_Init_Notation___hyg_11187____closed__7; -lean_inc(x_2); -x_58 = lean_name_mk_string(x_2, x_57); -x_59 = l_prec_x28___x29___closed__3; -lean_inc(x_5); -x_60 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_60, 0, x_5); -lean_ctor_set(x_60, 1, x_59); -lean_inc(x_4); -x_61 = lean_array_push(x_4, x_60); -x_62 = l_Lean_Expr_ctorName___closed__10; -lean_inc(x_2); -x_63 = lean_name_mk_string(x_2, x_62); -x_64 = l_Lean_Parser_Term_cdot___elambda__1___closed__1; -lean_inc(x_2); -x_65 = lean_name_mk_string(x_2, x_64); -x_66 = l_Lean_Parser_Term_cdot___elambda__1___closed__5; -lean_inc(x_5); -x_67 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_67, 0, x_5); -lean_ctor_set(x_67, 1, x_66); -lean_inc(x_4); -x_68 = lean_array_push(x_4, x_67); -x_69 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_69, 0, x_65); -lean_ctor_set(x_69, 1, x_68); -lean_inc(x_4); -x_70 = lean_array_push(x_4, x_69); -x_71 = l_Lean_Name_toString___closed__1; -lean_inc(x_5); -x_72 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_72, 0, x_5); -lean_ctor_set(x_72, 1, x_71); -x_73 = lean_array_push(x_70, x_72); -x_74 = lean_array_push(x_73, x_28); -x_75 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_75, 0, x_63); -lean_ctor_set(x_75, 1, x_74); -lean_inc(x_4); -x_76 = lean_array_push(x_4, x_75); -x_77 = lean_array_push(x_76, x_46); -lean_inc(x_7); -x_78 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_78, 0, x_7); -lean_ctor_set(x_78, 1, x_77); -x_79 = lean_array_push(x_61, x_78); -x_80 = l_prec_x28___x29___closed__7; -lean_inc(x_5); -x_81 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_81, 0, x_5); -lean_ctor_set(x_81, 1, x_80); -x_82 = lean_array_push(x_79, x_81); -x_83 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_83, 0, x_58); -lean_ctor_set(x_83, 1, x_82); -lean_inc(x_4); -x_84 = lean_array_push(x_4, x_83); -lean_inc(x_7); -x_85 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_85, 0, x_7); -lean_ctor_set(x_85, 1, x_84); -x_86 = lean_array_push(x_56, x_85); -lean_inc(x_3); -x_87 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_87, 0, x_3); -lean_ctor_set(x_87, 1, x_86); -x_88 = lean_array_push(x_51, x_87); -x_89 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_89, 0, x_42); -lean_ctor_set(x_89, 1, x_88); -lean_inc(x_4); -x_90 = lean_array_push(x_4, x_89); -x_91 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_91, 0, x_40); -lean_ctor_set(x_91, 1, x_90); -x_92 = lean_array_push(x_38, x_91); -x_93 = l_myMacro____x40_Init_Notation___hyg_12942____closed__15; -lean_inc(x_5); -x_94 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_94, 0, x_5); -lean_ctor_set(x_94, 1, x_93); -lean_inc(x_4); -x_95 = lean_array_push(x_4, x_94); -lean_inc(x_7); -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 = lean_array_push(x_92, x_96); -x_98 = lean_array_push(x_97, x_11); -x_99 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_99, 0, x_36); -lean_ctor_set(x_99, 1, x_98); -x_100 = lean_ctor_get(x_8, 2); -x_101 = lean_nat_add(x_10, x_100); -lean_dec(x_10); -x_9 = x_24; -x_10 = x_101; -x_11 = x_99; -x_18 = x_34; -goto _start; -} -else -{ -lean_object* x_103; -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -x_103 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_103, 0, x_11); -lean_ctor_set(x_103, 1, x_18); -return x_103; -} -} -else -{ -lean_object* x_104; -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -x_104 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_104, 0, x_11); -lean_ctor_set(x_104, 1, x_18); -return x_104; -} -} -} -static lean_object* _init_l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__16___closed__1() { +static lean_object* _init_l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__15___closed__1() { _start: { lean_object* x_1; @@ -16904,22 +16911,22 @@ x_1 = lean_mk_string("Syntax.getArg"); return x_1; } } -static lean_object* _init_l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__16___closed__2() { +static lean_object* _init_l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__15___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__16___closed__1; +x_1 = l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__15___closed__1; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__16___closed__3() { +static lean_object* _init_l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__15___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__16___closed__1; +x_1 = l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__15___closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__16___closed__2; +x_3 = l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__15___closed__2; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -16927,7 +16934,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__16___closed__4() { +static lean_object* _init_l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__15___closed__4() { _start: { lean_object* x_1; @@ -16935,51 +16942,51 @@ x_1 = lean_mk_string("getArg"); return x_1; } } -static lean_object* _init_l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__16___closed__5() { +static lean_object* _init_l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__15___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__13; -x_2 = l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__16___closed__4; +x_2 = l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__15___closed__4; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__16___closed__6() { +static lean_object* _init_l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__15___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l___private_Lean_Elab_Util_0__Lean_Elab_evalSyntaxConstantUnsafe___closed__1; -x_2 = l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__16___closed__4; +x_2 = l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__15___closed__4; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__16___closed__7() { +static lean_object* _init_l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__15___closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__16___closed__6; +x_2 = l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__15___closed__6; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__16___closed__8() { +static lean_object* _init_l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__15___closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__16___closed__7; +x_2 = l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__15___closed__7; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -lean_object* l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___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* l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___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: { if (lean_obj_tag(x_1) == 0) @@ -17012,14 +17019,14 @@ lean_inc(x_18); x_19 = lean_ctor_get(x_17, 1); lean_inc(x_19); lean_dec(x_17); -x_20 = l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__16___closed__5; +x_20 = l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__15___closed__5; lean_inc(x_15); lean_inc(x_18); x_21 = l_Lean_addMacroScope(x_18, x_20, x_15); x_22 = lean_box(0); x_23 = l_Lean_instInhabitedSourceInfo___closed__1; -x_24 = l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__16___closed__3; -x_25 = l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__16___closed__8; +x_24 = l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__15___closed__3; +x_25 = l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__15___closed__8; x_26 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_26, 0, x_23); lean_ctor_set(x_26, 1, x_24); @@ -17049,7 +17056,7 @@ x_41 = l_myMacro____x40_Init_Notation___hyg_2022____closed__4; x_42 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_42, 0, x_41); lean_ctor_set(x_42, 1, x_40); -x_43 = l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__16(x_13, x_2, x_3, x_4, x_5, x_6, x_7, x_19); +x_43 = l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__15(x_13, x_2, x_3, x_4, x_5, x_6, x_7, x_19); x_44 = !lean_is_exclusive(x_43); if (x_44 == 0) { @@ -17096,14 +17103,14 @@ lean_inc(x_55); x_56 = lean_ctor_get(x_54, 1); lean_inc(x_56); lean_dec(x_54); -x_57 = l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__16___closed__5; +x_57 = l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__15___closed__5; lean_inc(x_52); lean_inc(x_55); x_58 = l_Lean_addMacroScope(x_55, x_57, x_52); x_59 = lean_box(0); x_60 = l_Lean_instInhabitedSourceInfo___closed__1; -x_61 = l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__16___closed__3; -x_62 = l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__16___closed__8; +x_61 = l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__15___closed__3; +x_62 = l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__15___closed__8; x_63 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_63, 0, x_60); lean_ctor_set(x_63, 1, x_61); @@ -17133,7 +17140,7 @@ x_78 = l_myMacro____x40_Init_Notation___hyg_2022____closed__4; x_79 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_79, 0, x_78); lean_ctor_set(x_79, 1, x_77); -x_80 = l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__16(x_50, x_2, x_3, x_4, x_5, x_6, x_7, x_56); +x_80 = l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__15(x_50, x_2, x_3, x_4, x_5, x_6, x_7, x_56); x_81 = lean_ctor_get(x_80, 0); lean_inc(x_81); x_82 = lean_ctor_get(x_80, 1); @@ -17161,7 +17168,7 @@ return x_85; } } } -lean_object* l_List_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__17(lean_object* x_1) { +lean_object* l_List_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__16(lean_object* x_1) { _start: { if (lean_obj_tag(x_1) == 0) @@ -17181,7 +17188,7 @@ x_4 = lean_ctor_get(x_1, 0); x_5 = lean_ctor_get(x_1, 1); x_6 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_6, 0, x_4); -x_7 = l_List_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__17(x_5); +x_7 = l_List_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__16(x_5); lean_ctor_set(x_1, 1, x_7); lean_ctor_set(x_1, 0, x_6); return x_1; @@ -17196,7 +17203,7 @@ lean_inc(x_8); lean_dec(x_1); x_10 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_10, 0, x_8); -x_11 = l_List_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__17(x_9); +x_11 = l_List_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__16(x_9); x_12 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_12, 0, x_10); lean_ctor_set(x_12, 1, x_11); @@ -17205,7 +17212,7 @@ return x_12; } } } -lean_object* l_Lean_Format_joinSep___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__20(lean_object* x_1, lean_object* x_2) { +lean_object* l_Lean_Format_joinSep___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__19(lean_object* x_1, lean_object* x_2) { _start: { if (lean_obj_tag(x_1) == 0) @@ -17247,7 +17254,7 @@ lean_inc(x_2); x_15 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_15, 0, x_14); lean_ctor_set(x_15, 1, x_2); -x_16 = l_Lean_Format_joinSep___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__20(x_4, x_2); +x_16 = l_Lean_Format_joinSep___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__19(x_4, x_2); x_17 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_17, 0, x_15); lean_ctor_set(x_17, 1, x_16); @@ -17256,7 +17263,7 @@ return x_17; } } } -lean_object* l_Lean_List_format___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__19(lean_object* x_1) { +lean_object* l_Lean_List_format___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__18(lean_object* x_1) { _start: { if (lean_obj_tag(x_1) == 0) @@ -17269,7 +17276,7 @@ else { lean_object* x_3; lean_object* x_4; 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; x_3 = l_Lean_List_format___rarg___closed__3; -x_4 = l_Lean_Format_joinSep___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__20(x_1, x_3); +x_4 = l_Lean_Format_joinSep___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__19(x_1, x_3); x_5 = l_Lean_Format_sbracket___closed__3; x_6 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_6, 0, x_5); @@ -17290,7 +17297,7 @@ return x_12; } } } -lean_object* l_Lean_fmt___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__18(lean_object* x_1) { +lean_object* l_Lean_fmt___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__17(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; 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; uint8_t x_20; lean_object* x_21; @@ -17299,7 +17306,7 @@ lean_inc(x_2); x_3 = lean_ctor_get(x_1, 1); lean_inc(x_3); lean_dec(x_1); -x_4 = l_Lean_List_format___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__19(x_2); +x_4 = l_Lean_List_format___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__18(x_2); x_5 = l_Lean_List_format___rarg___closed__2; x_6 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_6, 0, x_4); @@ -17334,7 +17341,7 @@ lean_ctor_set_uint8(x_21, sizeof(void*)*1, x_20); return x_21; } } -lean_object* l_List_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__21(lean_object* x_1) { +lean_object* l_List_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__20(lean_object* x_1) { _start: { if (lean_obj_tag(x_1) == 0) @@ -17352,10 +17359,10 @@ if (x_3 == 0) lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; x_4 = lean_ctor_get(x_1, 0); x_5 = lean_ctor_get(x_1, 1); -x_6 = l_Lean_fmt___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__18(x_4); +x_6 = l_Lean_fmt___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__17(x_4); x_7 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_7, 0, x_6); -x_8 = l_List_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__21(x_5); +x_8 = l_List_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__20(x_5); lean_ctor_set(x_1, 1, x_8); lean_ctor_set(x_1, 0, x_7); return x_1; @@ -17368,10 +17375,10 @@ x_10 = lean_ctor_get(x_1, 1); lean_inc(x_10); lean_inc(x_9); lean_dec(x_1); -x_11 = l_Lean_fmt___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__18(x_9); +x_11 = l_Lean_fmt___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__17(x_9); x_12 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_12, 0, x_11); -x_13 = l_List_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__21(x_10); +x_13 = l_List_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__20(x_10); x_14 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_14, 0, x_12); lean_ctor_set(x_14, 1, x_13); @@ -18212,7 +18219,7 @@ lean_ctor_set(x_80, 0, x_2); lean_ctor_set(x_80, 1, x_79); lean_inc(x_80); x_81 = lean_array_push(x_78, x_80); -x_82 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__16; +x_82 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__16; lean_inc(x_21); lean_inc(x_25); x_83 = l_Lean_addMacroScope(x_25, x_82, x_21); @@ -18225,7 +18232,7 @@ lean_inc(x_6); x_86 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_86, 0, x_85); lean_ctor_set(x_86, 1, x_6); -x_87 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__15; +x_87 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__15; lean_inc(x_2); x_88 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_88, 0, x_2); @@ -18275,7 +18282,7 @@ lean_inc(x_62); x_105 = lean_array_push(x_62, x_104); lean_inc(x_80); x_106 = lean_array_push(x_105, x_80); -x_107 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__22; +x_107 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__22; x_108 = l_Lean_addMacroScope(x_25, x_107, x_21); x_109 = l___private_Init_Meta_0__Lean_quoteOption___rarg___closed__3; lean_inc(x_6); @@ -18285,7 +18292,7 @@ lean_ctor_set(x_110, 1, x_6); x_111 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_111, 0, x_110); lean_ctor_set(x_111, 1, x_6); -x_112 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__21; +x_112 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__21; lean_inc(x_2); x_113 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_113, 0, x_2); @@ -18349,7 +18356,7 @@ lean_ctor_set(x_135, 0, x_4); lean_ctor_set(x_135, 1, x_134); x_136 = lean_array_push(x_29, x_135); x_137 = lean_array_push(x_136, x_32); -x_138 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__13; +x_138 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__13; x_139 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_139, 0, x_2); lean_ctor_set(x_139, 1, x_138); @@ -18536,7 +18543,7 @@ lean_ctor_set(x_220, 0, x_2); lean_ctor_set(x_220, 1, x_219); lean_inc(x_220); x_221 = lean_array_push(x_218, x_220); -x_222 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__16; +x_222 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__16; lean_inc(x_21); lean_inc(x_164); x_223 = l_Lean_addMacroScope(x_164, x_222, x_21); @@ -18549,7 +18556,7 @@ lean_inc(x_6); x_226 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_226, 0, x_225); lean_ctor_set(x_226, 1, x_6); -x_227 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__15; +x_227 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__15; lean_inc(x_2); x_228 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_228, 0, x_2); @@ -18599,7 +18606,7 @@ lean_inc(x_202); x_245 = lean_array_push(x_202, x_244); lean_inc(x_220); x_246 = lean_array_push(x_245, x_220); -x_247 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__22; +x_247 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__22; x_248 = l_Lean_addMacroScope(x_164, x_247, x_21); x_249 = l___private_Init_Meta_0__Lean_quoteOption___rarg___closed__3; lean_inc(x_6); @@ -18609,7 +18616,7 @@ lean_ctor_set(x_250, 1, x_6); x_251 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_251, 0, x_250); lean_ctor_set(x_251, 1, x_6); -x_252 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__21; +x_252 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__21; lean_inc(x_2); x_253 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_253, 0, x_2); @@ -18673,7 +18680,7 @@ lean_ctor_set(x_275, 0, x_4); lean_ctor_set(x_275, 1, x_274); x_276 = lean_array_push(x_169, x_275); x_277 = lean_array_push(x_276, x_172); -x_278 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__13; +x_278 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__13; x_279 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_279, 0, x_2); lean_ctor_set(x_279, 1, x_278); @@ -18740,7 +18747,7 @@ static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quot _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__4; +x_1 = l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__7___closed__4; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } @@ -18749,7 +18756,7 @@ static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quot _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__4; +x_1 = l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__7___closed__4; x_2 = lean_unsigned_to_nat(0u); x_3 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__3___closed__1; x_4 = lean_alloc_ctor(0, 3, 0); @@ -18788,7 +18795,7 @@ lean_inc(x_3); lean_inc(x_4); lean_inc(x_8); lean_inc(x_2); -x_28 = l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8(x_1, x_2, x_8, x_4, x_3, x_6, x_5, x_27, x_23, x_26, x_10, x_13, x_14, x_15, x_16, x_17, x_18, x_22); +x_28 = l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__7(x_1, x_2, x_8, x_4, x_3, x_6, x_5, x_27, x_23, x_26, x_10, x_13, x_14, x_15, x_16, x_17, x_18, x_22); lean_dec(x_27); lean_dec(x_1); x_29 = lean_ctor_get(x_28, 0); @@ -18808,7 +18815,7 @@ lean_inc(x_35); x_36 = lean_ctor_get(x_34, 1); lean_inc(x_36); lean_dec(x_34); -x_37 = l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__5; +x_37 = l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__7___closed__5; x_38 = l_Lean_addMacroScope(x_35, x_37, x_32); x_39 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__3___closed__2; lean_inc(x_6); @@ -18862,7 +18869,7 @@ lean_inc(x_3); lean_inc(x_4); lean_inc(x_8); lean_inc(x_2); -x_28 = l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__9(x_1, x_2, x_8, x_4, x_3, x_6, x_5, x_27, x_23, x_26, x_10, x_13, x_14, x_15, x_16, x_17, x_18, x_22); +x_28 = l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8(x_1, x_2, x_8, x_4, x_3, x_6, x_5, x_27, x_23, x_26, x_10, x_13, x_14, x_15, x_16, x_17, x_18, x_22); lean_dec(x_27); lean_dec(x_1); x_29 = lean_ctor_get(x_28, 0); @@ -18882,7 +18889,7 @@ lean_inc(x_35); x_36 = lean_ctor_get(x_34, 1); lean_inc(x_36); lean_dec(x_34); -x_37 = l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__5; +x_37 = l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__7___closed__5; x_38 = l_Lean_addMacroScope(x_35, x_37, x_32); x_39 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__3___closed__2; lean_inc(x_6); @@ -18936,7 +18943,7 @@ lean_inc(x_3); lean_inc(x_4); lean_inc(x_8); lean_inc(x_2); -x_28 = l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__10(x_1, x_2, x_8, x_4, x_3, x_6, x_5, x_27, x_23, x_26, x_10, x_13, x_14, x_15, x_16, x_17, x_18, x_22); +x_28 = l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__9(x_1, x_2, x_8, x_4, x_3, x_6, x_5, x_27, x_23, x_26, x_10, x_13, x_14, x_15, x_16, x_17, x_18, x_22); lean_dec(x_27); lean_dec(x_1); x_29 = lean_ctor_get(x_28, 0); @@ -18956,7 +18963,7 @@ lean_inc(x_35); x_36 = lean_ctor_get(x_34, 1); lean_inc(x_36); lean_dec(x_34); -x_37 = l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__5; +x_37 = l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__7___closed__5; x_38 = l_Lean_addMacroScope(x_35, x_37, x_32); x_39 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__3___closed__2; lean_inc(x_6); @@ -19010,7 +19017,7 @@ lean_inc(x_3); lean_inc(x_4); lean_inc(x_8); lean_inc(x_2); -x_28 = l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__13(x_1, x_2, x_8, x_4, x_3, x_6, x_5, x_27, x_23, x_26, x_10, x_13, x_14, x_15, x_16, x_17, x_18, x_22); +x_28 = l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__12(x_1, x_2, x_8, x_4, x_3, x_6, x_5, x_27, x_23, x_26, x_10, x_13, x_14, x_15, x_16, x_17, x_18, x_22); lean_dec(x_27); lean_dec(x_1); x_29 = lean_ctor_get(x_28, 0); @@ -19030,7 +19037,7 @@ lean_inc(x_35); x_36 = lean_ctor_get(x_34, 1); lean_inc(x_36); lean_dec(x_34); -x_37 = l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__5; +x_37 = l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__7___closed__5; x_38 = l_Lean_addMacroScope(x_35, x_37, x_32); x_39 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__3___closed__2; lean_inc(x_6); @@ -19084,7 +19091,7 @@ lean_inc(x_3); lean_inc(x_4); lean_inc(x_8); lean_inc(x_2); -x_28 = l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__14(x_1, x_2, x_8, x_4, x_3, x_6, x_5, x_27, x_23, x_26, x_10, x_13, x_14, x_15, x_16, x_17, x_18, x_22); +x_28 = l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__13(x_1, x_2, x_8, x_4, x_3, x_6, x_5, x_27, x_23, x_26, x_10, x_13, x_14, x_15, x_16, x_17, x_18, x_22); lean_dec(x_27); lean_dec(x_1); x_29 = lean_ctor_get(x_28, 0); @@ -19104,7 +19111,7 @@ lean_inc(x_35); x_36 = lean_ctor_get(x_34, 1); lean_inc(x_36); lean_dec(x_34); -x_37 = l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__5; +x_37 = l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__7___closed__5; x_38 = l_Lean_addMacroScope(x_35, x_37, x_32); x_39 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__3___closed__2; lean_inc(x_6); @@ -19158,7 +19165,7 @@ lean_inc(x_3); lean_inc(x_4); lean_inc(x_8); lean_inc(x_2); -x_28 = l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__15(x_1, x_2, x_8, x_4, x_3, x_6, x_5, x_27, x_23, x_26, x_10, x_13, x_14, x_15, x_16, x_17, x_18, x_22); +x_28 = l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__14(x_1, x_2, x_8, x_4, x_3, x_6, x_5, x_27, x_23, x_26, x_10, x_13, x_14, x_15, x_16, x_17, x_18, x_22); lean_dec(x_27); lean_dec(x_1); x_29 = lean_ctor_get(x_28, 0); @@ -19178,7 +19185,7 @@ lean_inc(x_35); x_36 = lean_ctor_get(x_34, 1); lean_inc(x_36); lean_dec(x_34); -x_37 = l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__5; +x_37 = l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__7___closed__5; x_38 = l_Lean_addMacroScope(x_35, x_37, x_32); x_39 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__3___closed__2; lean_inc(x_6); @@ -19644,7 +19651,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_instInhabitedSourceInfo___closed__1; -x_2 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__13; +x_2 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__13; x_3 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); @@ -19687,14 +19694,14 @@ _start: lean_object* x_13; lean_object* x_14; lean_object* x_15; x_13 = lean_box(0); lean_inc(x_2); -x_14 = l_List_filterAux___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__4(x_1, x_2, x_13); +x_14 = l_List_filterAux___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__3(x_1, x_2, x_13); lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); -x_15 = l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__5(x_5, x_14, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +x_15 = l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__4(x_5, x_14, x_6, x_7, x_8, x_9, x_10, x_11, x_12); 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; lean_object* x_21; uint8_t x_22; @@ -19765,8 +19772,8 @@ lean_inc(x_38); x_39 = lean_ctor_get(x_37, 1); lean_inc(x_39); lean_dec(x_37); -x_40 = l_List_filterAux___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__6(x_1, x_2, x_13); -x_41 = l_List_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__7(x_40); +x_40 = l_List_filterAux___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__5(x_1, x_2, x_13); +x_41 = l_List_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__6(x_40); lean_inc(x_4); x_42 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_42, 0, x_4); @@ -20384,7 +20391,7 @@ if (lean_obj_tag(x_334) == 0) { if (lean_obj_tag(x_320) == 0) { -lean_object* x_335; lean_object* x_336; lean_object* x_337; lean_object* x_338; lean_object* x_339; lean_object* x_340; lean_object* x_341; lean_object* x_342; lean_object* x_343; lean_object* x_344; lean_object* x_345; lean_object* x_346; lean_object* x_347; lean_object* x_348; lean_object* x_349; lean_object* x_350; lean_object* x_351; lean_object* x_352; lean_object* x_353; lean_object* x_354; lean_object* x_355; lean_object* x_356; lean_object* x_357; lean_object* x_358; lean_object* x_359; +lean_object* x_335; lean_object* x_336; lean_object* x_337; lean_object* x_338; lean_object* x_339; lean_object* x_340; lean_object* x_341; lean_object* x_342; lean_object* x_343; lean_object* x_344; lean_object* x_345; lean_object* x_346; lean_object* x_347; lean_object* x_348; lean_object* x_349; lean_object* x_350; lean_object* x_351; lean_object* x_352; lean_object* x_353; lean_object* x_354; lean_object* x_355; lean_object* x_356; lean_object* x_357; uint8_t x_358; x_335 = lean_ctor_get(x_334, 0); lean_inc(x_335); x_336 = lean_ctor_get(x_334, 1); @@ -20424,9 +20431,14 @@ x_355 = l_myMacro____x40_Init_Notation___hyg_2022____closed__4; x_356 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_356, 0, x_355); lean_ctor_set(x_356, 1, x_354); -x_357 = l_myMacro____x40_Init_Notation___hyg_2022____closed__2; -x_358 = lean_box(0); -x_359 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__3(x_323, x_357, x_345, x_349, x_352, x_13, x_321, x_355, x_335, x_38, x_356, x_358, x_6, x_7, x_8, x_9, x_10, x_11, x_342); +x_357 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__2___closed__1; +x_358 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3(x_320, x_357); +if (x_358 == 0) +{ +lean_object* x_359; lean_object* x_360; lean_object* x_361; +x_359 = l_myMacro____x40_Init_Notation___hyg_2022____closed__2; +x_360 = lean_box(0); +x_361 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__3(x_323, x_359, x_345, x_349, x_352, x_13, x_321, x_355, x_335, x_38, x_356, x_360, x_6, x_7, x_8, x_9, x_10, x_11, x_342); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); @@ -20434,65 +20446,111 @@ lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_321); -return x_359; +return x_361; } else { -lean_object* x_360; -x_360 = lean_ctor_get(x_320, 0); -lean_inc(x_360); -lean_dec(x_320); -switch (lean_obj_tag(x_360)) { +lean_object* x_362; lean_object* x_363; lean_object* x_364; lean_object* x_365; lean_object* x_366; lean_object* x_367; lean_object* x_368; lean_object* x_369; lean_object* x_370; lean_object* x_371; lean_object* x_372; lean_object* x_373; lean_object* x_374; lean_object* x_375; lean_object* x_376; lean_object* x_377; lean_object* x_378; lean_object* x_379; lean_object* x_380; +x_362 = l_Lean_Elab_Term_getCurrMacroScope(x_6, x_7, x_8, x_9, x_10, x_11, x_342); +x_363 = lean_ctor_get(x_362, 0); +lean_inc(x_363); +x_364 = lean_ctor_get(x_362, 1); +lean_inc(x_364); +lean_dec(x_362); +x_365 = l_Lean_Elab_Term_getMainModule___rarg(x_11, x_364); +x_366 = lean_ctor_get(x_365, 0); +lean_inc(x_366); +x_367 = lean_ctor_get(x_365, 1); +lean_inc(x_367); +lean_dec(x_365); +x_368 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__26; +x_369 = l_Lean_addMacroScope(x_366, x_368, x_363); +x_370 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__24; +x_371 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__28; +x_372 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_372, 0, x_345); +lean_ctor_set(x_372, 1, x_370); +lean_ctor_set(x_372, 2, x_369); +lean_ctor_set(x_372, 3, x_371); +x_373 = lean_array_push(x_349, x_372); +x_374 = lean_array_push(x_349, x_356); +x_375 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_375, 0, x_352); +lean_ctor_set(x_375, 1, x_374); +x_376 = lean_array_push(x_373, x_375); +x_377 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_377, 0, x_355); +lean_ctor_set(x_377, 1, x_376); +x_378 = l_myMacro____x40_Init_Notation___hyg_2022____closed__2; +x_379 = lean_box(0); +x_380 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__3(x_323, x_378, x_345, x_349, x_352, x_13, x_321, x_355, x_335, x_38, x_377, x_379, x_6, x_7, x_8, x_9, x_10, x_11, x_367); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_321); +return x_380; +} +} +else +{ +lean_object* x_381; +x_381 = lean_ctor_get(x_320, 0); +lean_inc(x_381); +switch (lean_obj_tag(x_381)) { case 0: { -lean_object* x_361; lean_object* x_362; lean_object* x_363; lean_object* x_364; lean_object* x_365; lean_object* x_366; lean_object* x_367; lean_object* x_368; lean_object* x_369; lean_object* x_370; lean_object* x_371; lean_object* x_372; lean_object* x_373; lean_object* x_374; lean_object* x_375; lean_object* x_376; lean_object* x_377; lean_object* x_378; lean_object* x_379; lean_object* x_380; lean_object* x_381; lean_object* x_382; lean_object* x_383; uint8_t x_384; -x_361 = lean_ctor_get(x_334, 0); -lean_inc(x_361); -x_362 = lean_ctor_get(x_334, 1); -lean_inc(x_362); +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; uint8_t x_405; +x_382 = lean_ctor_get(x_334, 0); +lean_inc(x_382); +x_383 = lean_ctor_get(x_334, 1); +lean_inc(x_383); lean_dec(x_334); -x_363 = l_Lean_Elab_Term_getCurrMacroScope(x_6, x_7, x_8, x_9, x_10, x_11, x_362); -x_364 = lean_ctor_get(x_363, 0); -lean_inc(x_364); -x_365 = lean_ctor_get(x_363, 1); -lean_inc(x_365); -lean_dec(x_363); -x_366 = l_Lean_Elab_Term_getMainModule___rarg(x_11, x_365); -x_367 = lean_ctor_get(x_366, 0); -lean_inc(x_367); -x_368 = lean_ctor_get(x_366, 1); -lean_inc(x_368); -lean_dec(x_366); -x_369 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__9; -x_370 = l_Lean_addMacroScope(x_367, x_369, x_364); -x_371 = l_Lean_instInhabitedSourceInfo___closed__1; -x_372 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__7; -x_373 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__21; -x_374 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_374, 0, x_371); -lean_ctor_set(x_374, 1, x_372); -lean_ctor_set(x_374, 2, x_370); -lean_ctor_set(x_374, 3, x_373); -x_375 = l_Array_empty___closed__1; -x_376 = lean_array_push(x_375, x_374); -x_377 = lean_array_push(x_375, x_4); -x_378 = l_Lean_nullKind___closed__2; -x_379 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_379, 0, x_378); -lean_ctor_set(x_379, 1, x_377); -x_380 = lean_array_push(x_376, x_379); -x_381 = l_myMacro____x40_Init_Notation___hyg_2022____closed__4; -x_382 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_382, 0, x_381); -lean_ctor_set(x_382, 1, x_380); -x_383 = l_Lean_Parser_sepByElemParser___closed__1; -x_384 = lean_name_eq(x_360, x_383); -if (x_384 == 0) +x_384 = l_Lean_Elab_Term_getCurrMacroScope(x_6, x_7, x_8, x_9, x_10, x_11, x_383); +x_385 = lean_ctor_get(x_384, 0); +lean_inc(x_385); +x_386 = lean_ctor_get(x_384, 1); +lean_inc(x_386); +lean_dec(x_384); +x_387 = l_Lean_Elab_Term_getMainModule___rarg(x_11, x_386); +x_388 = lean_ctor_get(x_387, 0); +lean_inc(x_388); +x_389 = lean_ctor_get(x_387, 1); +lean_inc(x_389); +lean_dec(x_387); +x_390 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__9; +x_391 = l_Lean_addMacroScope(x_388, x_390, x_385); +x_392 = l_Lean_instInhabitedSourceInfo___closed__1; +x_393 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__7; +x_394 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__21; +x_395 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_395, 0, x_392); +lean_ctor_set(x_395, 1, x_393); +lean_ctor_set(x_395, 2, x_391); +lean_ctor_set(x_395, 3, x_394); +x_396 = l_Array_empty___closed__1; +x_397 = lean_array_push(x_396, x_395); +x_398 = lean_array_push(x_396, x_4); +x_399 = l_Lean_nullKind___closed__2; +x_400 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_400, 0, x_399); +lean_ctor_set(x_400, 1, x_398); +x_401 = lean_array_push(x_397, x_400); +x_402 = l_myMacro____x40_Init_Notation___hyg_2022____closed__4; +x_403 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_403, 0, x_402); +lean_ctor_set(x_403, 1, x_401); +x_404 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__2___closed__1; +x_405 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3(x_320, x_404); +lean_dec(x_320); +if (x_405 == 0) { -lean_object* x_385; lean_object* x_386; lean_object* x_387; -x_385 = l_myMacro____x40_Init_Notation___hyg_2022____closed__2; -x_386 = lean_box(0); -x_387 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__4(x_323, x_385, x_371, x_375, x_378, x_13, x_321, x_381, x_361, x_38, x_382, x_386, x_6, x_7, x_8, x_9, x_10, x_11, x_368); +lean_object* x_406; lean_object* x_407; lean_object* x_408; +x_406 = l_myMacro____x40_Init_Notation___hyg_2022____closed__2; +x_407 = lean_box(0); +x_408 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__4(x_323, x_406, x_392, x_396, x_399, x_13, x_321, x_402, x_382, x_38, x_403, x_407, x_6, x_7, x_8, x_9, x_10, x_11, x_389); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); @@ -20500,44 +20558,44 @@ lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_321); -return x_387; +return x_408; } 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; 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; -x_388 = l_Lean_Elab_Term_getCurrMacroScope(x_6, x_7, x_8, x_9, x_10, x_11, x_368); -x_389 = lean_ctor_get(x_388, 0); -lean_inc(x_389); -x_390 = lean_ctor_get(x_388, 1); -lean_inc(x_390); -lean_dec(x_388); -x_391 = l_Lean_Elab_Term_getMainModule___rarg(x_11, x_390); -x_392 = lean_ctor_get(x_391, 0); -lean_inc(x_392); -x_393 = lean_ctor_get(x_391, 1); -lean_inc(x_393); -lean_dec(x_391); -x_394 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__26; -x_395 = l_Lean_addMacroScope(x_392, x_394, x_389); -x_396 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__24; -x_397 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__28; -x_398 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_398, 0, x_371); -lean_ctor_set(x_398, 1, x_396); -lean_ctor_set(x_398, 2, x_395); -lean_ctor_set(x_398, 3, x_397); -x_399 = lean_array_push(x_375, x_398); -x_400 = lean_array_push(x_375, x_382); -x_401 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_401, 0, x_378); -lean_ctor_set(x_401, 1, x_400); -x_402 = lean_array_push(x_399, x_401); -x_403 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_403, 0, x_381); -lean_ctor_set(x_403, 1, x_402); -x_404 = l_myMacro____x40_Init_Notation___hyg_2022____closed__2; -x_405 = lean_box(0); -x_406 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__4(x_323, x_404, x_371, x_375, x_378, x_13, x_321, x_381, x_361, x_38, x_403, x_405, x_6, x_7, x_8, x_9, x_10, x_11, x_393); +lean_object* x_409; lean_object* x_410; lean_object* x_411; lean_object* x_412; lean_object* x_413; lean_object* x_414; lean_object* x_415; lean_object* x_416; lean_object* x_417; lean_object* x_418; lean_object* x_419; lean_object* x_420; lean_object* x_421; lean_object* x_422; lean_object* x_423; lean_object* x_424; lean_object* x_425; lean_object* x_426; lean_object* x_427; +x_409 = l_Lean_Elab_Term_getCurrMacroScope(x_6, x_7, x_8, x_9, x_10, x_11, x_389); +x_410 = lean_ctor_get(x_409, 0); +lean_inc(x_410); +x_411 = lean_ctor_get(x_409, 1); +lean_inc(x_411); +lean_dec(x_409); +x_412 = l_Lean_Elab_Term_getMainModule___rarg(x_11, x_411); +x_413 = lean_ctor_get(x_412, 0); +lean_inc(x_413); +x_414 = lean_ctor_get(x_412, 1); +lean_inc(x_414); +lean_dec(x_412); +x_415 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__26; +x_416 = l_Lean_addMacroScope(x_413, x_415, x_410); +x_417 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__24; +x_418 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__28; +x_419 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_419, 0, x_392); +lean_ctor_set(x_419, 1, x_417); +lean_ctor_set(x_419, 2, x_416); +lean_ctor_set(x_419, 3, x_418); +x_420 = lean_array_push(x_396, x_419); +x_421 = lean_array_push(x_396, x_403); +x_422 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_422, 0, x_399); +lean_ctor_set(x_422, 1, x_421); +x_423 = lean_array_push(x_420, x_422); +x_424 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_424, 0, x_402); +lean_ctor_set(x_424, 1, x_423); +x_425 = l_myMacro____x40_Init_Notation___hyg_2022____closed__2; +x_426 = lean_box(0); +x_427 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__4(x_323, x_425, x_392, x_396, x_399, x_13, x_321, x_402, x_382, x_38, x_424, x_426, x_6, x_7, x_8, x_9, x_10, x_11, x_414); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); @@ -20545,119 +20603,75 @@ lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_321); -return x_406; +return x_427; } } case 1: { -lean_object* x_407; -x_407 = lean_ctor_get(x_360, 0); -lean_inc(x_407); -switch (lean_obj_tag(x_407)) { +lean_object* x_428; +x_428 = lean_ctor_get(x_381, 0); +lean_inc(x_428); +switch (lean_obj_tag(x_428)) { case 0: { -lean_object* x_408; lean_object* x_409; lean_object* x_410; lean_object* x_411; uint8_t x_412; -x_408 = lean_ctor_get(x_334, 0); -lean_inc(x_408); -x_409 = lean_ctor_get(x_334, 1); -lean_inc(x_409); +lean_object* x_429; lean_object* x_430; lean_object* x_431; lean_object* x_432; uint8_t x_433; +x_429 = lean_ctor_get(x_334, 0); +lean_inc(x_429); +x_430 = lean_ctor_get(x_334, 1); +lean_inc(x_430); lean_dec(x_334); -x_410 = lean_ctor_get(x_360, 1); -lean_inc(x_410); -x_411 = l_myMacro____x40_Init_Notation___hyg_876____closed__1; -x_412 = lean_string_dec_eq(x_410, x_411); -lean_dec(x_410); -if (x_412 == 0) +x_431 = lean_ctor_get(x_381, 1); +lean_inc(x_431); +lean_dec(x_381); +x_432 = l_myMacro____x40_Init_Notation___hyg_876____closed__1; +x_433 = lean_string_dec_eq(x_431, x_432); +lean_dec(x_431); +if (x_433 == 0) { -lean_object* x_413; lean_object* x_414; lean_object* x_415; lean_object* x_416; lean_object* x_417; lean_object* x_418; lean_object* x_419; lean_object* x_420; lean_object* x_421; lean_object* x_422; lean_object* x_423; lean_object* x_424; lean_object* x_425; lean_object* x_426; lean_object* x_427; lean_object* x_428; lean_object* x_429; lean_object* x_430; lean_object* x_431; lean_object* x_432; lean_object* x_433; uint8_t x_434; -x_413 = l_Lean_Elab_Term_getCurrMacroScope(x_6, x_7, x_8, x_9, x_10, x_11, x_409); -x_414 = lean_ctor_get(x_413, 0); -lean_inc(x_414); -x_415 = lean_ctor_get(x_413, 1); -lean_inc(x_415); -lean_dec(x_413); -x_416 = l_Lean_Elab_Term_getMainModule___rarg(x_11, x_415); -x_417 = lean_ctor_get(x_416, 0); -lean_inc(x_417); -x_418 = lean_ctor_get(x_416, 1); -lean_inc(x_418); -lean_dec(x_416); -x_419 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__9; -x_420 = l_Lean_addMacroScope(x_417, x_419, x_414); -x_421 = l_Lean_instInhabitedSourceInfo___closed__1; -x_422 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__7; -x_423 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__21; -x_424 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_424, 0, x_421); -lean_ctor_set(x_424, 1, x_422); -lean_ctor_set(x_424, 2, x_420); -lean_ctor_set(x_424, 3, x_423); -x_425 = l_Array_empty___closed__1; -x_426 = lean_array_push(x_425, x_424); -x_427 = lean_array_push(x_425, x_4); -x_428 = l_Lean_nullKind___closed__2; -x_429 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_429, 0, x_428); -lean_ctor_set(x_429, 1, x_427); -x_430 = lean_array_push(x_426, x_429); -x_431 = l_myMacro____x40_Init_Notation___hyg_2022____closed__4; -x_432 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_432, 0, x_431); -lean_ctor_set(x_432, 1, x_430); -x_433 = l_Lean_Parser_sepByElemParser___closed__1; -x_434 = lean_name_eq(x_360, x_433); -lean_dec(x_360); -if (x_434 == 0) -{ -lean_object* x_435; lean_object* x_436; lean_object* x_437; -x_435 = l_myMacro____x40_Init_Notation___hyg_2022____closed__2; -x_436 = lean_box(0); -x_437 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__5(x_323, x_435, x_421, x_425, x_428, x_13, x_321, x_431, x_408, x_38, x_432, x_436, x_6, x_7, x_8, x_9, x_10, x_11, x_418); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_321); -return x_437; -} -else -{ -lean_object* x_438; lean_object* x_439; lean_object* x_440; lean_object* x_441; lean_object* x_442; lean_object* x_443; lean_object* x_444; lean_object* x_445; lean_object* x_446; lean_object* x_447; lean_object* x_448; lean_object* x_449; lean_object* x_450; lean_object* x_451; lean_object* x_452; lean_object* x_453; lean_object* x_454; lean_object* x_455; lean_object* x_456; -x_438 = l_Lean_Elab_Term_getCurrMacroScope(x_6, x_7, x_8, x_9, x_10, x_11, x_418); -x_439 = lean_ctor_get(x_438, 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; 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; uint8_t x_455; +x_434 = l_Lean_Elab_Term_getCurrMacroScope(x_6, x_7, x_8, x_9, x_10, x_11, x_430); +x_435 = lean_ctor_get(x_434, 0); +lean_inc(x_435); +x_436 = lean_ctor_get(x_434, 1); +lean_inc(x_436); +lean_dec(x_434); +x_437 = l_Lean_Elab_Term_getMainModule___rarg(x_11, x_436); +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(x_438); -x_441 = l_Lean_Elab_Term_getMainModule___rarg(x_11, x_440); -x_442 = lean_ctor_get(x_441, 0); -lean_inc(x_442); -x_443 = lean_ctor_get(x_441, 1); -lean_inc(x_443); -lean_dec(x_441); -x_444 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__26; -x_445 = l_Lean_addMacroScope(x_442, x_444, x_439); -x_446 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__24; -x_447 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__28; -x_448 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_448, 0, x_421); -lean_ctor_set(x_448, 1, x_446); -lean_ctor_set(x_448, 2, x_445); -lean_ctor_set(x_448, 3, x_447); -x_449 = lean_array_push(x_425, x_448); -x_450 = lean_array_push(x_425, x_432); -x_451 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_451, 0, x_428); -lean_ctor_set(x_451, 1, x_450); -x_452 = lean_array_push(x_449, x_451); +lean_dec(x_437); +x_440 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__9; +x_441 = l_Lean_addMacroScope(x_438, x_440, x_435); +x_442 = l_Lean_instInhabitedSourceInfo___closed__1; +x_443 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__7; +x_444 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__21; +x_445 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_445, 0, x_442); +lean_ctor_set(x_445, 1, x_443); +lean_ctor_set(x_445, 2, x_441); +lean_ctor_set(x_445, 3, x_444); +x_446 = l_Array_empty___closed__1; +x_447 = lean_array_push(x_446, x_445); +x_448 = lean_array_push(x_446, x_4); +x_449 = l_Lean_nullKind___closed__2; +x_450 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_450, 0, x_449); +lean_ctor_set(x_450, 1, x_448); +x_451 = lean_array_push(x_447, x_450); +x_452 = l_myMacro____x40_Init_Notation___hyg_2022____closed__4; x_453 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_453, 0, x_431); -lean_ctor_set(x_453, 1, x_452); -x_454 = l_myMacro____x40_Init_Notation___hyg_2022____closed__2; -x_455 = lean_box(0); -x_456 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__5(x_323, x_454, x_421, x_425, x_428, x_13, x_321, x_431, x_408, x_38, x_453, x_455, x_6, x_7, x_8, x_9, x_10, x_11, x_443); +lean_ctor_set(x_453, 0, x_452); +lean_ctor_set(x_453, 1, x_451); +x_454 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__2___closed__1; +x_455 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3(x_320, x_454); +lean_dec(x_320); +if (x_455 == 0) +{ +lean_object* x_456; lean_object* x_457; lean_object* x_458; +x_456 = l_myMacro____x40_Init_Notation___hyg_2022____closed__2; +x_457 = lean_box(0); +x_458 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__5(x_323, x_456, x_442, x_446, x_449, x_13, x_321, x_452, x_429, x_38, x_453, x_457, x_6, x_7, x_8, x_9, x_10, x_11, x_439); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); @@ -20665,357 +20679,403 @@ lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_321); -return x_456; -} +return x_458; } else { -lean_object* x_457; size_t x_458; size_t x_459; lean_object* x_460; lean_object* x_461; lean_object* x_462; lean_object* x_463; lean_object* x_464; lean_object* x_465; lean_object* x_466; lean_object* x_467; lean_object* x_468; lean_object* x_469; uint8_t x_470; -lean_dec(x_360); -x_457 = lean_array_get_size(x_323); -x_458 = lean_usize_of_nat(x_457); -lean_dec(x_457); -x_459 = 0; -lean_inc(x_38); -x_460 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__11(x_323, x_458, x_459, x_38, x_6, x_7, x_8, x_9, x_10, x_11, x_409); -x_461 = lean_ctor_get(x_460, 0); +lean_object* x_459; lean_object* x_460; lean_object* x_461; lean_object* x_462; lean_object* x_463; lean_object* x_464; lean_object* x_465; lean_object* x_466; lean_object* x_467; lean_object* x_468; lean_object* x_469; lean_object* x_470; lean_object* x_471; lean_object* x_472; lean_object* x_473; lean_object* x_474; lean_object* x_475; lean_object* x_476; lean_object* x_477; +x_459 = l_Lean_Elab_Term_getCurrMacroScope(x_6, x_7, x_8, x_9, x_10, x_11, x_439); +x_460 = lean_ctor_get(x_459, 0); +lean_inc(x_460); +x_461 = lean_ctor_get(x_459, 1); lean_inc(x_461); -x_462 = lean_ctor_get(x_460, 1); -lean_inc(x_462); -lean_dec(x_460); -x_463 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__12(x_323, x_458, x_459, x_38, x_6, x_7, x_8, x_9, x_10, x_11, x_462); -lean_dec(x_323); -x_464 = lean_ctor_get(x_463, 0); +lean_dec(x_459); +x_462 = l_Lean_Elab_Term_getMainModule___rarg(x_11, x_461); +x_463 = lean_ctor_get(x_462, 0); +lean_inc(x_463); +x_464 = lean_ctor_get(x_462, 1); lean_inc(x_464); -x_465 = lean_ctor_get(x_463, 1); -lean_inc(x_465); -lean_dec(x_463); -x_466 = l_Lean_Elab_Term_getCurrMacroScope(x_6, x_7, x_8, x_9, x_10, x_11, x_465); +lean_dec(x_462); +x_465 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__26; +x_466 = l_Lean_addMacroScope(x_463, x_465, x_460); +x_467 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__24; +x_468 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__28; +x_469 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_469, 0, x_442); +lean_ctor_set(x_469, 1, x_467); +lean_ctor_set(x_469, 2, x_466); +lean_ctor_set(x_469, 3, x_468); +x_470 = lean_array_push(x_446, x_469); +x_471 = lean_array_push(x_446, x_453); +x_472 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_472, 0, x_449); +lean_ctor_set(x_472, 1, x_471); +x_473 = lean_array_push(x_470, x_472); +x_474 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_474, 0, x_452); +lean_ctor_set(x_474, 1, x_473); +x_475 = l_myMacro____x40_Init_Notation___hyg_2022____closed__2; +x_476 = lean_box(0); +x_477 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__5(x_323, x_475, x_442, x_446, x_449, x_13, x_321, x_452, x_429, x_38, x_474, x_476, x_6, x_7, x_8, x_9, x_10, x_11, x_464); +lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); -x_467 = lean_ctor_get(x_466, 0); -lean_inc(x_467); -x_468 = lean_ctor_get(x_466, 1); -lean_inc(x_468); -lean_dec(x_466); -x_469 = l_Lean_Elab_Term_getMainModule___rarg(x_11, x_468); -lean_dec(x_11); -x_470 = !lean_is_exclusive(x_469); -if (x_470 == 0) +lean_dec(x_321); +return x_477; +} +} +else { -lean_object* x_471; lean_object* x_472; lean_object* x_473; lean_object* x_474; lean_object* x_475; lean_object* x_476; lean_object* x_477; lean_object* x_478; lean_object* x_479; lean_object* x_480; lean_object* x_481; lean_object* x_482; lean_object* x_483; lean_object* x_484; lean_object* x_485; lean_object* x_486; lean_object* x_487; lean_object* x_488; lean_object* x_489; lean_object* x_490; lean_object* x_491; lean_object* x_492; lean_object* x_493; lean_object* x_494; lean_object* x_495; lean_object* x_496; lean_object* x_497; lean_object* x_498; lean_object* x_499; lean_object* x_500; lean_object* x_501; lean_object* x_502; lean_object* x_503; lean_object* x_504; lean_object* x_505; lean_object* x_506; lean_object* x_507; lean_object* x_508; lean_object* x_509; lean_object* x_510; lean_object* x_511; lean_object* x_512; lean_object* x_513; lean_object* x_514; lean_object* x_515; lean_object* x_516; lean_object* x_517; lean_object* x_518; lean_object* x_519; lean_object* x_520; lean_object* x_521; lean_object* x_522; lean_object* x_523; lean_object* x_524; lean_object* x_525; lean_object* x_526; lean_object* x_527; lean_object* x_528; lean_object* x_529; lean_object* x_530; lean_object* x_531; lean_object* x_532; lean_object* x_533; lean_object* x_534; lean_object* x_535; lean_object* x_536; lean_object* x_537; lean_object* x_538; lean_object* x_539; lean_object* x_540; lean_object* x_541; lean_object* x_542; lean_object* x_543; lean_object* x_544; lean_object* x_545; lean_object* x_546; lean_object* x_547; lean_object* x_548; lean_object* x_549; lean_object* x_550; lean_object* x_551; -x_471 = lean_ctor_get(x_469, 0); -x_472 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__13; -lean_inc(x_467); -lean_inc(x_471); -x_473 = l_Lean_addMacroScope(x_471, x_472, x_467); -x_474 = l_Lean_instInhabitedSourceInfo___closed__1; -x_475 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__12; -x_476 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_476, 0, x_474); -lean_ctor_set(x_476, 1, x_475); -lean_ctor_set(x_476, 2, x_473); -lean_ctor_set(x_476, 3, x_13); -x_477 = l_Array_empty___closed__1; -lean_inc(x_476); -x_478 = lean_array_push(x_477, x_476); -x_479 = l_myMacro____x40_Init_Notation___hyg_1130____closed__23; -x_480 = lean_array_push(x_478, x_479); -x_481 = lean_array_push(x_480, x_479); -x_482 = l_myMacro____x40_Init_Notation___hyg_12942____closed__14; -x_483 = lean_array_push(x_481, x_482); -x_484 = lean_array_push(x_483, x_4); -x_485 = l_myMacro____x40_Init_Notation___hyg_12942____closed__8; -x_486 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_486, 0, x_485); -lean_ctor_set(x_486, 1, x_484); -x_487 = lean_array_push(x_477, x_486); -x_488 = l_myMacro____x40_Init_Notation___hyg_12942____closed__6; -x_489 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_489, 0, x_488); -lean_ctor_set(x_489, 1, x_487); -x_490 = l_myMacro____x40_Init_Notation___hyg_12942____closed__4; -x_491 = lean_array_push(x_490, x_489); -x_492 = l_myMacro____x40_Init_Notation___hyg_12942____closed__18; -x_493 = lean_array_push(x_491, x_492); -x_494 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__35; -x_495 = l_Lean_addMacroScope(x_471, x_494, x_467); -x_496 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__33; +lean_object* x_478; size_t x_479; size_t x_480; lean_object* x_481; lean_object* x_482; lean_object* x_483; lean_object* x_484; lean_object* x_485; lean_object* x_486; lean_object* x_487; lean_object* x_488; lean_object* x_489; lean_object* x_490; uint8_t x_491; +lean_dec(x_320); +x_478 = lean_array_get_size(x_323); +x_479 = lean_usize_of_nat(x_478); +lean_dec(x_478); +x_480 = 0; +lean_inc(x_38); +x_481 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__10(x_323, x_479, x_480, x_38, x_6, x_7, x_8, x_9, x_10, x_11, x_430); +x_482 = lean_ctor_get(x_481, 0); +lean_inc(x_482); +x_483 = lean_ctor_get(x_481, 1); +lean_inc(x_483); +lean_dec(x_481); +x_484 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__11(x_323, x_479, x_480, x_38, x_6, x_7, x_8, x_9, x_10, x_11, x_483); +lean_dec(x_323); +x_485 = lean_ctor_get(x_484, 0); +lean_inc(x_485); +x_486 = lean_ctor_get(x_484, 1); +lean_inc(x_486); +lean_dec(x_484); +x_487 = l_Lean_Elab_Term_getCurrMacroScope(x_6, x_7, x_8, x_9, x_10, x_11, x_486); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +x_488 = lean_ctor_get(x_487, 0); +lean_inc(x_488); +x_489 = lean_ctor_get(x_487, 1); +lean_inc(x_489); +lean_dec(x_487); +x_490 = l_Lean_Elab_Term_getMainModule___rarg(x_11, x_489); +lean_dec(x_11); +x_491 = !lean_is_exclusive(x_490); +if (x_491 == 0) +{ +lean_object* x_492; lean_object* x_493; lean_object* x_494; lean_object* x_495; lean_object* x_496; lean_object* x_497; lean_object* x_498; lean_object* x_499; lean_object* x_500; lean_object* x_501; lean_object* x_502; lean_object* x_503; lean_object* x_504; lean_object* x_505; lean_object* x_506; lean_object* x_507; lean_object* x_508; lean_object* x_509; lean_object* x_510; lean_object* x_511; lean_object* x_512; lean_object* x_513; lean_object* x_514; lean_object* x_515; lean_object* x_516; lean_object* x_517; lean_object* x_518; lean_object* x_519; lean_object* x_520; lean_object* x_521; lean_object* x_522; lean_object* x_523; lean_object* x_524; lean_object* x_525; lean_object* x_526; lean_object* x_527; lean_object* x_528; lean_object* x_529; lean_object* x_530; lean_object* x_531; lean_object* x_532; lean_object* x_533; lean_object* x_534; lean_object* x_535; lean_object* x_536; lean_object* x_537; lean_object* x_538; lean_object* x_539; lean_object* x_540; lean_object* x_541; lean_object* x_542; lean_object* x_543; lean_object* x_544; lean_object* x_545; lean_object* x_546; lean_object* x_547; lean_object* x_548; lean_object* x_549; lean_object* x_550; lean_object* x_551; lean_object* x_552; lean_object* x_553; lean_object* x_554; lean_object* x_555; lean_object* x_556; lean_object* x_557; lean_object* x_558; lean_object* x_559; lean_object* x_560; lean_object* x_561; lean_object* x_562; lean_object* x_563; lean_object* x_564; lean_object* x_565; lean_object* x_566; lean_object* x_567; lean_object* x_568; lean_object* x_569; lean_object* x_570; lean_object* x_571; lean_object* x_572; +x_492 = lean_ctor_get(x_490, 0); +x_493 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__13; +lean_inc(x_488); +lean_inc(x_492); +x_494 = l_Lean_addMacroScope(x_492, x_493, x_488); +x_495 = l_Lean_instInhabitedSourceInfo___closed__1; +x_496 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__12; x_497 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_497, 0, x_474); +lean_ctor_set(x_497, 0, x_495); lean_ctor_set(x_497, 1, x_496); -lean_ctor_set(x_497, 2, x_495); +lean_ctor_set(x_497, 2, x_494); lean_ctor_set(x_497, 3, x_13); -x_498 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__30; +x_498 = l_Array_empty___closed__1; +lean_inc(x_497); x_499 = lean_array_push(x_498, x_497); -x_500 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__37; +x_500 = l_myMacro____x40_Init_Notation___hyg_1130____closed__23; x_501 = lean_array_push(x_499, x_500); -x_502 = lean_array_push(x_501, x_464); -x_503 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__39; +x_502 = lean_array_push(x_501, x_500); +x_503 = l_myMacro____x40_Init_Notation___hyg_12942____closed__14; x_504 = lean_array_push(x_502, x_503); -x_505 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_261____closed__19; -x_506 = lean_array_push(x_505, x_476); -x_507 = l_Lean_Parser_Term_matchDiscr___elambda__1___closed__1; -x_508 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_508, 0, x_507); -lean_ctor_set(x_508, 1, x_506); -x_509 = lean_array_push(x_477, x_508); -x_510 = l_Lean_nullKind___closed__2; -x_511 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_511, 0, x_510); -lean_ctor_set(x_511, 1, x_509); -x_512 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__41; -x_513 = lean_array_push(x_512, x_511); -x_514 = lean_array_push(x_513, x_479); -x_515 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__42; -x_516 = lean_array_push(x_514, x_515); -x_517 = l_Lean_nullKind; -x_518 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_518, 0, x_517); -lean_ctor_set(x_518, 1, x_321); -x_519 = l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__2___lambda__1___closed__2; +x_505 = lean_array_push(x_504, x_4); +x_506 = l_myMacro____x40_Init_Notation___hyg_12942____closed__8; +x_507 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_507, 0, x_506); +lean_ctor_set(x_507, 1, x_505); +x_508 = lean_array_push(x_498, x_507); +x_509 = l_myMacro____x40_Init_Notation___hyg_12942____closed__6; +x_510 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_510, 0, x_509); +lean_ctor_set(x_510, 1, x_508); +x_511 = l_myMacro____x40_Init_Notation___hyg_12942____closed__4; +x_512 = lean_array_push(x_511, x_510); +x_513 = l_myMacro____x40_Init_Notation___hyg_12942____closed__18; +x_514 = lean_array_push(x_512, x_513); +x_515 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__35; +x_516 = l_Lean_addMacroScope(x_492, x_515, x_488); +x_517 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__33; +x_518 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_518, 0, x_495); +lean_ctor_set(x_518, 1, x_517); +lean_ctor_set(x_518, 2, x_516); +lean_ctor_set(x_518, 3, x_13); +x_519 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__30; x_520 = lean_array_push(x_519, x_518); -x_521 = l_myMacro____x40_Init_Notation___hyg_658____closed__8; +x_521 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__37; x_522 = lean_array_push(x_520, x_521); -x_523 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4152____closed__1; -x_524 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_524, 0, x_523); -lean_ctor_set(x_524, 1, x_522); -x_525 = lean_array_push(x_477, x_524); -x_526 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_526, 0, x_510); -lean_ctor_set(x_526, 1, x_525); -x_527 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__43; -x_528 = lean_array_push(x_527, x_526); -x_529 = l_myMacro____x40_Init_Notation___hyg_11187____closed__17; -x_530 = lean_array_push(x_528, x_529); -x_531 = lean_array_push(x_530, x_461); -x_532 = l_Lean_Parser_Term_matchAlt___closed__1; -x_533 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_533, 0, x_532); -lean_ctor_set(x_533, 1, x_531); -x_534 = lean_array_push(x_477, x_533); -x_535 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__45; -x_536 = lean_array_push(x_535, x_408); -x_537 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_537, 0, x_532); -lean_ctor_set(x_537, 1, x_536); -x_538 = lean_array_push(x_534, x_537); +x_523 = lean_array_push(x_522, x_485); +x_524 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__39; +x_525 = lean_array_push(x_523, x_524); +x_526 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_261____closed__19; +x_527 = lean_array_push(x_526, x_497); +x_528 = l_Lean_Parser_Term_matchDiscr___elambda__1___closed__1; +x_529 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_529, 0, x_528); +lean_ctor_set(x_529, 1, x_527); +x_530 = lean_array_push(x_498, x_529); +x_531 = l_Lean_nullKind___closed__2; +x_532 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_532, 0, x_531); +lean_ctor_set(x_532, 1, x_530); +x_533 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__41; +x_534 = lean_array_push(x_533, x_532); +x_535 = lean_array_push(x_534, x_500); +x_536 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__42; +x_537 = lean_array_push(x_535, x_536); +x_538 = l_Lean_nullKind; x_539 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_539, 0, x_510); -lean_ctor_set(x_539, 1, x_538); -x_540 = lean_array_push(x_477, x_539); -x_541 = l_Lean_Parser_Term_matchAlts___elambda__1___closed__1; -x_542 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_542, 0, x_541); -lean_ctor_set(x_542, 1, x_540); -x_543 = lean_array_push(x_516, x_542); -x_544 = l_Lean_Parser_Term_match___elambda__1___closed__1; +lean_ctor_set(x_539, 0, x_538); +lean_ctor_set(x_539, 1, x_321); +x_540 = l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__2___lambda__1___closed__2; +x_541 = lean_array_push(x_540, x_539); +x_542 = l_myMacro____x40_Init_Notation___hyg_658____closed__8; +x_543 = lean_array_push(x_541, x_542); +x_544 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4152____closed__1; x_545 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_545, 0, x_544); lean_ctor_set(x_545, 1, x_543); -x_546 = lean_array_push(x_504, x_545); -x_547 = l_termIf__Then__Else_____closed__2; -x_548 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_548, 0, x_547); -lean_ctor_set(x_548, 1, x_546); -x_549 = lean_array_push(x_493, x_548); -x_550 = l_myMacro____x40_Init_Notation___hyg_12942____closed__2; -x_551 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_551, 0, x_550); -lean_ctor_set(x_551, 1, x_549); -lean_ctor_set(x_469, 0, x_551); -return x_469; +x_546 = lean_array_push(x_498, x_545); +x_547 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_547, 0, x_531); +lean_ctor_set(x_547, 1, x_546); +x_548 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__43; +x_549 = lean_array_push(x_548, x_547); +x_550 = l_myMacro____x40_Init_Notation___hyg_11187____closed__17; +x_551 = lean_array_push(x_549, x_550); +x_552 = lean_array_push(x_551, x_482); +x_553 = l_Lean_Parser_Term_matchAlt___closed__1; +x_554 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_554, 0, x_553); +lean_ctor_set(x_554, 1, x_552); +x_555 = lean_array_push(x_498, x_554); +x_556 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__45; +x_557 = lean_array_push(x_556, x_429); +x_558 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_558, 0, x_553); +lean_ctor_set(x_558, 1, x_557); +x_559 = lean_array_push(x_555, x_558); +x_560 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_560, 0, x_531); +lean_ctor_set(x_560, 1, x_559); +x_561 = lean_array_push(x_498, x_560); +x_562 = l_Lean_Parser_Term_matchAlts___elambda__1___closed__1; +x_563 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_563, 0, x_562); +lean_ctor_set(x_563, 1, x_561); +x_564 = lean_array_push(x_537, x_563); +x_565 = l_Lean_Parser_Term_match___elambda__1___closed__1; +x_566 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_566, 0, x_565); +lean_ctor_set(x_566, 1, x_564); +x_567 = lean_array_push(x_525, x_566); +x_568 = l_termIf__Then__Else_____closed__2; +x_569 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_569, 0, x_568); +lean_ctor_set(x_569, 1, x_567); +x_570 = lean_array_push(x_514, x_569); +x_571 = l_myMacro____x40_Init_Notation___hyg_12942____closed__2; +x_572 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_572, 0, x_571); +lean_ctor_set(x_572, 1, x_570); +lean_ctor_set(x_490, 0, x_572); +return x_490; } 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; lean_object* x_562; lean_object* x_563; lean_object* x_564; lean_object* x_565; lean_object* x_566; lean_object* x_567; lean_object* x_568; lean_object* x_569; lean_object* x_570; lean_object* x_571; lean_object* x_572; lean_object* x_573; lean_object* x_574; lean_object* x_575; lean_object* x_576; lean_object* x_577; lean_object* x_578; lean_object* x_579; lean_object* x_580; lean_object* x_581; lean_object* x_582; lean_object* x_583; lean_object* x_584; lean_object* x_585; lean_object* x_586; lean_object* x_587; lean_object* x_588; lean_object* x_589; lean_object* x_590; lean_object* x_591; lean_object* x_592; lean_object* x_593; lean_object* x_594; lean_object* x_595; lean_object* x_596; lean_object* x_597; lean_object* x_598; lean_object* x_599; lean_object* x_600; lean_object* x_601; lean_object* x_602; lean_object* x_603; lean_object* x_604; lean_object* x_605; lean_object* x_606; lean_object* x_607; lean_object* x_608; lean_object* x_609; lean_object* x_610; lean_object* x_611; lean_object* x_612; lean_object* x_613; lean_object* x_614; lean_object* x_615; lean_object* x_616; lean_object* x_617; lean_object* x_618; lean_object* x_619; lean_object* x_620; lean_object* x_621; lean_object* x_622; lean_object* x_623; lean_object* x_624; lean_object* x_625; lean_object* x_626; lean_object* x_627; lean_object* x_628; lean_object* x_629; lean_object* x_630; lean_object* x_631; lean_object* x_632; lean_object* x_633; lean_object* x_634; -x_552 = lean_ctor_get(x_469, 0); -x_553 = lean_ctor_get(x_469, 1); -lean_inc(x_553); -lean_inc(x_552); -lean_dec(x_469); -x_554 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__13; -lean_inc(x_467); -lean_inc(x_552); -x_555 = l_Lean_addMacroScope(x_552, x_554, x_467); -x_556 = l_Lean_instInhabitedSourceInfo___closed__1; -x_557 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__12; -x_558 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_558, 0, x_556); -lean_ctor_set(x_558, 1, x_557); -lean_ctor_set(x_558, 2, x_555); -lean_ctor_set(x_558, 3, x_13); -x_559 = l_Array_empty___closed__1; -lean_inc(x_558); -x_560 = lean_array_push(x_559, x_558); -x_561 = l_myMacro____x40_Init_Notation___hyg_1130____closed__23; -x_562 = lean_array_push(x_560, x_561); -x_563 = lean_array_push(x_562, x_561); -x_564 = l_myMacro____x40_Init_Notation___hyg_12942____closed__14; -x_565 = lean_array_push(x_563, x_564); -x_566 = lean_array_push(x_565, x_4); -x_567 = l_myMacro____x40_Init_Notation___hyg_12942____closed__8; -x_568 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_568, 0, x_567); -lean_ctor_set(x_568, 1, x_566); -x_569 = lean_array_push(x_559, x_568); -x_570 = l_myMacro____x40_Init_Notation___hyg_12942____closed__6; -x_571 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_571, 0, x_570); -lean_ctor_set(x_571, 1, x_569); -x_572 = l_myMacro____x40_Init_Notation___hyg_12942____closed__4; -x_573 = lean_array_push(x_572, x_571); -x_574 = l_myMacro____x40_Init_Notation___hyg_12942____closed__18; -x_575 = lean_array_push(x_573, x_574); -x_576 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__35; -x_577 = l_Lean_addMacroScope(x_552, x_576, x_467); -x_578 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__33; +lean_object* x_573; lean_object* x_574; lean_object* x_575; lean_object* x_576; lean_object* x_577; lean_object* x_578; lean_object* x_579; lean_object* x_580; lean_object* x_581; lean_object* x_582; lean_object* x_583; lean_object* x_584; lean_object* x_585; lean_object* x_586; lean_object* x_587; lean_object* x_588; lean_object* x_589; lean_object* x_590; lean_object* x_591; lean_object* x_592; lean_object* x_593; lean_object* x_594; lean_object* x_595; lean_object* x_596; lean_object* x_597; lean_object* x_598; lean_object* x_599; lean_object* x_600; lean_object* x_601; lean_object* x_602; lean_object* x_603; lean_object* x_604; lean_object* x_605; lean_object* x_606; lean_object* x_607; lean_object* x_608; lean_object* x_609; lean_object* x_610; lean_object* x_611; lean_object* x_612; lean_object* x_613; lean_object* x_614; lean_object* x_615; lean_object* x_616; lean_object* x_617; lean_object* x_618; lean_object* x_619; lean_object* x_620; lean_object* x_621; lean_object* x_622; lean_object* x_623; lean_object* x_624; lean_object* x_625; lean_object* x_626; lean_object* x_627; lean_object* x_628; lean_object* x_629; lean_object* x_630; lean_object* x_631; lean_object* x_632; lean_object* x_633; lean_object* x_634; lean_object* x_635; lean_object* x_636; lean_object* x_637; lean_object* x_638; lean_object* x_639; lean_object* x_640; lean_object* x_641; lean_object* x_642; lean_object* x_643; lean_object* x_644; lean_object* x_645; lean_object* x_646; lean_object* x_647; lean_object* x_648; lean_object* x_649; lean_object* x_650; lean_object* x_651; lean_object* x_652; lean_object* x_653; lean_object* x_654; lean_object* x_655; +x_573 = lean_ctor_get(x_490, 0); +x_574 = lean_ctor_get(x_490, 1); +lean_inc(x_574); +lean_inc(x_573); +lean_dec(x_490); +x_575 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__13; +lean_inc(x_488); +lean_inc(x_573); +x_576 = l_Lean_addMacroScope(x_573, x_575, x_488); +x_577 = l_Lean_instInhabitedSourceInfo___closed__1; +x_578 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__12; x_579 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_579, 0, x_556); +lean_ctor_set(x_579, 0, x_577); lean_ctor_set(x_579, 1, x_578); -lean_ctor_set(x_579, 2, x_577); +lean_ctor_set(x_579, 2, x_576); lean_ctor_set(x_579, 3, x_13); -x_580 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__30; +x_580 = l_Array_empty___closed__1; +lean_inc(x_579); x_581 = lean_array_push(x_580, x_579); -x_582 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__37; +x_582 = l_myMacro____x40_Init_Notation___hyg_1130____closed__23; x_583 = lean_array_push(x_581, x_582); -x_584 = lean_array_push(x_583, x_464); -x_585 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__39; +x_584 = lean_array_push(x_583, x_582); +x_585 = l_myMacro____x40_Init_Notation___hyg_12942____closed__14; x_586 = lean_array_push(x_584, x_585); -x_587 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_261____closed__19; -x_588 = lean_array_push(x_587, x_558); -x_589 = l_Lean_Parser_Term_matchDiscr___elambda__1___closed__1; -x_590 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_590, 0, x_589); -lean_ctor_set(x_590, 1, x_588); -x_591 = lean_array_push(x_559, x_590); -x_592 = l_Lean_nullKind___closed__2; -x_593 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_593, 0, x_592); -lean_ctor_set(x_593, 1, x_591); -x_594 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__41; -x_595 = lean_array_push(x_594, x_593); -x_596 = lean_array_push(x_595, x_561); -x_597 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__42; -x_598 = lean_array_push(x_596, x_597); -x_599 = l_Lean_nullKind; -x_600 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_600, 0, x_599); -lean_ctor_set(x_600, 1, x_321); -x_601 = l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__2___lambda__1___closed__2; +x_587 = lean_array_push(x_586, x_4); +x_588 = l_myMacro____x40_Init_Notation___hyg_12942____closed__8; +x_589 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_589, 0, x_588); +lean_ctor_set(x_589, 1, x_587); +x_590 = lean_array_push(x_580, x_589); +x_591 = l_myMacro____x40_Init_Notation___hyg_12942____closed__6; +x_592 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_592, 0, x_591); +lean_ctor_set(x_592, 1, x_590); +x_593 = l_myMacro____x40_Init_Notation___hyg_12942____closed__4; +x_594 = lean_array_push(x_593, x_592); +x_595 = l_myMacro____x40_Init_Notation___hyg_12942____closed__18; +x_596 = lean_array_push(x_594, x_595); +x_597 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__35; +x_598 = l_Lean_addMacroScope(x_573, x_597, x_488); +x_599 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__33; +x_600 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_600, 0, x_577); +lean_ctor_set(x_600, 1, x_599); +lean_ctor_set(x_600, 2, x_598); +lean_ctor_set(x_600, 3, x_13); +x_601 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__30; x_602 = lean_array_push(x_601, x_600); -x_603 = l_myMacro____x40_Init_Notation___hyg_658____closed__8; +x_603 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__37; x_604 = lean_array_push(x_602, x_603); -x_605 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4152____closed__1; -x_606 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_606, 0, x_605); -lean_ctor_set(x_606, 1, x_604); -x_607 = lean_array_push(x_559, x_606); -x_608 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_608, 0, x_592); -lean_ctor_set(x_608, 1, x_607); -x_609 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__43; -x_610 = lean_array_push(x_609, x_608); -x_611 = l_myMacro____x40_Init_Notation___hyg_11187____closed__17; -x_612 = lean_array_push(x_610, x_611); -x_613 = lean_array_push(x_612, x_461); -x_614 = l_Lean_Parser_Term_matchAlt___closed__1; -x_615 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_615, 0, x_614); -lean_ctor_set(x_615, 1, x_613); -x_616 = lean_array_push(x_559, x_615); -x_617 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__45; -x_618 = lean_array_push(x_617, x_408); -x_619 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_619, 0, x_614); -lean_ctor_set(x_619, 1, x_618); -x_620 = lean_array_push(x_616, x_619); +x_605 = lean_array_push(x_604, x_485); +x_606 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__39; +x_607 = lean_array_push(x_605, x_606); +x_608 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_261____closed__19; +x_609 = lean_array_push(x_608, x_579); +x_610 = l_Lean_Parser_Term_matchDiscr___elambda__1___closed__1; +x_611 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_611, 0, x_610); +lean_ctor_set(x_611, 1, x_609); +x_612 = lean_array_push(x_580, x_611); +x_613 = l_Lean_nullKind___closed__2; +x_614 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_614, 0, x_613); +lean_ctor_set(x_614, 1, x_612); +x_615 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__41; +x_616 = lean_array_push(x_615, x_614); +x_617 = lean_array_push(x_616, x_582); +x_618 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__42; +x_619 = lean_array_push(x_617, x_618); +x_620 = l_Lean_nullKind; x_621 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_621, 0, x_592); -lean_ctor_set(x_621, 1, x_620); -x_622 = lean_array_push(x_559, x_621); -x_623 = l_Lean_Parser_Term_matchAlts___elambda__1___closed__1; -x_624 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_624, 0, x_623); -lean_ctor_set(x_624, 1, x_622); -x_625 = lean_array_push(x_598, x_624); -x_626 = l_Lean_Parser_Term_match___elambda__1___closed__1; +lean_ctor_set(x_621, 0, x_620); +lean_ctor_set(x_621, 1, x_321); +x_622 = l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__2___lambda__1___closed__2; +x_623 = lean_array_push(x_622, x_621); +x_624 = l_myMacro____x40_Init_Notation___hyg_658____closed__8; +x_625 = lean_array_push(x_623, x_624); +x_626 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4152____closed__1; x_627 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_627, 0, x_626); lean_ctor_set(x_627, 1, x_625); -x_628 = lean_array_push(x_586, x_627); -x_629 = l_termIf__Then__Else_____closed__2; -x_630 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_630, 0, x_629); -lean_ctor_set(x_630, 1, x_628); -x_631 = lean_array_push(x_575, x_630); -x_632 = l_myMacro____x40_Init_Notation___hyg_12942____closed__2; -x_633 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_633, 0, x_632); -lean_ctor_set(x_633, 1, x_631); -x_634 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_634, 0, x_633); -lean_ctor_set(x_634, 1, x_553); -return x_634; +x_628 = lean_array_push(x_580, x_627); +x_629 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_629, 0, x_613); +lean_ctor_set(x_629, 1, x_628); +x_630 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__43; +x_631 = lean_array_push(x_630, x_629); +x_632 = l_myMacro____x40_Init_Notation___hyg_11187____closed__17; +x_633 = lean_array_push(x_631, x_632); +x_634 = lean_array_push(x_633, x_482); +x_635 = l_Lean_Parser_Term_matchAlt___closed__1; +x_636 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_636, 0, x_635); +lean_ctor_set(x_636, 1, x_634); +x_637 = lean_array_push(x_580, x_636); +x_638 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__45; +x_639 = lean_array_push(x_638, x_429); +x_640 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_640, 0, x_635); +lean_ctor_set(x_640, 1, x_639); +x_641 = lean_array_push(x_637, x_640); +x_642 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_642, 0, x_613); +lean_ctor_set(x_642, 1, x_641); +x_643 = lean_array_push(x_580, x_642); +x_644 = l_Lean_Parser_Term_matchAlts___elambda__1___closed__1; +x_645 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_645, 0, x_644); +lean_ctor_set(x_645, 1, x_643); +x_646 = lean_array_push(x_619, x_645); +x_647 = l_Lean_Parser_Term_match___elambda__1___closed__1; +x_648 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_648, 0, x_647); +lean_ctor_set(x_648, 1, x_646); +x_649 = lean_array_push(x_607, x_648); +x_650 = l_termIf__Then__Else_____closed__2; +x_651 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_651, 0, x_650); +lean_ctor_set(x_651, 1, x_649); +x_652 = lean_array_push(x_596, x_651); +x_653 = l_myMacro____x40_Init_Notation___hyg_12942____closed__2; +x_654 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_654, 0, x_653); +lean_ctor_set(x_654, 1, x_652); +x_655 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_655, 0, x_654); +lean_ctor_set(x_655, 1, x_574); +return x_655; } } } case 1: { -lean_object* x_635; lean_object* x_636; lean_object* x_637; lean_object* x_638; lean_object* x_639; lean_object* x_640; lean_object* x_641; lean_object* x_642; lean_object* x_643; lean_object* x_644; lean_object* x_645; lean_object* x_646; lean_object* x_647; lean_object* x_648; lean_object* x_649; lean_object* x_650; lean_object* x_651; lean_object* x_652; lean_object* x_653; lean_object* x_654; lean_object* x_655; lean_object* x_656; lean_object* x_657; uint8_t x_658; -lean_dec(x_407); -x_635 = lean_ctor_get(x_334, 0); -lean_inc(x_635); -x_636 = lean_ctor_get(x_334, 1); -lean_inc(x_636); +lean_object* x_656; lean_object* x_657; lean_object* x_658; lean_object* x_659; lean_object* x_660; lean_object* x_661; lean_object* x_662; lean_object* x_663; lean_object* x_664; lean_object* x_665; lean_object* x_666; lean_object* x_667; lean_object* x_668; lean_object* x_669; lean_object* x_670; lean_object* x_671; lean_object* x_672; lean_object* x_673; lean_object* x_674; lean_object* x_675; lean_object* x_676; lean_object* x_677; lean_object* x_678; uint8_t x_679; +lean_dec(x_428); +lean_dec(x_381); +x_656 = lean_ctor_get(x_334, 0); +lean_inc(x_656); +x_657 = lean_ctor_get(x_334, 1); +lean_inc(x_657); lean_dec(x_334); -x_637 = l_Lean_Elab_Term_getCurrMacroScope(x_6, x_7, x_8, x_9, x_10, x_11, x_636); -x_638 = lean_ctor_get(x_637, 0); -lean_inc(x_638); -x_639 = lean_ctor_get(x_637, 1); -lean_inc(x_639); -lean_dec(x_637); -x_640 = l_Lean_Elab_Term_getMainModule___rarg(x_11, x_639); -x_641 = lean_ctor_get(x_640, 0); -lean_inc(x_641); -x_642 = lean_ctor_get(x_640, 1); -lean_inc(x_642); -lean_dec(x_640); -x_643 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__9; -x_644 = l_Lean_addMacroScope(x_641, x_643, x_638); -x_645 = l_Lean_instInhabitedSourceInfo___closed__1; -x_646 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__7; -x_647 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__21; -x_648 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_648, 0, x_645); -lean_ctor_set(x_648, 1, x_646); -lean_ctor_set(x_648, 2, x_644); -lean_ctor_set(x_648, 3, x_647); -x_649 = l_Array_empty___closed__1; -x_650 = lean_array_push(x_649, x_648); -x_651 = lean_array_push(x_649, x_4); -x_652 = l_Lean_nullKind___closed__2; -x_653 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_653, 0, x_652); -lean_ctor_set(x_653, 1, x_651); -x_654 = lean_array_push(x_650, x_653); -x_655 = l_myMacro____x40_Init_Notation___hyg_2022____closed__4; -x_656 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_656, 0, x_655); -lean_ctor_set(x_656, 1, x_654); -x_657 = l_Lean_Parser_sepByElemParser___closed__1; -x_658 = lean_name_eq(x_360, x_657); -lean_dec(x_360); -if (x_658 == 0) +x_658 = l_Lean_Elab_Term_getCurrMacroScope(x_6, x_7, x_8, x_9, x_10, x_11, x_657); +x_659 = lean_ctor_get(x_658, 0); +lean_inc(x_659); +x_660 = lean_ctor_get(x_658, 1); +lean_inc(x_660); +lean_dec(x_658); +x_661 = l_Lean_Elab_Term_getMainModule___rarg(x_11, x_660); +x_662 = lean_ctor_get(x_661, 0); +lean_inc(x_662); +x_663 = lean_ctor_get(x_661, 1); +lean_inc(x_663); +lean_dec(x_661); +x_664 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__9; +x_665 = l_Lean_addMacroScope(x_662, x_664, x_659); +x_666 = l_Lean_instInhabitedSourceInfo___closed__1; +x_667 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__7; +x_668 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__21; +x_669 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_669, 0, x_666); +lean_ctor_set(x_669, 1, x_667); +lean_ctor_set(x_669, 2, x_665); +lean_ctor_set(x_669, 3, x_668); +x_670 = l_Array_empty___closed__1; +x_671 = lean_array_push(x_670, x_669); +x_672 = lean_array_push(x_670, x_4); +x_673 = l_Lean_nullKind___closed__2; +x_674 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_674, 0, x_673); +lean_ctor_set(x_674, 1, x_672); +x_675 = lean_array_push(x_671, x_674); +x_676 = l_myMacro____x40_Init_Notation___hyg_2022____closed__4; +x_677 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_677, 0, x_676); +lean_ctor_set(x_677, 1, x_675); +x_678 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__2___closed__1; +x_679 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3(x_320, x_678); +lean_dec(x_320); +if (x_679 == 0) { -lean_object* x_659; lean_object* x_660; lean_object* x_661; -x_659 = l_myMacro____x40_Init_Notation___hyg_2022____closed__2; -x_660 = lean_box(0); -x_661 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__6(x_323, x_659, x_645, x_649, x_652, x_13, x_321, x_655, x_635, x_38, x_656, x_660, x_6, x_7, x_8, x_9, x_10, x_11, x_642); +lean_object* x_680; lean_object* x_681; lean_object* x_682; +x_680 = l_myMacro____x40_Init_Notation___hyg_2022____closed__2; +x_681 = lean_box(0); +x_682 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__6(x_323, x_680, x_666, x_670, x_673, x_13, x_321, x_676, x_656, x_38, x_677, x_681, x_6, x_7, x_8, x_9, x_10, x_11, x_663); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); @@ -21023,64 +21083,12 @@ lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_321); -return x_661; +return x_682; } else { -lean_object* x_662; lean_object* x_663; lean_object* x_664; lean_object* x_665; lean_object* x_666; lean_object* x_667; lean_object* x_668; lean_object* x_669; lean_object* x_670; lean_object* x_671; lean_object* x_672; lean_object* x_673; lean_object* x_674; lean_object* x_675; lean_object* x_676; lean_object* x_677; lean_object* x_678; lean_object* x_679; lean_object* x_680; -x_662 = l_Lean_Elab_Term_getCurrMacroScope(x_6, x_7, x_8, x_9, x_10, x_11, x_642); -x_663 = lean_ctor_get(x_662, 0); -lean_inc(x_663); -x_664 = lean_ctor_get(x_662, 1); -lean_inc(x_664); -lean_dec(x_662); -x_665 = l_Lean_Elab_Term_getMainModule___rarg(x_11, x_664); -x_666 = lean_ctor_get(x_665, 0); -lean_inc(x_666); -x_667 = lean_ctor_get(x_665, 1); -lean_inc(x_667); -lean_dec(x_665); -x_668 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__26; -x_669 = l_Lean_addMacroScope(x_666, x_668, x_663); -x_670 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__24; -x_671 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__28; -x_672 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_672, 0, x_645); -lean_ctor_set(x_672, 1, x_670); -lean_ctor_set(x_672, 2, x_669); -lean_ctor_set(x_672, 3, x_671); -x_673 = lean_array_push(x_649, x_672); -x_674 = lean_array_push(x_649, x_656); -x_675 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_675, 0, x_652); -lean_ctor_set(x_675, 1, x_674); -x_676 = lean_array_push(x_673, x_675); -x_677 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_677, 0, x_655); -lean_ctor_set(x_677, 1, x_676); -x_678 = l_myMacro____x40_Init_Notation___hyg_2022____closed__2; -x_679 = lean_box(0); -x_680 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__6(x_323, x_678, x_645, x_649, x_652, x_13, x_321, x_655, x_635, x_38, x_677, x_679, x_6, x_7, x_8, x_9, x_10, x_11, x_667); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_321); -return x_680; -} -} -default: -{ -lean_object* x_681; lean_object* x_682; lean_object* x_683; lean_object* x_684; lean_object* x_685; lean_object* x_686; lean_object* x_687; lean_object* x_688; lean_object* x_689; lean_object* x_690; lean_object* x_691; lean_object* x_692; lean_object* x_693; lean_object* x_694; lean_object* x_695; lean_object* x_696; lean_object* x_697; lean_object* x_698; lean_object* x_699; lean_object* x_700; lean_object* x_701; lean_object* x_702; lean_object* x_703; uint8_t x_704; -lean_dec(x_407); -x_681 = lean_ctor_get(x_334, 0); -lean_inc(x_681); -x_682 = lean_ctor_get(x_334, 1); -lean_inc(x_682); -lean_dec(x_334); -x_683 = l_Lean_Elab_Term_getCurrMacroScope(x_6, x_7, x_8, x_9, x_10, x_11, x_682); +lean_object* x_683; lean_object* x_684; lean_object* x_685; lean_object* x_686; lean_object* x_687; lean_object* x_688; lean_object* x_689; lean_object* x_690; lean_object* x_691; lean_object* x_692; lean_object* x_693; lean_object* x_694; lean_object* x_695; lean_object* x_696; lean_object* x_697; lean_object* x_698; lean_object* x_699; lean_object* x_700; lean_object* x_701; +x_683 = l_Lean_Elab_Term_getCurrMacroScope(x_6, x_7, x_8, x_9, x_10, x_11, x_663); x_684 = lean_ctor_get(x_683, 0); lean_inc(x_684); x_685 = lean_ctor_get(x_683, 1); @@ -21092,37 +21100,27 @@ lean_inc(x_687); x_688 = lean_ctor_get(x_686, 1); lean_inc(x_688); lean_dec(x_686); -x_689 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__9; +x_689 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__26; x_690 = l_Lean_addMacroScope(x_687, x_689, x_684); -x_691 = l_Lean_instInhabitedSourceInfo___closed__1; -x_692 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__7; -x_693 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__21; -x_694 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_694, 0, x_691); -lean_ctor_set(x_694, 1, x_692); -lean_ctor_set(x_694, 2, x_690); -lean_ctor_set(x_694, 3, x_693); -x_695 = l_Array_empty___closed__1; -x_696 = lean_array_push(x_695, x_694); -x_697 = lean_array_push(x_695, x_4); -x_698 = l_Lean_nullKind___closed__2; -x_699 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_699, 0, x_698); -lean_ctor_set(x_699, 1, x_697); -x_700 = lean_array_push(x_696, x_699); -x_701 = l_myMacro____x40_Init_Notation___hyg_2022____closed__4; -x_702 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_702, 0, x_701); -lean_ctor_set(x_702, 1, x_700); -x_703 = l_Lean_Parser_sepByElemParser___closed__1; -x_704 = lean_name_eq(x_360, x_703); -lean_dec(x_360); -if (x_704 == 0) -{ -lean_object* x_705; lean_object* x_706; lean_object* x_707; -x_705 = l_myMacro____x40_Init_Notation___hyg_2022____closed__2; -x_706 = lean_box(0); -x_707 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__7(x_323, x_705, x_691, x_695, x_698, x_13, x_321, x_701, x_681, x_38, x_702, x_706, x_6, x_7, x_8, x_9, x_10, x_11, x_688); +x_691 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__24; +x_692 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__28; +x_693 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_693, 0, x_666); +lean_ctor_set(x_693, 1, x_691); +lean_ctor_set(x_693, 2, x_690); +lean_ctor_set(x_693, 3, x_692); +x_694 = lean_array_push(x_670, x_693); +x_695 = lean_array_push(x_670, x_677); +x_696 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_696, 0, x_673); +lean_ctor_set(x_696, 1, x_695); +x_697 = lean_array_push(x_694, x_696); +x_698 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_698, 0, x_676); +lean_ctor_set(x_698, 1, x_697); +x_699 = l_myMacro____x40_Init_Notation___hyg_2022____closed__2; +x_700 = lean_box(0); +x_701 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__6(x_323, x_699, x_666, x_670, x_673, x_13, x_321, x_676, x_656, x_38, x_698, x_700, x_6, x_7, x_8, x_9, x_10, x_11, x_688); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); @@ -21130,65 +21128,75 @@ lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_321); -return x_707; -} -else -{ -lean_object* x_708; lean_object* x_709; lean_object* x_710; lean_object* x_711; lean_object* x_712; lean_object* x_713; lean_object* x_714; lean_object* x_715; lean_object* x_716; lean_object* x_717; lean_object* x_718; lean_object* x_719; lean_object* x_720; lean_object* x_721; lean_object* x_722; lean_object* x_723; lean_object* x_724; lean_object* x_725; lean_object* x_726; -x_708 = l_Lean_Elab_Term_getCurrMacroScope(x_6, x_7, x_8, x_9, x_10, x_11, x_688); -x_709 = lean_ctor_get(x_708, 0); -lean_inc(x_709); -x_710 = lean_ctor_get(x_708, 1); -lean_inc(x_710); -lean_dec(x_708); -x_711 = l_Lean_Elab_Term_getMainModule___rarg(x_11, x_710); -x_712 = lean_ctor_get(x_711, 0); -lean_inc(x_712); -x_713 = lean_ctor_get(x_711, 1); -lean_inc(x_713); -lean_dec(x_711); -x_714 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__26; -x_715 = l_Lean_addMacroScope(x_712, x_714, x_709); -x_716 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__24; -x_717 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__28; -x_718 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_718, 0, x_691); -lean_ctor_set(x_718, 1, x_716); -lean_ctor_set(x_718, 2, x_715); -lean_ctor_set(x_718, 3, x_717); -x_719 = lean_array_push(x_695, x_718); -x_720 = lean_array_push(x_695, x_702); -x_721 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_721, 0, x_698); -lean_ctor_set(x_721, 1, x_720); -x_722 = lean_array_push(x_719, x_721); -x_723 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_723, 0, x_701); -lean_ctor_set(x_723, 1, x_722); -x_724 = l_myMacro____x40_Init_Notation___hyg_2022____closed__2; -x_725 = lean_box(0); -x_726 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__7(x_323, x_724, x_691, x_695, x_698, x_13, x_321, x_701, x_681, x_38, x_723, x_725, x_6, x_7, x_8, x_9, x_10, x_11, x_713); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_321); -return x_726; -} -} +return x_701; } } default: { -lean_object* x_727; lean_object* x_728; lean_object* x_729; lean_object* x_730; lean_object* x_731; lean_object* x_732; lean_object* x_733; lean_object* x_734; lean_object* x_735; lean_object* x_736; lean_object* x_737; lean_object* x_738; lean_object* x_739; lean_object* x_740; lean_object* x_741; lean_object* x_742; lean_object* x_743; lean_object* x_744; lean_object* x_745; lean_object* x_746; lean_object* x_747; lean_object* x_748; lean_object* x_749; uint8_t x_750; -x_727 = lean_ctor_get(x_334, 0); -lean_inc(x_727); -x_728 = lean_ctor_get(x_334, 1); -lean_inc(x_728); +lean_object* x_702; lean_object* x_703; lean_object* x_704; lean_object* x_705; lean_object* x_706; lean_object* x_707; lean_object* x_708; lean_object* x_709; lean_object* x_710; lean_object* x_711; lean_object* x_712; lean_object* x_713; lean_object* x_714; lean_object* x_715; lean_object* x_716; lean_object* x_717; lean_object* x_718; lean_object* x_719; lean_object* x_720; lean_object* x_721; lean_object* x_722; lean_object* x_723; lean_object* x_724; uint8_t x_725; +lean_dec(x_428); +lean_dec(x_381); +x_702 = lean_ctor_get(x_334, 0); +lean_inc(x_702); +x_703 = lean_ctor_get(x_334, 1); +lean_inc(x_703); lean_dec(x_334); -x_729 = l_Lean_Elab_Term_getCurrMacroScope(x_6, x_7, x_8, x_9, x_10, x_11, x_728); +x_704 = l_Lean_Elab_Term_getCurrMacroScope(x_6, x_7, x_8, x_9, x_10, x_11, x_703); +x_705 = lean_ctor_get(x_704, 0); +lean_inc(x_705); +x_706 = lean_ctor_get(x_704, 1); +lean_inc(x_706); +lean_dec(x_704); +x_707 = l_Lean_Elab_Term_getMainModule___rarg(x_11, x_706); +x_708 = lean_ctor_get(x_707, 0); +lean_inc(x_708); +x_709 = lean_ctor_get(x_707, 1); +lean_inc(x_709); +lean_dec(x_707); +x_710 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__9; +x_711 = l_Lean_addMacroScope(x_708, x_710, x_705); +x_712 = l_Lean_instInhabitedSourceInfo___closed__1; +x_713 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__7; +x_714 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__21; +x_715 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_715, 0, x_712); +lean_ctor_set(x_715, 1, x_713); +lean_ctor_set(x_715, 2, x_711); +lean_ctor_set(x_715, 3, x_714); +x_716 = l_Array_empty___closed__1; +x_717 = lean_array_push(x_716, x_715); +x_718 = lean_array_push(x_716, x_4); +x_719 = l_Lean_nullKind___closed__2; +x_720 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_720, 0, x_719); +lean_ctor_set(x_720, 1, x_718); +x_721 = lean_array_push(x_717, x_720); +x_722 = l_myMacro____x40_Init_Notation___hyg_2022____closed__4; +x_723 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_723, 0, x_722); +lean_ctor_set(x_723, 1, x_721); +x_724 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__2___closed__1; +x_725 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3(x_320, x_724); +lean_dec(x_320); +if (x_725 == 0) +{ +lean_object* x_726; lean_object* x_727; lean_object* x_728; +x_726 = l_myMacro____x40_Init_Notation___hyg_2022____closed__2; +x_727 = lean_box(0); +x_728 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__7(x_323, x_726, x_712, x_716, x_719, x_13, x_321, x_722, x_702, x_38, x_723, x_727, x_6, x_7, x_8, x_9, x_10, x_11, x_709); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_321); +return x_728; +} +else +{ +lean_object* x_729; lean_object* x_730; lean_object* x_731; lean_object* x_732; lean_object* x_733; lean_object* x_734; lean_object* x_735; lean_object* x_736; lean_object* x_737; lean_object* x_738; lean_object* x_739; lean_object* x_740; lean_object* x_741; lean_object* x_742; lean_object* x_743; lean_object* x_744; lean_object* x_745; lean_object* x_746; lean_object* x_747; +x_729 = l_Lean_Elab_Term_getCurrMacroScope(x_6, x_7, x_8, x_9, x_10, x_11, x_709); x_730 = lean_ctor_get(x_729, 0); lean_inc(x_730); x_731 = lean_ctor_get(x_729, 1); @@ -21200,37 +21208,27 @@ lean_inc(x_733); x_734 = lean_ctor_get(x_732, 1); lean_inc(x_734); lean_dec(x_732); -x_735 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__9; +x_735 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__26; x_736 = l_Lean_addMacroScope(x_733, x_735, x_730); -x_737 = l_Lean_instInhabitedSourceInfo___closed__1; -x_738 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__7; -x_739 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__21; -x_740 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_740, 0, x_737); -lean_ctor_set(x_740, 1, x_738); -lean_ctor_set(x_740, 2, x_736); -lean_ctor_set(x_740, 3, x_739); -x_741 = l_Array_empty___closed__1; -x_742 = lean_array_push(x_741, x_740); -x_743 = lean_array_push(x_741, x_4); -x_744 = l_Lean_nullKind___closed__2; -x_745 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_745, 0, x_744); -lean_ctor_set(x_745, 1, x_743); -x_746 = lean_array_push(x_742, x_745); -x_747 = l_myMacro____x40_Init_Notation___hyg_2022____closed__4; -x_748 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_748, 0, x_747); -lean_ctor_set(x_748, 1, x_746); -x_749 = l_Lean_Parser_sepByElemParser___closed__1; -x_750 = lean_name_eq(x_360, x_749); -lean_dec(x_360); -if (x_750 == 0) -{ -lean_object* x_751; lean_object* x_752; lean_object* x_753; -x_751 = l_myMacro____x40_Init_Notation___hyg_2022____closed__2; -x_752 = lean_box(0); -x_753 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__8(x_323, x_751, x_737, x_741, x_744, x_13, x_321, x_747, x_727, x_38, x_748, x_752, x_6, x_7, x_8, x_9, x_10, x_11, x_734); +x_737 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__24; +x_738 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__28; +x_739 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_739, 0, x_712); +lean_ctor_set(x_739, 1, x_737); +lean_ctor_set(x_739, 2, x_736); +lean_ctor_set(x_739, 3, x_738); +x_740 = lean_array_push(x_716, x_739); +x_741 = lean_array_push(x_716, x_723); +x_742 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_742, 0, x_719); +lean_ctor_set(x_742, 1, x_741); +x_743 = lean_array_push(x_740, x_742); +x_744 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_744, 0, x_722); +lean_ctor_set(x_744, 1, x_743); +x_745 = l_myMacro____x40_Init_Notation___hyg_2022____closed__2; +x_746 = lean_box(0); +x_747 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__7(x_323, x_745, x_712, x_716, x_719, x_13, x_321, x_722, x_702, x_38, x_744, x_746, x_6, x_7, x_8, x_9, x_10, x_11, x_734); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); @@ -21238,44 +21236,63 @@ lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_321); -return x_753; +return x_747; } -else +} +} +} +default: { -lean_object* x_754; lean_object* x_755; lean_object* x_756; lean_object* x_757; lean_object* x_758; lean_object* x_759; lean_object* x_760; lean_object* x_761; lean_object* x_762; lean_object* x_763; lean_object* x_764; lean_object* x_765; lean_object* x_766; lean_object* x_767; lean_object* x_768; lean_object* x_769; lean_object* x_770; lean_object* x_771; lean_object* x_772; -x_754 = l_Lean_Elab_Term_getCurrMacroScope(x_6, x_7, x_8, x_9, x_10, x_11, x_734); -x_755 = lean_ctor_get(x_754, 0); +lean_object* x_748; lean_object* x_749; lean_object* x_750; lean_object* x_751; lean_object* x_752; lean_object* x_753; lean_object* x_754; lean_object* x_755; lean_object* x_756; lean_object* x_757; lean_object* x_758; lean_object* x_759; lean_object* x_760; lean_object* x_761; lean_object* x_762; lean_object* x_763; lean_object* x_764; lean_object* x_765; lean_object* x_766; lean_object* x_767; lean_object* x_768; lean_object* x_769; lean_object* x_770; uint8_t x_771; +lean_dec(x_381); +x_748 = lean_ctor_get(x_334, 0); +lean_inc(x_748); +x_749 = lean_ctor_get(x_334, 1); +lean_inc(x_749); +lean_dec(x_334); +x_750 = l_Lean_Elab_Term_getCurrMacroScope(x_6, x_7, x_8, x_9, x_10, x_11, x_749); +x_751 = lean_ctor_get(x_750, 0); +lean_inc(x_751); +x_752 = lean_ctor_get(x_750, 1); +lean_inc(x_752); +lean_dec(x_750); +x_753 = l_Lean_Elab_Term_getMainModule___rarg(x_11, x_752); +x_754 = lean_ctor_get(x_753, 0); +lean_inc(x_754); +x_755 = lean_ctor_get(x_753, 1); lean_inc(x_755); -x_756 = lean_ctor_get(x_754, 1); -lean_inc(x_756); -lean_dec(x_754); -x_757 = l_Lean_Elab_Term_getMainModule___rarg(x_11, x_756); -x_758 = lean_ctor_get(x_757, 0); -lean_inc(x_758); -x_759 = lean_ctor_get(x_757, 1); -lean_inc(x_759); -lean_dec(x_757); -x_760 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__26; -x_761 = l_Lean_addMacroScope(x_758, x_760, x_755); -x_762 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__24; -x_763 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__28; -x_764 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_764, 0, x_737); -lean_ctor_set(x_764, 1, x_762); -lean_ctor_set(x_764, 2, x_761); -lean_ctor_set(x_764, 3, x_763); -x_765 = lean_array_push(x_741, x_764); -x_766 = lean_array_push(x_741, x_748); -x_767 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_767, 0, x_744); -lean_ctor_set(x_767, 1, x_766); -x_768 = lean_array_push(x_765, x_767); +lean_dec(x_753); +x_756 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__9; +x_757 = l_Lean_addMacroScope(x_754, x_756, x_751); +x_758 = l_Lean_instInhabitedSourceInfo___closed__1; +x_759 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__7; +x_760 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__21; +x_761 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_761, 0, x_758); +lean_ctor_set(x_761, 1, x_759); +lean_ctor_set(x_761, 2, x_757); +lean_ctor_set(x_761, 3, x_760); +x_762 = l_Array_empty___closed__1; +x_763 = lean_array_push(x_762, x_761); +x_764 = lean_array_push(x_762, x_4); +x_765 = l_Lean_nullKind___closed__2; +x_766 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_766, 0, x_765); +lean_ctor_set(x_766, 1, x_764); +x_767 = lean_array_push(x_763, x_766); +x_768 = l_myMacro____x40_Init_Notation___hyg_2022____closed__4; x_769 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_769, 0, x_747); -lean_ctor_set(x_769, 1, x_768); -x_770 = l_myMacro____x40_Init_Notation___hyg_2022____closed__2; -x_771 = lean_box(0); -x_772 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__8(x_323, x_770, x_737, x_741, x_744, x_13, x_321, x_747, x_727, x_38, x_769, x_771, x_6, x_7, x_8, x_9, x_10, x_11, x_759); +lean_ctor_set(x_769, 0, x_768); +lean_ctor_set(x_769, 1, x_767); +x_770 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__2___closed__1; +x_771 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3(x_320, x_770); +lean_dec(x_320); +if (x_771 == 0) +{ +lean_object* x_772; lean_object* x_773; lean_object* x_774; +x_772 = l_myMacro____x40_Init_Notation___hyg_2022____closed__2; +x_773 = lean_box(0); +x_774 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__8(x_323, x_772, x_758, x_762, x_765, x_13, x_321, x_768, x_748, x_38, x_769, x_773, x_6, x_7, x_8, x_9, x_10, x_11, x_755); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); @@ -21283,7 +21300,52 @@ lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_321); -return x_772; +return x_774; +} +else +{ +lean_object* x_775; lean_object* x_776; lean_object* x_777; lean_object* x_778; lean_object* x_779; lean_object* x_780; lean_object* x_781; lean_object* x_782; lean_object* x_783; lean_object* x_784; lean_object* x_785; lean_object* x_786; lean_object* x_787; lean_object* x_788; lean_object* x_789; lean_object* x_790; lean_object* x_791; lean_object* x_792; lean_object* x_793; +x_775 = l_Lean_Elab_Term_getCurrMacroScope(x_6, x_7, x_8, x_9, x_10, x_11, x_755); +x_776 = lean_ctor_get(x_775, 0); +lean_inc(x_776); +x_777 = lean_ctor_get(x_775, 1); +lean_inc(x_777); +lean_dec(x_775); +x_778 = l_Lean_Elab_Term_getMainModule___rarg(x_11, x_777); +x_779 = lean_ctor_get(x_778, 0); +lean_inc(x_779); +x_780 = lean_ctor_get(x_778, 1); +lean_inc(x_780); +lean_dec(x_778); +x_781 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__26; +x_782 = l_Lean_addMacroScope(x_779, x_781, x_776); +x_783 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__24; +x_784 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__28; +x_785 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_785, 0, x_758); +lean_ctor_set(x_785, 1, x_783); +lean_ctor_set(x_785, 2, x_782); +lean_ctor_set(x_785, 3, x_784); +x_786 = lean_array_push(x_762, x_785); +x_787 = lean_array_push(x_762, x_769); +x_788 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_788, 0, x_765); +lean_ctor_set(x_788, 1, x_787); +x_789 = lean_array_push(x_786, x_788); +x_790 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_790, 0, x_768); +lean_ctor_set(x_790, 1, x_789); +x_791 = l_myMacro____x40_Init_Notation___hyg_2022____closed__2; +x_792 = lean_box(0); +x_793 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__8(x_323, x_791, x_758, x_762, x_765, x_13, x_321, x_768, x_748, x_38, x_790, x_792, x_6, x_7, x_8, x_9, x_10, x_11, x_780); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_321); +return x_793; } } } @@ -21291,7 +21353,7 @@ return x_772; } else { -uint8_t x_773; +uint8_t x_794; lean_dec(x_323); lean_dec(x_321); lean_dec(x_320); @@ -21303,177 +21365,116 @@ lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_4); -x_773 = !lean_is_exclusive(x_334); -if (x_773 == 0) +x_794 = !lean_is_exclusive(x_334); +if (x_794 == 0) { return x_334; } else { -lean_object* x_774; lean_object* x_775; lean_object* x_776; -x_774 = lean_ctor_get(x_334, 0); -x_775 = lean_ctor_get(x_334, 1); -lean_inc(x_775); -lean_inc(x_774); +lean_object* x_795; lean_object* x_796; lean_object* x_797; +x_795 = lean_ctor_get(x_334, 0); +x_796 = lean_ctor_get(x_334, 1); +lean_inc(x_796); +lean_inc(x_795); lean_dec(x_334); -x_776 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_776, 0, x_774); -lean_ctor_set(x_776, 1, x_775); -return x_776; +x_797 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_797, 0, x_795); +lean_ctor_set(x_797, 1, x_796); +return x_797; } } } else { -lean_object* x_777; lean_object* x_778; lean_object* x_779; lean_object* x_780; lean_object* x_781; lean_object* x_782; lean_object* x_783; lean_object* x_784; lean_object* x_785; lean_object* x_786; -x_777 = lean_ctor_get(x_326, 0); -x_778 = lean_ctor_get(x_326, 1); -x_779 = lean_ctor_get(x_326, 2); -x_780 = lean_ctor_get(x_326, 3); -lean_inc(x_780); -lean_inc(x_779); -lean_inc(x_778); -lean_inc(x_777); +lean_object* x_798; lean_object* x_799; lean_object* x_800; lean_object* x_801; lean_object* x_802; lean_object* x_803; lean_object* x_804; lean_object* x_805; lean_object* x_806; lean_object* x_807; +x_798 = lean_ctor_get(x_326, 0); +x_799 = lean_ctor_get(x_326, 1); +x_800 = lean_ctor_get(x_326, 2); +x_801 = lean_ctor_get(x_326, 3); +lean_inc(x_801); +lean_inc(x_800); +lean_inc(x_799); +lean_inc(x_798); lean_dec(x_326); -x_781 = lean_nat_add(x_778, x_24); -x_782 = lean_alloc_ctor(0, 4, 0); -lean_ctor_set(x_782, 0, x_777); -lean_ctor_set(x_782, 1, x_781); -lean_ctor_set(x_782, 2, x_779); -lean_ctor_set(x_782, 3, x_780); -x_783 = lean_st_ref_set(x_11, x_782, x_327); -x_784 = lean_ctor_get(x_783, 1); -lean_inc(x_784); -lean_dec(x_783); -x_785 = lean_alloc_ctor(0, 6, 3); -lean_ctor_set(x_785, 0, x_28); -lean_ctor_set(x_785, 1, x_29); -lean_ctor_set(x_785, 2, x_30); -lean_ctor_set(x_785, 3, x_31); -lean_ctor_set(x_785, 4, x_778); -lean_ctor_set(x_785, 5, x_35); -lean_ctor_set_uint8(x_785, sizeof(void*)*6, x_32); -lean_ctor_set_uint8(x_785, sizeof(void*)*6 + 1, x_33); -lean_ctor_set_uint8(x_785, sizeof(void*)*6 + 2, x_34); +x_802 = lean_nat_add(x_799, x_24); +x_803 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_803, 0, x_798); +lean_ctor_set(x_803, 1, x_802); +lean_ctor_set(x_803, 2, x_800); +lean_ctor_set(x_803, 3, x_801); +x_804 = lean_st_ref_set(x_11, x_803, x_327); +x_805 = lean_ctor_get(x_804, 1); +lean_inc(x_805); +lean_dec(x_804); +x_806 = lean_alloc_ctor(0, 6, 3); +lean_ctor_set(x_806, 0, x_28); +lean_ctor_set(x_806, 1, x_29); +lean_ctor_set(x_806, 2, x_30); +lean_ctor_set(x_806, 3, x_31); +lean_ctor_set(x_806, 4, x_799); +lean_ctor_set(x_806, 5, x_35); +lean_ctor_set_uint8(x_806, sizeof(void*)*6, x_32); +lean_ctor_set_uint8(x_806, sizeof(void*)*6 + 1, x_33); +lean_ctor_set_uint8(x_806, sizeof(void*)*6 + 2, x_34); lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); -x_786 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch(x_42, x_41, x_785, x_7, x_8, x_9, x_10, x_11, x_784); -if (lean_obj_tag(x_786) == 0) +x_807 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch(x_42, x_41, x_806, x_7, x_8, x_9, x_10, x_11, x_805); +if (lean_obj_tag(x_807) == 0) { if (lean_obj_tag(x_320) == 0) { -lean_object* x_787; lean_object* x_788; lean_object* x_789; lean_object* x_790; lean_object* x_791; lean_object* x_792; lean_object* x_793; lean_object* x_794; lean_object* x_795; lean_object* x_796; lean_object* x_797; lean_object* x_798; lean_object* x_799; lean_object* x_800; lean_object* x_801; lean_object* x_802; lean_object* x_803; lean_object* x_804; lean_object* x_805; lean_object* x_806; lean_object* x_807; lean_object* x_808; lean_object* x_809; lean_object* x_810; lean_object* x_811; -x_787 = lean_ctor_get(x_786, 0); -lean_inc(x_787); -x_788 = lean_ctor_get(x_786, 1); -lean_inc(x_788); -lean_dec(x_786); -x_789 = l_Lean_Elab_Term_getCurrMacroScope(x_6, x_7, x_8, x_9, x_10, x_11, x_788); -x_790 = lean_ctor_get(x_789, 0); -lean_inc(x_790); -x_791 = lean_ctor_get(x_789, 1); -lean_inc(x_791); -lean_dec(x_789); -x_792 = l_Lean_Elab_Term_getMainModule___rarg(x_11, x_791); -x_793 = lean_ctor_get(x_792, 0); -lean_inc(x_793); -x_794 = lean_ctor_get(x_792, 1); -lean_inc(x_794); -lean_dec(x_792); -x_795 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__9; -x_796 = l_Lean_addMacroScope(x_793, x_795, x_790); -x_797 = l_Lean_instInhabitedSourceInfo___closed__1; -x_798 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__7; -x_799 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__21; -x_800 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_800, 0, x_797); -lean_ctor_set(x_800, 1, x_798); -lean_ctor_set(x_800, 2, x_796); -lean_ctor_set(x_800, 3, x_799); -x_801 = l_Array_empty___closed__1; -x_802 = lean_array_push(x_801, x_800); -x_803 = lean_array_push(x_801, x_4); -x_804 = l_Lean_nullKind___closed__2; -x_805 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_805, 0, x_804); -lean_ctor_set(x_805, 1, x_803); -x_806 = lean_array_push(x_802, x_805); -x_807 = l_myMacro____x40_Init_Notation___hyg_2022____closed__4; -x_808 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_808, 0, x_807); -lean_ctor_set(x_808, 1, x_806); -x_809 = l_myMacro____x40_Init_Notation___hyg_2022____closed__2; -x_810 = lean_box(0); -x_811 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__3(x_323, x_809, x_797, x_801, x_804, x_13, x_321, x_807, x_787, x_38, x_808, x_810, x_6, x_7, x_8, x_9, x_10, x_11, x_794); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_321); -return x_811; -} -else -{ -lean_object* x_812; -x_812 = lean_ctor_get(x_320, 0); +lean_object* x_808; lean_object* x_809; lean_object* x_810; lean_object* x_811; lean_object* x_812; lean_object* x_813; lean_object* x_814; lean_object* x_815; lean_object* x_816; lean_object* x_817; lean_object* x_818; lean_object* x_819; lean_object* x_820; lean_object* x_821; lean_object* x_822; lean_object* x_823; lean_object* x_824; lean_object* x_825; lean_object* x_826; lean_object* x_827; lean_object* x_828; lean_object* x_829; lean_object* x_830; uint8_t x_831; +x_808 = lean_ctor_get(x_807, 0); +lean_inc(x_808); +x_809 = lean_ctor_get(x_807, 1); +lean_inc(x_809); +lean_dec(x_807); +x_810 = l_Lean_Elab_Term_getCurrMacroScope(x_6, x_7, x_8, x_9, x_10, x_11, x_809); +x_811 = lean_ctor_get(x_810, 0); +lean_inc(x_811); +x_812 = lean_ctor_get(x_810, 1); lean_inc(x_812); -lean_dec(x_320); -switch (lean_obj_tag(x_812)) { -case 0: -{ -lean_object* x_813; lean_object* x_814; lean_object* x_815; lean_object* x_816; lean_object* x_817; lean_object* x_818; lean_object* x_819; lean_object* x_820; lean_object* x_821; lean_object* x_822; lean_object* x_823; lean_object* x_824; lean_object* x_825; lean_object* x_826; lean_object* x_827; lean_object* x_828; lean_object* x_829; lean_object* x_830; lean_object* x_831; lean_object* x_832; lean_object* x_833; lean_object* x_834; lean_object* x_835; uint8_t x_836; -x_813 = lean_ctor_get(x_786, 0); -lean_inc(x_813); -x_814 = lean_ctor_get(x_786, 1); +lean_dec(x_810); +x_813 = l_Lean_Elab_Term_getMainModule___rarg(x_11, x_812); +x_814 = lean_ctor_get(x_813, 0); lean_inc(x_814); -lean_dec(x_786); -x_815 = l_Lean_Elab_Term_getCurrMacroScope(x_6, x_7, x_8, x_9, x_10, x_11, x_814); -x_816 = lean_ctor_get(x_815, 0); -lean_inc(x_816); -x_817 = lean_ctor_get(x_815, 1); -lean_inc(x_817); -lean_dec(x_815); -x_818 = l_Lean_Elab_Term_getMainModule___rarg(x_11, x_817); -x_819 = lean_ctor_get(x_818, 0); -lean_inc(x_819); -x_820 = lean_ctor_get(x_818, 1); -lean_inc(x_820); -lean_dec(x_818); -x_821 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__9; -x_822 = l_Lean_addMacroScope(x_819, x_821, x_816); -x_823 = l_Lean_instInhabitedSourceInfo___closed__1; -x_824 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__7; -x_825 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__21; -x_826 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_826, 0, x_823); +x_815 = lean_ctor_get(x_813, 1); +lean_inc(x_815); +lean_dec(x_813); +x_816 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__9; +x_817 = l_Lean_addMacroScope(x_814, x_816, x_811); +x_818 = l_Lean_instInhabitedSourceInfo___closed__1; +x_819 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__7; +x_820 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__21; +x_821 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_821, 0, x_818); +lean_ctor_set(x_821, 1, x_819); +lean_ctor_set(x_821, 2, x_817); +lean_ctor_set(x_821, 3, x_820); +x_822 = l_Array_empty___closed__1; +x_823 = lean_array_push(x_822, x_821); +x_824 = lean_array_push(x_822, x_4); +x_825 = l_Lean_nullKind___closed__2; +x_826 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_826, 0, x_825); lean_ctor_set(x_826, 1, x_824); -lean_ctor_set(x_826, 2, x_822); -lean_ctor_set(x_826, 3, x_825); -x_827 = l_Array_empty___closed__1; -x_828 = lean_array_push(x_827, x_826); -x_829 = lean_array_push(x_827, x_4); -x_830 = l_Lean_nullKind___closed__2; -x_831 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_831, 0, x_830); -lean_ctor_set(x_831, 1, x_829); -x_832 = lean_array_push(x_828, x_831); -x_833 = l_myMacro____x40_Init_Notation___hyg_2022____closed__4; -x_834 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_834, 0, x_833); -lean_ctor_set(x_834, 1, x_832); -x_835 = l_Lean_Parser_sepByElemParser___closed__1; -x_836 = lean_name_eq(x_812, x_835); -if (x_836 == 0) +x_827 = lean_array_push(x_823, x_826); +x_828 = l_myMacro____x40_Init_Notation___hyg_2022____closed__4; +x_829 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_829, 0, x_828); +lean_ctor_set(x_829, 1, x_827); +x_830 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__2___closed__1; +x_831 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3(x_320, x_830); +if (x_831 == 0) { -lean_object* x_837; lean_object* x_838; lean_object* x_839; -x_837 = l_myMacro____x40_Init_Notation___hyg_2022____closed__2; -x_838 = lean_box(0); -x_839 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__4(x_323, x_837, x_823, x_827, x_830, x_13, x_321, x_833, x_813, x_38, x_834, x_838, x_6, x_7, x_8, x_9, x_10, x_11, x_820); +lean_object* x_832; lean_object* x_833; lean_object* x_834; +x_832 = l_myMacro____x40_Init_Notation___hyg_2022____closed__2; +x_833 = lean_box(0); +x_834 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__3(x_323, x_832, x_818, x_822, x_825, x_13, x_321, x_828, x_808, x_38, x_829, x_833, x_6, x_7, x_8, x_9, x_10, x_11, x_815); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); @@ -21481,44 +21482,44 @@ lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_321); -return x_839; +return x_834; } else { -lean_object* x_840; lean_object* x_841; lean_object* x_842; lean_object* x_843; lean_object* x_844; lean_object* x_845; lean_object* x_846; lean_object* x_847; lean_object* x_848; lean_object* x_849; lean_object* x_850; lean_object* x_851; lean_object* x_852; lean_object* x_853; lean_object* x_854; lean_object* x_855; lean_object* x_856; lean_object* x_857; lean_object* x_858; -x_840 = l_Lean_Elab_Term_getCurrMacroScope(x_6, x_7, x_8, x_9, x_10, x_11, x_820); -x_841 = lean_ctor_get(x_840, 0); -lean_inc(x_841); -x_842 = lean_ctor_get(x_840, 1); -lean_inc(x_842); -lean_dec(x_840); -x_843 = l_Lean_Elab_Term_getMainModule___rarg(x_11, x_842); -x_844 = lean_ctor_get(x_843, 0); -lean_inc(x_844); -x_845 = lean_ctor_get(x_843, 1); -lean_inc(x_845); -lean_dec(x_843); -x_846 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__26; -x_847 = l_Lean_addMacroScope(x_844, x_846, x_841); -x_848 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__24; -x_849 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__28; -x_850 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_850, 0, x_823); -lean_ctor_set(x_850, 1, x_848); -lean_ctor_set(x_850, 2, x_847); -lean_ctor_set(x_850, 3, x_849); -x_851 = lean_array_push(x_827, x_850); -x_852 = lean_array_push(x_827, x_834); -x_853 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_853, 0, x_830); -lean_ctor_set(x_853, 1, x_852); -x_854 = lean_array_push(x_851, x_853); -x_855 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_855, 0, x_833); -lean_ctor_set(x_855, 1, x_854); -x_856 = l_myMacro____x40_Init_Notation___hyg_2022____closed__2; -x_857 = lean_box(0); -x_858 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__4(x_323, x_856, x_823, x_827, x_830, x_13, x_321, x_833, x_813, x_38, x_855, x_857, x_6, x_7, x_8, x_9, x_10, x_11, x_845); +lean_object* x_835; lean_object* x_836; lean_object* x_837; lean_object* x_838; lean_object* x_839; lean_object* x_840; lean_object* x_841; lean_object* x_842; lean_object* x_843; lean_object* x_844; lean_object* x_845; lean_object* x_846; lean_object* x_847; lean_object* x_848; lean_object* x_849; lean_object* x_850; lean_object* x_851; lean_object* x_852; lean_object* x_853; +x_835 = l_Lean_Elab_Term_getCurrMacroScope(x_6, x_7, x_8, x_9, x_10, x_11, x_815); +x_836 = lean_ctor_get(x_835, 0); +lean_inc(x_836); +x_837 = lean_ctor_get(x_835, 1); +lean_inc(x_837); +lean_dec(x_835); +x_838 = l_Lean_Elab_Term_getMainModule___rarg(x_11, x_837); +x_839 = lean_ctor_get(x_838, 0); +lean_inc(x_839); +x_840 = lean_ctor_get(x_838, 1); +lean_inc(x_840); +lean_dec(x_838); +x_841 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__26; +x_842 = l_Lean_addMacroScope(x_839, x_841, x_836); +x_843 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__24; +x_844 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__28; +x_845 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_845, 0, x_818); +lean_ctor_set(x_845, 1, x_843); +lean_ctor_set(x_845, 2, x_842); +lean_ctor_set(x_845, 3, x_844); +x_846 = lean_array_push(x_822, x_845); +x_847 = lean_array_push(x_822, x_829); +x_848 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_848, 0, x_825); +lean_ctor_set(x_848, 1, x_847); +x_849 = lean_array_push(x_846, x_848); +x_850 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_850, 0, x_828); +lean_ctor_set(x_850, 1, x_849); +x_851 = l_myMacro____x40_Init_Notation___hyg_2022____closed__2; +x_852 = lean_box(0); +x_853 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__3(x_323, x_851, x_818, x_822, x_825, x_13, x_321, x_828, x_808, x_38, x_850, x_852, x_6, x_7, x_8, x_9, x_10, x_11, x_840); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); @@ -21526,74 +21527,66 @@ lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_321); -return x_858; +return x_853; } } -case 1: +else { -lean_object* x_859; -x_859 = lean_ctor_get(x_812, 0); -lean_inc(x_859); -switch (lean_obj_tag(x_859)) { +lean_object* x_854; +x_854 = lean_ctor_get(x_320, 0); +lean_inc(x_854); +switch (lean_obj_tag(x_854)) { case 0: { -lean_object* x_860; lean_object* x_861; lean_object* x_862; lean_object* x_863; uint8_t x_864; -x_860 = lean_ctor_get(x_786, 0); -lean_inc(x_860); -x_861 = lean_ctor_get(x_786, 1); +lean_object* x_855; lean_object* x_856; lean_object* x_857; lean_object* x_858; lean_object* x_859; lean_object* x_860; lean_object* x_861; lean_object* x_862; lean_object* x_863; lean_object* x_864; lean_object* x_865; lean_object* x_866; lean_object* x_867; lean_object* x_868; lean_object* x_869; lean_object* x_870; lean_object* x_871; lean_object* x_872; lean_object* x_873; lean_object* x_874; lean_object* x_875; lean_object* x_876; lean_object* x_877; uint8_t x_878; +x_855 = lean_ctor_get(x_807, 0); +lean_inc(x_855); +x_856 = lean_ctor_get(x_807, 1); +lean_inc(x_856); +lean_dec(x_807); +x_857 = l_Lean_Elab_Term_getCurrMacroScope(x_6, x_7, x_8, x_9, x_10, x_11, x_856); +x_858 = lean_ctor_get(x_857, 0); +lean_inc(x_858); +x_859 = lean_ctor_get(x_857, 1); +lean_inc(x_859); +lean_dec(x_857); +x_860 = l_Lean_Elab_Term_getMainModule___rarg(x_11, x_859); +x_861 = lean_ctor_get(x_860, 0); lean_inc(x_861); -lean_dec(x_786); -x_862 = lean_ctor_get(x_812, 1); +x_862 = lean_ctor_get(x_860, 1); lean_inc(x_862); -x_863 = l_myMacro____x40_Init_Notation___hyg_876____closed__1; -x_864 = lean_string_dec_eq(x_862, x_863); -lean_dec(x_862); -if (x_864 == 0) -{ -lean_object* x_865; lean_object* x_866; lean_object* x_867; lean_object* x_868; lean_object* x_869; lean_object* x_870; lean_object* x_871; lean_object* x_872; lean_object* x_873; lean_object* x_874; lean_object* x_875; lean_object* x_876; lean_object* x_877; lean_object* x_878; lean_object* x_879; lean_object* x_880; lean_object* x_881; lean_object* x_882; lean_object* x_883; lean_object* x_884; lean_object* x_885; uint8_t x_886; -x_865 = l_Lean_Elab_Term_getCurrMacroScope(x_6, x_7, x_8, x_9, x_10, x_11, x_861); -x_866 = lean_ctor_get(x_865, 0); -lean_inc(x_866); -x_867 = lean_ctor_get(x_865, 1); -lean_inc(x_867); -lean_dec(x_865); -x_868 = l_Lean_Elab_Term_getMainModule___rarg(x_11, x_867); -x_869 = lean_ctor_get(x_868, 0); -lean_inc(x_869); -x_870 = lean_ctor_get(x_868, 1); -lean_inc(x_870); -lean_dec(x_868); -x_871 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__9; -x_872 = l_Lean_addMacroScope(x_869, x_871, x_866); -x_873 = l_Lean_instInhabitedSourceInfo___closed__1; -x_874 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__7; -x_875 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__21; -x_876 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_876, 0, x_873); +lean_dec(x_860); +x_863 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__9; +x_864 = l_Lean_addMacroScope(x_861, x_863, x_858); +x_865 = l_Lean_instInhabitedSourceInfo___closed__1; +x_866 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__7; +x_867 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__21; +x_868 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_868, 0, x_865); +lean_ctor_set(x_868, 1, x_866); +lean_ctor_set(x_868, 2, x_864); +lean_ctor_set(x_868, 3, x_867); +x_869 = l_Array_empty___closed__1; +x_870 = lean_array_push(x_869, x_868); +x_871 = lean_array_push(x_869, x_4); +x_872 = l_Lean_nullKind___closed__2; +x_873 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_873, 0, x_872); +lean_ctor_set(x_873, 1, x_871); +x_874 = lean_array_push(x_870, x_873); +x_875 = l_myMacro____x40_Init_Notation___hyg_2022____closed__4; +x_876 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_876, 0, x_875); lean_ctor_set(x_876, 1, x_874); -lean_ctor_set(x_876, 2, x_872); -lean_ctor_set(x_876, 3, x_875); -x_877 = l_Array_empty___closed__1; -x_878 = lean_array_push(x_877, x_876); -x_879 = lean_array_push(x_877, x_4); -x_880 = l_Lean_nullKind___closed__2; -x_881 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_881, 0, x_880); -lean_ctor_set(x_881, 1, x_879); -x_882 = lean_array_push(x_878, x_881); -x_883 = l_myMacro____x40_Init_Notation___hyg_2022____closed__4; -x_884 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_884, 0, x_883); -lean_ctor_set(x_884, 1, x_882); -x_885 = l_Lean_Parser_sepByElemParser___closed__1; -x_886 = lean_name_eq(x_812, x_885); -lean_dec(x_812); -if (x_886 == 0) +x_877 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__2___closed__1; +x_878 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3(x_320, x_877); +lean_dec(x_320); +if (x_878 == 0) { -lean_object* x_887; lean_object* x_888; lean_object* x_889; -x_887 = l_myMacro____x40_Init_Notation___hyg_2022____closed__2; -x_888 = lean_box(0); -x_889 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__5(x_323, x_887, x_873, x_877, x_880, x_13, x_321, x_883, x_860, x_38, x_884, x_888, x_6, x_7, x_8, x_9, x_10, x_11, x_870); +lean_object* x_879; lean_object* x_880; lean_object* x_881; +x_879 = l_myMacro____x40_Init_Notation___hyg_2022____closed__2; +x_880 = lean_box(0); +x_881 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__4(x_323, x_879, x_865, x_869, x_872, x_13, x_321, x_875, x_855, x_38, x_876, x_880, x_6, x_7, x_8, x_9, x_10, x_11, x_862); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); @@ -21601,44 +21594,44 @@ lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_321); -return x_889; +return x_881; } else { -lean_object* x_890; lean_object* x_891; lean_object* x_892; lean_object* x_893; lean_object* x_894; lean_object* x_895; lean_object* x_896; lean_object* x_897; lean_object* x_898; lean_object* x_899; lean_object* x_900; lean_object* x_901; lean_object* x_902; lean_object* x_903; lean_object* x_904; lean_object* x_905; lean_object* x_906; lean_object* x_907; lean_object* x_908; -x_890 = l_Lean_Elab_Term_getCurrMacroScope(x_6, x_7, x_8, x_9, x_10, x_11, x_870); -x_891 = lean_ctor_get(x_890, 0); -lean_inc(x_891); -x_892 = lean_ctor_get(x_890, 1); -lean_inc(x_892); -lean_dec(x_890); -x_893 = l_Lean_Elab_Term_getMainModule___rarg(x_11, x_892); -x_894 = lean_ctor_get(x_893, 0); -lean_inc(x_894); -x_895 = lean_ctor_get(x_893, 1); -lean_inc(x_895); -lean_dec(x_893); -x_896 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__26; -x_897 = l_Lean_addMacroScope(x_894, x_896, x_891); -x_898 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__24; -x_899 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__28; -x_900 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_900, 0, x_873); -lean_ctor_set(x_900, 1, x_898); -lean_ctor_set(x_900, 2, x_897); -lean_ctor_set(x_900, 3, x_899); -x_901 = lean_array_push(x_877, x_900); -x_902 = lean_array_push(x_877, x_884); -x_903 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_903, 0, x_880); -lean_ctor_set(x_903, 1, x_902); -x_904 = lean_array_push(x_901, x_903); -x_905 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_905, 0, x_883); -lean_ctor_set(x_905, 1, x_904); -x_906 = l_myMacro____x40_Init_Notation___hyg_2022____closed__2; -x_907 = lean_box(0); -x_908 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__5(x_323, x_906, x_873, x_877, x_880, x_13, x_321, x_883, x_860, x_38, x_905, x_907, x_6, x_7, x_8, x_9, x_10, x_11, x_895); +lean_object* x_882; lean_object* x_883; lean_object* x_884; lean_object* x_885; lean_object* x_886; lean_object* x_887; lean_object* x_888; lean_object* x_889; lean_object* x_890; lean_object* x_891; lean_object* x_892; lean_object* x_893; lean_object* x_894; lean_object* x_895; lean_object* x_896; lean_object* x_897; lean_object* x_898; lean_object* x_899; lean_object* x_900; +x_882 = l_Lean_Elab_Term_getCurrMacroScope(x_6, x_7, x_8, x_9, x_10, x_11, x_862); +x_883 = lean_ctor_get(x_882, 0); +lean_inc(x_883); +x_884 = lean_ctor_get(x_882, 1); +lean_inc(x_884); +lean_dec(x_882); +x_885 = l_Lean_Elab_Term_getMainModule___rarg(x_11, x_884); +x_886 = lean_ctor_get(x_885, 0); +lean_inc(x_886); +x_887 = lean_ctor_get(x_885, 1); +lean_inc(x_887); +lean_dec(x_885); +x_888 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__26; +x_889 = l_Lean_addMacroScope(x_886, x_888, x_883); +x_890 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__24; +x_891 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__28; +x_892 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_892, 0, x_865); +lean_ctor_set(x_892, 1, x_890); +lean_ctor_set(x_892, 2, x_889); +lean_ctor_set(x_892, 3, x_891); +x_893 = lean_array_push(x_869, x_892); +x_894 = lean_array_push(x_869, x_876); +x_895 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_895, 0, x_872); +lean_ctor_set(x_895, 1, x_894); +x_896 = lean_array_push(x_893, x_895); +x_897 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_897, 0, x_875); +lean_ctor_set(x_897, 1, x_896); +x_898 = l_myMacro____x40_Init_Notation___hyg_2022____closed__2; +x_899 = lean_box(0); +x_900 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__4(x_323, x_898, x_865, x_869, x_872, x_13, x_321, x_875, x_855, x_38, x_897, x_899, x_6, x_7, x_8, x_9, x_10, x_11, x_887); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); @@ -21646,344 +21639,359 @@ lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_321); -return x_908; -} -} -else -{ -lean_object* x_909; size_t x_910; size_t x_911; lean_object* x_912; lean_object* x_913; lean_object* x_914; lean_object* x_915; lean_object* x_916; lean_object* x_917; lean_object* x_918; lean_object* x_919; lean_object* x_920; lean_object* x_921; lean_object* x_922; lean_object* x_923; lean_object* x_924; lean_object* x_925; lean_object* x_926; lean_object* x_927; lean_object* x_928; lean_object* x_929; lean_object* x_930; lean_object* x_931; lean_object* x_932; lean_object* x_933; lean_object* x_934; lean_object* x_935; lean_object* x_936; lean_object* x_937; lean_object* x_938; lean_object* x_939; lean_object* x_940; lean_object* x_941; lean_object* x_942; lean_object* x_943; lean_object* x_944; lean_object* x_945; lean_object* x_946; lean_object* x_947; lean_object* x_948; lean_object* x_949; lean_object* x_950; lean_object* x_951; lean_object* x_952; lean_object* x_953; lean_object* x_954; lean_object* x_955; lean_object* x_956; lean_object* x_957; lean_object* x_958; lean_object* x_959; lean_object* x_960; lean_object* x_961; lean_object* x_962; lean_object* x_963; lean_object* x_964; lean_object* x_965; lean_object* x_966; lean_object* x_967; lean_object* x_968; lean_object* x_969; lean_object* x_970; lean_object* x_971; lean_object* x_972; lean_object* x_973; lean_object* x_974; lean_object* x_975; lean_object* x_976; lean_object* x_977; lean_object* x_978; lean_object* x_979; lean_object* x_980; lean_object* x_981; lean_object* x_982; lean_object* x_983; lean_object* x_984; lean_object* x_985; lean_object* x_986; lean_object* x_987; lean_object* x_988; lean_object* x_989; lean_object* x_990; lean_object* x_991; lean_object* x_992; lean_object* x_993; lean_object* x_994; lean_object* x_995; lean_object* x_996; lean_object* x_997; lean_object* x_998; lean_object* x_999; lean_object* x_1000; lean_object* x_1001; lean_object* x_1002; lean_object* x_1003; lean_object* x_1004; lean_object* x_1005; -lean_dec(x_812); -x_909 = lean_array_get_size(x_323); -x_910 = lean_usize_of_nat(x_909); -lean_dec(x_909); -x_911 = 0; -lean_inc(x_38); -x_912 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__11(x_323, x_910, x_911, x_38, x_6, x_7, x_8, x_9, x_10, x_11, x_861); -x_913 = lean_ctor_get(x_912, 0); -lean_inc(x_913); -x_914 = lean_ctor_get(x_912, 1); -lean_inc(x_914); -lean_dec(x_912); -x_915 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__12(x_323, x_910, x_911, x_38, x_6, x_7, x_8, x_9, x_10, x_11, x_914); -lean_dec(x_323); -x_916 = lean_ctor_get(x_915, 0); -lean_inc(x_916); -x_917 = lean_ctor_get(x_915, 1); -lean_inc(x_917); -lean_dec(x_915); -x_918 = l_Lean_Elab_Term_getCurrMacroScope(x_6, x_7, x_8, x_9, x_10, x_11, x_917); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -x_919 = lean_ctor_get(x_918, 0); -lean_inc(x_919); -x_920 = lean_ctor_get(x_918, 1); -lean_inc(x_920); -lean_dec(x_918); -x_921 = l_Lean_Elab_Term_getMainModule___rarg(x_11, x_920); -lean_dec(x_11); -x_922 = lean_ctor_get(x_921, 0); -lean_inc(x_922); -x_923 = lean_ctor_get(x_921, 1); -lean_inc(x_923); -if (lean_is_exclusive(x_921)) { - lean_ctor_release(x_921, 0); - lean_ctor_release(x_921, 1); - x_924 = x_921; -} else { - lean_dec_ref(x_921); - x_924 = lean_box(0); -} -x_925 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__13; -lean_inc(x_919); -lean_inc(x_922); -x_926 = l_Lean_addMacroScope(x_922, x_925, x_919); -x_927 = l_Lean_instInhabitedSourceInfo___closed__1; -x_928 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__12; -x_929 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_929, 0, x_927); -lean_ctor_set(x_929, 1, x_928); -lean_ctor_set(x_929, 2, x_926); -lean_ctor_set(x_929, 3, x_13); -x_930 = l_Array_empty___closed__1; -lean_inc(x_929); -x_931 = lean_array_push(x_930, x_929); -x_932 = l_myMacro____x40_Init_Notation___hyg_1130____closed__23; -x_933 = lean_array_push(x_931, x_932); -x_934 = lean_array_push(x_933, x_932); -x_935 = l_myMacro____x40_Init_Notation___hyg_12942____closed__14; -x_936 = lean_array_push(x_934, x_935); -x_937 = lean_array_push(x_936, x_4); -x_938 = l_myMacro____x40_Init_Notation___hyg_12942____closed__8; -x_939 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_939, 0, x_938); -lean_ctor_set(x_939, 1, x_937); -x_940 = lean_array_push(x_930, x_939); -x_941 = l_myMacro____x40_Init_Notation___hyg_12942____closed__6; -x_942 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_942, 0, x_941); -lean_ctor_set(x_942, 1, x_940); -x_943 = l_myMacro____x40_Init_Notation___hyg_12942____closed__4; -x_944 = lean_array_push(x_943, x_942); -x_945 = l_myMacro____x40_Init_Notation___hyg_12942____closed__18; -x_946 = lean_array_push(x_944, x_945); -x_947 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__35; -x_948 = l_Lean_addMacroScope(x_922, x_947, x_919); -x_949 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__33; -x_950 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_950, 0, x_927); -lean_ctor_set(x_950, 1, x_949); -lean_ctor_set(x_950, 2, x_948); -lean_ctor_set(x_950, 3, x_13); -x_951 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__30; -x_952 = lean_array_push(x_951, x_950); -x_953 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__37; -x_954 = lean_array_push(x_952, x_953); -x_955 = lean_array_push(x_954, x_916); -x_956 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__39; -x_957 = lean_array_push(x_955, x_956); -x_958 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_261____closed__19; -x_959 = lean_array_push(x_958, x_929); -x_960 = l_Lean_Parser_Term_matchDiscr___elambda__1___closed__1; -x_961 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_961, 0, x_960); -lean_ctor_set(x_961, 1, x_959); -x_962 = lean_array_push(x_930, x_961); -x_963 = l_Lean_nullKind___closed__2; -x_964 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_964, 0, x_963); -lean_ctor_set(x_964, 1, x_962); -x_965 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__41; -x_966 = lean_array_push(x_965, x_964); -x_967 = lean_array_push(x_966, x_932); -x_968 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__42; -x_969 = lean_array_push(x_967, x_968); -x_970 = l_Lean_nullKind; -x_971 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_971, 0, x_970); -lean_ctor_set(x_971, 1, x_321); -x_972 = l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__2___lambda__1___closed__2; -x_973 = lean_array_push(x_972, x_971); -x_974 = l_myMacro____x40_Init_Notation___hyg_658____closed__8; -x_975 = lean_array_push(x_973, x_974); -x_976 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4152____closed__1; -x_977 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_977, 0, x_976); -lean_ctor_set(x_977, 1, x_975); -x_978 = lean_array_push(x_930, x_977); -x_979 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_979, 0, x_963); -lean_ctor_set(x_979, 1, x_978); -x_980 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__43; -x_981 = lean_array_push(x_980, x_979); -x_982 = l_myMacro____x40_Init_Notation___hyg_11187____closed__17; -x_983 = lean_array_push(x_981, x_982); -x_984 = lean_array_push(x_983, x_913); -x_985 = l_Lean_Parser_Term_matchAlt___closed__1; -x_986 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_986, 0, x_985); -lean_ctor_set(x_986, 1, x_984); -x_987 = lean_array_push(x_930, x_986); -x_988 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__45; -x_989 = lean_array_push(x_988, x_860); -x_990 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_990, 0, x_985); -lean_ctor_set(x_990, 1, x_989); -x_991 = lean_array_push(x_987, x_990); -x_992 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_992, 0, x_963); -lean_ctor_set(x_992, 1, x_991); -x_993 = lean_array_push(x_930, x_992); -x_994 = l_Lean_Parser_Term_matchAlts___elambda__1___closed__1; -x_995 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_995, 0, x_994); -lean_ctor_set(x_995, 1, x_993); -x_996 = lean_array_push(x_969, x_995); -x_997 = l_Lean_Parser_Term_match___elambda__1___closed__1; -x_998 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_998, 0, x_997); -lean_ctor_set(x_998, 1, x_996); -x_999 = lean_array_push(x_957, x_998); -x_1000 = l_termIf__Then__Else_____closed__2; -x_1001 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1001, 0, x_1000); -lean_ctor_set(x_1001, 1, x_999); -x_1002 = lean_array_push(x_946, x_1001); -x_1003 = l_myMacro____x40_Init_Notation___hyg_12942____closed__2; -x_1004 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1004, 0, x_1003); -lean_ctor_set(x_1004, 1, x_1002); -if (lean_is_scalar(x_924)) { - x_1005 = lean_alloc_ctor(0, 2, 0); -} else { - x_1005 = x_924; -} -lean_ctor_set(x_1005, 0, x_1004); -lean_ctor_set(x_1005, 1, x_923); -return x_1005; +return x_900; } } case 1: { -lean_object* x_1006; lean_object* x_1007; lean_object* x_1008; lean_object* x_1009; lean_object* x_1010; lean_object* x_1011; lean_object* x_1012; lean_object* x_1013; lean_object* x_1014; lean_object* x_1015; lean_object* x_1016; lean_object* x_1017; lean_object* x_1018; lean_object* x_1019; lean_object* x_1020; lean_object* x_1021; lean_object* x_1022; lean_object* x_1023; lean_object* x_1024; lean_object* x_1025; lean_object* x_1026; lean_object* x_1027; lean_object* x_1028; uint8_t x_1029; -lean_dec(x_859); -x_1006 = lean_ctor_get(x_786, 0); -lean_inc(x_1006); -x_1007 = lean_ctor_get(x_786, 1); -lean_inc(x_1007); -lean_dec(x_786); -x_1008 = l_Lean_Elab_Term_getCurrMacroScope(x_6, x_7, x_8, x_9, x_10, x_11, x_1007); -x_1009 = lean_ctor_get(x_1008, 0); -lean_inc(x_1009); -x_1010 = lean_ctor_get(x_1008, 1); -lean_inc(x_1010); -lean_dec(x_1008); -x_1011 = l_Lean_Elab_Term_getMainModule___rarg(x_11, x_1010); -x_1012 = lean_ctor_get(x_1011, 0); -lean_inc(x_1012); -x_1013 = lean_ctor_get(x_1011, 1); -lean_inc(x_1013); -lean_dec(x_1011); -x_1014 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__9; -x_1015 = l_Lean_addMacroScope(x_1012, x_1014, x_1009); -x_1016 = l_Lean_instInhabitedSourceInfo___closed__1; -x_1017 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__7; -x_1018 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__21; -x_1019 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1019, 0, x_1016); +lean_object* x_901; +x_901 = lean_ctor_get(x_854, 0); +lean_inc(x_901); +switch (lean_obj_tag(x_901)) { +case 0: +{ +lean_object* x_902; lean_object* x_903; lean_object* x_904; lean_object* x_905; uint8_t x_906; +x_902 = lean_ctor_get(x_807, 0); +lean_inc(x_902); +x_903 = lean_ctor_get(x_807, 1); +lean_inc(x_903); +lean_dec(x_807); +x_904 = lean_ctor_get(x_854, 1); +lean_inc(x_904); +lean_dec(x_854); +x_905 = l_myMacro____x40_Init_Notation___hyg_876____closed__1; +x_906 = lean_string_dec_eq(x_904, x_905); +lean_dec(x_904); +if (x_906 == 0) +{ +lean_object* x_907; lean_object* x_908; lean_object* x_909; lean_object* x_910; lean_object* x_911; lean_object* x_912; lean_object* x_913; lean_object* x_914; lean_object* x_915; lean_object* x_916; lean_object* x_917; lean_object* x_918; lean_object* x_919; lean_object* x_920; lean_object* x_921; lean_object* x_922; lean_object* x_923; lean_object* x_924; lean_object* x_925; lean_object* x_926; lean_object* x_927; uint8_t x_928; +x_907 = l_Lean_Elab_Term_getCurrMacroScope(x_6, x_7, x_8, x_9, x_10, x_11, x_903); +x_908 = lean_ctor_get(x_907, 0); +lean_inc(x_908); +x_909 = lean_ctor_get(x_907, 1); +lean_inc(x_909); +lean_dec(x_907); +x_910 = l_Lean_Elab_Term_getMainModule___rarg(x_11, x_909); +x_911 = lean_ctor_get(x_910, 0); +lean_inc(x_911); +x_912 = lean_ctor_get(x_910, 1); +lean_inc(x_912); +lean_dec(x_910); +x_913 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__9; +x_914 = l_Lean_addMacroScope(x_911, x_913, x_908); +x_915 = l_Lean_instInhabitedSourceInfo___closed__1; +x_916 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__7; +x_917 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__21; +x_918 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_918, 0, x_915); +lean_ctor_set(x_918, 1, x_916); +lean_ctor_set(x_918, 2, x_914); +lean_ctor_set(x_918, 3, x_917); +x_919 = l_Array_empty___closed__1; +x_920 = lean_array_push(x_919, x_918); +x_921 = lean_array_push(x_919, x_4); +x_922 = l_Lean_nullKind___closed__2; +x_923 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_923, 0, x_922); +lean_ctor_set(x_923, 1, x_921); +x_924 = lean_array_push(x_920, x_923); +x_925 = l_myMacro____x40_Init_Notation___hyg_2022____closed__4; +x_926 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_926, 0, x_925); +lean_ctor_set(x_926, 1, x_924); +x_927 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__2___closed__1; +x_928 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3(x_320, x_927); +lean_dec(x_320); +if (x_928 == 0) +{ +lean_object* x_929; lean_object* x_930; lean_object* x_931; +x_929 = l_myMacro____x40_Init_Notation___hyg_2022____closed__2; +x_930 = lean_box(0); +x_931 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__5(x_323, x_929, x_915, x_919, x_922, x_13, x_321, x_925, x_902, x_38, x_926, x_930, x_6, x_7, x_8, x_9, x_10, x_11, x_912); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_321); +return x_931; +} +else +{ +lean_object* x_932; lean_object* x_933; lean_object* x_934; lean_object* x_935; lean_object* x_936; lean_object* x_937; lean_object* x_938; lean_object* x_939; lean_object* x_940; lean_object* x_941; lean_object* x_942; lean_object* x_943; lean_object* x_944; lean_object* x_945; lean_object* x_946; lean_object* x_947; lean_object* x_948; lean_object* x_949; lean_object* x_950; +x_932 = l_Lean_Elab_Term_getCurrMacroScope(x_6, x_7, x_8, x_9, x_10, x_11, x_912); +x_933 = lean_ctor_get(x_932, 0); +lean_inc(x_933); +x_934 = lean_ctor_get(x_932, 1); +lean_inc(x_934); +lean_dec(x_932); +x_935 = l_Lean_Elab_Term_getMainModule___rarg(x_11, x_934); +x_936 = lean_ctor_get(x_935, 0); +lean_inc(x_936); +x_937 = lean_ctor_get(x_935, 1); +lean_inc(x_937); +lean_dec(x_935); +x_938 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__26; +x_939 = l_Lean_addMacroScope(x_936, x_938, x_933); +x_940 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__24; +x_941 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__28; +x_942 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_942, 0, x_915); +lean_ctor_set(x_942, 1, x_940); +lean_ctor_set(x_942, 2, x_939); +lean_ctor_set(x_942, 3, x_941); +x_943 = lean_array_push(x_919, x_942); +x_944 = lean_array_push(x_919, x_926); +x_945 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_945, 0, x_922); +lean_ctor_set(x_945, 1, x_944); +x_946 = lean_array_push(x_943, x_945); +x_947 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_947, 0, x_925); +lean_ctor_set(x_947, 1, x_946); +x_948 = l_myMacro____x40_Init_Notation___hyg_2022____closed__2; +x_949 = lean_box(0); +x_950 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__5(x_323, x_948, x_915, x_919, x_922, x_13, x_321, x_925, x_902, x_38, x_947, x_949, x_6, x_7, x_8, x_9, x_10, x_11, x_937); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_321); +return x_950; +} +} +else +{ +lean_object* x_951; size_t x_952; size_t x_953; lean_object* x_954; lean_object* x_955; lean_object* x_956; lean_object* x_957; lean_object* x_958; lean_object* x_959; lean_object* x_960; lean_object* x_961; lean_object* x_962; lean_object* x_963; lean_object* x_964; lean_object* x_965; lean_object* x_966; lean_object* x_967; lean_object* x_968; lean_object* x_969; lean_object* x_970; lean_object* x_971; lean_object* x_972; lean_object* x_973; lean_object* x_974; lean_object* x_975; lean_object* x_976; lean_object* x_977; lean_object* x_978; lean_object* x_979; lean_object* x_980; lean_object* x_981; lean_object* x_982; lean_object* x_983; lean_object* x_984; lean_object* x_985; lean_object* x_986; lean_object* x_987; lean_object* x_988; lean_object* x_989; lean_object* x_990; lean_object* x_991; lean_object* x_992; lean_object* x_993; lean_object* x_994; lean_object* x_995; lean_object* x_996; lean_object* x_997; lean_object* x_998; lean_object* x_999; lean_object* x_1000; lean_object* x_1001; lean_object* x_1002; lean_object* x_1003; lean_object* x_1004; lean_object* x_1005; lean_object* x_1006; lean_object* x_1007; lean_object* x_1008; lean_object* x_1009; lean_object* x_1010; lean_object* x_1011; lean_object* x_1012; lean_object* x_1013; lean_object* x_1014; lean_object* x_1015; lean_object* x_1016; lean_object* x_1017; lean_object* x_1018; lean_object* x_1019; lean_object* x_1020; lean_object* x_1021; lean_object* x_1022; lean_object* x_1023; lean_object* x_1024; lean_object* x_1025; lean_object* x_1026; lean_object* x_1027; lean_object* x_1028; lean_object* x_1029; lean_object* x_1030; lean_object* x_1031; lean_object* x_1032; lean_object* x_1033; lean_object* x_1034; lean_object* x_1035; lean_object* x_1036; lean_object* x_1037; lean_object* x_1038; lean_object* x_1039; lean_object* x_1040; lean_object* x_1041; lean_object* x_1042; lean_object* x_1043; lean_object* x_1044; lean_object* x_1045; lean_object* x_1046; lean_object* x_1047; +lean_dec(x_320); +x_951 = lean_array_get_size(x_323); +x_952 = lean_usize_of_nat(x_951); +lean_dec(x_951); +x_953 = 0; +lean_inc(x_38); +x_954 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__10(x_323, x_952, x_953, x_38, x_6, x_7, x_8, x_9, x_10, x_11, x_903); +x_955 = lean_ctor_get(x_954, 0); +lean_inc(x_955); +x_956 = lean_ctor_get(x_954, 1); +lean_inc(x_956); +lean_dec(x_954); +x_957 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__11(x_323, x_952, x_953, x_38, x_6, x_7, x_8, x_9, x_10, x_11, x_956); +lean_dec(x_323); +x_958 = lean_ctor_get(x_957, 0); +lean_inc(x_958); +x_959 = lean_ctor_get(x_957, 1); +lean_inc(x_959); +lean_dec(x_957); +x_960 = l_Lean_Elab_Term_getCurrMacroScope(x_6, x_7, x_8, x_9, x_10, x_11, x_959); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +x_961 = lean_ctor_get(x_960, 0); +lean_inc(x_961); +x_962 = lean_ctor_get(x_960, 1); +lean_inc(x_962); +lean_dec(x_960); +x_963 = l_Lean_Elab_Term_getMainModule___rarg(x_11, x_962); +lean_dec(x_11); +x_964 = lean_ctor_get(x_963, 0); +lean_inc(x_964); +x_965 = lean_ctor_get(x_963, 1); +lean_inc(x_965); +if (lean_is_exclusive(x_963)) { + lean_ctor_release(x_963, 0); + lean_ctor_release(x_963, 1); + x_966 = x_963; +} else { + lean_dec_ref(x_963); + x_966 = lean_box(0); +} +x_967 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__13; +lean_inc(x_961); +lean_inc(x_964); +x_968 = l_Lean_addMacroScope(x_964, x_967, x_961); +x_969 = l_Lean_instInhabitedSourceInfo___closed__1; +x_970 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__12; +x_971 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_971, 0, x_969); +lean_ctor_set(x_971, 1, x_970); +lean_ctor_set(x_971, 2, x_968); +lean_ctor_set(x_971, 3, x_13); +x_972 = l_Array_empty___closed__1; +lean_inc(x_971); +x_973 = lean_array_push(x_972, x_971); +x_974 = l_myMacro____x40_Init_Notation___hyg_1130____closed__23; +x_975 = lean_array_push(x_973, x_974); +x_976 = lean_array_push(x_975, x_974); +x_977 = l_myMacro____x40_Init_Notation___hyg_12942____closed__14; +x_978 = lean_array_push(x_976, x_977); +x_979 = lean_array_push(x_978, x_4); +x_980 = l_myMacro____x40_Init_Notation___hyg_12942____closed__8; +x_981 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_981, 0, x_980); +lean_ctor_set(x_981, 1, x_979); +x_982 = lean_array_push(x_972, x_981); +x_983 = l_myMacro____x40_Init_Notation___hyg_12942____closed__6; +x_984 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_984, 0, x_983); +lean_ctor_set(x_984, 1, x_982); +x_985 = l_myMacro____x40_Init_Notation___hyg_12942____closed__4; +x_986 = lean_array_push(x_985, x_984); +x_987 = l_myMacro____x40_Init_Notation___hyg_12942____closed__18; +x_988 = lean_array_push(x_986, x_987); +x_989 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__35; +x_990 = l_Lean_addMacroScope(x_964, x_989, x_961); +x_991 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__33; +x_992 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_992, 0, x_969); +lean_ctor_set(x_992, 1, x_991); +lean_ctor_set(x_992, 2, x_990); +lean_ctor_set(x_992, 3, x_13); +x_993 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__30; +x_994 = lean_array_push(x_993, x_992); +x_995 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__37; +x_996 = lean_array_push(x_994, x_995); +x_997 = lean_array_push(x_996, x_958); +x_998 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__39; +x_999 = lean_array_push(x_997, x_998); +x_1000 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_261____closed__19; +x_1001 = lean_array_push(x_1000, x_971); +x_1002 = l_Lean_Parser_Term_matchDiscr___elambda__1___closed__1; +x_1003 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1003, 0, x_1002); +lean_ctor_set(x_1003, 1, x_1001); +x_1004 = lean_array_push(x_972, x_1003); +x_1005 = l_Lean_nullKind___closed__2; +x_1006 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1006, 0, x_1005); +lean_ctor_set(x_1006, 1, x_1004); +x_1007 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__41; +x_1008 = lean_array_push(x_1007, x_1006); +x_1009 = lean_array_push(x_1008, x_974); +x_1010 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__42; +x_1011 = lean_array_push(x_1009, x_1010); +x_1012 = l_Lean_nullKind; +x_1013 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1013, 0, x_1012); +lean_ctor_set(x_1013, 1, x_321); +x_1014 = l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__2___lambda__1___closed__2; +x_1015 = lean_array_push(x_1014, x_1013); +x_1016 = l_myMacro____x40_Init_Notation___hyg_658____closed__8; +x_1017 = lean_array_push(x_1015, x_1016); +x_1018 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4152____closed__1; +x_1019 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1019, 0, x_1018); lean_ctor_set(x_1019, 1, x_1017); -lean_ctor_set(x_1019, 2, x_1015); -lean_ctor_set(x_1019, 3, x_1018); -x_1020 = l_Array_empty___closed__1; -x_1021 = lean_array_push(x_1020, x_1019); -x_1022 = lean_array_push(x_1020, x_4); -x_1023 = l_Lean_nullKind___closed__2; -x_1024 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1024, 0, x_1023); -lean_ctor_set(x_1024, 1, x_1022); -x_1025 = lean_array_push(x_1021, x_1024); -x_1026 = l_myMacro____x40_Init_Notation___hyg_2022____closed__4; -x_1027 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1027, 0, x_1026); -lean_ctor_set(x_1027, 1, x_1025); -x_1028 = l_Lean_Parser_sepByElemParser___closed__1; -x_1029 = lean_name_eq(x_812, x_1028); -lean_dec(x_812); -if (x_1029 == 0) -{ -lean_object* x_1030; lean_object* x_1031; lean_object* x_1032; -x_1030 = l_myMacro____x40_Init_Notation___hyg_2022____closed__2; -x_1031 = lean_box(0); -x_1032 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__6(x_323, x_1030, x_1016, x_1020, x_1023, x_13, x_321, x_1026, x_1006, x_38, x_1027, x_1031, x_6, x_7, x_8, x_9, x_10, x_11, x_1013); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_321); -return x_1032; -} -else -{ -lean_object* x_1033; lean_object* x_1034; lean_object* x_1035; lean_object* x_1036; lean_object* x_1037; lean_object* x_1038; lean_object* x_1039; lean_object* x_1040; lean_object* x_1041; lean_object* x_1042; lean_object* x_1043; lean_object* x_1044; lean_object* x_1045; lean_object* x_1046; lean_object* x_1047; lean_object* x_1048; lean_object* x_1049; lean_object* x_1050; lean_object* x_1051; -x_1033 = l_Lean_Elab_Term_getCurrMacroScope(x_6, x_7, x_8, x_9, x_10, x_11, x_1013); -x_1034 = lean_ctor_get(x_1033, 0); -lean_inc(x_1034); -x_1035 = lean_ctor_get(x_1033, 1); -lean_inc(x_1035); -lean_dec(x_1033); -x_1036 = l_Lean_Elab_Term_getMainModule___rarg(x_11, x_1035); -x_1037 = lean_ctor_get(x_1036, 0); -lean_inc(x_1037); -x_1038 = lean_ctor_get(x_1036, 1); -lean_inc(x_1038); -lean_dec(x_1036); -x_1039 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__26; -x_1040 = l_Lean_addMacroScope(x_1037, x_1039, x_1034); -x_1041 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__24; -x_1042 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__28; -x_1043 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1043, 0, x_1016); +x_1020 = lean_array_push(x_972, x_1019); +x_1021 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1021, 0, x_1005); +lean_ctor_set(x_1021, 1, x_1020); +x_1022 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__43; +x_1023 = lean_array_push(x_1022, x_1021); +x_1024 = l_myMacro____x40_Init_Notation___hyg_11187____closed__17; +x_1025 = lean_array_push(x_1023, x_1024); +x_1026 = lean_array_push(x_1025, x_955); +x_1027 = l_Lean_Parser_Term_matchAlt___closed__1; +x_1028 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1028, 0, x_1027); +lean_ctor_set(x_1028, 1, x_1026); +x_1029 = lean_array_push(x_972, x_1028); +x_1030 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__45; +x_1031 = lean_array_push(x_1030, x_902); +x_1032 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1032, 0, x_1027); +lean_ctor_set(x_1032, 1, x_1031); +x_1033 = lean_array_push(x_1029, x_1032); +x_1034 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1034, 0, x_1005); +lean_ctor_set(x_1034, 1, x_1033); +x_1035 = lean_array_push(x_972, x_1034); +x_1036 = l_Lean_Parser_Term_matchAlts___elambda__1___closed__1; +x_1037 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1037, 0, x_1036); +lean_ctor_set(x_1037, 1, x_1035); +x_1038 = lean_array_push(x_1011, x_1037); +x_1039 = l_Lean_Parser_Term_match___elambda__1___closed__1; +x_1040 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1040, 0, x_1039); +lean_ctor_set(x_1040, 1, x_1038); +x_1041 = lean_array_push(x_999, x_1040); +x_1042 = l_termIf__Then__Else_____closed__2; +x_1043 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1043, 0, x_1042); lean_ctor_set(x_1043, 1, x_1041); -lean_ctor_set(x_1043, 2, x_1040); -lean_ctor_set(x_1043, 3, x_1042); -x_1044 = lean_array_push(x_1020, x_1043); -x_1045 = lean_array_push(x_1020, x_1027); +x_1044 = lean_array_push(x_988, x_1043); +x_1045 = l_myMacro____x40_Init_Notation___hyg_12942____closed__2; x_1046 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1046, 0, x_1023); -lean_ctor_set(x_1046, 1, x_1045); -x_1047 = lean_array_push(x_1044, x_1046); -x_1048 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1048, 0, x_1026); -lean_ctor_set(x_1048, 1, x_1047); -x_1049 = l_myMacro____x40_Init_Notation___hyg_2022____closed__2; -x_1050 = lean_box(0); -x_1051 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__6(x_323, x_1049, x_1016, x_1020, x_1023, x_13, x_321, x_1026, x_1006, x_38, x_1048, x_1050, x_6, x_7, x_8, x_9, x_10, x_11, x_1038); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_321); -return x_1051; +lean_ctor_set(x_1046, 0, x_1045); +lean_ctor_set(x_1046, 1, x_1044); +if (lean_is_scalar(x_966)) { + x_1047 = lean_alloc_ctor(0, 2, 0); +} else { + x_1047 = x_966; +} +lean_ctor_set(x_1047, 0, x_1046); +lean_ctor_set(x_1047, 1, x_965); +return x_1047; } } -default: +case 1: { -lean_object* x_1052; lean_object* x_1053; lean_object* x_1054; lean_object* x_1055; lean_object* x_1056; lean_object* x_1057; lean_object* x_1058; lean_object* x_1059; lean_object* x_1060; lean_object* x_1061; lean_object* x_1062; lean_object* x_1063; lean_object* x_1064; lean_object* x_1065; lean_object* x_1066; lean_object* x_1067; lean_object* x_1068; lean_object* x_1069; lean_object* x_1070; lean_object* x_1071; lean_object* x_1072; lean_object* x_1073; lean_object* x_1074; uint8_t x_1075; -lean_dec(x_859); -x_1052 = lean_ctor_get(x_786, 0); +lean_object* x_1048; lean_object* x_1049; lean_object* x_1050; lean_object* x_1051; lean_object* x_1052; lean_object* x_1053; lean_object* x_1054; lean_object* x_1055; lean_object* x_1056; lean_object* x_1057; lean_object* x_1058; lean_object* x_1059; lean_object* x_1060; lean_object* x_1061; lean_object* x_1062; lean_object* x_1063; lean_object* x_1064; lean_object* x_1065; lean_object* x_1066; lean_object* x_1067; lean_object* x_1068; lean_object* x_1069; lean_object* x_1070; uint8_t x_1071; +lean_dec(x_901); +lean_dec(x_854); +x_1048 = lean_ctor_get(x_807, 0); +lean_inc(x_1048); +x_1049 = lean_ctor_get(x_807, 1); +lean_inc(x_1049); +lean_dec(x_807); +x_1050 = l_Lean_Elab_Term_getCurrMacroScope(x_6, x_7, x_8, x_9, x_10, x_11, x_1049); +x_1051 = lean_ctor_get(x_1050, 0); +lean_inc(x_1051); +x_1052 = lean_ctor_get(x_1050, 1); lean_inc(x_1052); -x_1053 = lean_ctor_get(x_786, 1); -lean_inc(x_1053); -lean_dec(x_786); -x_1054 = l_Lean_Elab_Term_getCurrMacroScope(x_6, x_7, x_8, x_9, x_10, x_11, x_1053); -x_1055 = lean_ctor_get(x_1054, 0); +lean_dec(x_1050); +x_1053 = l_Lean_Elab_Term_getMainModule___rarg(x_11, x_1052); +x_1054 = lean_ctor_get(x_1053, 0); +lean_inc(x_1054); +x_1055 = lean_ctor_get(x_1053, 1); lean_inc(x_1055); -x_1056 = lean_ctor_get(x_1054, 1); -lean_inc(x_1056); -lean_dec(x_1054); -x_1057 = l_Lean_Elab_Term_getMainModule___rarg(x_11, x_1056); -x_1058 = lean_ctor_get(x_1057, 0); -lean_inc(x_1058); -x_1059 = lean_ctor_get(x_1057, 1); -lean_inc(x_1059); -lean_dec(x_1057); -x_1060 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__9; -x_1061 = l_Lean_addMacroScope(x_1058, x_1060, x_1055); -x_1062 = l_Lean_instInhabitedSourceInfo___closed__1; -x_1063 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__7; -x_1064 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__21; -x_1065 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1065, 0, x_1062); -lean_ctor_set(x_1065, 1, x_1063); -lean_ctor_set(x_1065, 2, x_1061); -lean_ctor_set(x_1065, 3, x_1064); -x_1066 = l_Array_empty___closed__1; -x_1067 = lean_array_push(x_1066, x_1065); -x_1068 = lean_array_push(x_1066, x_4); -x_1069 = l_Lean_nullKind___closed__2; -x_1070 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1070, 0, x_1069); -lean_ctor_set(x_1070, 1, x_1068); -x_1071 = lean_array_push(x_1067, x_1070); -x_1072 = l_myMacro____x40_Init_Notation___hyg_2022____closed__4; -x_1073 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1073, 0, x_1072); -lean_ctor_set(x_1073, 1, x_1071); -x_1074 = l_Lean_Parser_sepByElemParser___closed__1; -x_1075 = lean_name_eq(x_812, x_1074); -lean_dec(x_812); -if (x_1075 == 0) +lean_dec(x_1053); +x_1056 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__9; +x_1057 = l_Lean_addMacroScope(x_1054, x_1056, x_1051); +x_1058 = l_Lean_instInhabitedSourceInfo___closed__1; +x_1059 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__7; +x_1060 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__21; +x_1061 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1061, 0, x_1058); +lean_ctor_set(x_1061, 1, x_1059); +lean_ctor_set(x_1061, 2, x_1057); +lean_ctor_set(x_1061, 3, x_1060); +x_1062 = l_Array_empty___closed__1; +x_1063 = lean_array_push(x_1062, x_1061); +x_1064 = lean_array_push(x_1062, x_4); +x_1065 = l_Lean_nullKind___closed__2; +x_1066 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1066, 0, x_1065); +lean_ctor_set(x_1066, 1, x_1064); +x_1067 = lean_array_push(x_1063, x_1066); +x_1068 = l_myMacro____x40_Init_Notation___hyg_2022____closed__4; +x_1069 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1069, 0, x_1068); +lean_ctor_set(x_1069, 1, x_1067); +x_1070 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__2___closed__1; +x_1071 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3(x_320, x_1070); +lean_dec(x_320); +if (x_1071 == 0) { -lean_object* x_1076; lean_object* x_1077; lean_object* x_1078; -x_1076 = l_myMacro____x40_Init_Notation___hyg_2022____closed__2; -x_1077 = lean_box(0); -x_1078 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__7(x_323, x_1076, x_1062, x_1066, x_1069, x_13, x_321, x_1072, x_1052, x_38, x_1073, x_1077, x_6, x_7, x_8, x_9, x_10, x_11, x_1059); +lean_object* x_1072; lean_object* x_1073; lean_object* x_1074; +x_1072 = l_myMacro____x40_Init_Notation___hyg_2022____closed__2; +x_1073 = lean_box(0); +x_1074 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__6(x_323, x_1072, x_1058, x_1062, x_1065, x_13, x_321, x_1068, x_1048, x_38, x_1069, x_1073, x_6, x_7, x_8, x_9, x_10, x_11, x_1055); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); @@ -21991,44 +21999,44 @@ lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_321); -return x_1078; +return x_1074; } else { -lean_object* x_1079; lean_object* x_1080; lean_object* x_1081; lean_object* x_1082; lean_object* x_1083; lean_object* x_1084; lean_object* x_1085; lean_object* x_1086; lean_object* x_1087; lean_object* x_1088; lean_object* x_1089; lean_object* x_1090; lean_object* x_1091; lean_object* x_1092; lean_object* x_1093; lean_object* x_1094; lean_object* x_1095; lean_object* x_1096; lean_object* x_1097; -x_1079 = l_Lean_Elab_Term_getCurrMacroScope(x_6, x_7, x_8, x_9, x_10, x_11, x_1059); -x_1080 = lean_ctor_get(x_1079, 0); +lean_object* x_1075; lean_object* x_1076; lean_object* x_1077; lean_object* x_1078; lean_object* x_1079; lean_object* x_1080; lean_object* x_1081; lean_object* x_1082; lean_object* x_1083; lean_object* x_1084; lean_object* x_1085; lean_object* x_1086; lean_object* x_1087; lean_object* x_1088; lean_object* x_1089; lean_object* x_1090; lean_object* x_1091; lean_object* x_1092; lean_object* x_1093; +x_1075 = l_Lean_Elab_Term_getCurrMacroScope(x_6, x_7, x_8, x_9, x_10, x_11, x_1055); +x_1076 = lean_ctor_get(x_1075, 0); +lean_inc(x_1076); +x_1077 = lean_ctor_get(x_1075, 1); +lean_inc(x_1077); +lean_dec(x_1075); +x_1078 = l_Lean_Elab_Term_getMainModule___rarg(x_11, x_1077); +x_1079 = lean_ctor_get(x_1078, 0); +lean_inc(x_1079); +x_1080 = lean_ctor_get(x_1078, 1); lean_inc(x_1080); -x_1081 = lean_ctor_get(x_1079, 1); -lean_inc(x_1081); -lean_dec(x_1079); -x_1082 = l_Lean_Elab_Term_getMainModule___rarg(x_11, x_1081); -x_1083 = lean_ctor_get(x_1082, 0); -lean_inc(x_1083); -x_1084 = lean_ctor_get(x_1082, 1); -lean_inc(x_1084); -lean_dec(x_1082); -x_1085 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__26; -x_1086 = l_Lean_addMacroScope(x_1083, x_1085, x_1080); -x_1087 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__24; -x_1088 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__28; -x_1089 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1089, 0, x_1062); -lean_ctor_set(x_1089, 1, x_1087); -lean_ctor_set(x_1089, 2, x_1086); -lean_ctor_set(x_1089, 3, x_1088); -x_1090 = lean_array_push(x_1066, x_1089); -x_1091 = lean_array_push(x_1066, x_1073); -x_1092 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1092, 0, x_1069); -lean_ctor_set(x_1092, 1, x_1091); -x_1093 = lean_array_push(x_1090, x_1092); -x_1094 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1094, 0, x_1072); -lean_ctor_set(x_1094, 1, x_1093); -x_1095 = l_myMacro____x40_Init_Notation___hyg_2022____closed__2; -x_1096 = lean_box(0); -x_1097 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__7(x_323, x_1095, x_1062, x_1066, x_1069, x_13, x_321, x_1072, x_1052, x_38, x_1094, x_1096, x_6, x_7, x_8, x_9, x_10, x_11, x_1084); +lean_dec(x_1078); +x_1081 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__26; +x_1082 = l_Lean_addMacroScope(x_1079, x_1081, x_1076); +x_1083 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__24; +x_1084 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__28; +x_1085 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1085, 0, x_1058); +lean_ctor_set(x_1085, 1, x_1083); +lean_ctor_set(x_1085, 2, x_1082); +lean_ctor_set(x_1085, 3, x_1084); +x_1086 = lean_array_push(x_1062, x_1085); +x_1087 = lean_array_push(x_1062, x_1069); +x_1088 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1088, 0, x_1065); +lean_ctor_set(x_1088, 1, x_1087); +x_1089 = lean_array_push(x_1086, x_1088); +x_1090 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1090, 0, x_1068); +lean_ctor_set(x_1090, 1, x_1089); +x_1091 = l_myMacro____x40_Init_Notation___hyg_2022____closed__2; +x_1092 = lean_box(0); +x_1093 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__6(x_323, x_1091, x_1058, x_1062, x_1065, x_13, x_321, x_1068, x_1048, x_38, x_1090, x_1092, x_6, x_7, x_8, x_9, x_10, x_11, x_1080); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); @@ -22036,62 +22044,171 @@ lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_321); -return x_1097; +return x_1093; +} +} +default: +{ +lean_object* x_1094; lean_object* x_1095; lean_object* x_1096; lean_object* x_1097; lean_object* x_1098; lean_object* x_1099; lean_object* x_1100; lean_object* x_1101; lean_object* x_1102; lean_object* x_1103; lean_object* x_1104; lean_object* x_1105; lean_object* x_1106; lean_object* x_1107; lean_object* x_1108; lean_object* x_1109; lean_object* x_1110; lean_object* x_1111; lean_object* x_1112; lean_object* x_1113; lean_object* x_1114; lean_object* x_1115; lean_object* x_1116; uint8_t x_1117; +lean_dec(x_901); +lean_dec(x_854); +x_1094 = lean_ctor_get(x_807, 0); +lean_inc(x_1094); +x_1095 = lean_ctor_get(x_807, 1); +lean_inc(x_1095); +lean_dec(x_807); +x_1096 = l_Lean_Elab_Term_getCurrMacroScope(x_6, x_7, x_8, x_9, x_10, x_11, x_1095); +x_1097 = lean_ctor_get(x_1096, 0); +lean_inc(x_1097); +x_1098 = lean_ctor_get(x_1096, 1); +lean_inc(x_1098); +lean_dec(x_1096); +x_1099 = l_Lean_Elab_Term_getMainModule___rarg(x_11, x_1098); +x_1100 = lean_ctor_get(x_1099, 0); +lean_inc(x_1100); +x_1101 = lean_ctor_get(x_1099, 1); +lean_inc(x_1101); +lean_dec(x_1099); +x_1102 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__9; +x_1103 = l_Lean_addMacroScope(x_1100, x_1102, x_1097); +x_1104 = l_Lean_instInhabitedSourceInfo___closed__1; +x_1105 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__7; +x_1106 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__21; +x_1107 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1107, 0, x_1104); +lean_ctor_set(x_1107, 1, x_1105); +lean_ctor_set(x_1107, 2, x_1103); +lean_ctor_set(x_1107, 3, x_1106); +x_1108 = l_Array_empty___closed__1; +x_1109 = lean_array_push(x_1108, x_1107); +x_1110 = lean_array_push(x_1108, x_4); +x_1111 = l_Lean_nullKind___closed__2; +x_1112 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1112, 0, x_1111); +lean_ctor_set(x_1112, 1, x_1110); +x_1113 = lean_array_push(x_1109, x_1112); +x_1114 = l_myMacro____x40_Init_Notation___hyg_2022____closed__4; +x_1115 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1115, 0, x_1114); +lean_ctor_set(x_1115, 1, x_1113); +x_1116 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__2___closed__1; +x_1117 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3(x_320, x_1116); +lean_dec(x_320); +if (x_1117 == 0) +{ +lean_object* x_1118; lean_object* x_1119; lean_object* x_1120; +x_1118 = l_myMacro____x40_Init_Notation___hyg_2022____closed__2; +x_1119 = lean_box(0); +x_1120 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__7(x_323, x_1118, x_1104, x_1108, x_1111, x_13, x_321, x_1114, x_1094, x_38, x_1115, x_1119, x_6, x_7, x_8, x_9, x_10, x_11, x_1101); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_321); +return x_1120; +} +else +{ +lean_object* x_1121; lean_object* x_1122; lean_object* x_1123; lean_object* x_1124; lean_object* x_1125; lean_object* x_1126; lean_object* x_1127; lean_object* x_1128; lean_object* x_1129; lean_object* x_1130; lean_object* x_1131; lean_object* x_1132; lean_object* x_1133; lean_object* x_1134; lean_object* x_1135; lean_object* x_1136; lean_object* x_1137; lean_object* x_1138; lean_object* x_1139; +x_1121 = l_Lean_Elab_Term_getCurrMacroScope(x_6, x_7, x_8, x_9, x_10, x_11, x_1101); +x_1122 = lean_ctor_get(x_1121, 0); +lean_inc(x_1122); +x_1123 = lean_ctor_get(x_1121, 1); +lean_inc(x_1123); +lean_dec(x_1121); +x_1124 = l_Lean_Elab_Term_getMainModule___rarg(x_11, x_1123); +x_1125 = lean_ctor_get(x_1124, 0); +lean_inc(x_1125); +x_1126 = lean_ctor_get(x_1124, 1); +lean_inc(x_1126); +lean_dec(x_1124); +x_1127 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__26; +x_1128 = l_Lean_addMacroScope(x_1125, x_1127, x_1122); +x_1129 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__24; +x_1130 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__28; +x_1131 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1131, 0, x_1104); +lean_ctor_set(x_1131, 1, x_1129); +lean_ctor_set(x_1131, 2, x_1128); +lean_ctor_set(x_1131, 3, x_1130); +x_1132 = lean_array_push(x_1108, x_1131); +x_1133 = lean_array_push(x_1108, x_1115); +x_1134 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1134, 0, x_1111); +lean_ctor_set(x_1134, 1, x_1133); +x_1135 = lean_array_push(x_1132, x_1134); +x_1136 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1136, 0, x_1114); +lean_ctor_set(x_1136, 1, x_1135); +x_1137 = l_myMacro____x40_Init_Notation___hyg_2022____closed__2; +x_1138 = lean_box(0); +x_1139 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__7(x_323, x_1137, x_1104, x_1108, x_1111, x_13, x_321, x_1114, x_1094, x_38, x_1136, x_1138, x_6, x_7, x_8, x_9, x_10, x_11, x_1126); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_321); +return x_1139; } } } } default: { -lean_object* x_1098; lean_object* x_1099; lean_object* x_1100; lean_object* x_1101; lean_object* x_1102; lean_object* x_1103; lean_object* x_1104; lean_object* x_1105; lean_object* x_1106; lean_object* x_1107; lean_object* x_1108; lean_object* x_1109; lean_object* x_1110; lean_object* x_1111; lean_object* x_1112; lean_object* x_1113; lean_object* x_1114; lean_object* x_1115; lean_object* x_1116; lean_object* x_1117; lean_object* x_1118; lean_object* x_1119; lean_object* x_1120; uint8_t x_1121; -x_1098 = lean_ctor_get(x_786, 0); -lean_inc(x_1098); -x_1099 = lean_ctor_get(x_786, 1); -lean_inc(x_1099); -lean_dec(x_786); -x_1100 = l_Lean_Elab_Term_getCurrMacroScope(x_6, x_7, x_8, x_9, x_10, x_11, x_1099); -x_1101 = lean_ctor_get(x_1100, 0); -lean_inc(x_1101); -x_1102 = lean_ctor_get(x_1100, 1); -lean_inc(x_1102); -lean_dec(x_1100); -x_1103 = l_Lean_Elab_Term_getMainModule___rarg(x_11, x_1102); -x_1104 = lean_ctor_get(x_1103, 0); -lean_inc(x_1104); -x_1105 = lean_ctor_get(x_1103, 1); -lean_inc(x_1105); -lean_dec(x_1103); -x_1106 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__9; -x_1107 = l_Lean_addMacroScope(x_1104, x_1106, x_1101); -x_1108 = l_Lean_instInhabitedSourceInfo___closed__1; -x_1109 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__7; -x_1110 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__21; -x_1111 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1111, 0, x_1108); -lean_ctor_set(x_1111, 1, x_1109); -lean_ctor_set(x_1111, 2, x_1107); -lean_ctor_set(x_1111, 3, x_1110); -x_1112 = l_Array_empty___closed__1; -x_1113 = lean_array_push(x_1112, x_1111); -x_1114 = lean_array_push(x_1112, x_4); -x_1115 = l_Lean_nullKind___closed__2; -x_1116 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1116, 0, x_1115); -lean_ctor_set(x_1116, 1, x_1114); -x_1117 = lean_array_push(x_1113, x_1116); -x_1118 = l_myMacro____x40_Init_Notation___hyg_2022____closed__4; -x_1119 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1119, 0, x_1118); -lean_ctor_set(x_1119, 1, x_1117); -x_1120 = l_Lean_Parser_sepByElemParser___closed__1; -x_1121 = lean_name_eq(x_812, x_1120); -lean_dec(x_812); -if (x_1121 == 0) +lean_object* x_1140; lean_object* x_1141; lean_object* x_1142; lean_object* x_1143; lean_object* x_1144; lean_object* x_1145; lean_object* x_1146; lean_object* x_1147; lean_object* x_1148; lean_object* x_1149; lean_object* x_1150; lean_object* x_1151; lean_object* x_1152; lean_object* x_1153; lean_object* x_1154; lean_object* x_1155; lean_object* x_1156; lean_object* x_1157; lean_object* x_1158; lean_object* x_1159; lean_object* x_1160; lean_object* x_1161; lean_object* x_1162; uint8_t x_1163; +lean_dec(x_854); +x_1140 = lean_ctor_get(x_807, 0); +lean_inc(x_1140); +x_1141 = lean_ctor_get(x_807, 1); +lean_inc(x_1141); +lean_dec(x_807); +x_1142 = l_Lean_Elab_Term_getCurrMacroScope(x_6, x_7, x_8, x_9, x_10, x_11, x_1141); +x_1143 = lean_ctor_get(x_1142, 0); +lean_inc(x_1143); +x_1144 = lean_ctor_get(x_1142, 1); +lean_inc(x_1144); +lean_dec(x_1142); +x_1145 = l_Lean_Elab_Term_getMainModule___rarg(x_11, x_1144); +x_1146 = lean_ctor_get(x_1145, 0); +lean_inc(x_1146); +x_1147 = lean_ctor_get(x_1145, 1); +lean_inc(x_1147); +lean_dec(x_1145); +x_1148 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__9; +x_1149 = l_Lean_addMacroScope(x_1146, x_1148, x_1143); +x_1150 = l_Lean_instInhabitedSourceInfo___closed__1; +x_1151 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__7; +x_1152 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__21; +x_1153 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1153, 0, x_1150); +lean_ctor_set(x_1153, 1, x_1151); +lean_ctor_set(x_1153, 2, x_1149); +lean_ctor_set(x_1153, 3, x_1152); +x_1154 = l_Array_empty___closed__1; +x_1155 = lean_array_push(x_1154, x_1153); +x_1156 = lean_array_push(x_1154, x_4); +x_1157 = l_Lean_nullKind___closed__2; +x_1158 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1158, 0, x_1157); +lean_ctor_set(x_1158, 1, x_1156); +x_1159 = lean_array_push(x_1155, x_1158); +x_1160 = l_myMacro____x40_Init_Notation___hyg_2022____closed__4; +x_1161 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1161, 0, x_1160); +lean_ctor_set(x_1161, 1, x_1159); +x_1162 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__2___closed__1; +x_1163 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3(x_320, x_1162); +lean_dec(x_320); +if (x_1163 == 0) { -lean_object* x_1122; lean_object* x_1123; lean_object* x_1124; -x_1122 = l_myMacro____x40_Init_Notation___hyg_2022____closed__2; -x_1123 = lean_box(0); -x_1124 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__8(x_323, x_1122, x_1108, x_1112, x_1115, x_13, x_321, x_1118, x_1098, x_38, x_1119, x_1123, x_6, x_7, x_8, x_9, x_10, x_11, x_1105); +lean_object* x_1164; lean_object* x_1165; lean_object* x_1166; +x_1164 = l_myMacro____x40_Init_Notation___hyg_2022____closed__2; +x_1165 = lean_box(0); +x_1166 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__8(x_323, x_1164, x_1150, x_1154, x_1157, x_13, x_321, x_1160, x_1140, x_38, x_1161, x_1165, x_6, x_7, x_8, x_9, x_10, x_11, x_1147); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); @@ -22099,44 +22216,44 @@ lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_321); -return x_1124; +return x_1166; } else { -lean_object* x_1125; lean_object* x_1126; lean_object* x_1127; lean_object* x_1128; lean_object* x_1129; lean_object* x_1130; lean_object* x_1131; lean_object* x_1132; lean_object* x_1133; lean_object* x_1134; lean_object* x_1135; lean_object* x_1136; lean_object* x_1137; lean_object* x_1138; lean_object* x_1139; lean_object* x_1140; lean_object* x_1141; lean_object* x_1142; lean_object* x_1143; -x_1125 = l_Lean_Elab_Term_getCurrMacroScope(x_6, x_7, x_8, x_9, x_10, x_11, x_1105); -x_1126 = lean_ctor_get(x_1125, 0); -lean_inc(x_1126); -x_1127 = lean_ctor_get(x_1125, 1); -lean_inc(x_1127); -lean_dec(x_1125); -x_1128 = l_Lean_Elab_Term_getMainModule___rarg(x_11, x_1127); -x_1129 = lean_ctor_get(x_1128, 0); -lean_inc(x_1129); -x_1130 = lean_ctor_get(x_1128, 1); -lean_inc(x_1130); -lean_dec(x_1128); -x_1131 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__26; -x_1132 = l_Lean_addMacroScope(x_1129, x_1131, x_1126); -x_1133 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__24; -x_1134 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__28; -x_1135 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1135, 0, x_1108); -lean_ctor_set(x_1135, 1, x_1133); -lean_ctor_set(x_1135, 2, x_1132); -lean_ctor_set(x_1135, 3, x_1134); -x_1136 = lean_array_push(x_1112, x_1135); -x_1137 = lean_array_push(x_1112, x_1119); -x_1138 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1138, 0, x_1115); -lean_ctor_set(x_1138, 1, x_1137); -x_1139 = lean_array_push(x_1136, x_1138); -x_1140 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1140, 0, x_1118); -lean_ctor_set(x_1140, 1, x_1139); -x_1141 = l_myMacro____x40_Init_Notation___hyg_2022____closed__2; -x_1142 = lean_box(0); -x_1143 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__8(x_323, x_1141, x_1108, x_1112, x_1115, x_13, x_321, x_1118, x_1098, x_38, x_1140, x_1142, x_6, x_7, x_8, x_9, x_10, x_11, x_1130); +lean_object* x_1167; lean_object* x_1168; lean_object* x_1169; lean_object* x_1170; lean_object* x_1171; lean_object* x_1172; lean_object* x_1173; lean_object* x_1174; lean_object* x_1175; lean_object* x_1176; lean_object* x_1177; lean_object* x_1178; lean_object* x_1179; lean_object* x_1180; lean_object* x_1181; lean_object* x_1182; lean_object* x_1183; lean_object* x_1184; lean_object* x_1185; +x_1167 = l_Lean_Elab_Term_getCurrMacroScope(x_6, x_7, x_8, x_9, x_10, x_11, x_1147); +x_1168 = lean_ctor_get(x_1167, 0); +lean_inc(x_1168); +x_1169 = lean_ctor_get(x_1167, 1); +lean_inc(x_1169); +lean_dec(x_1167); +x_1170 = l_Lean_Elab_Term_getMainModule___rarg(x_11, x_1169); +x_1171 = lean_ctor_get(x_1170, 0); +lean_inc(x_1171); +x_1172 = lean_ctor_get(x_1170, 1); +lean_inc(x_1172); +lean_dec(x_1170); +x_1173 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__26; +x_1174 = l_Lean_addMacroScope(x_1171, x_1173, x_1168); +x_1175 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__24; +x_1176 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__28; +x_1177 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1177, 0, x_1150); +lean_ctor_set(x_1177, 1, x_1175); +lean_ctor_set(x_1177, 2, x_1174); +lean_ctor_set(x_1177, 3, x_1176); +x_1178 = lean_array_push(x_1154, x_1177); +x_1179 = lean_array_push(x_1154, x_1161); +x_1180 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1180, 0, x_1157); +lean_ctor_set(x_1180, 1, x_1179); +x_1181 = lean_array_push(x_1178, x_1180); +x_1182 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1182, 0, x_1160); +lean_ctor_set(x_1182, 1, x_1181); +x_1183 = l_myMacro____x40_Init_Notation___hyg_2022____closed__2; +x_1184 = lean_box(0); +x_1185 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__8(x_323, x_1183, x_1150, x_1154, x_1157, x_13, x_321, x_1160, x_1140, x_38, x_1182, x_1184, x_6, x_7, x_8, x_9, x_10, x_11, x_1172); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); @@ -22144,7 +22261,7 @@ lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_321); -return x_1143; +return x_1185; } } } @@ -22152,7 +22269,7 @@ return x_1143; } else { -lean_object* x_1144; lean_object* x_1145; lean_object* x_1146; lean_object* x_1147; +lean_object* x_1186; lean_object* x_1187; lean_object* x_1188; lean_object* x_1189; lean_dec(x_323); lean_dec(x_321); lean_dec(x_320); @@ -22164,32 +22281,32 @@ lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_4); -x_1144 = lean_ctor_get(x_786, 0); -lean_inc(x_1144); -x_1145 = lean_ctor_get(x_786, 1); -lean_inc(x_1145); -if (lean_is_exclusive(x_786)) { - lean_ctor_release(x_786, 0); - lean_ctor_release(x_786, 1); - x_1146 = x_786; +x_1186 = lean_ctor_get(x_807, 0); +lean_inc(x_1186); +x_1187 = lean_ctor_get(x_807, 1); +lean_inc(x_1187); +if (lean_is_exclusive(x_807)) { + lean_ctor_release(x_807, 0); + lean_ctor_release(x_807, 1); + x_1188 = x_807; } else { - lean_dec_ref(x_786); - x_1146 = lean_box(0); + lean_dec_ref(x_807); + x_1188 = lean_box(0); } -if (lean_is_scalar(x_1146)) { - x_1147 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_1188)) { + x_1189 = lean_alloc_ctor(1, 2, 0); } else { - x_1147 = x_1146; + x_1189 = x_1188; } -lean_ctor_set(x_1147, 0, x_1144); -lean_ctor_set(x_1147, 1, x_1145); -return x_1147; +lean_ctor_set(x_1189, 0, x_1186); +lean_ctor_set(x_1189, 1, x_1187); +return x_1189; } } } else { -uint8_t x_1148; +uint8_t x_1190; lean_dec(x_321); lean_dec(x_320); lean_dec(x_42); @@ -22207,30 +22324,30 @@ lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_4); -x_1148 = !lean_is_exclusive(x_322); -if (x_1148 == 0) +x_1190 = !lean_is_exclusive(x_322); +if (x_1190 == 0) { return x_322; } else { -lean_object* x_1149; lean_object* x_1150; lean_object* x_1151; -x_1149 = lean_ctor_get(x_322, 0); -x_1150 = lean_ctor_get(x_322, 1); -lean_inc(x_1150); -lean_inc(x_1149); +lean_object* x_1191; lean_object* x_1192; lean_object* x_1193; +x_1191 = lean_ctor_get(x_322, 0); +x_1192 = lean_ctor_get(x_322, 1); +lean_inc(x_1192); +lean_inc(x_1191); lean_dec(x_322); -x_1151 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1151, 0, x_1149); -lean_ctor_set(x_1151, 1, x_1150); -return x_1151; +x_1193 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1193, 0, x_1191); +lean_ctor_set(x_1193, 1, x_1192); +return x_1193; } } } } else { -uint8_t x_1152; +uint8_t x_1194; lean_dec(x_35); lean_dec(x_31); lean_dec(x_30); @@ -22246,1529 +22363,1542 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_1152 = !lean_is_exclusive(x_37); -if (x_1152 == 0) +x_1194 = !lean_is_exclusive(x_37); +if (x_1194 == 0) { return x_37; } else { -lean_object* x_1153; lean_object* x_1154; lean_object* x_1155; -x_1153 = lean_ctor_get(x_37, 0); -x_1154 = lean_ctor_get(x_37, 1); -lean_inc(x_1154); -lean_inc(x_1153); +lean_object* x_1195; lean_object* x_1196; lean_object* x_1197; +x_1195 = lean_ctor_get(x_37, 0); +x_1196 = lean_ctor_get(x_37, 1); +lean_inc(x_1196); +lean_inc(x_1195); lean_dec(x_37); -x_1155 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1155, 0, x_1153); -lean_ctor_set(x_1155, 1, x_1154); -return x_1155; +x_1197 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1197, 0, x_1195); +lean_ctor_set(x_1197, 1, x_1196); +return x_1197; } } } else { -lean_object* x_1156; lean_object* x_1157; lean_object* x_1158; lean_object* x_1159; lean_object* x_1160; lean_object* x_1161; lean_object* x_1162; lean_object* x_1163; lean_object* x_1164; lean_object* x_1165; lean_object* x_1166; lean_object* x_1167; lean_object* x_1168; uint8_t x_1169; uint8_t x_1170; uint8_t x_1171; lean_object* x_1172; lean_object* x_1173; lean_object* x_1174; -x_1156 = lean_ctor_get(x_20, 0); -x_1157 = lean_ctor_get(x_20, 1); -x_1158 = lean_ctor_get(x_20, 2); -x_1159 = lean_ctor_get(x_20, 3); -lean_inc(x_1159); -lean_inc(x_1158); -lean_inc(x_1157); -lean_inc(x_1156); +lean_object* x_1198; lean_object* x_1199; lean_object* x_1200; lean_object* x_1201; lean_object* x_1202; lean_object* x_1203; lean_object* x_1204; lean_object* x_1205; lean_object* x_1206; lean_object* x_1207; lean_object* x_1208; lean_object* x_1209; lean_object* x_1210; uint8_t x_1211; uint8_t x_1212; uint8_t x_1213; lean_object* x_1214; lean_object* x_1215; lean_object* x_1216; +x_1198 = lean_ctor_get(x_20, 0); +x_1199 = lean_ctor_get(x_20, 1); +x_1200 = lean_ctor_get(x_20, 2); +x_1201 = lean_ctor_get(x_20, 3); +lean_inc(x_1201); +lean_inc(x_1200); +lean_inc(x_1199); +lean_inc(x_1198); lean_dec(x_20); -x_1160 = lean_unsigned_to_nat(1u); -x_1161 = lean_nat_add(x_1157, x_1160); -x_1162 = lean_alloc_ctor(0, 4, 0); -lean_ctor_set(x_1162, 0, x_1156); -lean_ctor_set(x_1162, 1, x_1161); -lean_ctor_set(x_1162, 2, x_1158); -lean_ctor_set(x_1162, 3, x_1159); -x_1163 = lean_st_ref_set(x_11, x_1162, x_21); -x_1164 = lean_ctor_get(x_1163, 1); -lean_inc(x_1164); -lean_dec(x_1163); -x_1165 = lean_ctor_get(x_6, 0); -lean_inc(x_1165); -x_1166 = lean_ctor_get(x_6, 1); -lean_inc(x_1166); -x_1167 = lean_ctor_get(x_6, 2); -lean_inc(x_1167); -x_1168 = lean_ctor_get(x_6, 3); -lean_inc(x_1168); -x_1169 = lean_ctor_get_uint8(x_6, sizeof(void*)*6); -x_1170 = lean_ctor_get_uint8(x_6, sizeof(void*)*6 + 1); -x_1171 = lean_ctor_get_uint8(x_6, sizeof(void*)*6 + 2); -x_1172 = lean_ctor_get(x_6, 5); -lean_inc(x_1172); -lean_inc(x_1172); -lean_inc(x_1168); -lean_inc(x_1167); -lean_inc(x_1166); -lean_inc(x_1165); -x_1173 = lean_alloc_ctor(0, 6, 3); -lean_ctor_set(x_1173, 0, x_1165); -lean_ctor_set(x_1173, 1, x_1166); -lean_ctor_set(x_1173, 2, x_1167); -lean_ctor_set(x_1173, 3, x_1168); -lean_ctor_set(x_1173, 4, x_1157); -lean_ctor_set(x_1173, 5, x_1172); -lean_ctor_set_uint8(x_1173, sizeof(void*)*6, x_1169); -lean_ctor_set_uint8(x_1173, sizeof(void*)*6 + 1, x_1170); -lean_ctor_set_uint8(x_1173, sizeof(void*)*6 + 2, x_1171); +x_1202 = lean_unsigned_to_nat(1u); +x_1203 = lean_nat_add(x_1199, x_1202); +x_1204 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_1204, 0, x_1198); +lean_ctor_set(x_1204, 1, x_1203); +lean_ctor_set(x_1204, 2, x_1200); +lean_ctor_set(x_1204, 3, x_1201); +x_1205 = lean_st_ref_set(x_11, x_1204, x_21); +x_1206 = lean_ctor_get(x_1205, 1); +lean_inc(x_1206); +lean_dec(x_1205); +x_1207 = lean_ctor_get(x_6, 0); +lean_inc(x_1207); +x_1208 = lean_ctor_get(x_6, 1); +lean_inc(x_1208); +x_1209 = lean_ctor_get(x_6, 2); +lean_inc(x_1209); +x_1210 = lean_ctor_get(x_6, 3); +lean_inc(x_1210); +x_1211 = lean_ctor_get_uint8(x_6, sizeof(void*)*6); +x_1212 = lean_ctor_get_uint8(x_6, sizeof(void*)*6 + 1); +x_1213 = lean_ctor_get_uint8(x_6, sizeof(void*)*6 + 2); +x_1214 = lean_ctor_get(x_6, 5); +lean_inc(x_1214); +lean_inc(x_1214); +lean_inc(x_1210); +lean_inc(x_1209); +lean_inc(x_1208); +lean_inc(x_1207); +x_1215 = lean_alloc_ctor(0, 6, 3); +lean_ctor_set(x_1215, 0, x_1207); +lean_ctor_set(x_1215, 1, x_1208); +lean_ctor_set(x_1215, 2, x_1209); +lean_ctor_set(x_1215, 3, x_1210); +lean_ctor_set(x_1215, 4, x_1199); +lean_ctor_set(x_1215, 5, x_1214); +lean_ctor_set_uint8(x_1215, sizeof(void*)*6, x_1211); +lean_ctor_set_uint8(x_1215, sizeof(void*)*6 + 1, x_1212); +lean_ctor_set_uint8(x_1215, sizeof(void*)*6 + 2, x_1213); lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); -x_1174 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch(x_18, x_16, x_1173, x_7, x_8, x_9, x_10, x_11, x_1164); -if (lean_obj_tag(x_1174) == 0) +x_1216 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch(x_18, x_16, x_1215, x_7, x_8, x_9, x_10, x_11, x_1206); +if (lean_obj_tag(x_1216) == 0) { -lean_object* x_1175; lean_object* x_1176; lean_object* x_1177; lean_object* x_1178; lean_object* x_1179; -x_1175 = lean_ctor_get(x_1174, 0); -lean_inc(x_1175); -x_1176 = lean_ctor_get(x_1174, 1); -lean_inc(x_1176); -lean_dec(x_1174); -x_1177 = l_List_filterAux___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__6(x_1, x_2, x_13); -x_1178 = l_List_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__7(x_1177); +lean_object* x_1217; lean_object* x_1218; lean_object* x_1219; lean_object* x_1220; lean_object* x_1221; +x_1217 = lean_ctor_get(x_1216, 0); +lean_inc(x_1217); +x_1218 = lean_ctor_get(x_1216, 1); +lean_inc(x_1218); +lean_dec(x_1216); +x_1219 = l_List_filterAux___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__5(x_1, x_2, x_13); +x_1220 = l_List_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__6(x_1219); lean_inc(x_4); -x_1179 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1179, 0, x_4); -lean_ctor_set(x_1179, 1, x_3); +x_1221 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1221, 0, x_4); +lean_ctor_set(x_1221, 1, x_3); if (lean_obj_tag(x_1) == 0) { -lean_object* x_1180; lean_object* x_1181; -lean_dec(x_1172); -lean_dec(x_1168); -lean_dec(x_1167); -lean_dec(x_1166); -lean_dec(x_1165); -x_1180 = lean_ctor_get(x_1, 0); -lean_inc(x_1180); +lean_object* x_1222; lean_object* x_1223; +lean_dec(x_1214); +lean_dec(x_1210); +lean_dec(x_1209); +lean_dec(x_1208); +lean_dec(x_1207); +x_1222 = lean_ctor_get(x_1, 0); +lean_inc(x_1222); lean_dec(x_1); -x_1181 = lean_ctor_get(x_1180, 0); -lean_inc(x_1181); -if (lean_obj_tag(x_1181) == 0) +x_1223 = lean_ctor_get(x_1222, 0); +lean_inc(x_1223); +if (lean_obj_tag(x_1223) == 0) { -lean_object* x_1182; lean_object* x_1183; lean_object* x_1184; lean_object* x_1185; lean_object* x_1186; lean_object* x_1187; lean_object* x_1188; lean_object* x_1189; lean_object* x_1190; lean_object* x_1191; lean_object* x_1192; lean_object* x_1193; lean_object* x_1194; lean_object* x_1195; lean_object* x_1196; lean_object* x_1197; lean_object* x_1198; lean_object* x_1199; lean_object* x_1200; lean_object* x_1201; lean_object* x_1202; lean_object* x_1203; lean_object* x_1204; lean_object* x_1205; lean_object* x_1206; lean_object* x_1207; lean_object* x_1208; lean_object* x_1209; lean_object* x_1210; lean_object* x_1211; lean_object* x_1212; lean_object* x_1213; lean_object* x_1214; -lean_dec(x_1180); -lean_dec(x_1179); -lean_dec(x_1178); -x_1182 = l_Lean_Elab_Term_getCurrMacroScope(x_6, x_7, x_8, x_9, x_10, x_11, x_1176); +lean_object* x_1224; lean_object* x_1225; lean_object* x_1226; lean_object* x_1227; lean_object* x_1228; lean_object* x_1229; lean_object* x_1230; lean_object* x_1231; lean_object* x_1232; lean_object* x_1233; lean_object* x_1234; lean_object* x_1235; lean_object* x_1236; lean_object* x_1237; lean_object* x_1238; lean_object* x_1239; lean_object* x_1240; lean_object* x_1241; lean_object* x_1242; lean_object* x_1243; lean_object* x_1244; lean_object* x_1245; lean_object* x_1246; lean_object* x_1247; lean_object* x_1248; lean_object* x_1249; lean_object* x_1250; lean_object* x_1251; lean_object* x_1252; lean_object* x_1253; lean_object* x_1254; lean_object* x_1255; lean_object* x_1256; +lean_dec(x_1222); +lean_dec(x_1221); +lean_dec(x_1220); +x_1224 = l_Lean_Elab_Term_getCurrMacroScope(x_6, x_7, x_8, x_9, x_10, x_11, x_1218); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); -x_1183 = lean_ctor_get(x_1182, 0); -lean_inc(x_1183); -x_1184 = lean_ctor_get(x_1182, 1); -lean_inc(x_1184); -lean_dec(x_1182); -x_1185 = l_Lean_Elab_Term_getMainModule___rarg(x_11, x_1184); -lean_dec(x_11); -x_1186 = lean_ctor_get(x_1185, 0); -lean_inc(x_1186); -x_1187 = lean_ctor_get(x_1185, 1); -lean_inc(x_1187); -if (lean_is_exclusive(x_1185)) { - lean_ctor_release(x_1185, 0); - lean_ctor_release(x_1185, 1); - x_1188 = x_1185; -} else { - lean_dec_ref(x_1185); - x_1188 = lean_box(0); -} -x_1189 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__13; -x_1190 = l_Lean_addMacroScope(x_1186, x_1189, x_1183); -x_1191 = l_Lean_instInhabitedSourceInfo___closed__1; -x_1192 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__12; -x_1193 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1193, 0, x_1191); -lean_ctor_set(x_1193, 1, x_1192); -lean_ctor_set(x_1193, 2, x_1190); -lean_ctor_set(x_1193, 3, x_13); -x_1194 = l_Array_empty___closed__1; -x_1195 = lean_array_push(x_1194, x_1193); -x_1196 = l_myMacro____x40_Init_Notation___hyg_1130____closed__23; -x_1197 = lean_array_push(x_1195, x_1196); -x_1198 = lean_array_push(x_1197, x_1196); -x_1199 = l_myMacro____x40_Init_Notation___hyg_12942____closed__14; -x_1200 = lean_array_push(x_1198, x_1199); -x_1201 = lean_array_push(x_1200, x_4); -x_1202 = l_myMacro____x40_Init_Notation___hyg_12942____closed__8; -x_1203 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1203, 0, x_1202); -lean_ctor_set(x_1203, 1, x_1201); -x_1204 = lean_array_push(x_1194, x_1203); -x_1205 = l_myMacro____x40_Init_Notation___hyg_12942____closed__6; -x_1206 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1206, 0, x_1205); -lean_ctor_set(x_1206, 1, x_1204); -x_1207 = l_myMacro____x40_Init_Notation___hyg_12942____closed__4; -x_1208 = lean_array_push(x_1207, x_1206); -x_1209 = l_myMacro____x40_Init_Notation___hyg_12942____closed__18; -x_1210 = lean_array_push(x_1208, x_1209); -x_1211 = lean_array_push(x_1210, x_1175); -x_1212 = l_myMacro____x40_Init_Notation___hyg_12942____closed__2; -x_1213 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1213, 0, x_1212); -lean_ctor_set(x_1213, 1, x_1211); -if (lean_is_scalar(x_1188)) { - x_1214 = lean_alloc_ctor(0, 2, 0); -} else { - x_1214 = x_1188; -} -lean_ctor_set(x_1214, 0, x_1213); -lean_ctor_set(x_1214, 1, x_1187); -return x_1214; -} -else -{ -lean_object* x_1215; -x_1215 = lean_ctor_get(x_1181, 0); -lean_inc(x_1215); -lean_dec(x_1181); -if (lean_obj_tag(x_1215) == 1) -{ -lean_object* x_1216; -x_1216 = lean_ctor_get(x_1215, 0); -lean_inc(x_1216); -if (lean_obj_tag(x_1216) == 0) -{ -lean_object* x_1217; lean_object* x_1218; lean_object* x_1219; uint8_t x_1220; -x_1217 = lean_ctor_get(x_1180, 1); -lean_inc(x_1217); -lean_dec(x_1180); -x_1218 = lean_ctor_get(x_1215, 1); -lean_inc(x_1218); -x_1219 = l_Lean_nullKind___closed__1; -x_1220 = lean_string_dec_eq(x_1218, x_1219); -lean_dec(x_1218); -if (x_1220 == 0) -{ -lean_object* x_1221; lean_object* x_1222; lean_object* x_1223; lean_object* x_1224; lean_object* x_1225; lean_object* x_1226; lean_object* x_1227; lean_object* x_1228; lean_object* x_1229; lean_object* x_1230; lean_object* x_1231; lean_object* x_1232; lean_object* x_1233; lean_object* x_1234; lean_object* x_1235; lean_object* x_1236; lean_object* x_1237; lean_object* x_1238; lean_object* x_1239; lean_object* x_1240; lean_object* x_1241; lean_object* x_1242; lean_object* x_1243; lean_object* x_1244; lean_object* x_1245; lean_object* x_1246; lean_object* x_1247; -lean_dec(x_1217); -x_1221 = l_Lean_Elab_Term_getCurrMacroScope(x_6, x_7, x_8, x_9, x_10, x_11, x_1176); -x_1222 = lean_ctor_get(x_1221, 0); -lean_inc(x_1222); -x_1223 = lean_ctor_get(x_1221, 1); -lean_inc(x_1223); -lean_dec(x_1221); -x_1224 = l_Lean_Elab_Term_getMainModule___rarg(x_11, x_1223); x_1225 = lean_ctor_get(x_1224, 0); lean_inc(x_1225); x_1226 = lean_ctor_get(x_1224, 1); lean_inc(x_1226); lean_dec(x_1224); -x_1227 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__5; -lean_inc(x_1222); -lean_inc(x_1225); -x_1228 = l_Lean_addMacroScope(x_1225, x_1227, x_1222); -x_1229 = l_Lean_instInhabitedSourceInfo___closed__1; -x_1230 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__3; -x_1231 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__8; -x_1232 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1232, 0, x_1229); -lean_ctor_set(x_1232, 1, x_1230); -lean_ctor_set(x_1232, 2, x_1228); -lean_ctor_set(x_1232, 3, x_1231); -x_1233 = l_Array_empty___closed__1; -x_1234 = lean_array_push(x_1233, x_1232); -x_1235 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__13; -x_1236 = l_Lean_addMacroScope(x_1225, x_1235, x_1222); -x_1237 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__12; -x_1238 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1238, 0, x_1229); -lean_ctor_set(x_1238, 1, x_1237); -lean_ctor_set(x_1238, 2, x_1236); -lean_ctor_set(x_1238, 3, x_13); -x_1239 = lean_array_push(x_1233, x_1238); -x_1240 = l___private_Init_Meta_0__Lean_quoteName(x_1215); -x_1241 = lean_array_push(x_1239, x_1240); -x_1242 = l_Lean_nullKind___closed__2; -x_1243 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1243, 0, x_1242); -lean_ctor_set(x_1243, 1, x_1241); -x_1244 = lean_array_push(x_1234, x_1243); -x_1245 = l_myMacro____x40_Init_Notation___hyg_2022____closed__4; -x_1246 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1246, 0, x_1245); -lean_ctor_set(x_1246, 1, x_1244); -x_1247 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__1(x_1179, x_1178, x_13, x_4, x_1175, x_1246, x_6, x_7, x_8, x_9, x_10, x_11, x_1226); -lean_dec(x_6); -return x_1247; +x_1227 = l_Lean_Elab_Term_getMainModule___rarg(x_11, x_1226); +lean_dec(x_11); +x_1228 = lean_ctor_get(x_1227, 0); +lean_inc(x_1228); +x_1229 = lean_ctor_get(x_1227, 1); +lean_inc(x_1229); +if (lean_is_exclusive(x_1227)) { + lean_ctor_release(x_1227, 0); + lean_ctor_release(x_1227, 1); + x_1230 = x_1227; +} else { + lean_dec_ref(x_1227); + x_1230 = lean_box(0); +} +x_1231 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__13; +x_1232 = l_Lean_addMacroScope(x_1228, x_1231, x_1225); +x_1233 = l_Lean_instInhabitedSourceInfo___closed__1; +x_1234 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__12; +x_1235 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1235, 0, x_1233); +lean_ctor_set(x_1235, 1, x_1234); +lean_ctor_set(x_1235, 2, x_1232); +lean_ctor_set(x_1235, 3, x_13); +x_1236 = l_Array_empty___closed__1; +x_1237 = lean_array_push(x_1236, x_1235); +x_1238 = l_myMacro____x40_Init_Notation___hyg_1130____closed__23; +x_1239 = lean_array_push(x_1237, x_1238); +x_1240 = lean_array_push(x_1239, x_1238); +x_1241 = l_myMacro____x40_Init_Notation___hyg_12942____closed__14; +x_1242 = lean_array_push(x_1240, x_1241); +x_1243 = lean_array_push(x_1242, x_4); +x_1244 = l_myMacro____x40_Init_Notation___hyg_12942____closed__8; +x_1245 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1245, 0, x_1244); +lean_ctor_set(x_1245, 1, x_1243); +x_1246 = lean_array_push(x_1236, x_1245); +x_1247 = l_myMacro____x40_Init_Notation___hyg_12942____closed__6; +x_1248 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1248, 0, x_1247); +lean_ctor_set(x_1248, 1, x_1246); +x_1249 = l_myMacro____x40_Init_Notation___hyg_12942____closed__4; +x_1250 = lean_array_push(x_1249, x_1248); +x_1251 = l_myMacro____x40_Init_Notation___hyg_12942____closed__18; +x_1252 = lean_array_push(x_1250, x_1251); +x_1253 = lean_array_push(x_1252, x_1217); +x_1254 = l_myMacro____x40_Init_Notation___hyg_12942____closed__2; +x_1255 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1255, 0, x_1254); +lean_ctor_set(x_1255, 1, x_1253); +if (lean_is_scalar(x_1230)) { + x_1256 = lean_alloc_ctor(0, 2, 0); +} else { + x_1256 = x_1230; +} +lean_ctor_set(x_1256, 0, x_1255); +lean_ctor_set(x_1256, 1, x_1229); +return x_1256; } else { -if (lean_obj_tag(x_1217) == 0) +lean_object* x_1257; +x_1257 = lean_ctor_get(x_1223, 0); +lean_inc(x_1257); +lean_dec(x_1223); +if (lean_obj_tag(x_1257) == 1) { -lean_object* x_1248; lean_object* x_1249; lean_object* x_1250; lean_object* x_1251; lean_object* x_1252; lean_object* x_1253; lean_object* x_1254; lean_object* x_1255; lean_object* x_1256; lean_object* x_1257; lean_object* x_1258; lean_object* x_1259; lean_object* x_1260; lean_object* x_1261; lean_object* x_1262; lean_object* x_1263; lean_object* x_1264; lean_object* x_1265; lean_object* x_1266; lean_object* x_1267; lean_object* x_1268; lean_object* x_1269; lean_object* x_1270; lean_object* x_1271; lean_object* x_1272; lean_object* x_1273; lean_object* x_1274; -x_1248 = l_Lean_Elab_Term_getCurrMacroScope(x_6, x_7, x_8, x_9, x_10, x_11, x_1176); -x_1249 = lean_ctor_get(x_1248, 0); -lean_inc(x_1249); -x_1250 = lean_ctor_get(x_1248, 1); -lean_inc(x_1250); -lean_dec(x_1248); -x_1251 = l_Lean_Elab_Term_getMainModule___rarg(x_11, x_1250); -x_1252 = lean_ctor_get(x_1251, 0); -lean_inc(x_1252); -x_1253 = lean_ctor_get(x_1251, 1); -lean_inc(x_1253); -lean_dec(x_1251); -x_1254 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__5; -lean_inc(x_1249); -lean_inc(x_1252); -x_1255 = l_Lean_addMacroScope(x_1252, x_1254, x_1249); -x_1256 = l_Lean_instInhabitedSourceInfo___closed__1; -x_1257 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__3; -x_1258 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__8; -x_1259 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1259, 0, x_1256); -lean_ctor_set(x_1259, 1, x_1257); -lean_ctor_set(x_1259, 2, x_1255); -lean_ctor_set(x_1259, 3, x_1258); -x_1260 = l_Array_empty___closed__1; -x_1261 = lean_array_push(x_1260, x_1259); -x_1262 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__13; -x_1263 = l_Lean_addMacroScope(x_1252, x_1262, x_1249); -x_1264 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__12; -x_1265 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1265, 0, x_1256); -lean_ctor_set(x_1265, 1, x_1264); -lean_ctor_set(x_1265, 2, x_1263); -lean_ctor_set(x_1265, 3, x_13); -x_1266 = lean_array_push(x_1260, x_1265); -x_1267 = l___private_Init_Meta_0__Lean_quoteName(x_1215); -x_1268 = lean_array_push(x_1266, x_1267); -x_1269 = l_Lean_nullKind___closed__2; -x_1270 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1270, 0, x_1269); -lean_ctor_set(x_1270, 1, x_1268); -x_1271 = lean_array_push(x_1261, x_1270); -x_1272 = l_myMacro____x40_Init_Notation___hyg_2022____closed__4; -x_1273 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1273, 0, x_1272); -lean_ctor_set(x_1273, 1, x_1271); -x_1274 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__1(x_1179, x_1178, x_13, x_4, x_1175, x_1273, x_6, x_7, x_8, x_9, x_10, x_11, x_1253); +lean_object* x_1258; +x_1258 = lean_ctor_get(x_1257, 0); +lean_inc(x_1258); +if (lean_obj_tag(x_1258) == 0) +{ +lean_object* x_1259; lean_object* x_1260; lean_object* x_1261; uint8_t x_1262; +x_1259 = lean_ctor_get(x_1222, 1); +lean_inc(x_1259); +lean_dec(x_1222); +x_1260 = lean_ctor_get(x_1257, 1); +lean_inc(x_1260); +x_1261 = l_Lean_nullKind___closed__1; +x_1262 = lean_string_dec_eq(x_1260, x_1261); +lean_dec(x_1260); +if (x_1262 == 0) +{ +lean_object* x_1263; lean_object* x_1264; lean_object* x_1265; lean_object* x_1266; lean_object* x_1267; lean_object* x_1268; lean_object* x_1269; lean_object* x_1270; lean_object* x_1271; lean_object* x_1272; lean_object* x_1273; lean_object* x_1274; lean_object* x_1275; lean_object* x_1276; lean_object* x_1277; lean_object* x_1278; lean_object* x_1279; lean_object* x_1280; lean_object* x_1281; lean_object* x_1282; lean_object* x_1283; lean_object* x_1284; lean_object* x_1285; lean_object* x_1286; lean_object* x_1287; lean_object* x_1288; lean_object* x_1289; +lean_dec(x_1259); +x_1263 = l_Lean_Elab_Term_getCurrMacroScope(x_6, x_7, x_8, x_9, x_10, x_11, x_1218); +x_1264 = lean_ctor_get(x_1263, 0); +lean_inc(x_1264); +x_1265 = lean_ctor_get(x_1263, 1); +lean_inc(x_1265); +lean_dec(x_1263); +x_1266 = l_Lean_Elab_Term_getMainModule___rarg(x_11, x_1265); +x_1267 = lean_ctor_get(x_1266, 0); +lean_inc(x_1267); +x_1268 = lean_ctor_get(x_1266, 1); +lean_inc(x_1268); +lean_dec(x_1266); +x_1269 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__5; +lean_inc(x_1264); +lean_inc(x_1267); +x_1270 = l_Lean_addMacroScope(x_1267, x_1269, x_1264); +x_1271 = l_Lean_instInhabitedSourceInfo___closed__1; +x_1272 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__3; +x_1273 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__8; +x_1274 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1274, 0, x_1271); +lean_ctor_set(x_1274, 1, x_1272); +lean_ctor_set(x_1274, 2, x_1270); +lean_ctor_set(x_1274, 3, x_1273); +x_1275 = l_Array_empty___closed__1; +x_1276 = lean_array_push(x_1275, x_1274); +x_1277 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__13; +x_1278 = l_Lean_addMacroScope(x_1267, x_1277, x_1264); +x_1279 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__12; +x_1280 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1280, 0, x_1271); +lean_ctor_set(x_1280, 1, x_1279); +lean_ctor_set(x_1280, 2, x_1278); +lean_ctor_set(x_1280, 3, x_13); +x_1281 = lean_array_push(x_1275, x_1280); +x_1282 = l___private_Init_Meta_0__Lean_quoteName(x_1257); +x_1283 = lean_array_push(x_1281, x_1282); +x_1284 = l_Lean_nullKind___closed__2; +x_1285 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1285, 0, x_1284); +lean_ctor_set(x_1285, 1, x_1283); +x_1286 = lean_array_push(x_1276, x_1285); +x_1287 = l_myMacro____x40_Init_Notation___hyg_2022____closed__4; +x_1288 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1288, 0, x_1287); +lean_ctor_set(x_1288, 1, x_1286); +x_1289 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__1(x_1221, x_1220, x_13, x_4, x_1217, x_1288, x_6, x_7, x_8, x_9, x_10, x_11, x_1268); lean_dec(x_6); -return x_1274; +return x_1289; } else { -lean_object* x_1275; lean_object* x_1276; lean_object* x_1277; lean_object* x_1278; lean_object* x_1279; lean_object* x_1280; lean_object* x_1281; lean_object* x_1282; lean_object* x_1283; lean_object* x_1284; lean_object* x_1285; lean_object* x_1286; lean_object* x_1287; lean_object* x_1288; lean_object* x_1289; lean_object* x_1290; lean_object* x_1291; lean_object* x_1292; lean_object* x_1293; lean_object* x_1294; lean_object* x_1295; lean_object* x_1296; lean_object* x_1297; lean_object* x_1298; lean_object* x_1299; lean_object* x_1300; lean_object* x_1301; lean_object* x_1302; lean_object* x_1303; lean_object* x_1304; lean_object* x_1305; lean_object* x_1306; lean_object* x_1307; lean_object* x_1308; lean_object* x_1309; lean_object* x_1310; lean_object* x_1311; lean_object* x_1312; lean_object* x_1313; lean_object* x_1314; lean_object* x_1315; lean_object* x_1316; lean_object* x_1317; lean_object* x_1318; lean_object* x_1319; lean_object* x_1320; lean_object* x_1321; lean_object* x_1322; lean_object* x_1323; lean_object* x_1324; lean_object* x_1325; lean_object* x_1326; lean_object* x_1327; lean_object* x_1328; lean_object* x_1329; lean_object* x_1330; lean_object* x_1331; lean_object* x_1332; lean_object* x_1333; lean_object* x_1334; lean_object* x_1335; lean_object* x_1336; lean_object* x_1337; lean_object* x_1338; lean_object* x_1339; lean_object* x_1340; lean_object* x_1341; lean_object* x_1342; lean_object* x_1343; lean_object* x_1344; lean_object* x_1345; lean_object* x_1346; lean_object* x_1347; lean_object* x_1348; lean_object* x_1349; lean_object* x_1350; lean_object* x_1351; lean_object* x_1352; lean_object* x_1353; lean_object* x_1354; lean_object* x_1355; lean_object* x_1356; lean_object* x_1357; lean_object* x_1358; lean_object* x_1359; lean_object* x_1360; lean_object* x_1361; lean_object* x_1362; lean_object* x_1363; lean_object* x_1364; lean_object* x_1365; lean_object* x_1366; lean_object* x_1367; lean_object* x_1368; lean_object* x_1369; lean_object* x_1370; lean_object* x_1371; lean_object* x_1372; lean_object* x_1373; lean_object* x_1374; lean_object* x_1375; -x_1275 = lean_ctor_get(x_1217, 0); -lean_inc(x_1275); -lean_dec(x_1217); -x_1276 = l_Lean_Elab_Term_getCurrMacroScope(x_6, x_7, x_8, x_9, x_10, x_11, x_1176); -x_1277 = lean_ctor_get(x_1276, 0); -lean_inc(x_1277); -x_1278 = lean_ctor_get(x_1276, 1); -lean_inc(x_1278); -lean_dec(x_1276); -x_1279 = l_Lean_Elab_Term_getMainModule___rarg(x_11, x_1278); -x_1280 = lean_ctor_get(x_1279, 0); -lean_inc(x_1280); -x_1281 = lean_ctor_get(x_1279, 1); -lean_inc(x_1281); -lean_dec(x_1279); -x_1282 = l_myMacro____x40_Init_Notation___hyg_8107____closed__4; -lean_inc(x_1277); -lean_inc(x_1280); -x_1283 = l_Lean_addMacroScope(x_1280, x_1282, x_1277); -x_1284 = l_Lean_instInhabitedSourceInfo___closed__1; -x_1285 = l_myMacro____x40_Init_Notation___hyg_8107____closed__3; -x_1286 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__10; -x_1287 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1287, 0, x_1284); -lean_ctor_set(x_1287, 1, x_1285); -lean_ctor_set(x_1287, 2, x_1283); -lean_ctor_set(x_1287, 3, x_1286); -x_1288 = l_Array_empty___closed__1; -x_1289 = lean_array_push(x_1288, x_1287); -x_1290 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__5; -lean_inc(x_1277); -lean_inc(x_1280); -x_1291 = l_Lean_addMacroScope(x_1280, x_1290, x_1277); -x_1292 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__3; -x_1293 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__8; -x_1294 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1294, 0, x_1284); -lean_ctor_set(x_1294, 1, x_1292); -lean_ctor_set(x_1294, 2, x_1291); -lean_ctor_set(x_1294, 3, x_1293); -x_1295 = lean_array_push(x_1288, x_1294); -x_1296 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__13; -lean_inc(x_1277); -lean_inc(x_1280); -x_1297 = l_Lean_addMacroScope(x_1280, x_1296, x_1277); -x_1298 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__12; -x_1299 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1299, 0, x_1284); -lean_ctor_set(x_1299, 1, x_1298); -lean_ctor_set(x_1299, 2, x_1297); -lean_ctor_set(x_1299, 3, x_13); -x_1300 = lean_array_push(x_1288, x_1299); -x_1301 = l___private_Init_Meta_0__Lean_quoteName(x_1215); -lean_inc(x_1300); -x_1302 = lean_array_push(x_1300, x_1301); -x_1303 = l_Lean_nullKind___closed__2; -x_1304 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1304, 0, x_1303); -lean_ctor_set(x_1304, 1, x_1302); -x_1305 = lean_array_push(x_1295, x_1304); -x_1306 = l_myMacro____x40_Init_Notation___hyg_2022____closed__4; -x_1307 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1307, 0, x_1306); -lean_ctor_set(x_1307, 1, x_1305); -x_1308 = lean_array_push(x_1288, x_1307); -x_1309 = l_myMacro____x40_Init_Notation___hyg_1130____closed__23; +if (lean_obj_tag(x_1259) == 0) +{ +lean_object* x_1290; lean_object* x_1291; lean_object* x_1292; lean_object* x_1293; lean_object* x_1294; lean_object* x_1295; lean_object* x_1296; lean_object* x_1297; lean_object* x_1298; lean_object* x_1299; lean_object* x_1300; lean_object* x_1301; lean_object* x_1302; lean_object* x_1303; lean_object* x_1304; lean_object* x_1305; lean_object* x_1306; lean_object* x_1307; lean_object* x_1308; lean_object* x_1309; lean_object* x_1310; lean_object* x_1311; lean_object* x_1312; lean_object* x_1313; lean_object* x_1314; lean_object* x_1315; lean_object* x_1316; +x_1290 = l_Lean_Elab_Term_getCurrMacroScope(x_6, x_7, x_8, x_9, x_10, x_11, x_1218); +x_1291 = lean_ctor_get(x_1290, 0); +lean_inc(x_1291); +x_1292 = lean_ctor_get(x_1290, 1); +lean_inc(x_1292); +lean_dec(x_1290); +x_1293 = l_Lean_Elab_Term_getMainModule___rarg(x_11, x_1292); +x_1294 = lean_ctor_get(x_1293, 0); +lean_inc(x_1294); +x_1295 = lean_ctor_get(x_1293, 1); +lean_inc(x_1295); +lean_dec(x_1293); +x_1296 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__5; +lean_inc(x_1291); +lean_inc(x_1294); +x_1297 = l_Lean_addMacroScope(x_1294, x_1296, x_1291); +x_1298 = l_Lean_instInhabitedSourceInfo___closed__1; +x_1299 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__3; +x_1300 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__8; +x_1301 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1301, 0, x_1298); +lean_ctor_set(x_1301, 1, x_1299); +lean_ctor_set(x_1301, 2, x_1297); +lean_ctor_set(x_1301, 3, x_1300); +x_1302 = l_Array_empty___closed__1; +x_1303 = lean_array_push(x_1302, x_1301); +x_1304 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__13; +x_1305 = l_Lean_addMacroScope(x_1294, x_1304, x_1291); +x_1306 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__12; +x_1307 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1307, 0, x_1298); +lean_ctor_set(x_1307, 1, x_1306); +lean_ctor_set(x_1307, 2, x_1305); +lean_ctor_set(x_1307, 3, x_13); +x_1308 = lean_array_push(x_1302, x_1307); +x_1309 = l___private_Init_Meta_0__Lean_quoteName(x_1257); x_1310 = lean_array_push(x_1308, x_1309); -x_1311 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1311, 0, x_1303); -lean_ctor_set(x_1311, 1, x_1310); -x_1312 = l_myMacro____x40_Init_Notation___hyg_11187____closed__9; -x_1313 = lean_array_push(x_1312, x_1311); -x_1314 = l_myMacro____x40_Init_Notation___hyg_658____closed__8; -x_1315 = lean_array_push(x_1313, x_1314); -x_1316 = l_myMacro____x40_Init_Notation___hyg_11187____closed__8; -x_1317 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1317, 0, x_1316); -lean_ctor_set(x_1317, 1, x_1315); -x_1318 = lean_array_push(x_1288, x_1317); -x_1319 = l_myMacro____x40_Init_Notation___hyg_6100____closed__7; -lean_inc(x_1277); -lean_inc(x_1280); -x_1320 = l_Lean_addMacroScope(x_1280, x_1319, x_1277); -x_1321 = l_myMacro____x40_Init_Notation___hyg_6100____closed__3; -x_1322 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__12; -x_1323 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1323, 0, x_1284); -lean_ctor_set(x_1323, 1, x_1321); -lean_ctor_set(x_1323, 2, x_1320); -lean_ctor_set(x_1323, 3, x_1322); -x_1324 = lean_array_push(x_1288, x_1323); -x_1325 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__16; -lean_inc(x_1277); -lean_inc(x_1280); -x_1326 = l_Lean_addMacroScope(x_1280, x_1325, x_1277); -x_1327 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__15; -x_1328 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__18; +x_1311 = l_Lean_nullKind___closed__2; +x_1312 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1312, 0, x_1311); +lean_ctor_set(x_1312, 1, x_1310); +x_1313 = lean_array_push(x_1303, x_1312); +x_1314 = l_myMacro____x40_Init_Notation___hyg_2022____closed__4; +x_1315 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1315, 0, x_1314); +lean_ctor_set(x_1315, 1, x_1313); +x_1316 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__1(x_1221, x_1220, x_13, x_4, x_1217, x_1315, x_6, x_7, x_8, x_9, x_10, x_11, x_1295); +lean_dec(x_6); +return x_1316; +} +else +{ +lean_object* x_1317; lean_object* x_1318; lean_object* x_1319; lean_object* x_1320; lean_object* x_1321; lean_object* x_1322; lean_object* x_1323; lean_object* x_1324; lean_object* x_1325; lean_object* x_1326; lean_object* x_1327; lean_object* x_1328; lean_object* x_1329; lean_object* x_1330; lean_object* x_1331; lean_object* x_1332; lean_object* x_1333; lean_object* x_1334; lean_object* x_1335; lean_object* x_1336; lean_object* x_1337; lean_object* x_1338; lean_object* x_1339; lean_object* x_1340; lean_object* x_1341; lean_object* x_1342; lean_object* x_1343; lean_object* x_1344; lean_object* x_1345; lean_object* x_1346; lean_object* x_1347; lean_object* x_1348; lean_object* x_1349; lean_object* x_1350; lean_object* x_1351; lean_object* x_1352; lean_object* x_1353; lean_object* x_1354; lean_object* x_1355; lean_object* x_1356; lean_object* x_1357; lean_object* x_1358; lean_object* x_1359; lean_object* x_1360; lean_object* x_1361; lean_object* x_1362; lean_object* x_1363; lean_object* x_1364; lean_object* x_1365; lean_object* x_1366; lean_object* x_1367; lean_object* x_1368; lean_object* x_1369; lean_object* x_1370; lean_object* x_1371; lean_object* x_1372; lean_object* x_1373; lean_object* x_1374; lean_object* x_1375; lean_object* x_1376; lean_object* x_1377; lean_object* x_1378; lean_object* x_1379; lean_object* x_1380; lean_object* x_1381; lean_object* x_1382; lean_object* x_1383; lean_object* x_1384; lean_object* x_1385; lean_object* x_1386; lean_object* x_1387; lean_object* x_1388; lean_object* x_1389; lean_object* x_1390; lean_object* x_1391; lean_object* x_1392; lean_object* x_1393; lean_object* x_1394; lean_object* x_1395; lean_object* x_1396; lean_object* x_1397; lean_object* x_1398; lean_object* x_1399; lean_object* x_1400; lean_object* x_1401; lean_object* x_1402; lean_object* x_1403; lean_object* x_1404; lean_object* x_1405; lean_object* x_1406; lean_object* x_1407; lean_object* x_1408; lean_object* x_1409; lean_object* x_1410; lean_object* x_1411; lean_object* x_1412; lean_object* x_1413; lean_object* x_1414; lean_object* x_1415; lean_object* x_1416; lean_object* x_1417; +x_1317 = lean_ctor_get(x_1259, 0); +lean_inc(x_1317); +lean_dec(x_1259); +x_1318 = l_Lean_Elab_Term_getCurrMacroScope(x_6, x_7, x_8, x_9, x_10, x_11, x_1218); +x_1319 = lean_ctor_get(x_1318, 0); +lean_inc(x_1319); +x_1320 = lean_ctor_get(x_1318, 1); +lean_inc(x_1320); +lean_dec(x_1318); +x_1321 = l_Lean_Elab_Term_getMainModule___rarg(x_11, x_1320); +x_1322 = lean_ctor_get(x_1321, 0); +lean_inc(x_1322); +x_1323 = lean_ctor_get(x_1321, 1); +lean_inc(x_1323); +lean_dec(x_1321); +x_1324 = l_myMacro____x40_Init_Notation___hyg_8107____closed__4; +lean_inc(x_1319); +lean_inc(x_1322); +x_1325 = l_Lean_addMacroScope(x_1322, x_1324, x_1319); +x_1326 = l_Lean_instInhabitedSourceInfo___closed__1; +x_1327 = l_myMacro____x40_Init_Notation___hyg_8107____closed__3; +x_1328 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__10; x_1329 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1329, 0, x_1284); +lean_ctor_set(x_1329, 0, x_1326); lean_ctor_set(x_1329, 1, x_1327); -lean_ctor_set(x_1329, 2, x_1326); +lean_ctor_set(x_1329, 2, x_1325); lean_ctor_set(x_1329, 3, x_1328); -x_1330 = lean_array_push(x_1288, x_1329); -x_1331 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__9; -x_1332 = l_Lean_addMacroScope(x_1280, x_1331, x_1277); -x_1333 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__7; -x_1334 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__21; -x_1335 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1335, 0, x_1284); -lean_ctor_set(x_1335, 1, x_1333); -lean_ctor_set(x_1335, 2, x_1332); -lean_ctor_set(x_1335, 3, x_1334); -x_1336 = lean_array_push(x_1288, x_1335); -x_1337 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1337, 0, x_1303); -lean_ctor_set(x_1337, 1, x_1300); -x_1338 = lean_array_push(x_1336, x_1337); -x_1339 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1339, 0, x_1306); -lean_ctor_set(x_1339, 1, x_1338); -x_1340 = lean_array_push(x_1288, x_1339); -x_1341 = lean_array_push(x_1340, x_1309); -x_1342 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1342, 0, x_1303); -lean_ctor_set(x_1342, 1, x_1341); -x_1343 = lean_array_push(x_1312, x_1342); -x_1344 = lean_array_push(x_1343, x_1314); -x_1345 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1345, 0, x_1316); -lean_ctor_set(x_1345, 1, x_1344); -x_1346 = lean_array_push(x_1288, x_1345); -x_1347 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1347, 0, x_1303); -lean_ctor_set(x_1347, 1, x_1346); -x_1348 = lean_array_push(x_1330, x_1347); +x_1330 = l_Array_empty___closed__1; +x_1331 = lean_array_push(x_1330, x_1329); +x_1332 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__5; +lean_inc(x_1319); +lean_inc(x_1322); +x_1333 = l_Lean_addMacroScope(x_1322, x_1332, x_1319); +x_1334 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__3; +x_1335 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__8; +x_1336 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1336, 0, x_1326); +lean_ctor_set(x_1336, 1, x_1334); +lean_ctor_set(x_1336, 2, x_1333); +lean_ctor_set(x_1336, 3, x_1335); +x_1337 = lean_array_push(x_1330, x_1336); +x_1338 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__13; +lean_inc(x_1319); +lean_inc(x_1322); +x_1339 = l_Lean_addMacroScope(x_1322, x_1338, x_1319); +x_1340 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__12; +x_1341 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1341, 0, x_1326); +lean_ctor_set(x_1341, 1, x_1340); +lean_ctor_set(x_1341, 2, x_1339); +lean_ctor_set(x_1341, 3, x_13); +x_1342 = lean_array_push(x_1330, x_1341); +x_1343 = l___private_Init_Meta_0__Lean_quoteName(x_1257); +lean_inc(x_1342); +x_1344 = lean_array_push(x_1342, x_1343); +x_1345 = l_Lean_nullKind___closed__2; +x_1346 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1346, 0, x_1345); +lean_ctor_set(x_1346, 1, x_1344); +x_1347 = lean_array_push(x_1337, x_1346); +x_1348 = l_myMacro____x40_Init_Notation___hyg_2022____closed__4; x_1349 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1349, 0, x_1306); -lean_ctor_set(x_1349, 1, x_1348); -x_1350 = lean_array_push(x_1288, x_1349); -x_1351 = lean_array_push(x_1350, x_1309); -x_1352 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1352, 0, x_1303); -lean_ctor_set(x_1352, 1, x_1351); -x_1353 = lean_array_push(x_1312, x_1352); -x_1354 = lean_array_push(x_1353, x_1314); -x_1355 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1355, 0, x_1316); -lean_ctor_set(x_1355, 1, x_1354); -x_1356 = lean_array_push(x_1288, x_1355); -x_1357 = lean_array_get_size(x_1275); -lean_dec(x_1275); -x_1358 = l_Nat_repr(x_1357); -x_1359 = l_Lean_numLitKind; -x_1360 = l_Lean_Syntax_mkLit(x_1359, x_1358, x_1284); -x_1361 = lean_array_push(x_1356, x_1360); -x_1362 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1362, 0, x_1303); -lean_ctor_set(x_1362, 1, x_1361); -x_1363 = lean_array_push(x_1324, x_1362); -x_1364 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1364, 0, x_1306); -lean_ctor_set(x_1364, 1, x_1363); -x_1365 = lean_array_push(x_1288, x_1364); -x_1366 = lean_array_push(x_1365, x_1309); -x_1367 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1367, 0, x_1303); -lean_ctor_set(x_1367, 1, x_1366); -x_1368 = lean_array_push(x_1312, x_1367); -x_1369 = lean_array_push(x_1368, x_1314); -x_1370 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1370, 0, x_1316); -lean_ctor_set(x_1370, 1, x_1369); -x_1371 = lean_array_push(x_1318, x_1370); -x_1372 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1372, 0, x_1303); -lean_ctor_set(x_1372, 1, x_1371); -x_1373 = lean_array_push(x_1289, x_1372); -x_1374 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1374, 0, x_1306); -lean_ctor_set(x_1374, 1, x_1373); -x_1375 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__1(x_1179, x_1178, x_13, x_4, x_1175, x_1374, x_6, x_7, x_8, x_9, x_10, x_11, x_1281); +lean_ctor_set(x_1349, 0, x_1348); +lean_ctor_set(x_1349, 1, x_1347); +x_1350 = lean_array_push(x_1330, x_1349); +x_1351 = l_myMacro____x40_Init_Notation___hyg_1130____closed__23; +x_1352 = lean_array_push(x_1350, x_1351); +x_1353 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1353, 0, x_1345); +lean_ctor_set(x_1353, 1, x_1352); +x_1354 = l_myMacro____x40_Init_Notation___hyg_11187____closed__9; +x_1355 = lean_array_push(x_1354, x_1353); +x_1356 = l_myMacro____x40_Init_Notation___hyg_658____closed__8; +x_1357 = lean_array_push(x_1355, x_1356); +x_1358 = l_myMacro____x40_Init_Notation___hyg_11187____closed__8; +x_1359 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1359, 0, x_1358); +lean_ctor_set(x_1359, 1, x_1357); +x_1360 = lean_array_push(x_1330, x_1359); +x_1361 = l_myMacro____x40_Init_Notation___hyg_6100____closed__7; +lean_inc(x_1319); +lean_inc(x_1322); +x_1362 = l_Lean_addMacroScope(x_1322, x_1361, x_1319); +x_1363 = l_myMacro____x40_Init_Notation___hyg_6100____closed__3; +x_1364 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__12; +x_1365 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1365, 0, x_1326); +lean_ctor_set(x_1365, 1, x_1363); +lean_ctor_set(x_1365, 2, x_1362); +lean_ctor_set(x_1365, 3, x_1364); +x_1366 = lean_array_push(x_1330, x_1365); +x_1367 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__16; +lean_inc(x_1319); +lean_inc(x_1322); +x_1368 = l_Lean_addMacroScope(x_1322, x_1367, x_1319); +x_1369 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__15; +x_1370 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__18; +x_1371 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1371, 0, x_1326); +lean_ctor_set(x_1371, 1, x_1369); +lean_ctor_set(x_1371, 2, x_1368); +lean_ctor_set(x_1371, 3, x_1370); +x_1372 = lean_array_push(x_1330, x_1371); +x_1373 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__9; +x_1374 = l_Lean_addMacroScope(x_1322, x_1373, x_1319); +x_1375 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__7; +x_1376 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__21; +x_1377 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1377, 0, x_1326); +lean_ctor_set(x_1377, 1, x_1375); +lean_ctor_set(x_1377, 2, x_1374); +lean_ctor_set(x_1377, 3, x_1376); +x_1378 = lean_array_push(x_1330, x_1377); +x_1379 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1379, 0, x_1345); +lean_ctor_set(x_1379, 1, x_1342); +x_1380 = lean_array_push(x_1378, x_1379); +x_1381 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1381, 0, x_1348); +lean_ctor_set(x_1381, 1, x_1380); +x_1382 = lean_array_push(x_1330, x_1381); +x_1383 = lean_array_push(x_1382, x_1351); +x_1384 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1384, 0, x_1345); +lean_ctor_set(x_1384, 1, x_1383); +x_1385 = lean_array_push(x_1354, x_1384); +x_1386 = lean_array_push(x_1385, x_1356); +x_1387 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1387, 0, x_1358); +lean_ctor_set(x_1387, 1, x_1386); +x_1388 = lean_array_push(x_1330, x_1387); +x_1389 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1389, 0, x_1345); +lean_ctor_set(x_1389, 1, x_1388); +x_1390 = lean_array_push(x_1372, x_1389); +x_1391 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1391, 0, x_1348); +lean_ctor_set(x_1391, 1, x_1390); +x_1392 = lean_array_push(x_1330, x_1391); +x_1393 = lean_array_push(x_1392, x_1351); +x_1394 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1394, 0, x_1345); +lean_ctor_set(x_1394, 1, x_1393); +x_1395 = lean_array_push(x_1354, x_1394); +x_1396 = lean_array_push(x_1395, x_1356); +x_1397 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1397, 0, x_1358); +lean_ctor_set(x_1397, 1, x_1396); +x_1398 = lean_array_push(x_1330, x_1397); +x_1399 = lean_array_get_size(x_1317); +lean_dec(x_1317); +x_1400 = l_Nat_repr(x_1399); +x_1401 = l_Lean_numLitKind; +x_1402 = l_Lean_Syntax_mkLit(x_1401, x_1400, x_1326); +x_1403 = lean_array_push(x_1398, x_1402); +x_1404 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1404, 0, x_1345); +lean_ctor_set(x_1404, 1, x_1403); +x_1405 = lean_array_push(x_1366, x_1404); +x_1406 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1406, 0, x_1348); +lean_ctor_set(x_1406, 1, x_1405); +x_1407 = lean_array_push(x_1330, x_1406); +x_1408 = lean_array_push(x_1407, x_1351); +x_1409 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1409, 0, x_1345); +lean_ctor_set(x_1409, 1, x_1408); +x_1410 = lean_array_push(x_1354, x_1409); +x_1411 = lean_array_push(x_1410, x_1356); +x_1412 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1412, 0, x_1358); +lean_ctor_set(x_1412, 1, x_1411); +x_1413 = lean_array_push(x_1360, x_1412); +x_1414 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1414, 0, x_1345); +lean_ctor_set(x_1414, 1, x_1413); +x_1415 = lean_array_push(x_1331, x_1414); +x_1416 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1416, 0, x_1348); +lean_ctor_set(x_1416, 1, x_1415); +x_1417 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__1(x_1221, x_1220, x_13, x_4, x_1217, x_1416, x_6, x_7, x_8, x_9, x_10, x_11, x_1323); lean_dec(x_6); -return x_1375; +return x_1417; } } } else { -lean_object* x_1376; lean_object* x_1377; lean_object* x_1378; lean_object* x_1379; lean_object* x_1380; lean_object* x_1381; lean_object* x_1382; lean_object* x_1383; lean_object* x_1384; lean_object* x_1385; lean_object* x_1386; lean_object* x_1387; lean_object* x_1388; lean_object* x_1389; lean_object* x_1390; lean_object* x_1391; lean_object* x_1392; lean_object* x_1393; lean_object* x_1394; lean_object* x_1395; lean_object* x_1396; lean_object* x_1397; lean_object* x_1398; lean_object* x_1399; lean_object* x_1400; lean_object* x_1401; lean_object* x_1402; -lean_dec(x_1216); -lean_dec(x_1180); -x_1376 = l_Lean_Elab_Term_getCurrMacroScope(x_6, x_7, x_8, x_9, x_10, x_11, x_1176); -x_1377 = lean_ctor_get(x_1376, 0); -lean_inc(x_1377); -x_1378 = lean_ctor_get(x_1376, 1); -lean_inc(x_1378); -lean_dec(x_1376); -x_1379 = l_Lean_Elab_Term_getMainModule___rarg(x_11, x_1378); -x_1380 = lean_ctor_get(x_1379, 0); -lean_inc(x_1380); -x_1381 = lean_ctor_get(x_1379, 1); -lean_inc(x_1381); -lean_dec(x_1379); -x_1382 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__5; -lean_inc(x_1377); -lean_inc(x_1380); -x_1383 = l_Lean_addMacroScope(x_1380, x_1382, x_1377); -x_1384 = l_Lean_instInhabitedSourceInfo___closed__1; -x_1385 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__3; -x_1386 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__8; -x_1387 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1387, 0, x_1384); -lean_ctor_set(x_1387, 1, x_1385); -lean_ctor_set(x_1387, 2, x_1383); -lean_ctor_set(x_1387, 3, x_1386); -x_1388 = l_Array_empty___closed__1; -x_1389 = lean_array_push(x_1388, x_1387); -x_1390 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__13; -x_1391 = l_Lean_addMacroScope(x_1380, x_1390, x_1377); -x_1392 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__12; -x_1393 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1393, 0, x_1384); -lean_ctor_set(x_1393, 1, x_1392); -lean_ctor_set(x_1393, 2, x_1391); -lean_ctor_set(x_1393, 3, x_13); -x_1394 = lean_array_push(x_1388, x_1393); -x_1395 = l___private_Init_Meta_0__Lean_quoteName(x_1215); -x_1396 = lean_array_push(x_1394, x_1395); -x_1397 = l_Lean_nullKind___closed__2; -x_1398 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1398, 0, x_1397); -lean_ctor_set(x_1398, 1, x_1396); -x_1399 = lean_array_push(x_1389, x_1398); -x_1400 = l_myMacro____x40_Init_Notation___hyg_2022____closed__4; -x_1401 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1401, 0, x_1400); -lean_ctor_set(x_1401, 1, x_1399); -x_1402 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__1(x_1179, x_1178, x_13, x_4, x_1175, x_1401, x_6, x_7, x_8, x_9, x_10, x_11, x_1381); +lean_object* x_1418; lean_object* x_1419; lean_object* x_1420; lean_object* x_1421; lean_object* x_1422; lean_object* x_1423; lean_object* x_1424; lean_object* x_1425; lean_object* x_1426; lean_object* x_1427; lean_object* x_1428; lean_object* x_1429; lean_object* x_1430; lean_object* x_1431; lean_object* x_1432; lean_object* x_1433; lean_object* x_1434; lean_object* x_1435; lean_object* x_1436; lean_object* x_1437; lean_object* x_1438; lean_object* x_1439; lean_object* x_1440; lean_object* x_1441; lean_object* x_1442; lean_object* x_1443; lean_object* x_1444; +lean_dec(x_1258); +lean_dec(x_1222); +x_1418 = l_Lean_Elab_Term_getCurrMacroScope(x_6, x_7, x_8, x_9, x_10, x_11, x_1218); +x_1419 = lean_ctor_get(x_1418, 0); +lean_inc(x_1419); +x_1420 = lean_ctor_get(x_1418, 1); +lean_inc(x_1420); +lean_dec(x_1418); +x_1421 = l_Lean_Elab_Term_getMainModule___rarg(x_11, x_1420); +x_1422 = lean_ctor_get(x_1421, 0); +lean_inc(x_1422); +x_1423 = lean_ctor_get(x_1421, 1); +lean_inc(x_1423); +lean_dec(x_1421); +x_1424 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__5; +lean_inc(x_1419); +lean_inc(x_1422); +x_1425 = l_Lean_addMacroScope(x_1422, x_1424, x_1419); +x_1426 = l_Lean_instInhabitedSourceInfo___closed__1; +x_1427 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__3; +x_1428 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__8; +x_1429 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1429, 0, x_1426); +lean_ctor_set(x_1429, 1, x_1427); +lean_ctor_set(x_1429, 2, x_1425); +lean_ctor_set(x_1429, 3, x_1428); +x_1430 = l_Array_empty___closed__1; +x_1431 = lean_array_push(x_1430, x_1429); +x_1432 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__13; +x_1433 = l_Lean_addMacroScope(x_1422, x_1432, x_1419); +x_1434 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__12; +x_1435 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1435, 0, x_1426); +lean_ctor_set(x_1435, 1, x_1434); +lean_ctor_set(x_1435, 2, x_1433); +lean_ctor_set(x_1435, 3, x_13); +x_1436 = lean_array_push(x_1430, x_1435); +x_1437 = l___private_Init_Meta_0__Lean_quoteName(x_1257); +x_1438 = lean_array_push(x_1436, x_1437); +x_1439 = l_Lean_nullKind___closed__2; +x_1440 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1440, 0, x_1439); +lean_ctor_set(x_1440, 1, x_1438); +x_1441 = lean_array_push(x_1431, x_1440); +x_1442 = l_myMacro____x40_Init_Notation___hyg_2022____closed__4; +x_1443 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1443, 0, x_1442); +lean_ctor_set(x_1443, 1, x_1441); +x_1444 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__1(x_1221, x_1220, x_13, x_4, x_1217, x_1443, x_6, x_7, x_8, x_9, x_10, x_11, x_1423); lean_dec(x_6); -return x_1402; +return x_1444; } } else { -lean_object* x_1403; lean_object* x_1404; lean_object* x_1405; lean_object* x_1406; lean_object* x_1407; lean_object* x_1408; lean_object* x_1409; lean_object* x_1410; lean_object* x_1411; lean_object* x_1412; lean_object* x_1413; lean_object* x_1414; lean_object* x_1415; lean_object* x_1416; lean_object* x_1417; lean_object* x_1418; lean_object* x_1419; lean_object* x_1420; lean_object* x_1421; lean_object* x_1422; lean_object* x_1423; lean_object* x_1424; lean_object* x_1425; lean_object* x_1426; lean_object* x_1427; lean_object* x_1428; lean_object* x_1429; -lean_dec(x_1180); -x_1403 = l_Lean_Elab_Term_getCurrMacroScope(x_6, x_7, x_8, x_9, x_10, x_11, x_1176); -x_1404 = lean_ctor_get(x_1403, 0); -lean_inc(x_1404); -x_1405 = lean_ctor_get(x_1403, 1); -lean_inc(x_1405); -lean_dec(x_1403); -x_1406 = l_Lean_Elab_Term_getMainModule___rarg(x_11, x_1405); -x_1407 = lean_ctor_get(x_1406, 0); -lean_inc(x_1407); -x_1408 = lean_ctor_get(x_1406, 1); -lean_inc(x_1408); -lean_dec(x_1406); -x_1409 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__5; -lean_inc(x_1404); -lean_inc(x_1407); -x_1410 = l_Lean_addMacroScope(x_1407, x_1409, x_1404); -x_1411 = l_Lean_instInhabitedSourceInfo___closed__1; -x_1412 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__3; -x_1413 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__8; -x_1414 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1414, 0, x_1411); -lean_ctor_set(x_1414, 1, x_1412); -lean_ctor_set(x_1414, 2, x_1410); -lean_ctor_set(x_1414, 3, x_1413); -x_1415 = l_Array_empty___closed__1; -x_1416 = lean_array_push(x_1415, x_1414); -x_1417 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__13; -x_1418 = l_Lean_addMacroScope(x_1407, x_1417, x_1404); -x_1419 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__12; -x_1420 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1420, 0, x_1411); -lean_ctor_set(x_1420, 1, x_1419); -lean_ctor_set(x_1420, 2, x_1418); -lean_ctor_set(x_1420, 3, x_13); -x_1421 = lean_array_push(x_1415, x_1420); -x_1422 = l___private_Init_Meta_0__Lean_quoteName(x_1215); -x_1423 = lean_array_push(x_1421, x_1422); -x_1424 = l_Lean_nullKind___closed__2; -x_1425 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1425, 0, x_1424); -lean_ctor_set(x_1425, 1, x_1423); -x_1426 = lean_array_push(x_1416, x_1425); -x_1427 = l_myMacro____x40_Init_Notation___hyg_2022____closed__4; -x_1428 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1428, 0, x_1427); -lean_ctor_set(x_1428, 1, x_1426); -x_1429 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__1(x_1179, x_1178, x_13, x_4, x_1175, x_1428, x_6, x_7, x_8, x_9, x_10, x_11, x_1408); +lean_object* x_1445; lean_object* x_1446; lean_object* x_1447; lean_object* x_1448; lean_object* x_1449; lean_object* x_1450; lean_object* x_1451; lean_object* x_1452; lean_object* x_1453; lean_object* x_1454; lean_object* x_1455; lean_object* x_1456; lean_object* x_1457; lean_object* x_1458; lean_object* x_1459; lean_object* x_1460; lean_object* x_1461; lean_object* x_1462; lean_object* x_1463; lean_object* x_1464; lean_object* x_1465; lean_object* x_1466; lean_object* x_1467; lean_object* x_1468; lean_object* x_1469; lean_object* x_1470; lean_object* x_1471; +lean_dec(x_1222); +x_1445 = l_Lean_Elab_Term_getCurrMacroScope(x_6, x_7, x_8, x_9, x_10, x_11, x_1218); +x_1446 = lean_ctor_get(x_1445, 0); +lean_inc(x_1446); +x_1447 = lean_ctor_get(x_1445, 1); +lean_inc(x_1447); +lean_dec(x_1445); +x_1448 = l_Lean_Elab_Term_getMainModule___rarg(x_11, x_1447); +x_1449 = lean_ctor_get(x_1448, 0); +lean_inc(x_1449); +x_1450 = lean_ctor_get(x_1448, 1); +lean_inc(x_1450); +lean_dec(x_1448); +x_1451 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__5; +lean_inc(x_1446); +lean_inc(x_1449); +x_1452 = l_Lean_addMacroScope(x_1449, x_1451, x_1446); +x_1453 = l_Lean_instInhabitedSourceInfo___closed__1; +x_1454 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__3; +x_1455 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__8; +x_1456 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1456, 0, x_1453); +lean_ctor_set(x_1456, 1, x_1454); +lean_ctor_set(x_1456, 2, x_1452); +lean_ctor_set(x_1456, 3, x_1455); +x_1457 = l_Array_empty___closed__1; +x_1458 = lean_array_push(x_1457, x_1456); +x_1459 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__13; +x_1460 = l_Lean_addMacroScope(x_1449, x_1459, x_1446); +x_1461 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__12; +x_1462 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1462, 0, x_1453); +lean_ctor_set(x_1462, 1, x_1461); +lean_ctor_set(x_1462, 2, x_1460); +lean_ctor_set(x_1462, 3, x_13); +x_1463 = lean_array_push(x_1457, x_1462); +x_1464 = l___private_Init_Meta_0__Lean_quoteName(x_1257); +x_1465 = lean_array_push(x_1463, x_1464); +x_1466 = l_Lean_nullKind___closed__2; +x_1467 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1467, 0, x_1466); +lean_ctor_set(x_1467, 1, x_1465); +x_1468 = lean_array_push(x_1458, x_1467); +x_1469 = l_myMacro____x40_Init_Notation___hyg_2022____closed__4; +x_1470 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1470, 0, x_1469); +lean_ctor_set(x_1470, 1, x_1468); +x_1471 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__1(x_1221, x_1220, x_13, x_4, x_1217, x_1470, x_6, x_7, x_8, x_9, x_10, x_11, x_1450); lean_dec(x_6); -return x_1429; +return x_1471; } } } else { -lean_object* x_1430; lean_object* x_1431; lean_object* x_1432; lean_object* x_1433; -x_1430 = lean_ctor_get(x_1, 0); -lean_inc(x_1430); +lean_object* x_1472; lean_object* x_1473; lean_object* x_1474; lean_object* x_1475; +x_1472 = lean_ctor_get(x_1, 0); +lean_inc(x_1472); lean_dec(x_1); -x_1431 = l_Lean_Syntax_antiquotSpliceKind_x3f(x_1430); -x_1432 = l_Lean_Syntax_getAntiquotSpliceContents(x_1430); +x_1473 = l_Lean_Syntax_antiquotSpliceKind_x3f(x_1472); +x_1474 = l_Lean_Syntax_getAntiquotSpliceContents(x_1472); lean_inc(x_10); lean_inc(x_6); -x_1433 = l_Lean_Elab_Term_Quotation_getAntiquotationIds(x_1430, x_6, x_7, x_8, x_9, x_10, x_11, x_1176); -lean_dec(x_1430); -if (lean_obj_tag(x_1433) == 0) +x_1475 = l_Lean_Elab_Term_Quotation_getAntiquotationIds(x_1472, x_6, x_7, x_8, x_9, x_10, x_11, x_1218); +lean_dec(x_1472); +if (lean_obj_tag(x_1475) == 0) { -lean_object* x_1434; lean_object* x_1435; lean_object* x_1436; lean_object* x_1437; lean_object* x_1438; lean_object* x_1439; lean_object* x_1440; lean_object* x_1441; lean_object* x_1442; lean_object* x_1443; lean_object* x_1444; lean_object* x_1445; lean_object* x_1446; lean_object* x_1447; lean_object* x_1448; lean_object* x_1449; -x_1434 = lean_ctor_get(x_1433, 0); -lean_inc(x_1434); -x_1435 = lean_ctor_get(x_1433, 1); -lean_inc(x_1435); -lean_dec(x_1433); -x_1436 = lean_st_ref_take(x_11, x_1435); -x_1437 = lean_ctor_get(x_1436, 0); -lean_inc(x_1437); -x_1438 = lean_ctor_get(x_1436, 1); -lean_inc(x_1438); -lean_dec(x_1436); -x_1439 = lean_ctor_get(x_1437, 0); -lean_inc(x_1439); -x_1440 = lean_ctor_get(x_1437, 1); -lean_inc(x_1440); -x_1441 = lean_ctor_get(x_1437, 2); -lean_inc(x_1441); -x_1442 = lean_ctor_get(x_1437, 3); -lean_inc(x_1442); -if (lean_is_exclusive(x_1437)) { - lean_ctor_release(x_1437, 0); - lean_ctor_release(x_1437, 1); - lean_ctor_release(x_1437, 2); - lean_ctor_release(x_1437, 3); - x_1443 = x_1437; -} else { - lean_dec_ref(x_1437); - x_1443 = lean_box(0); -} -x_1444 = lean_nat_add(x_1440, x_1160); -if (lean_is_scalar(x_1443)) { - x_1445 = lean_alloc_ctor(0, 4, 0); -} else { - x_1445 = x_1443; -} -lean_ctor_set(x_1445, 0, x_1439); -lean_ctor_set(x_1445, 1, x_1444); -lean_ctor_set(x_1445, 2, x_1441); -lean_ctor_set(x_1445, 3, x_1442); -x_1446 = lean_st_ref_set(x_11, x_1445, x_1438); -x_1447 = lean_ctor_get(x_1446, 1); -lean_inc(x_1447); -lean_dec(x_1446); -x_1448 = lean_alloc_ctor(0, 6, 3); -lean_ctor_set(x_1448, 0, x_1165); -lean_ctor_set(x_1448, 1, x_1166); -lean_ctor_set(x_1448, 2, x_1167); -lean_ctor_set(x_1448, 3, x_1168); -lean_ctor_set(x_1448, 4, x_1440); -lean_ctor_set(x_1448, 5, x_1172); -lean_ctor_set_uint8(x_1448, sizeof(void*)*6, x_1169); -lean_ctor_set_uint8(x_1448, sizeof(void*)*6 + 1, x_1170); -lean_ctor_set_uint8(x_1448, sizeof(void*)*6 + 2, x_1171); -lean_inc(x_11); -lean_inc(x_10); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -x_1449 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch(x_1179, x_1178, x_1448, x_7, x_8, x_9, x_10, x_11, x_1447); -if (lean_obj_tag(x_1449) == 0) -{ -if (lean_obj_tag(x_1431) == 0) -{ -lean_object* x_1450; lean_object* x_1451; lean_object* x_1452; lean_object* x_1453; lean_object* x_1454; lean_object* x_1455; lean_object* x_1456; lean_object* x_1457; lean_object* x_1458; lean_object* x_1459; lean_object* x_1460; lean_object* x_1461; lean_object* x_1462; lean_object* x_1463; lean_object* x_1464; lean_object* x_1465; lean_object* x_1466; lean_object* x_1467; lean_object* x_1468; lean_object* x_1469; lean_object* x_1470; lean_object* x_1471; lean_object* x_1472; lean_object* x_1473; lean_object* x_1474; -x_1450 = lean_ctor_get(x_1449, 0); -lean_inc(x_1450); -x_1451 = lean_ctor_get(x_1449, 1); -lean_inc(x_1451); -lean_dec(x_1449); -x_1452 = l_Lean_Elab_Term_getCurrMacroScope(x_6, x_7, x_8, x_9, x_10, x_11, x_1451); -x_1453 = lean_ctor_get(x_1452, 0); -lean_inc(x_1453); -x_1454 = lean_ctor_get(x_1452, 1); -lean_inc(x_1454); -lean_dec(x_1452); -x_1455 = l_Lean_Elab_Term_getMainModule___rarg(x_11, x_1454); -x_1456 = lean_ctor_get(x_1455, 0); -lean_inc(x_1456); -x_1457 = lean_ctor_get(x_1455, 1); -lean_inc(x_1457); -lean_dec(x_1455); -x_1458 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__9; -x_1459 = l_Lean_addMacroScope(x_1456, x_1458, x_1453); -x_1460 = l_Lean_instInhabitedSourceInfo___closed__1; -x_1461 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__7; -x_1462 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__21; -x_1463 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1463, 0, x_1460); -lean_ctor_set(x_1463, 1, x_1461); -lean_ctor_set(x_1463, 2, x_1459); -lean_ctor_set(x_1463, 3, x_1462); -x_1464 = l_Array_empty___closed__1; -x_1465 = lean_array_push(x_1464, x_1463); -x_1466 = lean_array_push(x_1464, x_4); -x_1467 = l_Lean_nullKind___closed__2; -x_1468 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1468, 0, x_1467); -lean_ctor_set(x_1468, 1, x_1466); -x_1469 = lean_array_push(x_1465, x_1468); -x_1470 = l_myMacro____x40_Init_Notation___hyg_2022____closed__4; -x_1471 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1471, 0, x_1470); -lean_ctor_set(x_1471, 1, x_1469); -x_1472 = l_myMacro____x40_Init_Notation___hyg_2022____closed__2; -x_1473 = lean_box(0); -x_1474 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__3(x_1434, x_1472, x_1460, x_1464, x_1467, x_13, x_1432, x_1470, x_1450, x_1175, x_1471, x_1473, x_6, x_7, x_8, x_9, x_10, x_11, x_1457); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_1432); -return x_1474; -} -else -{ -lean_object* x_1475; -x_1475 = lean_ctor_get(x_1431, 0); -lean_inc(x_1475); -lean_dec(x_1431); -switch (lean_obj_tag(x_1475)) { -case 0: -{ -lean_object* x_1476; lean_object* x_1477; lean_object* x_1478; lean_object* x_1479; lean_object* x_1480; lean_object* x_1481; lean_object* x_1482; lean_object* x_1483; lean_object* x_1484; lean_object* x_1485; lean_object* x_1486; lean_object* x_1487; lean_object* x_1488; lean_object* x_1489; lean_object* x_1490; lean_object* x_1491; lean_object* x_1492; lean_object* x_1493; lean_object* x_1494; lean_object* x_1495; lean_object* x_1496; lean_object* x_1497; lean_object* x_1498; uint8_t x_1499; -x_1476 = lean_ctor_get(x_1449, 0); +lean_object* x_1476; lean_object* x_1477; lean_object* x_1478; lean_object* x_1479; lean_object* x_1480; lean_object* x_1481; lean_object* x_1482; lean_object* x_1483; lean_object* x_1484; lean_object* x_1485; lean_object* x_1486; lean_object* x_1487; lean_object* x_1488; lean_object* x_1489; lean_object* x_1490; lean_object* x_1491; +x_1476 = lean_ctor_get(x_1475, 0); lean_inc(x_1476); -x_1477 = lean_ctor_get(x_1449, 1); +x_1477 = lean_ctor_get(x_1475, 1); lean_inc(x_1477); -lean_dec(x_1449); -x_1478 = l_Lean_Elab_Term_getCurrMacroScope(x_6, x_7, x_8, x_9, x_10, x_11, x_1477); +lean_dec(x_1475); +x_1478 = lean_st_ref_take(x_11, x_1477); x_1479 = lean_ctor_get(x_1478, 0); lean_inc(x_1479); x_1480 = lean_ctor_get(x_1478, 1); lean_inc(x_1480); lean_dec(x_1478); -x_1481 = l_Lean_Elab_Term_getMainModule___rarg(x_11, x_1480); -x_1482 = lean_ctor_get(x_1481, 0); +x_1481 = lean_ctor_get(x_1479, 0); +lean_inc(x_1481); +x_1482 = lean_ctor_get(x_1479, 1); lean_inc(x_1482); -x_1483 = lean_ctor_get(x_1481, 1); +x_1483 = lean_ctor_get(x_1479, 2); lean_inc(x_1483); -lean_dec(x_1481); -x_1484 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__9; -x_1485 = l_Lean_addMacroScope(x_1482, x_1484, x_1479); -x_1486 = l_Lean_instInhabitedSourceInfo___closed__1; -x_1487 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__7; -x_1488 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__21; -x_1489 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1489, 0, x_1486); -lean_ctor_set(x_1489, 1, x_1487); -lean_ctor_set(x_1489, 2, x_1485); -lean_ctor_set(x_1489, 3, x_1488); -x_1490 = l_Array_empty___closed__1; -x_1491 = lean_array_push(x_1490, x_1489); -x_1492 = lean_array_push(x_1490, x_4); -x_1493 = l_Lean_nullKind___closed__2; -x_1494 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1494, 0, x_1493); -lean_ctor_set(x_1494, 1, x_1492); -x_1495 = lean_array_push(x_1491, x_1494); -x_1496 = l_myMacro____x40_Init_Notation___hyg_2022____closed__4; -x_1497 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1497, 0, x_1496); -lean_ctor_set(x_1497, 1, x_1495); -x_1498 = l_Lean_Parser_sepByElemParser___closed__1; -x_1499 = lean_name_eq(x_1475, x_1498); -if (x_1499 == 0) +x_1484 = lean_ctor_get(x_1479, 3); +lean_inc(x_1484); +if (lean_is_exclusive(x_1479)) { + lean_ctor_release(x_1479, 0); + lean_ctor_release(x_1479, 1); + lean_ctor_release(x_1479, 2); + lean_ctor_release(x_1479, 3); + x_1485 = x_1479; +} else { + lean_dec_ref(x_1479); + x_1485 = lean_box(0); +} +x_1486 = lean_nat_add(x_1482, x_1202); +if (lean_is_scalar(x_1485)) { + x_1487 = lean_alloc_ctor(0, 4, 0); +} else { + x_1487 = x_1485; +} +lean_ctor_set(x_1487, 0, x_1481); +lean_ctor_set(x_1487, 1, x_1486); +lean_ctor_set(x_1487, 2, x_1483); +lean_ctor_set(x_1487, 3, x_1484); +x_1488 = lean_st_ref_set(x_11, x_1487, x_1480); +x_1489 = lean_ctor_get(x_1488, 1); +lean_inc(x_1489); +lean_dec(x_1488); +x_1490 = lean_alloc_ctor(0, 6, 3); +lean_ctor_set(x_1490, 0, x_1207); +lean_ctor_set(x_1490, 1, x_1208); +lean_ctor_set(x_1490, 2, x_1209); +lean_ctor_set(x_1490, 3, x_1210); +lean_ctor_set(x_1490, 4, x_1482); +lean_ctor_set(x_1490, 5, x_1214); +lean_ctor_set_uint8(x_1490, sizeof(void*)*6, x_1211); +lean_ctor_set_uint8(x_1490, sizeof(void*)*6 + 1, x_1212); +lean_ctor_set_uint8(x_1490, sizeof(void*)*6 + 2, x_1213); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +x_1491 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch(x_1221, x_1220, x_1490, x_7, x_8, x_9, x_10, x_11, x_1489); +if (lean_obj_tag(x_1491) == 0) { -lean_object* x_1500; lean_object* x_1501; lean_object* x_1502; -x_1500 = l_myMacro____x40_Init_Notation___hyg_2022____closed__2; -x_1501 = lean_box(0); -x_1502 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__4(x_1434, x_1500, x_1486, x_1490, x_1493, x_13, x_1432, x_1496, x_1476, x_1175, x_1497, x_1501, x_6, x_7, x_8, x_9, x_10, x_11, x_1483); +if (lean_obj_tag(x_1473) == 0) +{ +lean_object* x_1492; lean_object* x_1493; lean_object* x_1494; lean_object* x_1495; lean_object* x_1496; lean_object* x_1497; lean_object* x_1498; lean_object* x_1499; lean_object* x_1500; lean_object* x_1501; lean_object* x_1502; lean_object* x_1503; lean_object* x_1504; lean_object* x_1505; lean_object* x_1506; lean_object* x_1507; lean_object* x_1508; lean_object* x_1509; lean_object* x_1510; lean_object* x_1511; lean_object* x_1512; lean_object* x_1513; lean_object* x_1514; uint8_t x_1515; +x_1492 = lean_ctor_get(x_1491, 0); +lean_inc(x_1492); +x_1493 = lean_ctor_get(x_1491, 1); +lean_inc(x_1493); +lean_dec(x_1491); +x_1494 = l_Lean_Elab_Term_getCurrMacroScope(x_6, x_7, x_8, x_9, x_10, x_11, x_1493); +x_1495 = lean_ctor_get(x_1494, 0); +lean_inc(x_1495); +x_1496 = lean_ctor_get(x_1494, 1); +lean_inc(x_1496); +lean_dec(x_1494); +x_1497 = l_Lean_Elab_Term_getMainModule___rarg(x_11, x_1496); +x_1498 = lean_ctor_get(x_1497, 0); +lean_inc(x_1498); +x_1499 = lean_ctor_get(x_1497, 1); +lean_inc(x_1499); +lean_dec(x_1497); +x_1500 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__9; +x_1501 = l_Lean_addMacroScope(x_1498, x_1500, x_1495); +x_1502 = l_Lean_instInhabitedSourceInfo___closed__1; +x_1503 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__7; +x_1504 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__21; +x_1505 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1505, 0, x_1502); +lean_ctor_set(x_1505, 1, x_1503); +lean_ctor_set(x_1505, 2, x_1501); +lean_ctor_set(x_1505, 3, x_1504); +x_1506 = l_Array_empty___closed__1; +x_1507 = lean_array_push(x_1506, x_1505); +x_1508 = lean_array_push(x_1506, x_4); +x_1509 = l_Lean_nullKind___closed__2; +x_1510 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1510, 0, x_1509); +lean_ctor_set(x_1510, 1, x_1508); +x_1511 = lean_array_push(x_1507, x_1510); +x_1512 = l_myMacro____x40_Init_Notation___hyg_2022____closed__4; +x_1513 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1513, 0, x_1512); +lean_ctor_set(x_1513, 1, x_1511); +x_1514 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__2___closed__1; +x_1515 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3(x_1473, x_1514); +if (x_1515 == 0) +{ +lean_object* x_1516; lean_object* x_1517; lean_object* x_1518; +x_1516 = l_myMacro____x40_Init_Notation___hyg_2022____closed__2; +x_1517 = lean_box(0); +x_1518 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__3(x_1476, x_1516, x_1502, x_1506, x_1509, x_13, x_1474, x_1512, x_1492, x_1217, x_1513, x_1517, x_6, x_7, x_8, x_9, x_10, x_11, x_1499); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); -lean_dec(x_1432); -return x_1502; +lean_dec(x_1474); +return x_1518; } else { -lean_object* x_1503; lean_object* x_1504; lean_object* x_1505; lean_object* x_1506; lean_object* x_1507; lean_object* x_1508; lean_object* x_1509; lean_object* x_1510; lean_object* x_1511; lean_object* x_1512; lean_object* x_1513; lean_object* x_1514; lean_object* x_1515; lean_object* x_1516; lean_object* x_1517; lean_object* x_1518; lean_object* x_1519; lean_object* x_1520; lean_object* x_1521; -x_1503 = l_Lean_Elab_Term_getCurrMacroScope(x_6, x_7, x_8, x_9, x_10, x_11, x_1483); -x_1504 = lean_ctor_get(x_1503, 0); -lean_inc(x_1504); -x_1505 = lean_ctor_get(x_1503, 1); -lean_inc(x_1505); -lean_dec(x_1503); -x_1506 = l_Lean_Elab_Term_getMainModule___rarg(x_11, x_1505); -x_1507 = lean_ctor_get(x_1506, 0); -lean_inc(x_1507); -x_1508 = lean_ctor_get(x_1506, 1); -lean_inc(x_1508); -lean_dec(x_1506); -x_1509 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__26; -x_1510 = l_Lean_addMacroScope(x_1507, x_1509, x_1504); -x_1511 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__24; -x_1512 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__28; -x_1513 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1513, 0, x_1486); -lean_ctor_set(x_1513, 1, x_1511); -lean_ctor_set(x_1513, 2, x_1510); -lean_ctor_set(x_1513, 3, x_1512); -x_1514 = lean_array_push(x_1490, x_1513); -x_1515 = lean_array_push(x_1490, x_1497); -x_1516 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1516, 0, x_1493); -lean_ctor_set(x_1516, 1, x_1515); -x_1517 = lean_array_push(x_1514, x_1516); -x_1518 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1518, 0, x_1496); -lean_ctor_set(x_1518, 1, x_1517); -x_1519 = l_myMacro____x40_Init_Notation___hyg_2022____closed__2; -x_1520 = lean_box(0); -x_1521 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__4(x_1434, x_1519, x_1486, x_1490, x_1493, x_13, x_1432, x_1496, x_1476, x_1175, x_1518, x_1520, x_6, x_7, x_8, x_9, x_10, x_11, x_1508); +lean_object* x_1519; lean_object* x_1520; lean_object* x_1521; lean_object* x_1522; lean_object* x_1523; lean_object* x_1524; lean_object* x_1525; lean_object* x_1526; lean_object* x_1527; lean_object* x_1528; lean_object* x_1529; lean_object* x_1530; lean_object* x_1531; lean_object* x_1532; lean_object* x_1533; lean_object* x_1534; lean_object* x_1535; lean_object* x_1536; lean_object* x_1537; +x_1519 = l_Lean_Elab_Term_getCurrMacroScope(x_6, x_7, x_8, x_9, x_10, x_11, x_1499); +x_1520 = lean_ctor_get(x_1519, 0); +lean_inc(x_1520); +x_1521 = lean_ctor_get(x_1519, 1); +lean_inc(x_1521); +lean_dec(x_1519); +x_1522 = l_Lean_Elab_Term_getMainModule___rarg(x_11, x_1521); +x_1523 = lean_ctor_get(x_1522, 0); +lean_inc(x_1523); +x_1524 = lean_ctor_get(x_1522, 1); +lean_inc(x_1524); +lean_dec(x_1522); +x_1525 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__26; +x_1526 = l_Lean_addMacroScope(x_1523, x_1525, x_1520); +x_1527 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__24; +x_1528 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__28; +x_1529 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1529, 0, x_1502); +lean_ctor_set(x_1529, 1, x_1527); +lean_ctor_set(x_1529, 2, x_1526); +lean_ctor_set(x_1529, 3, x_1528); +x_1530 = lean_array_push(x_1506, x_1529); +x_1531 = lean_array_push(x_1506, x_1513); +x_1532 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1532, 0, x_1509); +lean_ctor_set(x_1532, 1, x_1531); +x_1533 = lean_array_push(x_1530, x_1532); +x_1534 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1534, 0, x_1512); +lean_ctor_set(x_1534, 1, x_1533); +x_1535 = l_myMacro____x40_Init_Notation___hyg_2022____closed__2; +x_1536 = lean_box(0); +x_1537 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__3(x_1476, x_1535, x_1502, x_1506, x_1509, x_13, x_1474, x_1512, x_1492, x_1217, x_1534, x_1536, x_6, x_7, x_8, x_9, x_10, x_11, x_1524); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); -lean_dec(x_1432); -return x_1521; +lean_dec(x_1474); +return x_1537; } } -case 1: +else { -lean_object* x_1522; -x_1522 = lean_ctor_get(x_1475, 0); -lean_inc(x_1522); -switch (lean_obj_tag(x_1522)) { +lean_object* x_1538; +x_1538 = lean_ctor_get(x_1473, 0); +lean_inc(x_1538); +switch (lean_obj_tag(x_1538)) { case 0: { -lean_object* x_1523; lean_object* x_1524; lean_object* x_1525; lean_object* x_1526; uint8_t x_1527; -x_1523 = lean_ctor_get(x_1449, 0); -lean_inc(x_1523); -x_1524 = lean_ctor_get(x_1449, 1); -lean_inc(x_1524); -lean_dec(x_1449); -x_1525 = lean_ctor_get(x_1475, 1); -lean_inc(x_1525); -x_1526 = l_myMacro____x40_Init_Notation___hyg_876____closed__1; -x_1527 = lean_string_dec_eq(x_1525, x_1526); -lean_dec(x_1525); -if (x_1527 == 0) +lean_object* x_1539; lean_object* x_1540; lean_object* x_1541; lean_object* x_1542; lean_object* x_1543; lean_object* x_1544; lean_object* x_1545; lean_object* x_1546; lean_object* x_1547; lean_object* x_1548; lean_object* x_1549; lean_object* x_1550; lean_object* x_1551; lean_object* x_1552; lean_object* x_1553; lean_object* x_1554; lean_object* x_1555; lean_object* x_1556; lean_object* x_1557; lean_object* x_1558; lean_object* x_1559; lean_object* x_1560; lean_object* x_1561; uint8_t x_1562; +x_1539 = lean_ctor_get(x_1491, 0); +lean_inc(x_1539); +x_1540 = lean_ctor_get(x_1491, 1); +lean_inc(x_1540); +lean_dec(x_1491); +x_1541 = l_Lean_Elab_Term_getCurrMacroScope(x_6, x_7, x_8, x_9, x_10, x_11, x_1540); +x_1542 = lean_ctor_get(x_1541, 0); +lean_inc(x_1542); +x_1543 = lean_ctor_get(x_1541, 1); +lean_inc(x_1543); +lean_dec(x_1541); +x_1544 = l_Lean_Elab_Term_getMainModule___rarg(x_11, x_1543); +x_1545 = lean_ctor_get(x_1544, 0); +lean_inc(x_1545); +x_1546 = lean_ctor_get(x_1544, 1); +lean_inc(x_1546); +lean_dec(x_1544); +x_1547 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__9; +x_1548 = l_Lean_addMacroScope(x_1545, x_1547, x_1542); +x_1549 = l_Lean_instInhabitedSourceInfo___closed__1; +x_1550 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__7; +x_1551 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__21; +x_1552 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1552, 0, x_1549); +lean_ctor_set(x_1552, 1, x_1550); +lean_ctor_set(x_1552, 2, x_1548); +lean_ctor_set(x_1552, 3, x_1551); +x_1553 = l_Array_empty___closed__1; +x_1554 = lean_array_push(x_1553, x_1552); +x_1555 = lean_array_push(x_1553, x_4); +x_1556 = l_Lean_nullKind___closed__2; +x_1557 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1557, 0, x_1556); +lean_ctor_set(x_1557, 1, x_1555); +x_1558 = lean_array_push(x_1554, x_1557); +x_1559 = l_myMacro____x40_Init_Notation___hyg_2022____closed__4; +x_1560 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1560, 0, x_1559); +lean_ctor_set(x_1560, 1, x_1558); +x_1561 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__2___closed__1; +x_1562 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3(x_1473, x_1561); +lean_dec(x_1473); +if (x_1562 == 0) { -lean_object* x_1528; lean_object* x_1529; lean_object* x_1530; lean_object* x_1531; lean_object* x_1532; lean_object* x_1533; lean_object* x_1534; lean_object* x_1535; lean_object* x_1536; lean_object* x_1537; lean_object* x_1538; lean_object* x_1539; lean_object* x_1540; lean_object* x_1541; lean_object* x_1542; lean_object* x_1543; lean_object* x_1544; lean_object* x_1545; lean_object* x_1546; lean_object* x_1547; lean_object* x_1548; uint8_t x_1549; -x_1528 = l_Lean_Elab_Term_getCurrMacroScope(x_6, x_7, x_8, x_9, x_10, x_11, x_1524); -x_1529 = lean_ctor_get(x_1528, 0); -lean_inc(x_1529); -x_1530 = lean_ctor_get(x_1528, 1); -lean_inc(x_1530); -lean_dec(x_1528); -x_1531 = l_Lean_Elab_Term_getMainModule___rarg(x_11, x_1530); -x_1532 = lean_ctor_get(x_1531, 0); -lean_inc(x_1532); -x_1533 = lean_ctor_get(x_1531, 1); -lean_inc(x_1533); -lean_dec(x_1531); -x_1534 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__9; -x_1535 = l_Lean_addMacroScope(x_1532, x_1534, x_1529); -x_1536 = l_Lean_instInhabitedSourceInfo___closed__1; -x_1537 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__7; -x_1538 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__21; -x_1539 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1539, 0, x_1536); -lean_ctor_set(x_1539, 1, x_1537); -lean_ctor_set(x_1539, 2, x_1535); -lean_ctor_set(x_1539, 3, x_1538); -x_1540 = l_Array_empty___closed__1; -x_1541 = lean_array_push(x_1540, x_1539); -x_1542 = lean_array_push(x_1540, x_4); -x_1543 = l_Lean_nullKind___closed__2; -x_1544 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1544, 0, x_1543); -lean_ctor_set(x_1544, 1, x_1542); -x_1545 = lean_array_push(x_1541, x_1544); -x_1546 = l_myMacro____x40_Init_Notation___hyg_2022____closed__4; -x_1547 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1547, 0, x_1546); -lean_ctor_set(x_1547, 1, x_1545); -x_1548 = l_Lean_Parser_sepByElemParser___closed__1; -x_1549 = lean_name_eq(x_1475, x_1548); -lean_dec(x_1475); -if (x_1549 == 0) -{ -lean_object* x_1550; lean_object* x_1551; lean_object* x_1552; -x_1550 = l_myMacro____x40_Init_Notation___hyg_2022____closed__2; -x_1551 = lean_box(0); -x_1552 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__5(x_1434, x_1550, x_1536, x_1540, x_1543, x_13, x_1432, x_1546, x_1523, x_1175, x_1547, x_1551, x_6, x_7, x_8, x_9, x_10, x_11, x_1533); +lean_object* x_1563; lean_object* x_1564; lean_object* x_1565; +x_1563 = l_myMacro____x40_Init_Notation___hyg_2022____closed__2; +x_1564 = lean_box(0); +x_1565 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__4(x_1476, x_1563, x_1549, x_1553, x_1556, x_13, x_1474, x_1559, x_1539, x_1217, x_1560, x_1564, x_6, x_7, x_8, x_9, x_10, x_11, x_1546); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); -lean_dec(x_1432); -return x_1552; +lean_dec(x_1474); +return x_1565; } else { -lean_object* x_1553; lean_object* x_1554; lean_object* x_1555; lean_object* x_1556; lean_object* x_1557; lean_object* x_1558; lean_object* x_1559; lean_object* x_1560; lean_object* x_1561; lean_object* x_1562; lean_object* x_1563; lean_object* x_1564; lean_object* x_1565; lean_object* x_1566; lean_object* x_1567; lean_object* x_1568; lean_object* x_1569; lean_object* x_1570; lean_object* x_1571; -x_1553 = l_Lean_Elab_Term_getCurrMacroScope(x_6, x_7, x_8, x_9, x_10, x_11, x_1533); -x_1554 = lean_ctor_get(x_1553, 0); -lean_inc(x_1554); -x_1555 = lean_ctor_get(x_1553, 1); -lean_inc(x_1555); -lean_dec(x_1553); -x_1556 = l_Lean_Elab_Term_getMainModule___rarg(x_11, x_1555); -x_1557 = lean_ctor_get(x_1556, 0); -lean_inc(x_1557); -x_1558 = lean_ctor_get(x_1556, 1); -lean_inc(x_1558); -lean_dec(x_1556); -x_1559 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__26; -x_1560 = l_Lean_addMacroScope(x_1557, x_1559, x_1554); -x_1561 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__24; -x_1562 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__28; -x_1563 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1563, 0, x_1536); -lean_ctor_set(x_1563, 1, x_1561); -lean_ctor_set(x_1563, 2, x_1560); -lean_ctor_set(x_1563, 3, x_1562); -x_1564 = lean_array_push(x_1540, x_1563); -x_1565 = lean_array_push(x_1540, x_1547); -x_1566 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1566, 0, x_1543); -lean_ctor_set(x_1566, 1, x_1565); -x_1567 = lean_array_push(x_1564, x_1566); -x_1568 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1568, 0, x_1546); -lean_ctor_set(x_1568, 1, x_1567); -x_1569 = l_myMacro____x40_Init_Notation___hyg_2022____closed__2; -x_1570 = lean_box(0); -x_1571 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__5(x_1434, x_1569, x_1536, x_1540, x_1543, x_13, x_1432, x_1546, x_1523, x_1175, x_1568, x_1570, x_6, x_7, x_8, x_9, x_10, x_11, x_1558); +lean_object* x_1566; lean_object* x_1567; lean_object* x_1568; lean_object* x_1569; lean_object* x_1570; lean_object* x_1571; lean_object* x_1572; lean_object* x_1573; lean_object* x_1574; lean_object* x_1575; lean_object* x_1576; lean_object* x_1577; lean_object* x_1578; lean_object* x_1579; lean_object* x_1580; lean_object* x_1581; lean_object* x_1582; lean_object* x_1583; lean_object* x_1584; +x_1566 = l_Lean_Elab_Term_getCurrMacroScope(x_6, x_7, x_8, x_9, x_10, x_11, x_1546); +x_1567 = lean_ctor_get(x_1566, 0); +lean_inc(x_1567); +x_1568 = lean_ctor_get(x_1566, 1); +lean_inc(x_1568); +lean_dec(x_1566); +x_1569 = l_Lean_Elab_Term_getMainModule___rarg(x_11, x_1568); +x_1570 = lean_ctor_get(x_1569, 0); +lean_inc(x_1570); +x_1571 = lean_ctor_get(x_1569, 1); +lean_inc(x_1571); +lean_dec(x_1569); +x_1572 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__26; +x_1573 = l_Lean_addMacroScope(x_1570, x_1572, x_1567); +x_1574 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__24; +x_1575 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__28; +x_1576 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1576, 0, x_1549); +lean_ctor_set(x_1576, 1, x_1574); +lean_ctor_set(x_1576, 2, x_1573); +lean_ctor_set(x_1576, 3, x_1575); +x_1577 = lean_array_push(x_1553, x_1576); +x_1578 = lean_array_push(x_1553, x_1560); +x_1579 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1579, 0, x_1556); +lean_ctor_set(x_1579, 1, x_1578); +x_1580 = lean_array_push(x_1577, x_1579); +x_1581 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1581, 0, x_1559); +lean_ctor_set(x_1581, 1, x_1580); +x_1582 = l_myMacro____x40_Init_Notation___hyg_2022____closed__2; +x_1583 = lean_box(0); +x_1584 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__4(x_1476, x_1582, x_1549, x_1553, x_1556, x_13, x_1474, x_1559, x_1539, x_1217, x_1581, x_1583, x_6, x_7, x_8, x_9, x_10, x_11, x_1571); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); -lean_dec(x_1432); -return x_1571; -} -} -else -{ -lean_object* x_1572; size_t x_1573; size_t x_1574; lean_object* x_1575; lean_object* x_1576; lean_object* x_1577; lean_object* x_1578; lean_object* x_1579; lean_object* x_1580; lean_object* x_1581; lean_object* x_1582; lean_object* x_1583; lean_object* x_1584; lean_object* x_1585; lean_object* x_1586; lean_object* x_1587; lean_object* x_1588; lean_object* x_1589; lean_object* x_1590; lean_object* x_1591; lean_object* x_1592; lean_object* x_1593; lean_object* x_1594; lean_object* x_1595; lean_object* x_1596; lean_object* x_1597; lean_object* x_1598; lean_object* x_1599; lean_object* x_1600; lean_object* x_1601; lean_object* x_1602; lean_object* x_1603; lean_object* x_1604; lean_object* x_1605; lean_object* x_1606; lean_object* x_1607; lean_object* x_1608; lean_object* x_1609; lean_object* x_1610; lean_object* x_1611; lean_object* x_1612; lean_object* x_1613; lean_object* x_1614; lean_object* x_1615; lean_object* x_1616; lean_object* x_1617; lean_object* x_1618; lean_object* x_1619; lean_object* x_1620; lean_object* x_1621; lean_object* x_1622; lean_object* x_1623; lean_object* x_1624; lean_object* x_1625; lean_object* x_1626; lean_object* x_1627; lean_object* x_1628; lean_object* x_1629; lean_object* x_1630; lean_object* x_1631; lean_object* x_1632; lean_object* x_1633; lean_object* x_1634; lean_object* x_1635; lean_object* x_1636; lean_object* x_1637; lean_object* x_1638; lean_object* x_1639; lean_object* x_1640; lean_object* x_1641; lean_object* x_1642; lean_object* x_1643; lean_object* x_1644; lean_object* x_1645; lean_object* x_1646; lean_object* x_1647; lean_object* x_1648; lean_object* x_1649; lean_object* x_1650; lean_object* x_1651; lean_object* x_1652; lean_object* x_1653; lean_object* x_1654; lean_object* x_1655; lean_object* x_1656; lean_object* x_1657; lean_object* x_1658; lean_object* x_1659; lean_object* x_1660; lean_object* x_1661; lean_object* x_1662; lean_object* x_1663; lean_object* x_1664; lean_object* x_1665; lean_object* x_1666; lean_object* x_1667; lean_object* x_1668; -lean_dec(x_1475); -x_1572 = lean_array_get_size(x_1434); -x_1573 = lean_usize_of_nat(x_1572); -lean_dec(x_1572); -x_1574 = 0; -lean_inc(x_1175); -x_1575 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__11(x_1434, x_1573, x_1574, x_1175, x_6, x_7, x_8, x_9, x_10, x_11, x_1524); -x_1576 = lean_ctor_get(x_1575, 0); -lean_inc(x_1576); -x_1577 = lean_ctor_get(x_1575, 1); -lean_inc(x_1577); -lean_dec(x_1575); -x_1578 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__12(x_1434, x_1573, x_1574, x_1175, x_6, x_7, x_8, x_9, x_10, x_11, x_1577); -lean_dec(x_1434); -x_1579 = lean_ctor_get(x_1578, 0); -lean_inc(x_1579); -x_1580 = lean_ctor_get(x_1578, 1); -lean_inc(x_1580); -lean_dec(x_1578); -x_1581 = l_Lean_Elab_Term_getCurrMacroScope(x_6, x_7, x_8, x_9, x_10, x_11, x_1580); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -x_1582 = lean_ctor_get(x_1581, 0); -lean_inc(x_1582); -x_1583 = lean_ctor_get(x_1581, 1); -lean_inc(x_1583); -lean_dec(x_1581); -x_1584 = l_Lean_Elab_Term_getMainModule___rarg(x_11, x_1583); -lean_dec(x_11); -x_1585 = lean_ctor_get(x_1584, 0); -lean_inc(x_1585); -x_1586 = lean_ctor_get(x_1584, 1); -lean_inc(x_1586); -if (lean_is_exclusive(x_1584)) { - lean_ctor_release(x_1584, 0); - lean_ctor_release(x_1584, 1); - x_1587 = x_1584; -} else { - lean_dec_ref(x_1584); - x_1587 = lean_box(0); -} -x_1588 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__13; -lean_inc(x_1582); -lean_inc(x_1585); -x_1589 = l_Lean_addMacroScope(x_1585, x_1588, x_1582); -x_1590 = l_Lean_instInhabitedSourceInfo___closed__1; -x_1591 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__12; -x_1592 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1592, 0, x_1590); -lean_ctor_set(x_1592, 1, x_1591); -lean_ctor_set(x_1592, 2, x_1589); -lean_ctor_set(x_1592, 3, x_13); -x_1593 = l_Array_empty___closed__1; -lean_inc(x_1592); -x_1594 = lean_array_push(x_1593, x_1592); -x_1595 = l_myMacro____x40_Init_Notation___hyg_1130____closed__23; -x_1596 = lean_array_push(x_1594, x_1595); -x_1597 = lean_array_push(x_1596, x_1595); -x_1598 = l_myMacro____x40_Init_Notation___hyg_12942____closed__14; -x_1599 = lean_array_push(x_1597, x_1598); -x_1600 = lean_array_push(x_1599, x_4); -x_1601 = l_myMacro____x40_Init_Notation___hyg_12942____closed__8; -x_1602 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1602, 0, x_1601); -lean_ctor_set(x_1602, 1, x_1600); -x_1603 = lean_array_push(x_1593, x_1602); -x_1604 = l_myMacro____x40_Init_Notation___hyg_12942____closed__6; -x_1605 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1605, 0, x_1604); -lean_ctor_set(x_1605, 1, x_1603); -x_1606 = l_myMacro____x40_Init_Notation___hyg_12942____closed__4; -x_1607 = lean_array_push(x_1606, x_1605); -x_1608 = l_myMacro____x40_Init_Notation___hyg_12942____closed__18; -x_1609 = lean_array_push(x_1607, x_1608); -x_1610 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__35; -x_1611 = l_Lean_addMacroScope(x_1585, x_1610, x_1582); -x_1612 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__33; -x_1613 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1613, 0, x_1590); -lean_ctor_set(x_1613, 1, x_1612); -lean_ctor_set(x_1613, 2, x_1611); -lean_ctor_set(x_1613, 3, x_13); -x_1614 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__30; -x_1615 = lean_array_push(x_1614, x_1613); -x_1616 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__37; -x_1617 = lean_array_push(x_1615, x_1616); -x_1618 = lean_array_push(x_1617, x_1579); -x_1619 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__39; -x_1620 = lean_array_push(x_1618, x_1619); -x_1621 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_261____closed__19; -x_1622 = lean_array_push(x_1621, x_1592); -x_1623 = l_Lean_Parser_Term_matchDiscr___elambda__1___closed__1; -x_1624 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1624, 0, x_1623); -lean_ctor_set(x_1624, 1, x_1622); -x_1625 = lean_array_push(x_1593, x_1624); -x_1626 = l_Lean_nullKind___closed__2; -x_1627 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1627, 0, x_1626); -lean_ctor_set(x_1627, 1, x_1625); -x_1628 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__41; -x_1629 = lean_array_push(x_1628, x_1627); -x_1630 = lean_array_push(x_1629, x_1595); -x_1631 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__42; -x_1632 = lean_array_push(x_1630, x_1631); -x_1633 = l_Lean_nullKind; -x_1634 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1634, 0, x_1633); -lean_ctor_set(x_1634, 1, x_1432); -x_1635 = l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__2___lambda__1___closed__2; -x_1636 = lean_array_push(x_1635, x_1634); -x_1637 = l_myMacro____x40_Init_Notation___hyg_658____closed__8; -x_1638 = lean_array_push(x_1636, x_1637); -x_1639 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4152____closed__1; -x_1640 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1640, 0, x_1639); -lean_ctor_set(x_1640, 1, x_1638); -x_1641 = lean_array_push(x_1593, x_1640); -x_1642 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1642, 0, x_1626); -lean_ctor_set(x_1642, 1, x_1641); -x_1643 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__43; -x_1644 = lean_array_push(x_1643, x_1642); -x_1645 = l_myMacro____x40_Init_Notation___hyg_11187____closed__17; -x_1646 = lean_array_push(x_1644, x_1645); -x_1647 = lean_array_push(x_1646, x_1576); -x_1648 = l_Lean_Parser_Term_matchAlt___closed__1; -x_1649 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1649, 0, x_1648); -lean_ctor_set(x_1649, 1, x_1647); -x_1650 = lean_array_push(x_1593, x_1649); -x_1651 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__45; -x_1652 = lean_array_push(x_1651, x_1523); -x_1653 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1653, 0, x_1648); -lean_ctor_set(x_1653, 1, x_1652); -x_1654 = lean_array_push(x_1650, x_1653); -x_1655 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1655, 0, x_1626); -lean_ctor_set(x_1655, 1, x_1654); -x_1656 = lean_array_push(x_1593, x_1655); -x_1657 = l_Lean_Parser_Term_matchAlts___elambda__1___closed__1; -x_1658 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1658, 0, x_1657); -lean_ctor_set(x_1658, 1, x_1656); -x_1659 = lean_array_push(x_1632, x_1658); -x_1660 = l_Lean_Parser_Term_match___elambda__1___closed__1; -x_1661 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1661, 0, x_1660); -lean_ctor_set(x_1661, 1, x_1659); -x_1662 = lean_array_push(x_1620, x_1661); -x_1663 = l_termIf__Then__Else_____closed__2; -x_1664 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1664, 0, x_1663); -lean_ctor_set(x_1664, 1, x_1662); -x_1665 = lean_array_push(x_1609, x_1664); -x_1666 = l_myMacro____x40_Init_Notation___hyg_12942____closed__2; -x_1667 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1667, 0, x_1666); -lean_ctor_set(x_1667, 1, x_1665); -if (lean_is_scalar(x_1587)) { - x_1668 = lean_alloc_ctor(0, 2, 0); -} else { - x_1668 = x_1587; -} -lean_ctor_set(x_1668, 0, x_1667); -lean_ctor_set(x_1668, 1, x_1586); -return x_1668; +lean_dec(x_1474); +return x_1584; } } case 1: { -lean_object* x_1669; lean_object* x_1670; lean_object* x_1671; lean_object* x_1672; lean_object* x_1673; lean_object* x_1674; lean_object* x_1675; lean_object* x_1676; lean_object* x_1677; lean_object* x_1678; lean_object* x_1679; lean_object* x_1680; lean_object* x_1681; lean_object* x_1682; lean_object* x_1683; lean_object* x_1684; lean_object* x_1685; lean_object* x_1686; lean_object* x_1687; lean_object* x_1688; lean_object* x_1689; lean_object* x_1690; lean_object* x_1691; uint8_t x_1692; -lean_dec(x_1522); -x_1669 = lean_ctor_get(x_1449, 0); -lean_inc(x_1669); -x_1670 = lean_ctor_get(x_1449, 1); -lean_inc(x_1670); -lean_dec(x_1449); -x_1671 = l_Lean_Elab_Term_getCurrMacroScope(x_6, x_7, x_8, x_9, x_10, x_11, x_1670); -x_1672 = lean_ctor_get(x_1671, 0); -lean_inc(x_1672); -x_1673 = lean_ctor_get(x_1671, 1); -lean_inc(x_1673); -lean_dec(x_1671); -x_1674 = l_Lean_Elab_Term_getMainModule___rarg(x_11, x_1673); -x_1675 = lean_ctor_get(x_1674, 0); -lean_inc(x_1675); -x_1676 = lean_ctor_get(x_1674, 1); -lean_inc(x_1676); -lean_dec(x_1674); -x_1677 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__9; -x_1678 = l_Lean_addMacroScope(x_1675, x_1677, x_1672); -x_1679 = l_Lean_instInhabitedSourceInfo___closed__1; -x_1680 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__7; -x_1681 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__21; -x_1682 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1682, 0, x_1679); -lean_ctor_set(x_1682, 1, x_1680); -lean_ctor_set(x_1682, 2, x_1678); -lean_ctor_set(x_1682, 3, x_1681); -x_1683 = l_Array_empty___closed__1; -x_1684 = lean_array_push(x_1683, x_1682); -x_1685 = lean_array_push(x_1683, x_4); -x_1686 = l_Lean_nullKind___closed__2; +lean_object* x_1585; +x_1585 = lean_ctor_get(x_1538, 0); +lean_inc(x_1585); +switch (lean_obj_tag(x_1585)) { +case 0: +{ +lean_object* x_1586; lean_object* x_1587; lean_object* x_1588; lean_object* x_1589; uint8_t x_1590; +x_1586 = lean_ctor_get(x_1491, 0); +lean_inc(x_1586); +x_1587 = lean_ctor_get(x_1491, 1); +lean_inc(x_1587); +lean_dec(x_1491); +x_1588 = lean_ctor_get(x_1538, 1); +lean_inc(x_1588); +lean_dec(x_1538); +x_1589 = l_myMacro____x40_Init_Notation___hyg_876____closed__1; +x_1590 = lean_string_dec_eq(x_1588, x_1589); +lean_dec(x_1588); +if (x_1590 == 0) +{ +lean_object* x_1591; lean_object* x_1592; lean_object* x_1593; lean_object* x_1594; lean_object* x_1595; lean_object* x_1596; lean_object* x_1597; lean_object* x_1598; lean_object* x_1599; lean_object* x_1600; lean_object* x_1601; lean_object* x_1602; lean_object* x_1603; lean_object* x_1604; lean_object* x_1605; lean_object* x_1606; lean_object* x_1607; lean_object* x_1608; lean_object* x_1609; lean_object* x_1610; lean_object* x_1611; uint8_t x_1612; +x_1591 = l_Lean_Elab_Term_getCurrMacroScope(x_6, x_7, x_8, x_9, x_10, x_11, x_1587); +x_1592 = lean_ctor_get(x_1591, 0); +lean_inc(x_1592); +x_1593 = lean_ctor_get(x_1591, 1); +lean_inc(x_1593); +lean_dec(x_1591); +x_1594 = l_Lean_Elab_Term_getMainModule___rarg(x_11, x_1593); +x_1595 = lean_ctor_get(x_1594, 0); +lean_inc(x_1595); +x_1596 = lean_ctor_get(x_1594, 1); +lean_inc(x_1596); +lean_dec(x_1594); +x_1597 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__9; +x_1598 = l_Lean_addMacroScope(x_1595, x_1597, x_1592); +x_1599 = l_Lean_instInhabitedSourceInfo___closed__1; +x_1600 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__7; +x_1601 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__21; +x_1602 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1602, 0, x_1599); +lean_ctor_set(x_1602, 1, x_1600); +lean_ctor_set(x_1602, 2, x_1598); +lean_ctor_set(x_1602, 3, x_1601); +x_1603 = l_Array_empty___closed__1; +x_1604 = lean_array_push(x_1603, x_1602); +x_1605 = lean_array_push(x_1603, x_4); +x_1606 = l_Lean_nullKind___closed__2; +x_1607 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1607, 0, x_1606); +lean_ctor_set(x_1607, 1, x_1605); +x_1608 = lean_array_push(x_1604, x_1607); +x_1609 = l_myMacro____x40_Init_Notation___hyg_2022____closed__4; +x_1610 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1610, 0, x_1609); +lean_ctor_set(x_1610, 1, x_1608); +x_1611 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__2___closed__1; +x_1612 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3(x_1473, x_1611); +lean_dec(x_1473); +if (x_1612 == 0) +{ +lean_object* x_1613; lean_object* x_1614; lean_object* x_1615; +x_1613 = l_myMacro____x40_Init_Notation___hyg_2022____closed__2; +x_1614 = lean_box(0); +x_1615 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__5(x_1476, x_1613, x_1599, x_1603, x_1606, x_13, x_1474, x_1609, x_1586, x_1217, x_1610, x_1614, x_6, x_7, x_8, x_9, x_10, x_11, x_1596); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_1474); +return x_1615; +} +else +{ +lean_object* x_1616; lean_object* x_1617; lean_object* x_1618; lean_object* x_1619; lean_object* x_1620; lean_object* x_1621; lean_object* x_1622; lean_object* x_1623; lean_object* x_1624; lean_object* x_1625; lean_object* x_1626; lean_object* x_1627; lean_object* x_1628; lean_object* x_1629; lean_object* x_1630; lean_object* x_1631; lean_object* x_1632; lean_object* x_1633; lean_object* x_1634; +x_1616 = l_Lean_Elab_Term_getCurrMacroScope(x_6, x_7, x_8, x_9, x_10, x_11, x_1596); +x_1617 = lean_ctor_get(x_1616, 0); +lean_inc(x_1617); +x_1618 = lean_ctor_get(x_1616, 1); +lean_inc(x_1618); +lean_dec(x_1616); +x_1619 = l_Lean_Elab_Term_getMainModule___rarg(x_11, x_1618); +x_1620 = lean_ctor_get(x_1619, 0); +lean_inc(x_1620); +x_1621 = lean_ctor_get(x_1619, 1); +lean_inc(x_1621); +lean_dec(x_1619); +x_1622 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__26; +x_1623 = l_Lean_addMacroScope(x_1620, x_1622, x_1617); +x_1624 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__24; +x_1625 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__28; +x_1626 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1626, 0, x_1599); +lean_ctor_set(x_1626, 1, x_1624); +lean_ctor_set(x_1626, 2, x_1623); +lean_ctor_set(x_1626, 3, x_1625); +x_1627 = lean_array_push(x_1603, x_1626); +x_1628 = lean_array_push(x_1603, x_1610); +x_1629 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1629, 0, x_1606); +lean_ctor_set(x_1629, 1, x_1628); +x_1630 = lean_array_push(x_1627, x_1629); +x_1631 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1631, 0, x_1609); +lean_ctor_set(x_1631, 1, x_1630); +x_1632 = l_myMacro____x40_Init_Notation___hyg_2022____closed__2; +x_1633 = lean_box(0); +x_1634 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__5(x_1476, x_1632, x_1599, x_1603, x_1606, x_13, x_1474, x_1609, x_1586, x_1217, x_1631, x_1633, x_6, x_7, x_8, x_9, x_10, x_11, x_1621); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_1474); +return x_1634; +} +} +else +{ +lean_object* x_1635; size_t x_1636; size_t x_1637; lean_object* x_1638; lean_object* x_1639; lean_object* x_1640; lean_object* x_1641; lean_object* x_1642; lean_object* x_1643; lean_object* x_1644; lean_object* x_1645; lean_object* x_1646; lean_object* x_1647; lean_object* x_1648; lean_object* x_1649; lean_object* x_1650; lean_object* x_1651; lean_object* x_1652; lean_object* x_1653; lean_object* x_1654; lean_object* x_1655; lean_object* x_1656; lean_object* x_1657; lean_object* x_1658; lean_object* x_1659; lean_object* x_1660; lean_object* x_1661; lean_object* x_1662; lean_object* x_1663; lean_object* x_1664; lean_object* x_1665; lean_object* x_1666; lean_object* x_1667; lean_object* x_1668; lean_object* x_1669; lean_object* x_1670; lean_object* x_1671; lean_object* x_1672; lean_object* x_1673; lean_object* x_1674; lean_object* x_1675; lean_object* x_1676; lean_object* x_1677; lean_object* x_1678; lean_object* x_1679; lean_object* x_1680; lean_object* x_1681; lean_object* x_1682; lean_object* x_1683; lean_object* x_1684; lean_object* x_1685; lean_object* x_1686; lean_object* x_1687; lean_object* x_1688; lean_object* x_1689; lean_object* x_1690; lean_object* x_1691; lean_object* x_1692; lean_object* x_1693; lean_object* x_1694; lean_object* x_1695; lean_object* x_1696; lean_object* x_1697; lean_object* x_1698; lean_object* x_1699; lean_object* x_1700; lean_object* x_1701; lean_object* x_1702; lean_object* x_1703; lean_object* x_1704; lean_object* x_1705; lean_object* x_1706; lean_object* x_1707; lean_object* x_1708; lean_object* x_1709; lean_object* x_1710; lean_object* x_1711; lean_object* x_1712; lean_object* x_1713; lean_object* x_1714; lean_object* x_1715; lean_object* x_1716; lean_object* x_1717; lean_object* x_1718; lean_object* x_1719; lean_object* x_1720; lean_object* x_1721; lean_object* x_1722; lean_object* x_1723; lean_object* x_1724; lean_object* x_1725; lean_object* x_1726; lean_object* x_1727; lean_object* x_1728; lean_object* x_1729; lean_object* x_1730; lean_object* x_1731; +lean_dec(x_1473); +x_1635 = lean_array_get_size(x_1476); +x_1636 = lean_usize_of_nat(x_1635); +lean_dec(x_1635); +x_1637 = 0; +lean_inc(x_1217); +x_1638 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__10(x_1476, x_1636, x_1637, x_1217, x_6, x_7, x_8, x_9, x_10, x_11, x_1587); +x_1639 = lean_ctor_get(x_1638, 0); +lean_inc(x_1639); +x_1640 = lean_ctor_get(x_1638, 1); +lean_inc(x_1640); +lean_dec(x_1638); +x_1641 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__11(x_1476, x_1636, x_1637, x_1217, x_6, x_7, x_8, x_9, x_10, x_11, x_1640); +lean_dec(x_1476); +x_1642 = lean_ctor_get(x_1641, 0); +lean_inc(x_1642); +x_1643 = lean_ctor_get(x_1641, 1); +lean_inc(x_1643); +lean_dec(x_1641); +x_1644 = l_Lean_Elab_Term_getCurrMacroScope(x_6, x_7, x_8, x_9, x_10, x_11, x_1643); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +x_1645 = lean_ctor_get(x_1644, 0); +lean_inc(x_1645); +x_1646 = lean_ctor_get(x_1644, 1); +lean_inc(x_1646); +lean_dec(x_1644); +x_1647 = l_Lean_Elab_Term_getMainModule___rarg(x_11, x_1646); +lean_dec(x_11); +x_1648 = lean_ctor_get(x_1647, 0); +lean_inc(x_1648); +x_1649 = lean_ctor_get(x_1647, 1); +lean_inc(x_1649); +if (lean_is_exclusive(x_1647)) { + lean_ctor_release(x_1647, 0); + lean_ctor_release(x_1647, 1); + x_1650 = x_1647; +} else { + lean_dec_ref(x_1647); + x_1650 = lean_box(0); +} +x_1651 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__13; +lean_inc(x_1645); +lean_inc(x_1648); +x_1652 = l_Lean_addMacroScope(x_1648, x_1651, x_1645); +x_1653 = l_Lean_instInhabitedSourceInfo___closed__1; +x_1654 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__12; +x_1655 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1655, 0, x_1653); +lean_ctor_set(x_1655, 1, x_1654); +lean_ctor_set(x_1655, 2, x_1652); +lean_ctor_set(x_1655, 3, x_13); +x_1656 = l_Array_empty___closed__1; +lean_inc(x_1655); +x_1657 = lean_array_push(x_1656, x_1655); +x_1658 = l_myMacro____x40_Init_Notation___hyg_1130____closed__23; +x_1659 = lean_array_push(x_1657, x_1658); +x_1660 = lean_array_push(x_1659, x_1658); +x_1661 = l_myMacro____x40_Init_Notation___hyg_12942____closed__14; +x_1662 = lean_array_push(x_1660, x_1661); +x_1663 = lean_array_push(x_1662, x_4); +x_1664 = l_myMacro____x40_Init_Notation___hyg_12942____closed__8; +x_1665 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1665, 0, x_1664); +lean_ctor_set(x_1665, 1, x_1663); +x_1666 = lean_array_push(x_1656, x_1665); +x_1667 = l_myMacro____x40_Init_Notation___hyg_12942____closed__6; +x_1668 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1668, 0, x_1667); +lean_ctor_set(x_1668, 1, x_1666); +x_1669 = l_myMacro____x40_Init_Notation___hyg_12942____closed__4; +x_1670 = lean_array_push(x_1669, x_1668); +x_1671 = l_myMacro____x40_Init_Notation___hyg_12942____closed__18; +x_1672 = lean_array_push(x_1670, x_1671); +x_1673 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__35; +x_1674 = l_Lean_addMacroScope(x_1648, x_1673, x_1645); +x_1675 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__33; +x_1676 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1676, 0, x_1653); +lean_ctor_set(x_1676, 1, x_1675); +lean_ctor_set(x_1676, 2, x_1674); +lean_ctor_set(x_1676, 3, x_13); +x_1677 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__30; +x_1678 = lean_array_push(x_1677, x_1676); +x_1679 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__37; +x_1680 = lean_array_push(x_1678, x_1679); +x_1681 = lean_array_push(x_1680, x_1642); +x_1682 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__39; +x_1683 = lean_array_push(x_1681, x_1682); +x_1684 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_261____closed__19; +x_1685 = lean_array_push(x_1684, x_1655); +x_1686 = l_Lean_Parser_Term_matchDiscr___elambda__1___closed__1; x_1687 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1687, 0, x_1686); lean_ctor_set(x_1687, 1, x_1685); -x_1688 = lean_array_push(x_1684, x_1687); -x_1689 = l_myMacro____x40_Init_Notation___hyg_2022____closed__4; +x_1688 = lean_array_push(x_1656, x_1687); +x_1689 = l_Lean_nullKind___closed__2; x_1690 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1690, 0, x_1689); lean_ctor_set(x_1690, 1, x_1688); -x_1691 = l_Lean_Parser_sepByElemParser___closed__1; -x_1692 = lean_name_eq(x_1475, x_1691); -lean_dec(x_1475); -if (x_1692 == 0) +x_1691 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__41; +x_1692 = lean_array_push(x_1691, x_1690); +x_1693 = lean_array_push(x_1692, x_1658); +x_1694 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__42; +x_1695 = lean_array_push(x_1693, x_1694); +x_1696 = l_Lean_nullKind; +x_1697 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1697, 0, x_1696); +lean_ctor_set(x_1697, 1, x_1474); +x_1698 = l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__2___lambda__1___closed__2; +x_1699 = lean_array_push(x_1698, x_1697); +x_1700 = l_myMacro____x40_Init_Notation___hyg_658____closed__8; +x_1701 = lean_array_push(x_1699, x_1700); +x_1702 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_4152____closed__1; +x_1703 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1703, 0, x_1702); +lean_ctor_set(x_1703, 1, x_1701); +x_1704 = lean_array_push(x_1656, x_1703); +x_1705 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1705, 0, x_1689); +lean_ctor_set(x_1705, 1, x_1704); +x_1706 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__43; +x_1707 = lean_array_push(x_1706, x_1705); +x_1708 = l_myMacro____x40_Init_Notation___hyg_11187____closed__17; +x_1709 = lean_array_push(x_1707, x_1708); +x_1710 = lean_array_push(x_1709, x_1639); +x_1711 = l_Lean_Parser_Term_matchAlt___closed__1; +x_1712 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1712, 0, x_1711); +lean_ctor_set(x_1712, 1, x_1710); +x_1713 = lean_array_push(x_1656, x_1712); +x_1714 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__45; +x_1715 = lean_array_push(x_1714, x_1586); +x_1716 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1716, 0, x_1711); +lean_ctor_set(x_1716, 1, x_1715); +x_1717 = lean_array_push(x_1713, x_1716); +x_1718 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1718, 0, x_1689); +lean_ctor_set(x_1718, 1, x_1717); +x_1719 = lean_array_push(x_1656, x_1718); +x_1720 = l_Lean_Parser_Term_matchAlts___elambda__1___closed__1; +x_1721 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1721, 0, x_1720); +lean_ctor_set(x_1721, 1, x_1719); +x_1722 = lean_array_push(x_1695, x_1721); +x_1723 = l_Lean_Parser_Term_match___elambda__1___closed__1; +x_1724 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1724, 0, x_1723); +lean_ctor_set(x_1724, 1, x_1722); +x_1725 = lean_array_push(x_1683, x_1724); +x_1726 = l_termIf__Then__Else_____closed__2; +x_1727 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1727, 0, x_1726); +lean_ctor_set(x_1727, 1, x_1725); +x_1728 = lean_array_push(x_1672, x_1727); +x_1729 = l_myMacro____x40_Init_Notation___hyg_12942____closed__2; +x_1730 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1730, 0, x_1729); +lean_ctor_set(x_1730, 1, x_1728); +if (lean_is_scalar(x_1650)) { + x_1731 = lean_alloc_ctor(0, 2, 0); +} else { + x_1731 = x_1650; +} +lean_ctor_set(x_1731, 0, x_1730); +lean_ctor_set(x_1731, 1, x_1649); +return x_1731; +} +} +case 1: { -lean_object* x_1693; lean_object* x_1694; lean_object* x_1695; -x_1693 = l_myMacro____x40_Init_Notation___hyg_2022____closed__2; -x_1694 = lean_box(0); -x_1695 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__6(x_1434, x_1693, x_1679, x_1683, x_1686, x_13, x_1432, x_1689, x_1669, x_1175, x_1690, x_1694, x_6, x_7, x_8, x_9, x_10, x_11, x_1676); +lean_object* x_1732; lean_object* x_1733; lean_object* x_1734; lean_object* x_1735; lean_object* x_1736; lean_object* x_1737; lean_object* x_1738; lean_object* x_1739; lean_object* x_1740; lean_object* x_1741; lean_object* x_1742; lean_object* x_1743; lean_object* x_1744; lean_object* x_1745; lean_object* x_1746; lean_object* x_1747; lean_object* x_1748; lean_object* x_1749; lean_object* x_1750; lean_object* x_1751; lean_object* x_1752; lean_object* x_1753; lean_object* x_1754; uint8_t x_1755; +lean_dec(x_1585); +lean_dec(x_1538); +x_1732 = lean_ctor_get(x_1491, 0); +lean_inc(x_1732); +x_1733 = lean_ctor_get(x_1491, 1); +lean_inc(x_1733); +lean_dec(x_1491); +x_1734 = l_Lean_Elab_Term_getCurrMacroScope(x_6, x_7, x_8, x_9, x_10, x_11, x_1733); +x_1735 = lean_ctor_get(x_1734, 0); +lean_inc(x_1735); +x_1736 = lean_ctor_get(x_1734, 1); +lean_inc(x_1736); +lean_dec(x_1734); +x_1737 = l_Lean_Elab_Term_getMainModule___rarg(x_11, x_1736); +x_1738 = lean_ctor_get(x_1737, 0); +lean_inc(x_1738); +x_1739 = lean_ctor_get(x_1737, 1); +lean_inc(x_1739); +lean_dec(x_1737); +x_1740 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__9; +x_1741 = l_Lean_addMacroScope(x_1738, x_1740, x_1735); +x_1742 = l_Lean_instInhabitedSourceInfo___closed__1; +x_1743 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__7; +x_1744 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__21; +x_1745 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1745, 0, x_1742); +lean_ctor_set(x_1745, 1, x_1743); +lean_ctor_set(x_1745, 2, x_1741); +lean_ctor_set(x_1745, 3, x_1744); +x_1746 = l_Array_empty___closed__1; +x_1747 = lean_array_push(x_1746, x_1745); +x_1748 = lean_array_push(x_1746, x_4); +x_1749 = l_Lean_nullKind___closed__2; +x_1750 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1750, 0, x_1749); +lean_ctor_set(x_1750, 1, x_1748); +x_1751 = lean_array_push(x_1747, x_1750); +x_1752 = l_myMacro____x40_Init_Notation___hyg_2022____closed__4; +x_1753 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1753, 0, x_1752); +lean_ctor_set(x_1753, 1, x_1751); +x_1754 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__2___closed__1; +x_1755 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3(x_1473, x_1754); +lean_dec(x_1473); +if (x_1755 == 0) +{ +lean_object* x_1756; lean_object* x_1757; lean_object* x_1758; +x_1756 = l_myMacro____x40_Init_Notation___hyg_2022____closed__2; +x_1757 = lean_box(0); +x_1758 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__6(x_1476, x_1756, x_1742, x_1746, x_1749, x_13, x_1474, x_1752, x_1732, x_1217, x_1753, x_1757, x_6, x_7, x_8, x_9, x_10, x_11, x_1739); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); -lean_dec(x_1432); -return x_1695; +lean_dec(x_1474); +return x_1758; } else { -lean_object* x_1696; lean_object* x_1697; lean_object* x_1698; lean_object* x_1699; lean_object* x_1700; lean_object* x_1701; lean_object* x_1702; lean_object* x_1703; lean_object* x_1704; lean_object* x_1705; lean_object* x_1706; lean_object* x_1707; lean_object* x_1708; lean_object* x_1709; lean_object* x_1710; lean_object* x_1711; lean_object* x_1712; lean_object* x_1713; lean_object* x_1714; -x_1696 = l_Lean_Elab_Term_getCurrMacroScope(x_6, x_7, x_8, x_9, x_10, x_11, x_1676); -x_1697 = lean_ctor_get(x_1696, 0); -lean_inc(x_1697); -x_1698 = lean_ctor_get(x_1696, 1); -lean_inc(x_1698); -lean_dec(x_1696); -x_1699 = l_Lean_Elab_Term_getMainModule___rarg(x_11, x_1698); -x_1700 = lean_ctor_get(x_1699, 0); -lean_inc(x_1700); -x_1701 = lean_ctor_get(x_1699, 1); -lean_inc(x_1701); -lean_dec(x_1699); -x_1702 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__26; -x_1703 = l_Lean_addMacroScope(x_1700, x_1702, x_1697); -x_1704 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__24; -x_1705 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__28; -x_1706 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1706, 0, x_1679); -lean_ctor_set(x_1706, 1, x_1704); -lean_ctor_set(x_1706, 2, x_1703); -lean_ctor_set(x_1706, 3, x_1705); -x_1707 = lean_array_push(x_1683, x_1706); -x_1708 = lean_array_push(x_1683, x_1690); -x_1709 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1709, 0, x_1686); -lean_ctor_set(x_1709, 1, x_1708); -x_1710 = lean_array_push(x_1707, x_1709); -x_1711 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1711, 0, x_1689); -lean_ctor_set(x_1711, 1, x_1710); -x_1712 = l_myMacro____x40_Init_Notation___hyg_2022____closed__2; -x_1713 = lean_box(0); -x_1714 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__6(x_1434, x_1712, x_1679, x_1683, x_1686, x_13, x_1432, x_1689, x_1669, x_1175, x_1711, x_1713, x_6, x_7, x_8, x_9, x_10, x_11, x_1701); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_1432); -return x_1714; -} -} -default: -{ -lean_object* x_1715; lean_object* x_1716; lean_object* x_1717; lean_object* x_1718; lean_object* x_1719; lean_object* x_1720; lean_object* x_1721; lean_object* x_1722; lean_object* x_1723; lean_object* x_1724; lean_object* x_1725; lean_object* x_1726; lean_object* x_1727; lean_object* x_1728; lean_object* x_1729; lean_object* x_1730; lean_object* x_1731; lean_object* x_1732; lean_object* x_1733; lean_object* x_1734; lean_object* x_1735; lean_object* x_1736; lean_object* x_1737; uint8_t x_1738; -lean_dec(x_1522); -x_1715 = lean_ctor_get(x_1449, 0); -lean_inc(x_1715); -x_1716 = lean_ctor_get(x_1449, 1); -lean_inc(x_1716); -lean_dec(x_1449); -x_1717 = l_Lean_Elab_Term_getCurrMacroScope(x_6, x_7, x_8, x_9, x_10, x_11, x_1716); -x_1718 = lean_ctor_get(x_1717, 0); -lean_inc(x_1718); -x_1719 = lean_ctor_get(x_1717, 1); -lean_inc(x_1719); -lean_dec(x_1717); -x_1720 = l_Lean_Elab_Term_getMainModule___rarg(x_11, x_1719); -x_1721 = lean_ctor_get(x_1720, 0); -lean_inc(x_1721); -x_1722 = lean_ctor_get(x_1720, 1); -lean_inc(x_1722); -lean_dec(x_1720); -x_1723 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__9; -x_1724 = l_Lean_addMacroScope(x_1721, x_1723, x_1718); -x_1725 = l_Lean_instInhabitedSourceInfo___closed__1; -x_1726 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__7; -x_1727 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__21; -x_1728 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1728, 0, x_1725); -lean_ctor_set(x_1728, 1, x_1726); -lean_ctor_set(x_1728, 2, x_1724); -lean_ctor_set(x_1728, 3, x_1727); -x_1729 = l_Array_empty___closed__1; -x_1730 = lean_array_push(x_1729, x_1728); -x_1731 = lean_array_push(x_1729, x_4); -x_1732 = l_Lean_nullKind___closed__2; -x_1733 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1733, 0, x_1732); -lean_ctor_set(x_1733, 1, x_1731); -x_1734 = lean_array_push(x_1730, x_1733); -x_1735 = l_myMacro____x40_Init_Notation___hyg_2022____closed__4; -x_1736 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1736, 0, x_1735); -lean_ctor_set(x_1736, 1, x_1734); -x_1737 = l_Lean_Parser_sepByElemParser___closed__1; -x_1738 = lean_name_eq(x_1475, x_1737); -lean_dec(x_1475); -if (x_1738 == 0) -{ -lean_object* x_1739; lean_object* x_1740; lean_object* x_1741; -x_1739 = l_myMacro____x40_Init_Notation___hyg_2022____closed__2; -x_1740 = lean_box(0); -x_1741 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__7(x_1434, x_1739, x_1725, x_1729, x_1732, x_13, x_1432, x_1735, x_1715, x_1175, x_1736, x_1740, x_6, x_7, x_8, x_9, x_10, x_11, x_1722); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_1432); -return x_1741; -} -else -{ -lean_object* x_1742; lean_object* x_1743; lean_object* x_1744; lean_object* x_1745; lean_object* x_1746; lean_object* x_1747; lean_object* x_1748; lean_object* x_1749; lean_object* x_1750; lean_object* x_1751; lean_object* x_1752; lean_object* x_1753; lean_object* x_1754; lean_object* x_1755; lean_object* x_1756; lean_object* x_1757; lean_object* x_1758; lean_object* x_1759; lean_object* x_1760; -x_1742 = l_Lean_Elab_Term_getCurrMacroScope(x_6, x_7, x_8, x_9, x_10, x_11, x_1722); -x_1743 = lean_ctor_get(x_1742, 0); -lean_inc(x_1743); -x_1744 = lean_ctor_get(x_1742, 1); -lean_inc(x_1744); -lean_dec(x_1742); -x_1745 = l_Lean_Elab_Term_getMainModule___rarg(x_11, x_1744); -x_1746 = lean_ctor_get(x_1745, 0); -lean_inc(x_1746); -x_1747 = lean_ctor_get(x_1745, 1); -lean_inc(x_1747); -lean_dec(x_1745); -x_1748 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__26; -x_1749 = l_Lean_addMacroScope(x_1746, x_1748, x_1743); -x_1750 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__24; -x_1751 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__28; -x_1752 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1752, 0, x_1725); -lean_ctor_set(x_1752, 1, x_1750); -lean_ctor_set(x_1752, 2, x_1749); -lean_ctor_set(x_1752, 3, x_1751); -x_1753 = lean_array_push(x_1729, x_1752); -x_1754 = lean_array_push(x_1729, x_1736); -x_1755 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1755, 0, x_1732); -lean_ctor_set(x_1755, 1, x_1754); -x_1756 = lean_array_push(x_1753, x_1755); -x_1757 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1757, 0, x_1735); -lean_ctor_set(x_1757, 1, x_1756); -x_1758 = l_myMacro____x40_Init_Notation___hyg_2022____closed__2; -x_1759 = lean_box(0); -x_1760 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__7(x_1434, x_1758, x_1725, x_1729, x_1732, x_13, x_1432, x_1735, x_1715, x_1175, x_1757, x_1759, x_6, x_7, x_8, x_9, x_10, x_11, x_1747); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_1432); -return x_1760; -} -} -} -} -default: -{ -lean_object* x_1761; lean_object* x_1762; lean_object* x_1763; lean_object* x_1764; lean_object* x_1765; lean_object* x_1766; lean_object* x_1767; lean_object* x_1768; lean_object* x_1769; lean_object* x_1770; lean_object* x_1771; lean_object* x_1772; lean_object* x_1773; lean_object* x_1774; lean_object* x_1775; lean_object* x_1776; lean_object* x_1777; lean_object* x_1778; lean_object* x_1779; lean_object* x_1780; lean_object* x_1781; lean_object* x_1782; lean_object* x_1783; uint8_t x_1784; -x_1761 = lean_ctor_get(x_1449, 0); +lean_object* x_1759; lean_object* x_1760; lean_object* x_1761; lean_object* x_1762; lean_object* x_1763; lean_object* x_1764; lean_object* x_1765; lean_object* x_1766; lean_object* x_1767; lean_object* x_1768; lean_object* x_1769; lean_object* x_1770; lean_object* x_1771; lean_object* x_1772; lean_object* x_1773; lean_object* x_1774; lean_object* x_1775; lean_object* x_1776; lean_object* x_1777; +x_1759 = l_Lean_Elab_Term_getCurrMacroScope(x_6, x_7, x_8, x_9, x_10, x_11, x_1739); +x_1760 = lean_ctor_get(x_1759, 0); +lean_inc(x_1760); +x_1761 = lean_ctor_get(x_1759, 1); lean_inc(x_1761); -x_1762 = lean_ctor_get(x_1449, 1); -lean_inc(x_1762); -lean_dec(x_1449); -x_1763 = l_Lean_Elab_Term_getCurrMacroScope(x_6, x_7, x_8, x_9, x_10, x_11, x_1762); -x_1764 = lean_ctor_get(x_1763, 0); +lean_dec(x_1759); +x_1762 = l_Lean_Elab_Term_getMainModule___rarg(x_11, x_1761); +x_1763 = lean_ctor_get(x_1762, 0); +lean_inc(x_1763); +x_1764 = lean_ctor_get(x_1762, 1); lean_inc(x_1764); -x_1765 = lean_ctor_get(x_1763, 1); -lean_inc(x_1765); -lean_dec(x_1763); -x_1766 = l_Lean_Elab_Term_getMainModule___rarg(x_11, x_1765); -x_1767 = lean_ctor_get(x_1766, 0); -lean_inc(x_1767); -x_1768 = lean_ctor_get(x_1766, 1); -lean_inc(x_1768); -lean_dec(x_1766); -x_1769 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__9; -x_1770 = l_Lean_addMacroScope(x_1767, x_1769, x_1764); -x_1771 = l_Lean_instInhabitedSourceInfo___closed__1; -x_1772 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__7; -x_1773 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__21; -x_1774 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1774, 0, x_1771); -lean_ctor_set(x_1774, 1, x_1772); -lean_ctor_set(x_1774, 2, x_1770); -lean_ctor_set(x_1774, 3, x_1773); -x_1775 = l_Array_empty___closed__1; -x_1776 = lean_array_push(x_1775, x_1774); -x_1777 = lean_array_push(x_1775, x_4); -x_1778 = l_Lean_nullKind___closed__2; -x_1779 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1779, 0, x_1778); -lean_ctor_set(x_1779, 1, x_1777); -x_1780 = lean_array_push(x_1776, x_1779); -x_1781 = l_myMacro____x40_Init_Notation___hyg_2022____closed__4; -x_1782 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1782, 0, x_1781); -lean_ctor_set(x_1782, 1, x_1780); -x_1783 = l_Lean_Parser_sepByElemParser___closed__1; -x_1784 = lean_name_eq(x_1475, x_1783); -lean_dec(x_1475); -if (x_1784 == 0) -{ -lean_object* x_1785; lean_object* x_1786; lean_object* x_1787; -x_1785 = l_myMacro____x40_Init_Notation___hyg_2022____closed__2; -x_1786 = lean_box(0); -x_1787 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__8(x_1434, x_1785, x_1771, x_1775, x_1778, x_13, x_1432, x_1781, x_1761, x_1175, x_1782, x_1786, x_6, x_7, x_8, x_9, x_10, x_11, x_1768); +lean_dec(x_1762); +x_1765 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__26; +x_1766 = l_Lean_addMacroScope(x_1763, x_1765, x_1760); +x_1767 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__24; +x_1768 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__28; +x_1769 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1769, 0, x_1742); +lean_ctor_set(x_1769, 1, x_1767); +lean_ctor_set(x_1769, 2, x_1766); +lean_ctor_set(x_1769, 3, x_1768); +x_1770 = lean_array_push(x_1746, x_1769); +x_1771 = lean_array_push(x_1746, x_1753); +x_1772 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1772, 0, x_1749); +lean_ctor_set(x_1772, 1, x_1771); +x_1773 = lean_array_push(x_1770, x_1772); +x_1774 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1774, 0, x_1752); +lean_ctor_set(x_1774, 1, x_1773); +x_1775 = l_myMacro____x40_Init_Notation___hyg_2022____closed__2; +x_1776 = lean_box(0); +x_1777 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__6(x_1476, x_1775, x_1742, x_1746, x_1749, x_13, x_1474, x_1752, x_1732, x_1217, x_1774, x_1776, x_6, x_7, x_8, x_9, x_10, x_11, x_1764); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); -lean_dec(x_1432); -return x_1787; +lean_dec(x_1474); +return x_1777; +} +} +default: +{ +lean_object* x_1778; lean_object* x_1779; lean_object* x_1780; lean_object* x_1781; lean_object* x_1782; lean_object* x_1783; lean_object* x_1784; lean_object* x_1785; lean_object* x_1786; lean_object* x_1787; lean_object* x_1788; lean_object* x_1789; lean_object* x_1790; lean_object* x_1791; lean_object* x_1792; lean_object* x_1793; lean_object* x_1794; lean_object* x_1795; lean_object* x_1796; lean_object* x_1797; lean_object* x_1798; lean_object* x_1799; lean_object* x_1800; uint8_t x_1801; +lean_dec(x_1585); +lean_dec(x_1538); +x_1778 = lean_ctor_get(x_1491, 0); +lean_inc(x_1778); +x_1779 = lean_ctor_get(x_1491, 1); +lean_inc(x_1779); +lean_dec(x_1491); +x_1780 = l_Lean_Elab_Term_getCurrMacroScope(x_6, x_7, x_8, x_9, x_10, x_11, x_1779); +x_1781 = lean_ctor_get(x_1780, 0); +lean_inc(x_1781); +x_1782 = lean_ctor_get(x_1780, 1); +lean_inc(x_1782); +lean_dec(x_1780); +x_1783 = l_Lean_Elab_Term_getMainModule___rarg(x_11, x_1782); +x_1784 = lean_ctor_get(x_1783, 0); +lean_inc(x_1784); +x_1785 = lean_ctor_get(x_1783, 1); +lean_inc(x_1785); +lean_dec(x_1783); +x_1786 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__9; +x_1787 = l_Lean_addMacroScope(x_1784, x_1786, x_1781); +x_1788 = l_Lean_instInhabitedSourceInfo___closed__1; +x_1789 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__7; +x_1790 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__21; +x_1791 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1791, 0, x_1788); +lean_ctor_set(x_1791, 1, x_1789); +lean_ctor_set(x_1791, 2, x_1787); +lean_ctor_set(x_1791, 3, x_1790); +x_1792 = l_Array_empty___closed__1; +x_1793 = lean_array_push(x_1792, x_1791); +x_1794 = lean_array_push(x_1792, x_4); +x_1795 = l_Lean_nullKind___closed__2; +x_1796 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1796, 0, x_1795); +lean_ctor_set(x_1796, 1, x_1794); +x_1797 = lean_array_push(x_1793, x_1796); +x_1798 = l_myMacro____x40_Init_Notation___hyg_2022____closed__4; +x_1799 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1799, 0, x_1798); +lean_ctor_set(x_1799, 1, x_1797); +x_1800 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__2___closed__1; +x_1801 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3(x_1473, x_1800); +lean_dec(x_1473); +if (x_1801 == 0) +{ +lean_object* x_1802; lean_object* x_1803; lean_object* x_1804; +x_1802 = l_myMacro____x40_Init_Notation___hyg_2022____closed__2; +x_1803 = lean_box(0); +x_1804 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__7(x_1476, x_1802, x_1788, x_1792, x_1795, x_13, x_1474, x_1798, x_1778, x_1217, x_1799, x_1803, x_6, x_7, x_8, x_9, x_10, x_11, x_1785); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_1474); +return x_1804; } else { -lean_object* x_1788; lean_object* x_1789; lean_object* x_1790; lean_object* x_1791; lean_object* x_1792; lean_object* x_1793; lean_object* x_1794; lean_object* x_1795; lean_object* x_1796; lean_object* x_1797; lean_object* x_1798; lean_object* x_1799; lean_object* x_1800; lean_object* x_1801; lean_object* x_1802; lean_object* x_1803; lean_object* x_1804; lean_object* x_1805; lean_object* x_1806; -x_1788 = l_Lean_Elab_Term_getCurrMacroScope(x_6, x_7, x_8, x_9, x_10, x_11, x_1768); -x_1789 = lean_ctor_get(x_1788, 0); -lean_inc(x_1789); -x_1790 = lean_ctor_get(x_1788, 1); -lean_inc(x_1790); -lean_dec(x_1788); -x_1791 = l_Lean_Elab_Term_getMainModule___rarg(x_11, x_1790); -x_1792 = lean_ctor_get(x_1791, 0); -lean_inc(x_1792); -x_1793 = lean_ctor_get(x_1791, 1); -lean_inc(x_1793); -lean_dec(x_1791); -x_1794 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__26; -x_1795 = l_Lean_addMacroScope(x_1792, x_1794, x_1789); -x_1796 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__24; -x_1797 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__28; -x_1798 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1798, 0, x_1771); -lean_ctor_set(x_1798, 1, x_1796); -lean_ctor_set(x_1798, 2, x_1795); -lean_ctor_set(x_1798, 3, x_1797); -x_1799 = lean_array_push(x_1775, x_1798); -x_1800 = lean_array_push(x_1775, x_1782); -x_1801 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1801, 0, x_1778); -lean_ctor_set(x_1801, 1, x_1800); -x_1802 = lean_array_push(x_1799, x_1801); -x_1803 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1803, 0, x_1781); -lean_ctor_set(x_1803, 1, x_1802); -x_1804 = l_myMacro____x40_Init_Notation___hyg_2022____closed__2; -x_1805 = lean_box(0); -x_1806 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__8(x_1434, x_1804, x_1771, x_1775, x_1778, x_13, x_1432, x_1781, x_1761, x_1175, x_1803, x_1805, x_6, x_7, x_8, x_9, x_10, x_11, x_1793); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_1432); -return x_1806; -} -} -} -} -} -else -{ -lean_object* x_1807; lean_object* x_1808; lean_object* x_1809; lean_object* x_1810; -lean_dec(x_1434); -lean_dec(x_1432); -lean_dec(x_1431); -lean_dec(x_1175); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_4); -x_1807 = lean_ctor_get(x_1449, 0); +lean_object* x_1805; lean_object* x_1806; lean_object* x_1807; lean_object* x_1808; lean_object* x_1809; lean_object* x_1810; lean_object* x_1811; lean_object* x_1812; lean_object* x_1813; lean_object* x_1814; lean_object* x_1815; lean_object* x_1816; lean_object* x_1817; lean_object* x_1818; lean_object* x_1819; lean_object* x_1820; lean_object* x_1821; lean_object* x_1822; lean_object* x_1823; +x_1805 = l_Lean_Elab_Term_getCurrMacroScope(x_6, x_7, x_8, x_9, x_10, x_11, x_1785); +x_1806 = lean_ctor_get(x_1805, 0); +lean_inc(x_1806); +x_1807 = lean_ctor_get(x_1805, 1); lean_inc(x_1807); -x_1808 = lean_ctor_get(x_1449, 1); -lean_inc(x_1808); -if (lean_is_exclusive(x_1449)) { - lean_ctor_release(x_1449, 0); - lean_ctor_release(x_1449, 1); - x_1809 = x_1449; -} else { - lean_dec_ref(x_1449); - x_1809 = lean_box(0); +lean_dec(x_1805); +x_1808 = l_Lean_Elab_Term_getMainModule___rarg(x_11, x_1807); +x_1809 = lean_ctor_get(x_1808, 0); +lean_inc(x_1809); +x_1810 = lean_ctor_get(x_1808, 1); +lean_inc(x_1810); +lean_dec(x_1808); +x_1811 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__26; +x_1812 = l_Lean_addMacroScope(x_1809, x_1811, x_1806); +x_1813 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__24; +x_1814 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__28; +x_1815 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1815, 0, x_1788); +lean_ctor_set(x_1815, 1, x_1813); +lean_ctor_set(x_1815, 2, x_1812); +lean_ctor_set(x_1815, 3, x_1814); +x_1816 = lean_array_push(x_1792, x_1815); +x_1817 = lean_array_push(x_1792, x_1799); +x_1818 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1818, 0, x_1795); +lean_ctor_set(x_1818, 1, x_1817); +x_1819 = lean_array_push(x_1816, x_1818); +x_1820 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1820, 0, x_1798); +lean_ctor_set(x_1820, 1, x_1819); +x_1821 = l_myMacro____x40_Init_Notation___hyg_2022____closed__2; +x_1822 = lean_box(0); +x_1823 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__7(x_1476, x_1821, x_1788, x_1792, x_1795, x_13, x_1474, x_1798, x_1778, x_1217, x_1820, x_1822, x_6, x_7, x_8, x_9, x_10, x_11, x_1810); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_1474); +return x_1823; +} +} +} +} +default: +{ +lean_object* x_1824; lean_object* x_1825; lean_object* x_1826; lean_object* x_1827; lean_object* x_1828; lean_object* x_1829; lean_object* x_1830; lean_object* x_1831; lean_object* x_1832; lean_object* x_1833; lean_object* x_1834; lean_object* x_1835; lean_object* x_1836; lean_object* x_1837; lean_object* x_1838; lean_object* x_1839; lean_object* x_1840; lean_object* x_1841; lean_object* x_1842; lean_object* x_1843; lean_object* x_1844; lean_object* x_1845; lean_object* x_1846; uint8_t x_1847; +lean_dec(x_1538); +x_1824 = lean_ctor_get(x_1491, 0); +lean_inc(x_1824); +x_1825 = lean_ctor_get(x_1491, 1); +lean_inc(x_1825); +lean_dec(x_1491); +x_1826 = l_Lean_Elab_Term_getCurrMacroScope(x_6, x_7, x_8, x_9, x_10, x_11, x_1825); +x_1827 = lean_ctor_get(x_1826, 0); +lean_inc(x_1827); +x_1828 = lean_ctor_get(x_1826, 1); +lean_inc(x_1828); +lean_dec(x_1826); +x_1829 = l_Lean_Elab_Term_getMainModule___rarg(x_11, x_1828); +x_1830 = lean_ctor_get(x_1829, 0); +lean_inc(x_1830); +x_1831 = lean_ctor_get(x_1829, 1); +lean_inc(x_1831); +lean_dec(x_1829); +x_1832 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__9; +x_1833 = l_Lean_addMacroScope(x_1830, x_1832, x_1827); +x_1834 = l_Lean_instInhabitedSourceInfo___closed__1; +x_1835 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__7; +x_1836 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__21; +x_1837 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1837, 0, x_1834); +lean_ctor_set(x_1837, 1, x_1835); +lean_ctor_set(x_1837, 2, x_1833); +lean_ctor_set(x_1837, 3, x_1836); +x_1838 = l_Array_empty___closed__1; +x_1839 = lean_array_push(x_1838, x_1837); +x_1840 = lean_array_push(x_1838, x_4); +x_1841 = l_Lean_nullKind___closed__2; +x_1842 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1842, 0, x_1841); +lean_ctor_set(x_1842, 1, x_1840); +x_1843 = lean_array_push(x_1839, x_1842); +x_1844 = l_myMacro____x40_Init_Notation___hyg_2022____closed__4; +x_1845 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1845, 0, x_1844); +lean_ctor_set(x_1845, 1, x_1843); +x_1846 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__2___closed__1; +x_1847 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3(x_1473, x_1846); +lean_dec(x_1473); +if (x_1847 == 0) +{ +lean_object* x_1848; lean_object* x_1849; lean_object* x_1850; +x_1848 = l_myMacro____x40_Init_Notation___hyg_2022____closed__2; +x_1849 = lean_box(0); +x_1850 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__8(x_1476, x_1848, x_1834, x_1838, x_1841, x_13, x_1474, x_1844, x_1824, x_1217, x_1845, x_1849, x_6, x_7, x_8, x_9, x_10, x_11, x_1831); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_1474); +return x_1850; +} +else +{ +lean_object* x_1851; lean_object* x_1852; lean_object* x_1853; lean_object* x_1854; lean_object* x_1855; lean_object* x_1856; lean_object* x_1857; lean_object* x_1858; lean_object* x_1859; lean_object* x_1860; lean_object* x_1861; lean_object* x_1862; lean_object* x_1863; lean_object* x_1864; lean_object* x_1865; lean_object* x_1866; lean_object* x_1867; lean_object* x_1868; lean_object* x_1869; +x_1851 = l_Lean_Elab_Term_getCurrMacroScope(x_6, x_7, x_8, x_9, x_10, x_11, x_1831); +x_1852 = lean_ctor_get(x_1851, 0); +lean_inc(x_1852); +x_1853 = lean_ctor_get(x_1851, 1); +lean_inc(x_1853); +lean_dec(x_1851); +x_1854 = l_Lean_Elab_Term_getMainModule___rarg(x_11, x_1853); +x_1855 = lean_ctor_get(x_1854, 0); +lean_inc(x_1855); +x_1856 = lean_ctor_get(x_1854, 1); +lean_inc(x_1856); +lean_dec(x_1854); +x_1857 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__26; +x_1858 = l_Lean_addMacroScope(x_1855, x_1857, x_1852); +x_1859 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__24; +x_1860 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__28; +x_1861 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1861, 0, x_1834); +lean_ctor_set(x_1861, 1, x_1859); +lean_ctor_set(x_1861, 2, x_1858); +lean_ctor_set(x_1861, 3, x_1860); +x_1862 = lean_array_push(x_1838, x_1861); +x_1863 = lean_array_push(x_1838, x_1845); +x_1864 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1864, 0, x_1841); +lean_ctor_set(x_1864, 1, x_1863); +x_1865 = lean_array_push(x_1862, x_1864); +x_1866 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1866, 0, x_1844); +lean_ctor_set(x_1866, 1, x_1865); +x_1867 = l_myMacro____x40_Init_Notation___hyg_2022____closed__2; +x_1868 = lean_box(0); +x_1869 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__8(x_1476, x_1867, x_1834, x_1838, x_1841, x_13, x_1474, x_1844, x_1824, x_1217, x_1866, x_1868, x_6, x_7, x_8, x_9, x_10, x_11, x_1856); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_1474); +return x_1869; +} } -if (lean_is_scalar(x_1809)) { - x_1810 = lean_alloc_ctor(1, 2, 0); -} else { - x_1810 = x_1809; } -lean_ctor_set(x_1810, 0, x_1807); -lean_ctor_set(x_1810, 1, x_1808); -return x_1810; } } else { -lean_object* x_1811; lean_object* x_1812; lean_object* x_1813; lean_object* x_1814; -lean_dec(x_1432); -lean_dec(x_1431); -lean_dec(x_1179); -lean_dec(x_1178); -lean_dec(x_1175); -lean_dec(x_1172); -lean_dec(x_1168); -lean_dec(x_1167); -lean_dec(x_1166); -lean_dec(x_1165); +lean_object* x_1870; lean_object* x_1871; lean_object* x_1872; lean_object* x_1873; +lean_dec(x_1476); +lean_dec(x_1474); +lean_dec(x_1473); +lean_dec(x_1217); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); @@ -23776,37 +23906,79 @@ lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_4); -x_1811 = lean_ctor_get(x_1433, 0); -lean_inc(x_1811); -x_1812 = lean_ctor_get(x_1433, 1); -lean_inc(x_1812); -if (lean_is_exclusive(x_1433)) { - lean_ctor_release(x_1433, 0); - lean_ctor_release(x_1433, 1); - x_1813 = x_1433; +x_1870 = lean_ctor_get(x_1491, 0); +lean_inc(x_1870); +x_1871 = lean_ctor_get(x_1491, 1); +lean_inc(x_1871); +if (lean_is_exclusive(x_1491)) { + lean_ctor_release(x_1491, 0); + lean_ctor_release(x_1491, 1); + x_1872 = x_1491; } else { - lean_dec_ref(x_1433); - x_1813 = lean_box(0); + lean_dec_ref(x_1491); + x_1872 = lean_box(0); } -if (lean_is_scalar(x_1813)) { - x_1814 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_1872)) { + x_1873 = lean_alloc_ctor(1, 2, 0); } else { - x_1814 = x_1813; + x_1873 = x_1872; } -lean_ctor_set(x_1814, 0, x_1811); -lean_ctor_set(x_1814, 1, x_1812); -return x_1814; +lean_ctor_set(x_1873, 0, x_1870); +lean_ctor_set(x_1873, 1, x_1871); +return x_1873; +} +} +else +{ +lean_object* x_1874; lean_object* x_1875; lean_object* x_1876; lean_object* x_1877; +lean_dec(x_1474); +lean_dec(x_1473); +lean_dec(x_1221); +lean_dec(x_1220); +lean_dec(x_1217); +lean_dec(x_1214); +lean_dec(x_1210); +lean_dec(x_1209); +lean_dec(x_1208); +lean_dec(x_1207); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_4); +x_1874 = lean_ctor_get(x_1475, 0); +lean_inc(x_1874); +x_1875 = lean_ctor_get(x_1475, 1); +lean_inc(x_1875); +if (lean_is_exclusive(x_1475)) { + lean_ctor_release(x_1475, 0); + lean_ctor_release(x_1475, 1); + x_1876 = x_1475; +} else { + lean_dec_ref(x_1475); + x_1876 = lean_box(0); +} +if (lean_is_scalar(x_1876)) { + x_1877 = lean_alloc_ctor(1, 2, 0); +} else { + x_1877 = x_1876; +} +lean_ctor_set(x_1877, 0, x_1874); +lean_ctor_set(x_1877, 1, x_1875); +return x_1877; } } } else { -lean_object* x_1815; lean_object* x_1816; lean_object* x_1817; lean_object* x_1818; -lean_dec(x_1172); -lean_dec(x_1168); -lean_dec(x_1167); -lean_dec(x_1166); -lean_dec(x_1165); +lean_object* x_1878; lean_object* x_1879; lean_object* x_1880; lean_object* x_1881; +lean_dec(x_1214); +lean_dec(x_1210); +lean_dec(x_1209); +lean_dec(x_1208); +lean_dec(x_1207); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); @@ -23817,32 +23989,32 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_1815 = lean_ctor_get(x_1174, 0); -lean_inc(x_1815); -x_1816 = lean_ctor_get(x_1174, 1); -lean_inc(x_1816); -if (lean_is_exclusive(x_1174)) { - lean_ctor_release(x_1174, 0); - lean_ctor_release(x_1174, 1); - x_1817 = x_1174; +x_1878 = lean_ctor_get(x_1216, 0); +lean_inc(x_1878); +x_1879 = lean_ctor_get(x_1216, 1); +lean_inc(x_1879); +if (lean_is_exclusive(x_1216)) { + lean_ctor_release(x_1216, 0); + lean_ctor_release(x_1216, 1); + x_1880 = x_1216; } else { - lean_dec_ref(x_1174); - x_1817 = lean_box(0); + lean_dec_ref(x_1216); + x_1880 = lean_box(0); } -if (lean_is_scalar(x_1817)) { - x_1818 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_1880)) { + x_1881 = lean_alloc_ctor(1, 2, 0); } else { - x_1818 = x_1817; + x_1881 = x_1880; } -lean_ctor_set(x_1818, 0, x_1815); -lean_ctor_set(x_1818, 1, x_1816); -return x_1818; +lean_ctor_set(x_1881, 0, x_1878); +lean_ctor_set(x_1881, 1, x_1879); +return x_1881; } } } else { -uint8_t x_1819; +uint8_t x_1882; lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); @@ -23854,23 +24026,23 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_1819 = !lean_is_exclusive(x_15); -if (x_1819 == 0) +x_1882 = !lean_is_exclusive(x_15); +if (x_1882 == 0) { return x_15; } else { -lean_object* x_1820; lean_object* x_1821; lean_object* x_1822; -x_1820 = lean_ctor_get(x_15, 0); -x_1821 = lean_ctor_get(x_15, 1); -lean_inc(x_1821); -lean_inc(x_1820); +lean_object* x_1883; lean_object* x_1884; lean_object* x_1885; +x_1883 = lean_ctor_get(x_15, 0); +x_1884 = lean_ctor_get(x_15, 1); +lean_inc(x_1884); +lean_inc(x_1883); lean_dec(x_15); -x_1822 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1822, 0, x_1820); -lean_ctor_set(x_1822, 1, x_1821); -return x_1822; +x_1885 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1885, 0, x_1883); +lean_ctor_set(x_1885, 1, x_1884); +return x_1885; } } } @@ -23917,7 +24089,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepFromSplice___closed__2; x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___closed__4; -x_3 = lean_unsigned_to_nat(323u); +x_3 = lean_unsigned_to_nat(321u); x_4 = lean_unsigned_to_nat(12u); x_5 = l_Lean_Syntax_strLitToAtom___closed__3; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -23963,46 +24135,46 @@ return x_2; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_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_46; lean_object* x_47; lean_object* x_63; lean_object* x_64; lean_object* x_65; uint8_t x_66; -x_63 = lean_st_ref_get(x_8, x_9); -x_64 = lean_ctor_get(x_63, 0); -lean_inc(x_64); -x_65 = lean_ctor_get(x_64, 3); -lean_inc(x_65); -lean_dec(x_64); -x_66 = lean_ctor_get_uint8(x_65, sizeof(void*)*1); -lean_dec(x_65); -if (x_66 == 0) -{ -lean_object* x_67; uint8_t x_68; -x_67 = lean_ctor_get(x_63, 1); -lean_inc(x_67); +lean_object* x_10; uint8_t x_44; lean_object* x_45; lean_object* x_61; lean_object* x_62; lean_object* x_63; uint8_t x_64; +x_61 = lean_st_ref_get(x_8, x_9); +x_62 = lean_ctor_get(x_61, 0); +lean_inc(x_62); +x_63 = lean_ctor_get(x_62, 3); +lean_inc(x_63); +lean_dec(x_62); +x_64 = lean_ctor_get_uint8(x_63, sizeof(void*)*1); lean_dec(x_63); -x_68 = 0; -x_46 = x_68; -x_47 = x_67; -goto block_62; +if (x_64 == 0) +{ +lean_object* x_65; uint8_t x_66; +x_65 = lean_ctor_get(x_61, 1); +lean_inc(x_65); +lean_dec(x_61); +x_66 = 0; +x_44 = x_66; +x_45 = x_65; +goto block_60; } else { -lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; uint8_t x_74; -x_69 = lean_ctor_get(x_63, 1); -lean_inc(x_69); -lean_dec(x_63); -x_70 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___closed__7; -x_71 = l___private_Lean_Util_Trace_0__Lean_checkTraceOptionM___at___private_Lean_Elab_Term_0__Lean_Elab_Term_postponeElabTerm___spec__2(x_70, x_3, x_4, x_5, x_6, x_7, x_8, x_69); -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(x_71); -x_74 = lean_unbox(x_72); -lean_dec(x_72); -x_46 = x_74; -x_47 = x_73; -goto block_62; +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_61, 1); +lean_inc(x_67); +lean_dec(x_61); +x_68 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___closed__7; +x_69 = l___private_Lean_Util_Trace_0__Lean_checkTraceOptionM___at___private_Lean_Elab_Term_0__Lean_Elab_Term_postponeElabTerm___spec__2(x_68, x_3, x_4, x_5, x_6, x_7, x_8, x_67); +x_70 = lean_ctor_get(x_69, 0); +lean_inc(x_70); +x_71 = lean_ctor_get(x_69, 1); +lean_inc(x_71); +lean_dec(x_69); +x_72 = lean_unbox(x_70); +lean_dec(x_70); +x_44 = x_72; +x_45 = x_71; +goto block_60; } -block_45: +block_43: { if (lean_obj_tag(x_1) == 0) { @@ -24073,7 +24245,7 @@ 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_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_1, 0); lean_inc(x_23); x_24 = lean_ctor_get(x_1, 1); @@ -24084,97 +24256,93 @@ x_25 = l_List_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation x_26 = l_List_zip___rarg___closed__1; x_27 = l_List_zipWith___rarg(x_26, x_25, x_2); x_28 = l_List_head_x21___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__2(x_27); -x_29 = l_List_tail_x21___rarg(x_27); -x_30 = l_List_foldl___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__3(x_28, x_29); -lean_dec(x_29); +x_29 = lean_ctor_get(x_28, 0); +lean_inc(x_29); lean_dec(x_28); -x_31 = lean_ctor_get(x_30, 0); +if (lean_obj_tag(x_29) == 0) +{ +lean_object* x_30; lean_object* x_31; +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); if (lean_obj_tag(x_31) == 0) { lean_object* x_32; lean_object* x_33; -x_32 = lean_ctor_get(x_31, 0); -lean_inc(x_32); -x_33 = lean_ctor_get(x_32, 1); -lean_inc(x_33); -lean_dec(x_32); -if (lean_obj_tag(x_33) == 0) -{ -lean_object* x_34; lean_object* x_35; -x_34 = lean_box(0); -x_35 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9(x_31, x_27, x_24, x_23, x_34, x_3, x_4, x_5, x_6, x_7, x_8, x_10); -return x_35; +x_32 = lean_box(0); +x_33 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9(x_29, x_27, x_24, x_23, x_32, x_3, x_4, x_5, x_6, x_7, x_8, x_10); +return x_33; } 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; -x_36 = lean_ctor_get(x_33, 0); -lean_inc(x_36); -lean_dec(x_33); -x_37 = lean_array_get_size(x_36); -lean_dec(x_36); -x_38 = l_List_range(x_37); -x_39 = l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__16(x_38, x_3, x_4, x_5, x_6, x_7, x_8, x_10); -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(x_39); -x_42 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9(x_31, x_27, x_24, x_23, x_40, x_3, x_4, x_5, x_6, x_7, x_8, x_41); +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_34 = lean_ctor_get(x_31, 0); +lean_inc(x_34); +lean_dec(x_31); +x_35 = lean_array_get_size(x_34); +lean_dec(x_34); +x_36 = l_List_range(x_35); +x_37 = l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__15(x_36, x_3, x_4, x_5, x_6, x_7, x_8, x_10); +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(x_37); +x_40 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9(x_29, x_27, x_24, x_23, x_38, x_3, x_4, x_5, x_6, x_7, x_8, x_39); +return x_40; +} +} +else +{ +lean_object* x_41; lean_object* x_42; +x_41 = lean_box(0); +x_42 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9(x_29, x_27, x_24, x_23, x_41, x_3, x_4, x_5, x_6, x_7, x_8, x_10); return x_42; } } -else +} +} +block_60: { -lean_object* x_43; lean_object* x_44; -x_43 = lean_box(0); -x_44 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9(x_31, x_27, x_24, x_23, x_43, x_3, x_4, x_5, x_6, x_7, x_8, x_10); -return x_44; -} -} -} -} -block_62: +if (x_44 == 0) { -if (x_46 == 0) -{ -x_10 = x_47; -goto block_45; +x_10 = x_45; +goto block_43; } 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_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_inc(x_1); -x_48 = l_List_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__17(x_1); -x_49 = l_Lean_MessageData_ofList(x_48); -lean_dec(x_48); -x_50 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___closed__8; +x_46 = l_List_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__16(x_1); +x_47 = l_Lean_MessageData_ofList(x_46); +lean_dec(x_46); +x_48 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___closed__8; +x_49 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_49, 0, x_48); +lean_ctor_set(x_49, 1, x_47); +x_50 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___closed__9; x_51 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_51, 0, x_50); -lean_ctor_set(x_51, 1, x_49); -x_52 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___closed__9; -x_53 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_53, 0, x_51); -lean_ctor_set(x_53, 1, x_52); +lean_ctor_set(x_51, 0, x_49); +lean_ctor_set(x_51, 1, x_50); lean_inc(x_2); -x_54 = l_List_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__21(x_2); -x_55 = l_Lean_MessageData_ofList(x_54); -lean_dec(x_54); +x_52 = l_List_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__20(x_2); +x_53 = l_Lean_MessageData_ofList(x_52); +lean_dec(x_52); +x_54 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_54, 0, x_51); +lean_ctor_set(x_54, 1, x_53); +x_55 = l_Lean_KernelException_toMessageData___closed__15; x_56 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_56, 0, x_53); +lean_ctor_set(x_56, 0, x_54); lean_ctor_set(x_56, 1, x_55); -x_57 = l_Lean_KernelException_toMessageData___closed__15; -x_58 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_58, 0, x_56); -lean_ctor_set(x_58, 1, x_57); -x_59 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___closed__7; -x_60 = l_Lean_addTrace___at___private_Lean_Elab_Term_0__Lean_Elab_Term_postponeElabTerm___spec__1(x_59, x_58, x_3, x_4, x_5, x_6, x_7, x_8, x_47); -x_61 = lean_ctor_get(x_60, 1); -lean_inc(x_61); -lean_dec(x_60); -x_10 = x_61; -goto block_45; +x_57 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___closed__7; +x_58 = l_Lean_addTrace___at___private_Lean_Elab_Term_0__Lean_Elab_Term_postponeElabTerm___spec__1(x_57, x_56, x_3, x_4, x_5, x_6, x_7, x_8, x_45); +x_59 = lean_ctor_get(x_58, 1); +lean_inc(x_59); +lean_dec(x_58); +x_10 = x_59; +goto block_43; } } } @@ -24188,43 +24356,67 @@ lean_dec(x_1); return x_2; } } -lean_object* l_List_foldl___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__3___boxed(lean_object* x_1, lean_object* x_2) { -_start: -{ -lean_object* x_3; -x_3 = l_List_foldl___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__3(x_1, x_2); -lean_dec(x_2); -lean_dec(x_1); -return x_3; -} -} -lean_object* l_List_filterAux___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_List_filterAux___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_List_filterAux___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__4(x_1, x_2, x_3); +x_4 = l_List_filterAux___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__3(x_1, x_2, x_3); lean_dec(x_1); return x_4; } } -lean_object* l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___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* l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___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_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__5(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_10 = l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__4(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_object* l_List_filterAux___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__6___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_List_filterAux___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__5___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_List_filterAux___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__6(x_1, x_2, x_3); +x_4 = l_List_filterAux___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__5(x_1, x_2, x_3); lean_dec(x_1); return x_4; } } +lean_object* l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__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]; +_start: +{ +lean_object* x_19; +x_19 = l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__7(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); +lean_dec(x_17); +lean_dec(x_16); +lean_dec(x_15); +lean_dec(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_8); +lean_dec(x_1); +return x_19; +} +} lean_object* l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___boxed(lean_object** _args) { lean_object* x_1 = _args[0]; lean_object* x_2 = _args[1]; @@ -24293,38 +24485,23 @@ lean_dec(x_1); return x_19; } } -lean_object* l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___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* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___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) { _start: { -lean_object* x_19; -x_19 = l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__10(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18); -lean_dec(x_17); -lean_dec(x_16); -lean_dec(x_15); -lean_dec(x_14); -lean_dec(x_13); -lean_dec(x_12); +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_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__10(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_9); lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); lean_dec(x_1); -return x_19; +return x_14; } } lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___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) { @@ -24346,23 +24523,38 @@ lean_dec(x_1); return x_14; } } -lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___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* l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__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]; _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_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__12(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_9); +lean_object* x_19; +x_19 = l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__12(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); +lean_dec(x_17); +lean_dec(x_16); +lean_dec(x_15); +lean_dec(x_14); +lean_dec(x_13); +lean_dec(x_12); lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); lean_dec(x_1); -return x_14; +return x_19; } } lean_object* l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__13___boxed(lean_object** _args) { @@ -24433,45 +24625,11 @@ lean_dec(x_1); return x_19; } } -lean_object* l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__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]; -_start: -{ -lean_object* x_19; -x_19 = l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__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); -lean_dec(x_17); -lean_dec(x_16); -lean_dec(x_15); -lean_dec(x_14); -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_8); -lean_dec(x_1); -return x_19; -} -} -lean_object* l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___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* l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___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_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__16(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_9 = l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__15(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); @@ -28380,7 +28538,7 @@ x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; } } -lean_object* l_Lean_Elab_Term_Quotation_initFn____x40_Lean_Elab_Quotation___hyg_10038_(lean_object* x_1) { +lean_object* l_Lean_Elab_Term_Quotation_initFn____x40_Lean_Elab_Quotation___hyg_10021_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; @@ -28459,122 +28617,124 @@ l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepFromSplice___c lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepFromSplice___closed__3); l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepFromSplice___closed__4 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepFromSplice___closed__4(); lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepFromSplice___closed__4); -l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__1___closed__1 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__1___closed__1(); -lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__1___closed__1); -l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__1___closed__2 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__1___closed__2(); -lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__1___closed__2); -l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__1___closed__3 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__1___closed__3(); -lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__1___closed__3); -l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__1___closed__4 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__1___closed__4(); -lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__1___closed__4); -l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__1 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__1(); -lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__1); -l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__2 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__2(); -lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__2); -l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__3 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__3(); -lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__3); -l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__4 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__4(); -lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__4); -l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__5 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__5(); -lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__5); -l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__6 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__6(); -lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__6); -l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__7 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__7(); -lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__7); -l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__8 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__8(); -lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__8); -l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__9 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__9(); -lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__9); -l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__10 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__10(); -lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__10); -l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__1 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__1(); -lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__1); -l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__2 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__2(); -lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__2); -l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__3 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__3(); -lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__3); -l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__4 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__4(); -lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__4); -l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__5 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__5(); -lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__5); -l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__6 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__6(); -lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__6); -l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__7 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__7(); -lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__7); -l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__8 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__8(); -lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__8); -l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__9 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__9(); -lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__9); -l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__10 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__10(); -lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__10); -l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__11 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__11(); -lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__11); -l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__12 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__12(); -lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__12); -l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__13 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__13(); -lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__13); -l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__14 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__14(); -lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__14); -l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__15 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__15(); -lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__15); -l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__16 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__16(); -lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__16); -l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__17 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__17(); -lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__17); -l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__18 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__18(); -lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__18); -l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__19 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__19(); -lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__19); -l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__20 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__20(); -lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__20); -l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__21 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__21(); -lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__21); -l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__22 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__22(); -lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__22); -l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__23 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__23(); -lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__23); -l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__24 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__24(); -lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__24); -l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__25 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__25(); -lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__25); -l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__26 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__26(); -lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__26); -l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__27 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__27(); -lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__27); -l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__28 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__28(); -lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__28); -l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__29 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__29(); -lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__29); -l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__30 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__30(); -lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__30); -l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__31 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__31(); -lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__31); -l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__32 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__32(); -lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__32); -l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__33 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__33(); -lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__33); -l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__34 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__34(); -lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__34); -l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__35 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__35(); -lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__35); -l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__36 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__36(); -lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__36); -l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__37 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__37(); -lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__37); -l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__38 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__38(); -lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__38); -l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__39 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__39(); -lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__39); -l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__40 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__40(); -lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__40); -l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__41 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__41(); -lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__41); -l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__42 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__42(); -lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__42); -l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__43 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__43(); -lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__43); -l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___boxed__const__1 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___boxed__const__1(); -lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___boxed__const__1); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__1___closed__1 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__1___closed__1(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__1___closed__1); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__1___closed__2 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__1___closed__2(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__1___closed__2); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__1___closed__3 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__1___closed__3(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__1___closed__3); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__1___closed__4 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__1___closed__4(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__1___closed__4); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__2___closed__1 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__2___closed__1(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__2___closed__1); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__2___closed__2 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__2___closed__2(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__2___closed__2); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__2___closed__3 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__2___closed__3(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__2___closed__3); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__2___closed__4 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__2___closed__4(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__2___closed__4); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__2___closed__5 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__2___closed__5(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__2___closed__5); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__2___closed__6 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__2___closed__6(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__2___closed__6); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__2___closed__7 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__2___closed__7(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__2___closed__7); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__2___closed__8 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__2___closed__8(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__2___closed__8); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__2___closed__9 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__2___closed__9(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__2___closed__9); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__2___closed__10 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__2___closed__10(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__2___closed__10); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__2___closed__11 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__2___closed__11(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___lambda__2___closed__11); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__1 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__1(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__1); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__2 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__2(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__2); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__3 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__3(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__3); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__4 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__4(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__4); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__5 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__5(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__5); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__6 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__6(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__6); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__7 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__7(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__7); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__8 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__8(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__8); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__9 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__9(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__9); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__10 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__10(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__10); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__11 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__11(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__11); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__12 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__12(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__12); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__13 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__13(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__13); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__14 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__14(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__14); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__15 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__15(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__15); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__16 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__16(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__16); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__17 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__17(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__17); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__18 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__18(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__18); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__19 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__19(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__19); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__20 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__20(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__20); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__21 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__21(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__21); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__22 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__22(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__22); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__23 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__23(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__23); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__24 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__24(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__24); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__25 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__25(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__25); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__26 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__26(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__26); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__27 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__27(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__27); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__28 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__28(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__28); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__29 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__29(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__29); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__30 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__30(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__30); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__31 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__31(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__31); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__32 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__32(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__32); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__33 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__33(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__33); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__34 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__34(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__34); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__35 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__35(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__35); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__36 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__36(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__36); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__37 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__37(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__37); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__38 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__38(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__38); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__39 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__39(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__39); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__40 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__40(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__40); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__41 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__41(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__41); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__42 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__42(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__42); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__43 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__43(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___closed__43); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___boxed__const__1 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___boxed__const__1(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___boxed__const__1); l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__1 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__1(); lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__1); l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__2 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__2(); @@ -29000,42 +29160,42 @@ l_List_head_x21___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_c lean_mark_persistent(l_List_head_x21___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__2___closed__1); l_List_head_x21___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__2___closed__2 = _init_l_List_head_x21___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__2___closed__2(); lean_mark_persistent(l_List_head_x21___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__2___closed__2); -l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__1 = _init_l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__1(); -lean_mark_persistent(l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__1); -l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__2 = _init_l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__2(); -lean_mark_persistent(l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__2); -l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__3 = _init_l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__3(); -lean_mark_persistent(l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__3); -l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__4 = _init_l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__4(); -lean_mark_persistent(l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__4); -l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__5 = _init_l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__5(); -lean_mark_persistent(l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__5); -l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__6 = _init_l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__6(); -lean_mark_persistent(l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__6); +l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__7___closed__1 = _init_l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__7___closed__1(); +lean_mark_persistent(l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__7___closed__1); +l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__7___closed__2 = _init_l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__7___closed__2(); +lean_mark_persistent(l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__7___closed__2); +l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__7___closed__3 = _init_l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__7___closed__3(); +lean_mark_persistent(l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__7___closed__3); +l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__7___closed__4 = _init_l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__7___closed__4(); +lean_mark_persistent(l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__7___closed__4); +l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__7___closed__5 = _init_l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__7___closed__5(); +lean_mark_persistent(l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__7___closed__5); +l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__7___closed__6 = _init_l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__7___closed__6(); +lean_mark_persistent(l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__7___closed__6); +l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__10___closed__1 = _init_l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__10___closed__1(); +lean_mark_persistent(l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__10___closed__1); +l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__10___closed__2 = _init_l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__10___closed__2(); +lean_mark_persistent(l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__10___closed__2); l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__11___closed__1 = _init_l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__11___closed__1(); lean_mark_persistent(l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__11___closed__1); l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__11___closed__2 = _init_l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__11___closed__2(); lean_mark_persistent(l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__11___closed__2); -l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__12___closed__1 = _init_l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__12___closed__1(); -lean_mark_persistent(l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__12___closed__1); -l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__12___closed__2 = _init_l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__12___closed__2(); -lean_mark_persistent(l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__12___closed__2); -l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__16___closed__1 = _init_l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__16___closed__1(); -lean_mark_persistent(l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__16___closed__1); -l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__16___closed__2 = _init_l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__16___closed__2(); -lean_mark_persistent(l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__16___closed__2); -l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__16___closed__3 = _init_l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__16___closed__3(); -lean_mark_persistent(l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__16___closed__3); -l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__16___closed__4 = _init_l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__16___closed__4(); -lean_mark_persistent(l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__16___closed__4); -l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__16___closed__5 = _init_l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__16___closed__5(); -lean_mark_persistent(l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__16___closed__5); -l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__16___closed__6 = _init_l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__16___closed__6(); -lean_mark_persistent(l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__16___closed__6); -l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__16___closed__7 = _init_l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__16___closed__7(); -lean_mark_persistent(l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__16___closed__7); -l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__16___closed__8 = _init_l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__16___closed__8(); -lean_mark_persistent(l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__16___closed__8); +l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__15___closed__1 = _init_l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__15___closed__1(); +lean_mark_persistent(l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__15___closed__1); +l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__15___closed__2 = _init_l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__15___closed__2(); +lean_mark_persistent(l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__15___closed__2); +l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__15___closed__3 = _init_l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__15___closed__3(); +lean_mark_persistent(l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__15___closed__3); +l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__15___closed__4 = _init_l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__15___closed__4(); +lean_mark_persistent(l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__15___closed__4); +l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__15___closed__5 = _init_l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__15___closed__5(); +lean_mark_persistent(l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__15___closed__5); +l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__15___closed__6 = _init_l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__15___closed__6(); +lean_mark_persistent(l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__15___closed__6); +l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__15___closed__7 = _init_l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__15___closed__7(); +lean_mark_persistent(l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__15___closed__7); +l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__15___closed__8 = _init_l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__15___closed__8(); +lean_mark_persistent(l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__15___closed__8); l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__1___closed__1 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__1___closed__1(); lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__1___closed__1); l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__1___closed__2 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__1___closed__2(); @@ -29199,7 +29359,7 @@ lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___c res = l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = l_Lean_Elab_Term_Quotation_initFn____x40_Lean_Elab_Quotation___hyg_10038_(lean_io_mk_world()); +res = l_Lean_Elab_Term_Quotation_initFn____x40_Lean_Elab_Quotation___hyg_10021_(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/Util.c b/stage0/stdlib/Lean/Elab/Util.c index bfa4475bac..cfc4804ffc 100644 --- a/stage0/stdlib/Lean/Elab/Util.c +++ b/stage0/stdlib/Lean/Elab/Util.c @@ -24,6 +24,7 @@ lean_object* l_Lean_Elab_adaptMacro___rarg___lambda__5(lean_object*, lean_object lean_object* l_Lean_Elab_mkElabAttribute___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_List_foldl___at_Lean_Elab_addMacroStack___spec__1(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_mkMacroAttribute(lean_object*); +lean_object* l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Elab_getBetterRef___spec__1___boxed(lean_object*, lean_object*); lean_object* l_Std_PersistentHashMap_findAtAux___at_Lean_Elab_getMacros___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_mkMacroAttributeUnsafe___closed__7; lean_object* l_Lean_Elab_adaptMacro___rarg___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -67,6 +68,7 @@ lean_object* l_Lean_Elab_mkMacroAttributeUnsafe___closed__6; lean_object* l_Lean_Elab_checkSyntaxNodeKind___closed__2; lean_object* lean_array_fget(lean_object*, lean_object*); extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_853____closed__1; +uint8_t lean_nat_dec_eq(lean_object*, lean_object*); lean_object* l_Lean_Elab_checkSyntaxNodeKindAtNamespaces(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_evalSyntaxConstant___boxed(lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Elab_getBetterRef___lambda__1(lean_object*); @@ -104,6 +106,7 @@ lean_object* l_Lean_Elab_liftMacroM___rarg___lambda__4(lean_object*, lean_object lean_object* l_Lean_Elab_mkMacroAttributeUnsafe___closed__1; lean_object* l_Lean_Elab_instMonadMacroAdapter___rarg(lean_object*, lean_object*); size_t lean_usize_modn(size_t, lean_object*); +uint8_t l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Elab_getBetterRef___spec__1(lean_object*, lean_object*); extern lean_object* l_Lean_instInhabitedKeyedDeclsAttribute___closed__1; lean_object* l_Lean_Elab_mkUnusedBaseName___rarg___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_addMacroStack(lean_object*); @@ -390,25 +393,64 @@ x_2 = lean_alloc_closure((void*)(l_Lean_Elab_getBetterRef_match__2___rarg), 3, 0 return x_2; } } -uint8_t l_Lean_Elab_getBetterRef___lambda__1(lean_object* x_1) { +uint8_t l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Elab_getBetterRef___spec__1(lean_object* x_1, lean_object* x_2) { _start: { -lean_object* x_2; lean_object* x_3; -x_2 = lean_ctor_get(x_1, 0); -x_3 = l_Lean_Syntax_getPos(x_2); -if (lean_obj_tag(x_3) == 0) +if (lean_obj_tag(x_1) == 0) +{ +if (lean_obj_tag(x_2) == 0) +{ +uint8_t x_3; +x_3 = 1; +return x_3; +} +else { uint8_t x_4; x_4 = 0; return x_4; } +} else { +if (lean_obj_tag(x_2) == 0) +{ uint8_t x_5; -lean_dec(x_3); -x_5 = 1; +x_5 = 0; return x_5; } +else +{ +lean_object* x_6; lean_object* x_7; uint8_t x_8; +x_6 = lean_ctor_get(x_1, 0); +x_7 = lean_ctor_get(x_2, 0); +x_8 = lean_nat_dec_eq(x_6, x_7); +return x_8; +} +} +} +} +uint8_t l_Lean_Elab_getBetterRef___lambda__1(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; uint8_t x_5; +x_2 = lean_ctor_get(x_1, 0); +x_3 = l_Lean_Syntax_getPos(x_2); +x_4 = lean_box(0); +x_5 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Elab_getBetterRef___spec__1(x_3, x_4); +lean_dec(x_3); +if (x_5 == 0) +{ +uint8_t x_6; +x_6 = 1; +return x_6; +} +else +{ +uint8_t x_7; +x_7 = 0; +return x_7; +} } } static lean_object* _init_l_Lean_Elab_getBetterRef___closed__1() { @@ -455,6 +497,17 @@ return x_1; } } } +lean_object* l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Elab_getBetterRef___spec__1___boxed(lean_object* x_1, lean_object* x_2) { +_start: +{ +uint8_t x_3; lean_object* x_4; +x_3 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Elab_getBetterRef___spec__1(x_1, x_2); +lean_dec(x_2); +lean_dec(x_1); +x_4 = lean_box(x_3); +return x_4; +} +} lean_object* l_Lean_Elab_getBetterRef___lambda__1___boxed(lean_object* x_1) { _start: { diff --git a/stage0/stdlib/Lean/Meta/Basic.c b/stage0/stdlib/Lean/Meta/Basic.c index 802273867b..bbd692f720 100644 --- a/stage0/stdlib/Lean/Meta/Basic.c +++ b/stage0/stdlib/Lean/Meta/Basic.c @@ -163,6 +163,7 @@ lean_object* lean_expr_instantiate1(lean_object*, lean_object*); lean_object* l_Lean_Meta_State_zetaFVarIds___default; lean_object* lean_array_push(lean_object*, lean_object*); lean_object* lean_array_get_size(lean_object*); +lean_object* l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Meta_InfoCacheKey_instBEqInfoCacheKey___spec__1___boxed(lean_object*, lean_object*); lean_object* l_Lean_Meta_withNewLocalInstance___at___private_Lean_Meta_Basic_0__Lean_Meta_withNewLocalInstancesImp___spec__1(lean_object*); lean_object* l_Lean_Meta_hasAssignableMVar___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_string_append(lean_object*, lean_object*); @@ -795,6 +796,7 @@ lean_object* l_Lean_mkFreshId___at_Lean_Meta_mkFreshExprMVarAt___spec__1___rarg_ lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_isClassImp_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_getFVarLocalDecl___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_lambdaTelescopeImp_process___rarg___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___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Meta_InfoCacheKey_instBEqInfoCacheKey___spec__1(lean_object*, lean_object*); lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_instantiateLambdaAux_match__1(lean_object*); lean_object* l_Lean_throwError___at_Lean_Meta_throwUnknownFVar___spec__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_findLocalDecl_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1137,6 +1139,43 @@ x_2 = lean_alloc_closure((void*)(l_Lean_Meta_InfoCacheKey_instBEqInfoCacheKey_ma return x_2; } } +uint8_t l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Meta_InfoCacheKey_instBEqInfoCacheKey___spec__1(lean_object* x_1, lean_object* x_2) { +_start: +{ +if (lean_obj_tag(x_1) == 0) +{ +if (lean_obj_tag(x_2) == 0) +{ +uint8_t x_3; +x_3 = 1; +return x_3; +} +else +{ +uint8_t x_4; +x_4 = 0; +return x_4; +} +} +else +{ +if (lean_obj_tag(x_2) == 0) +{ +uint8_t x_5; +x_5 = 0; +return x_5; +} +else +{ +lean_object* x_6; lean_object* x_7; uint8_t x_8; +x_6 = lean_ctor_get(x_1, 0); +x_7 = lean_ctor_get(x_2, 0); +x_8 = lean_nat_dec_eq(x_6, x_7); +return x_8; +} +} +} +} uint8_t l_Lean_Meta_InfoCacheKey_instBEqInfoCacheKey(lean_object* x_1, lean_object* x_2) { _start: { @@ -1156,50 +1195,32 @@ return x_10; } else { -if (lean_obj_tag(x_5) == 0) -{ -if (lean_obj_tag(x_8) == 0) -{ uint8_t x_11; -x_11 = lean_expr_eqv(x_4, x_7); -return x_11; -} -else +x_11 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Meta_InfoCacheKey_instBEqInfoCacheKey___spec__1(x_5, x_8); +if (x_11 == 0) { uint8_t x_12; x_12 = 0; return x_12; } -} else { -if (lean_obj_tag(x_8) == 0) -{ uint8_t x_13; -x_13 = 0; +x_13 = lean_expr_eqv(x_4, x_7); return x_13; } -else +} +} +} +lean_object* l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Meta_InfoCacheKey_instBEqInfoCacheKey___spec__1___boxed(lean_object* x_1, lean_object* x_2) { +_start: { -lean_object* x_14; lean_object* x_15; uint8_t x_16; -x_14 = lean_ctor_get(x_5, 0); -x_15 = lean_ctor_get(x_8, 0); -x_16 = lean_nat_dec_eq(x_14, x_15); -if (x_16 == 0) -{ -uint8_t x_17; -x_17 = 0; -return x_17; -} -else -{ -uint8_t x_18; -x_18 = lean_expr_eqv(x_4, x_7); -return x_18; -} -} -} -} +uint8_t x_3; lean_object* x_4; +x_3 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Meta_InfoCacheKey_instBEqInfoCacheKey___spec__1(x_1, x_2); +lean_dec(x_2); +lean_dec(x_1); +x_4 = lean_box(x_3); +return x_4; } } lean_object* l_Lean_Meta_InfoCacheKey_instBEqInfoCacheKey___boxed(lean_object* x_1, lean_object* x_2) { diff --git a/stage0/stdlib/Lean/Meta/FunInfo.c b/stage0/stdlib/Lean/Meta/FunInfo.c index 75f82cbec6..43e411b8f1 100644 --- a/stage0/stdlib/Lean/Meta/FunInfo.c +++ b/stage0/stdlib/Lean/Meta/FunInfo.c @@ -106,6 +106,7 @@ lean_object* l_Std_PersistentHashMap_find_x3f___at___private_Lean_Meta_FunInfo_0 lean_object* l_Std_PersistentHashMap_insert___at___private_Lean_Meta_FunInfo_0__Lean_Meta_checkFunInfoCache___spec__4(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Position_lt___closed__2; lean_object* l_Std_PersistentHashMap_mkCollisionNode___rarg(lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Meta_InfoCacheKey_instBEqInfoCacheKey___spec__1(lean_object*, lean_object*); uint8_t lean_nat_dec_lt(lean_object*, lean_object*); lean_object* l_Lean_Meta_getFVarLocalDecl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Meta_FunInfo_0__Lean_Meta_checkFunInfoCache_match__1___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { @@ -181,16 +182,13 @@ goto _start; } else { -if (lean_obj_tag(x_12) == 0) -{ -if (lean_obj_tag(x_15) == 0) -{ uint8_t x_20; -x_20 = lean_expr_eqv(x_11, x_14); -lean_dec(x_14); +x_20 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Meta_InfoCacheKey_instBEqInfoCacheKey___spec__1(x_12, x_15); +lean_dec(x_15); if (x_20 == 0) { lean_object* x_21; lean_object* x_22; +lean_dec(x_14); x_21 = lean_unsigned_to_nat(1u); x_22 = lean_nat_add(x_4, x_21); lean_dec(x_4); @@ -200,135 +198,27 @@ goto _start; } else { -lean_object* x_24; lean_object* x_25; -x_24 = lean_array_fget(x_2, x_4); -lean_dec(x_4); -x_25 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_25, 0, x_24); -return x_25; -} -} -else -{ -lean_object* x_26; lean_object* x_27; -lean_dec(x_15); +uint8_t x_24; +x_24 = lean_expr_eqv(x_11, x_14); lean_dec(x_14); -x_26 = lean_unsigned_to_nat(1u); -x_27 = lean_nat_add(x_4, x_26); +if (x_24 == 0) +{ +lean_object* x_25; lean_object* x_26; +x_25 = lean_unsigned_to_nat(1u); +x_26 = lean_nat_add(x_4, x_25); lean_dec(x_4); x_3 = lean_box(0); -x_4 = x_27; -goto _start; -} -} -else -{ -if (lean_obj_tag(x_15) == 0) -{ -lean_object* x_29; lean_object* x_30; -lean_dec(x_14); -x_29 = lean_unsigned_to_nat(1u); -x_30 = lean_nat_add(x_4, x_29); -lean_dec(x_4); -x_3 = lean_box(0); -x_4 = x_30; +x_4 = x_26; goto _start; } else { -uint8_t x_32; -x_32 = !lean_is_exclusive(x_15); -if (x_32 == 0) -{ -lean_object* x_33; lean_object* x_34; uint8_t x_35; -x_33 = lean_ctor_get(x_12, 0); -x_34 = lean_ctor_get(x_15, 0); -x_35 = lean_nat_dec_eq(x_33, x_34); -lean_dec(x_34); -if (x_35 == 0) -{ -lean_object* x_36; lean_object* x_37; -lean_free_object(x_15); -lean_dec(x_14); -x_36 = lean_unsigned_to_nat(1u); -x_37 = lean_nat_add(x_4, x_36); +lean_object* x_28; lean_object* x_29; +x_28 = lean_array_fget(x_2, x_4); lean_dec(x_4); -x_3 = lean_box(0); -x_4 = x_37; -goto _start; -} -else -{ -uint8_t x_39; -x_39 = lean_expr_eqv(x_11, x_14); -lean_dec(x_14); -if (x_39 == 0) -{ -lean_object* x_40; lean_object* x_41; -lean_free_object(x_15); -x_40 = lean_unsigned_to_nat(1u); -x_41 = lean_nat_add(x_4, x_40); -lean_dec(x_4); -x_3 = lean_box(0); -x_4 = x_41; -goto _start; -} -else -{ -lean_object* x_43; -x_43 = lean_array_fget(x_2, x_4); -lean_dec(x_4); -lean_ctor_set(x_15, 0, x_43); -return x_15; -} -} -} -else -{ -lean_object* x_44; lean_object* x_45; uint8_t x_46; -x_44 = lean_ctor_get(x_12, 0); -x_45 = lean_ctor_get(x_15, 0); -lean_inc(x_45); -lean_dec(x_15); -x_46 = lean_nat_dec_eq(x_44, x_45); -lean_dec(x_45); -if (x_46 == 0) -{ -lean_object* x_47; lean_object* x_48; -lean_dec(x_14); -x_47 = lean_unsigned_to_nat(1u); -x_48 = lean_nat_add(x_4, x_47); -lean_dec(x_4); -x_3 = lean_box(0); -x_4 = x_48; -goto _start; -} -else -{ -uint8_t x_50; -x_50 = lean_expr_eqv(x_11, x_14); -lean_dec(x_14); -if (x_50 == 0) -{ -lean_object* x_51; lean_object* x_52; -x_51 = lean_unsigned_to_nat(1u); -x_52 = lean_nat_add(x_4, x_51); -lean_dec(x_4); -x_3 = lean_box(0); -x_4 = x_52; -goto _start; -} -else -{ -lean_object* x_54; lean_object* x_55; -x_54 = lean_array_fget(x_2, x_4); -lean_dec(x_4); -x_55 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_55, 0, x_54); -return x_55; -} -} -} +x_29 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_29, 0, x_28); +return x_29; } } } @@ -382,162 +272,71 @@ return x_20; } else { -if (lean_obj_tag(x_15) == 0) -{ -if (lean_obj_tag(x_18) == 0) -{ uint8_t x_21; -x_21 = lean_expr_eqv(x_14, x_17); -lean_dec(x_17); +x_21 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Meta_InfoCacheKey_instBEqInfoCacheKey___spec__1(x_15, x_18); +lean_dec(x_18); if (x_21 == 0) { lean_object* x_22; +lean_dec(x_17); lean_dec(x_12); x_22 = lean_box(0); return x_22; } else { -lean_object* x_23; -x_23 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_23, 0, x_12); -return x_23; -} -} -else +uint8_t x_23; +x_23 = lean_expr_eqv(x_14, x_17); +lean_dec(x_17); +if (x_23 == 0) { lean_object* x_24; -lean_dec(x_18); -lean_dec(x_17); lean_dec(x_12); x_24 = lean_box(0); return x_24; } -} else { -if (lean_obj_tag(x_18) == 0) -{ lean_object* x_25; -lean_dec(x_17); -lean_dec(x_12); -x_25 = lean_box(0); +x_25 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_25, 0, x_12); return x_25; } -else -{ -uint8_t x_26; -x_26 = !lean_is_exclusive(x_18); -if (x_26 == 0) -{ -lean_object* x_27; lean_object* x_28; uint8_t x_29; -x_27 = lean_ctor_get(x_15, 0); -x_28 = lean_ctor_get(x_18, 0); -x_29 = lean_nat_dec_eq(x_27, x_28); -lean_dec(x_28); -if (x_29 == 0) -{ -lean_object* x_30; -lean_free_object(x_18); -lean_dec(x_17); -lean_dec(x_12); -x_30 = lean_box(0); -return x_30; -} -else -{ -uint8_t x_31; -x_31 = lean_expr_eqv(x_14, x_17); -lean_dec(x_17); -if (x_31 == 0) -{ -lean_object* x_32; -lean_free_object(x_18); -lean_dec(x_12); -x_32 = lean_box(0); -return x_32; -} -else -{ -lean_ctor_set(x_18, 0, x_12); -return x_18; -} -} -} -else -{ -lean_object* x_33; lean_object* x_34; uint8_t x_35; -x_33 = lean_ctor_get(x_15, 0); -x_34 = lean_ctor_get(x_18, 0); -lean_inc(x_34); -lean_dec(x_18); -x_35 = lean_nat_dec_eq(x_33, x_34); -lean_dec(x_34); -if (x_35 == 0) -{ -lean_object* x_36; -lean_dec(x_17); -lean_dec(x_12); -x_36 = lean_box(0); -return x_36; -} -else -{ -uint8_t x_37; -x_37 = lean_expr_eqv(x_14, x_17); -lean_dec(x_17); -if (x_37 == 0) -{ -lean_object* x_38; -lean_dec(x_12); -x_38 = lean_box(0); -return x_38; -} -else -{ -lean_object* x_39; -x_39 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_39, 0, x_12); -return x_39; -} -} -} -} } } } case 1: { -lean_object* x_40; size_t x_41; -x_40 = lean_ctor_get(x_10, 0); -lean_inc(x_40); +lean_object* x_26; size_t x_27; +x_26 = lean_ctor_get(x_10, 0); +lean_inc(x_26); lean_dec(x_10); -x_41 = x_2 >> x_5; -x_1 = x_40; -x_2 = x_41; +x_27 = x_2 >> x_5; +x_1 = x_26; +x_2 = x_27; goto _start; } default: { -lean_object* x_43; -x_43 = lean_box(0); -return x_43; +lean_object* x_29; +x_29 = lean_box(0); +return x_29; } } } else { -lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; -x_44 = lean_ctor_get(x_1, 0); -lean_inc(x_44); -x_45 = lean_ctor_get(x_1, 1); -lean_inc(x_45); +lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; +x_30 = lean_ctor_get(x_1, 0); +lean_inc(x_30); +x_31 = lean_ctor_get(x_1, 1); +lean_inc(x_31); lean_dec(x_1); -x_46 = lean_unsigned_to_nat(0u); -x_47 = l_Std_PersistentHashMap_findAtAux___at___private_Lean_Meta_FunInfo_0__Lean_Meta_checkFunInfoCache___spec__3(x_44, x_45, lean_box(0), x_46, x_3); -lean_dec(x_45); -lean_dec(x_44); -return x_47; +x_32 = lean_unsigned_to_nat(0u); +x_33 = l_Std_PersistentHashMap_findAtAux___at___private_Lean_Meta_FunInfo_0__Lean_Meta_checkFunInfoCache___spec__3(x_30, x_31, lean_box(0), x_32, x_3); +lean_dec(x_31); +lean_dec(x_30); +return x_33; } } } @@ -686,161 +485,103 @@ return x_16; } else { -lean_object* x_17; lean_object* x_22; uint8_t x_23; lean_object* x_24; lean_object* x_25; uint8_t x_26; lean_object* x_27; lean_object* x_28; uint8_t x_29; -x_22 = lean_array_fget(x_5, x_2); -x_23 = lean_ctor_get_uint8(x_3, sizeof(void*)*2); -x_24 = lean_ctor_get(x_3, 0); -lean_inc(x_24); -x_25 = lean_ctor_get(x_3, 1); -lean_inc(x_25); -x_26 = lean_ctor_get_uint8(x_22, sizeof(void*)*2); -x_27 = lean_ctor_get(x_22, 0); -lean_inc(x_27); -x_28 = lean_ctor_get(x_22, 1); -lean_inc(x_28); -lean_dec(x_22); -x_29 = l_Lean_Meta_TransparencyMode_beq(x_23, x_26); -if (x_29 == 0) -{ -lean_object* x_30; lean_object* x_31; -lean_dec(x_28); -lean_dec(x_27); -lean_dec(x_25); -lean_dec(x_24); -lean_dec(x_6); -lean_dec(x_5); -x_30 = lean_unsigned_to_nat(1u); -x_31 = lean_nat_add(x_2, x_30); -lean_dec(x_2); -x_2 = x_31; -goto _start; -} -else -{ -if (lean_obj_tag(x_25) == 0) -{ -if (lean_obj_tag(x_28) == 0) -{ -uint8_t x_33; -x_33 = lean_expr_eqv(x_24, x_27); -lean_dec(x_27); -lean_dec(x_24); -if (x_33 == 0) -{ -lean_object* x_34; lean_object* x_35; -lean_dec(x_6); -lean_dec(x_5); -x_34 = lean_unsigned_to_nat(1u); -x_35 = lean_nat_add(x_2, x_34); -lean_dec(x_2); -x_2 = x_35; -goto _start; -} -else -{ -lean_object* x_37; -lean_dec(x_1); -x_37 = lean_box(0); -x_17 = x_37; -goto block_21; -} -} -else -{ -lean_object* x_38; lean_object* x_39; -lean_dec(x_28); -lean_dec(x_27); -lean_dec(x_24); -lean_dec(x_6); -lean_dec(x_5); -x_38 = lean_unsigned_to_nat(1u); -x_39 = lean_nat_add(x_2, x_38); -lean_dec(x_2); -x_2 = x_39; -goto _start; -} -} -else -{ -if (lean_obj_tag(x_28) == 0) -{ -lean_object* x_41; lean_object* x_42; -lean_dec(x_27); -lean_dec(x_25); -lean_dec(x_24); -lean_dec(x_6); -lean_dec(x_5); -x_41 = lean_unsigned_to_nat(1u); -x_42 = lean_nat_add(x_2, x_41); -lean_dec(x_2); -x_2 = x_42; -goto _start; -} -else -{ -lean_object* x_44; lean_object* x_45; uint8_t x_46; -x_44 = lean_ctor_get(x_25, 0); -lean_inc(x_44); -lean_dec(x_25); -x_45 = lean_ctor_get(x_28, 0); -lean_inc(x_45); -lean_dec(x_28); -x_46 = lean_nat_dec_eq(x_44, x_45); -lean_dec(x_45); -lean_dec(x_44); -if (x_46 == 0) -{ -lean_object* x_47; lean_object* x_48; -lean_dec(x_27); -lean_dec(x_24); -lean_dec(x_6); -lean_dec(x_5); -x_47 = lean_unsigned_to_nat(1u); -x_48 = lean_nat_add(x_2, x_47); -lean_dec(x_2); -x_2 = x_48; -goto _start; -} -else -{ -uint8_t x_50; -x_50 = lean_expr_eqv(x_24, x_27); -lean_dec(x_27); -lean_dec(x_24); -if (x_50 == 0) -{ -lean_object* x_51; lean_object* x_52; -lean_dec(x_6); -lean_dec(x_5); -x_51 = lean_unsigned_to_nat(1u); -x_52 = lean_nat_add(x_2, x_51); -lean_dec(x_2); -x_2 = x_52; -goto _start; -} -else -{ -lean_object* x_54; -lean_dec(x_1); -x_54 = lean_box(0); -x_17 = x_54; -goto block_21; -} -} -} -} -} -block_21: -{ -lean_object* x_18; lean_object* x_19; lean_object* x_20; +lean_object* x_17; uint8_t x_18; lean_object* x_19; lean_object* x_20; uint8_t x_21; lean_object* x_22; lean_object* x_23; uint8_t x_24; +x_17 = lean_array_fget(x_5, x_2); +x_18 = lean_ctor_get_uint8(x_3, sizeof(void*)*2); +x_19 = lean_ctor_get(x_3, 0); +lean_inc(x_19); +x_20 = lean_ctor_get(x_3, 1); +lean_inc(x_20); +x_21 = lean_ctor_get_uint8(x_17, sizeof(void*)*2); +x_22 = lean_ctor_get(x_17, 0); +lean_inc(x_22); +x_23 = lean_ctor_get(x_17, 1); +lean_inc(x_23); lean_dec(x_17); -x_18 = lean_array_fset(x_5, x_2, x_3); -x_19 = lean_array_fset(x_6, x_2, x_4); +x_24 = l_Lean_Meta_TransparencyMode_beq(x_18, x_21); +if (x_24 == 0) +{ +lean_object* x_25; lean_object* x_26; +lean_dec(x_23); +lean_dec(x_22); +lean_dec(x_20); +lean_dec(x_19); +lean_dec(x_6); +lean_dec(x_5); +x_25 = lean_unsigned_to_nat(1u); +x_26 = lean_nat_add(x_2, x_25); lean_dec(x_2); -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; +x_2 = x_26; +goto _start; +} +else +{ +uint8_t x_28; +x_28 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Meta_InfoCacheKey_instBEqInfoCacheKey___spec__1(x_20, x_23); +lean_dec(x_23); +lean_dec(x_20); +if (x_28 == 0) +{ +lean_object* x_29; lean_object* x_30; +lean_dec(x_22); +lean_dec(x_19); +lean_dec(x_6); +lean_dec(x_5); +x_29 = lean_unsigned_to_nat(1u); +x_30 = lean_nat_add(x_2, x_29); +lean_dec(x_2); +x_2 = x_30; +goto _start; +} +else +{ +uint8_t x_32; +x_32 = lean_expr_eqv(x_19, x_22); +lean_dec(x_22); +lean_dec(x_19); +if (x_32 == 0) +{ +lean_object* x_33; lean_object* x_34; +lean_dec(x_6); +lean_dec(x_5); +x_33 = lean_unsigned_to_nat(1u); +x_34 = lean_nat_add(x_2, x_33); +lean_dec(x_2); +x_2 = x_34; +goto _start; +} +else +{ +uint8_t x_36; +x_36 = !lean_is_exclusive(x_1); +if (x_36 == 0) +{ +lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; +x_37 = lean_ctor_get(x_1, 1); +lean_dec(x_37); +x_38 = lean_ctor_get(x_1, 0); +lean_dec(x_38); +x_39 = lean_array_fset(x_5, x_2, x_3); +x_40 = lean_array_fset(x_6, x_2, x_4); +lean_dec(x_2); +lean_ctor_set(x_1, 1, x_40); +lean_ctor_set(x_1, 0, x_39); +return x_1; +} +else +{ +lean_object* x_41; lean_object* x_42; lean_object* x_43; +lean_dec(x_1); +x_41 = lean_array_fset(x_5, x_2, x_3); +x_42 = lean_array_fset(x_6, x_2, x_4); +lean_dec(x_2); +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; +} +} +} } } } @@ -916,17 +657,15 @@ return x_1; } else { -if (lean_obj_tag(x_23) == 0) -{ -if (lean_obj_tag(x_26) == 0) -{ uint8_t x_31; -x_31 = lean_expr_eqv(x_22, x_25); -lean_dec(x_25); -lean_dec(x_22); +x_31 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Meta_InfoCacheKey_instBEqInfoCacheKey___spec__1(x_23, x_26); +lean_dec(x_26); +lean_dec(x_23); if (x_31 == 0) { lean_object* x_32; lean_object* x_33; lean_object* x_34; +lean_dec(x_25); +lean_dec(x_22); lean_free_object(x_15); x_32 = l_Std_PersistentHashMap_mkCollisionNode___rarg(x_19, x_20, x_4, x_5); x_33 = lean_alloc_ctor(1, 1, 0); @@ -938,23 +677,13 @@ return x_1; } else { -lean_object* x_35; -lean_dec(x_20); -lean_dec(x_19); -lean_ctor_set(x_15, 1, x_5); -lean_ctor_set(x_15, 0, x_4); -x_35 = lean_array_fset(x_17, x_12, x_15); -lean_dec(x_12); -lean_ctor_set(x_1, 0, x_35); -return x_1; -} -} -else -{ -lean_object* x_36; lean_object* x_37; lean_object* x_38; -lean_dec(x_26); +uint8_t x_35; +x_35 = lean_expr_eqv(x_22, x_25); lean_dec(x_25); lean_dec(x_22); +if (x_35 == 0) +{ +lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_free_object(x_15); x_36 = l_Std_PersistentHashMap_mkCollisionNode___rarg(x_19, x_20, x_4, x_5); x_37 = lean_alloc_ctor(1, 1, 0); @@ -964,61 +693,48 @@ lean_dec(x_12); lean_ctor_set(x_1, 0, x_38); return x_1; } -} else { -if (lean_obj_tag(x_26) == 0) -{ -lean_object* x_39; lean_object* x_40; lean_object* x_41; -lean_dec(x_25); -lean_dec(x_23); -lean_dec(x_22); -lean_free_object(x_15); -x_39 = l_Std_PersistentHashMap_mkCollisionNode___rarg(x_19, x_20, x_4, x_5); -x_40 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_40, 0, x_39); -x_41 = lean_array_fset(x_17, x_12, x_40); +lean_object* x_39; +lean_dec(x_20); +lean_dec(x_19); +lean_ctor_set(x_15, 1, x_5); +lean_ctor_set(x_15, 0, x_4); +x_39 = lean_array_fset(x_17, x_12, x_15); lean_dec(x_12); -lean_ctor_set(x_1, 0, x_41); +lean_ctor_set(x_1, 0, x_39); return x_1; } +} +} +} else { -lean_object* x_42; lean_object* x_43; uint8_t x_44; -x_42 = lean_ctor_get(x_23, 0); -lean_inc(x_42); -lean_dec(x_23); -x_43 = lean_ctor_get(x_26, 0); +lean_object* x_40; lean_object* x_41; uint8_t x_42; lean_object* x_43; lean_object* x_44; uint8_t x_45; lean_object* x_46; lean_object* x_47; uint8_t x_48; +x_40 = lean_ctor_get(x_15, 0); +x_41 = lean_ctor_get(x_15, 1); +lean_inc(x_41); +lean_inc(x_40); +lean_dec(x_15); +x_42 = lean_ctor_get_uint8(x_4, sizeof(void*)*2); +x_43 = lean_ctor_get(x_4, 0); lean_inc(x_43); -lean_dec(x_26); -x_44 = lean_nat_dec_eq(x_42, x_43); -lean_dec(x_43); -lean_dec(x_42); -if (x_44 == 0) -{ -lean_object* x_45; lean_object* x_46; lean_object* x_47; -lean_dec(x_25); -lean_dec(x_22); -lean_free_object(x_15); -x_45 = l_Std_PersistentHashMap_mkCollisionNode___rarg(x_19, x_20, x_4, x_5); -x_46 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_46, 0, x_45); -x_47 = lean_array_fset(x_17, x_12, x_46); -lean_dec(x_12); -lean_ctor_set(x_1, 0, x_47); -return x_1; -} -else -{ -uint8_t x_48; -x_48 = lean_expr_eqv(x_22, x_25); -lean_dec(x_25); -lean_dec(x_22); +x_44 = lean_ctor_get(x_4, 1); +lean_inc(x_44); +x_45 = lean_ctor_get_uint8(x_40, sizeof(void*)*2); +x_46 = lean_ctor_get(x_40, 0); +lean_inc(x_46); +x_47 = lean_ctor_get(x_40, 1); +lean_inc(x_47); +x_48 = l_Lean_Meta_TransparencyMode_beq(x_42, x_45); if (x_48 == 0) { lean_object* x_49; lean_object* x_50; lean_object* x_51; -lean_free_object(x_15); -x_49 = l_Std_PersistentHashMap_mkCollisionNode___rarg(x_19, x_20, x_4, x_5); +lean_dec(x_47); +lean_dec(x_46); +lean_dec(x_44); +lean_dec(x_43); +x_49 = l_Std_PersistentHashMap_mkCollisionNode___rarg(x_40, x_41, x_4, x_5); x_50 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_50, 0, x_49); x_51 = lean_array_fset(x_17, x_12, x_50); @@ -1028,97 +744,83 @@ return x_1; } else { -lean_object* x_52; -lean_dec(x_20); -lean_dec(x_19); -lean_ctor_set(x_15, 1, x_5); -lean_ctor_set(x_15, 0, x_4); -x_52 = lean_array_fset(x_17, x_12, x_15); +uint8_t x_52; +x_52 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Meta_InfoCacheKey_instBEqInfoCacheKey___spec__1(x_44, x_47); +lean_dec(x_47); +lean_dec(x_44); +if (x_52 == 0) +{ +lean_object* x_53; lean_object* x_54; lean_object* x_55; +lean_dec(x_46); +lean_dec(x_43); +x_53 = l_Std_PersistentHashMap_mkCollisionNode___rarg(x_40, x_41, x_4, x_5); +x_54 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_54, 0, x_53); +x_55 = lean_array_fset(x_17, x_12, x_54); lean_dec(x_12); -lean_ctor_set(x_1, 0, x_52); +lean_ctor_set(x_1, 0, x_55); +return x_1; +} +else +{ +uint8_t x_56; +x_56 = lean_expr_eqv(x_43, x_46); +lean_dec(x_46); +lean_dec(x_43); +if (x_56 == 0) +{ +lean_object* x_57; lean_object* x_58; lean_object* x_59; +x_57 = l_Std_PersistentHashMap_mkCollisionNode___rarg(x_40, x_41, x_4, x_5); +x_58 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_58, 0, x_57); +x_59 = lean_array_fset(x_17, x_12, x_58); +lean_dec(x_12); +lean_ctor_set(x_1, 0, x_59); +return x_1; +} +else +{ +lean_object* x_60; lean_object* x_61; +lean_dec(x_41); +lean_dec(x_40); +x_60 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_60, 0, x_4); +lean_ctor_set(x_60, 1, x_5); +x_61 = lean_array_fset(x_17, x_12, x_60); +lean_dec(x_12); +lean_ctor_set(x_1, 0, x_61); return x_1; } } } } } +case 1: +{ +uint8_t x_62; +x_62 = !lean_is_exclusive(x_15); +if (x_62 == 0) +{ +lean_object* x_63; size_t x_64; size_t x_65; lean_object* x_66; lean_object* x_67; +x_63 = lean_ctor_get(x_15, 0); +x_64 = x_2 >> x_9; +x_65 = x_3 + x_8; +x_66 = l_Std_PersistentHashMap_insertAux___at___private_Lean_Meta_FunInfo_0__Lean_Meta_checkFunInfoCache___spec__5(x_63, x_64, x_65, x_4, x_5); +lean_ctor_set(x_15, 0, x_66); +x_67 = lean_array_fset(x_17, x_12, x_15); +lean_dec(x_12); +lean_ctor_set(x_1, 0, x_67); +return x_1; } else { -lean_object* x_53; lean_object* x_54; uint8_t x_55; lean_object* x_56; lean_object* x_57; uint8_t x_58; lean_object* x_59; lean_object* x_60; uint8_t x_61; -x_53 = lean_ctor_get(x_15, 0); -x_54 = lean_ctor_get(x_15, 1); -lean_inc(x_54); -lean_inc(x_53); +lean_object* x_68; size_t x_69; size_t x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; +x_68 = lean_ctor_get(x_15, 0); +lean_inc(x_68); lean_dec(x_15); -x_55 = lean_ctor_get_uint8(x_4, sizeof(void*)*2); -x_56 = lean_ctor_get(x_4, 0); -lean_inc(x_56); -x_57 = lean_ctor_get(x_4, 1); -lean_inc(x_57); -x_58 = lean_ctor_get_uint8(x_53, sizeof(void*)*2); -x_59 = lean_ctor_get(x_53, 0); -lean_inc(x_59); -x_60 = lean_ctor_get(x_53, 1); -lean_inc(x_60); -x_61 = l_Lean_Meta_TransparencyMode_beq(x_55, x_58); -if (x_61 == 0) -{ -lean_object* x_62; lean_object* x_63; lean_object* x_64; -lean_dec(x_60); -lean_dec(x_59); -lean_dec(x_57); -lean_dec(x_56); -x_62 = l_Std_PersistentHashMap_mkCollisionNode___rarg(x_53, x_54, x_4, x_5); -x_63 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_63, 0, x_62); -x_64 = lean_array_fset(x_17, x_12, x_63); -lean_dec(x_12); -lean_ctor_set(x_1, 0, x_64); -return x_1; -} -else -{ -if (lean_obj_tag(x_57) == 0) -{ -if (lean_obj_tag(x_60) == 0) -{ -uint8_t x_65; -x_65 = lean_expr_eqv(x_56, x_59); -lean_dec(x_59); -lean_dec(x_56); -if (x_65 == 0) -{ -lean_object* x_66; lean_object* x_67; lean_object* x_68; -x_66 = l_Std_PersistentHashMap_mkCollisionNode___rarg(x_53, x_54, x_4, x_5); -x_67 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_67, 0, x_66); -x_68 = lean_array_fset(x_17, x_12, x_67); -lean_dec(x_12); -lean_ctor_set(x_1, 0, x_68); -return x_1; -} -else -{ -lean_object* x_69; lean_object* x_70; -lean_dec(x_54); -lean_dec(x_53); -x_69 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_69, 0, x_4); -lean_ctor_set(x_69, 1, x_5); -x_70 = lean_array_fset(x_17, x_12, x_69); -lean_dec(x_12); -lean_ctor_set(x_1, 0, x_70); -return x_1; -} -} -else -{ -lean_object* x_71; lean_object* x_72; lean_object* x_73; -lean_dec(x_60); -lean_dec(x_59); -lean_dec(x_56); -x_71 = l_Std_PersistentHashMap_mkCollisionNode___rarg(x_53, x_54, x_4, x_5); +x_69 = x_2 >> x_9; +x_70 = x_3 + x_8; +x_71 = l_Std_PersistentHashMap_insertAux___at___private_Lean_Meta_FunInfo_0__Lean_Meta_checkFunInfoCache___spec__5(x_68, x_69, x_70, x_4, x_5); x_72 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_72, 0, x_71); x_73 = lean_array_fset(x_17, x_12, x_72); @@ -1127,126 +829,15 @@ lean_ctor_set(x_1, 0, x_73); return x_1; } } -else -{ -if (lean_obj_tag(x_60) == 0) -{ -lean_object* x_74; lean_object* x_75; lean_object* x_76; -lean_dec(x_59); -lean_dec(x_57); -lean_dec(x_56); -x_74 = l_Std_PersistentHashMap_mkCollisionNode___rarg(x_53, x_54, x_4, x_5); -x_75 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_75, 0, x_74); -x_76 = lean_array_fset(x_17, x_12, x_75); -lean_dec(x_12); -lean_ctor_set(x_1, 0, x_76); -return x_1; -} -else -{ -lean_object* x_77; lean_object* x_78; uint8_t x_79; -x_77 = lean_ctor_get(x_57, 0); -lean_inc(x_77); -lean_dec(x_57); -x_78 = lean_ctor_get(x_60, 0); -lean_inc(x_78); -lean_dec(x_60); -x_79 = lean_nat_dec_eq(x_77, x_78); -lean_dec(x_78); -lean_dec(x_77); -if (x_79 == 0) -{ -lean_object* x_80; lean_object* x_81; lean_object* x_82; -lean_dec(x_59); -lean_dec(x_56); -x_80 = l_Std_PersistentHashMap_mkCollisionNode___rarg(x_53, x_54, x_4, x_5); -x_81 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_81, 0, x_80); -x_82 = lean_array_fset(x_17, x_12, x_81); -lean_dec(x_12); -lean_ctor_set(x_1, 0, x_82); -return x_1; -} -else -{ -uint8_t x_83; -x_83 = lean_expr_eqv(x_56, x_59); -lean_dec(x_59); -lean_dec(x_56); -if (x_83 == 0) -{ -lean_object* x_84; lean_object* x_85; lean_object* x_86; -x_84 = l_Std_PersistentHashMap_mkCollisionNode___rarg(x_53, x_54, x_4, x_5); -x_85 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_85, 0, x_84); -x_86 = lean_array_fset(x_17, x_12, x_85); -lean_dec(x_12); -lean_ctor_set(x_1, 0, x_86); -return x_1; -} -else -{ -lean_object* x_87; lean_object* x_88; -lean_dec(x_54); -lean_dec(x_53); -x_87 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_87, 0, x_4); -lean_ctor_set(x_87, 1, x_5); -x_88 = lean_array_fset(x_17, x_12, x_87); -lean_dec(x_12); -lean_ctor_set(x_1, 0, x_88); -return x_1; -} -} -} -} -} -} -} -case 1: -{ -uint8_t x_89; -x_89 = !lean_is_exclusive(x_15); -if (x_89 == 0) -{ -lean_object* x_90; size_t x_91; size_t x_92; lean_object* x_93; lean_object* x_94; -x_90 = lean_ctor_get(x_15, 0); -x_91 = x_2 >> x_9; -x_92 = x_3 + x_8; -x_93 = l_Std_PersistentHashMap_insertAux___at___private_Lean_Meta_FunInfo_0__Lean_Meta_checkFunInfoCache___spec__5(x_90, x_91, x_92, x_4, x_5); -lean_ctor_set(x_15, 0, x_93); -x_94 = lean_array_fset(x_17, x_12, x_15); -lean_dec(x_12); -lean_ctor_set(x_1, 0, x_94); -return x_1; -} -else -{ -lean_object* x_95; size_t x_96; size_t x_97; lean_object* x_98; lean_object* x_99; lean_object* x_100; -x_95 = lean_ctor_get(x_15, 0); -lean_inc(x_95); -lean_dec(x_15); -x_96 = x_2 >> x_9; -x_97 = x_3 + x_8; -x_98 = l_Std_PersistentHashMap_insertAux___at___private_Lean_Meta_FunInfo_0__Lean_Meta_checkFunInfoCache___spec__5(x_95, x_96, x_97, x_4, x_5); -x_99 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_99, 0, x_98); -x_100 = lean_array_fset(x_17, x_12, x_99); -lean_dec(x_12); -lean_ctor_set(x_1, 0, x_100); -return x_1; -} -} default: { -lean_object* x_101; lean_object* x_102; -x_101 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_101, 0, x_4); -lean_ctor_set(x_101, 1, x_5); -x_102 = lean_array_fset(x_17, x_12, x_101); +lean_object* x_74; lean_object* x_75; +x_74 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_74, 0, x_4); +lean_ctor_set(x_74, 1, x_5); +x_75 = lean_array_fset(x_17, x_12, x_74); lean_dec(x_12); -lean_ctor_set(x_1, 0, x_102); +lean_ctor_set(x_1, 0, x_75); return x_1; } } @@ -1254,262 +845,177 @@ return x_1; } else { -lean_object* x_103; size_t x_104; size_t x_105; size_t x_106; size_t x_107; lean_object* x_108; lean_object* x_109; uint8_t x_110; -x_103 = lean_ctor_get(x_1, 0); -lean_inc(x_103); +lean_object* x_76; size_t x_77; size_t x_78; size_t x_79; size_t x_80; lean_object* x_81; lean_object* x_82; uint8_t x_83; +x_76 = lean_ctor_get(x_1, 0); +lean_inc(x_76); lean_dec(x_1); -x_104 = 1; -x_105 = 5; -x_106 = l_Std_PersistentHashMap_insertAux___rarg___closed__2; -x_107 = x_2 & x_106; -x_108 = lean_usize_to_nat(x_107); -x_109 = lean_array_get_size(x_103); -x_110 = lean_nat_dec_lt(x_108, x_109); -lean_dec(x_109); -if (x_110 == 0) +x_77 = 1; +x_78 = 5; +x_79 = l_Std_PersistentHashMap_insertAux___rarg___closed__2; +x_80 = x_2 & x_79; +x_81 = lean_usize_to_nat(x_80); +x_82 = lean_array_get_size(x_76); +x_83 = lean_nat_dec_lt(x_81, x_82); +lean_dec(x_82); +if (x_83 == 0) { -lean_object* x_111; -lean_dec(x_108); +lean_object* x_84; +lean_dec(x_81); lean_dec(x_5); lean_dec(x_4); +x_84 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_84, 0, x_76); +return x_84; +} +else +{ +lean_object* x_85; lean_object* x_86; lean_object* x_87; +x_85 = lean_array_fget(x_76, x_81); +x_86 = lean_box(2); +x_87 = lean_array_fset(x_76, x_81, x_86); +switch (lean_obj_tag(x_85)) { +case 0: +{ +lean_object* x_88; lean_object* x_89; lean_object* x_90; uint8_t x_91; lean_object* x_92; lean_object* x_93; uint8_t x_94; lean_object* x_95; lean_object* x_96; uint8_t x_97; +x_88 = lean_ctor_get(x_85, 0); +lean_inc(x_88); +x_89 = lean_ctor_get(x_85, 1); +lean_inc(x_89); +if (lean_is_exclusive(x_85)) { + lean_ctor_release(x_85, 0); + lean_ctor_release(x_85, 1); + x_90 = x_85; +} else { + lean_dec_ref(x_85); + x_90 = lean_box(0); +} +x_91 = lean_ctor_get_uint8(x_4, sizeof(void*)*2); +x_92 = lean_ctor_get(x_4, 0); +lean_inc(x_92); +x_93 = lean_ctor_get(x_4, 1); +lean_inc(x_93); +x_94 = lean_ctor_get_uint8(x_88, sizeof(void*)*2); +x_95 = lean_ctor_get(x_88, 0); +lean_inc(x_95); +x_96 = lean_ctor_get(x_88, 1); +lean_inc(x_96); +x_97 = l_Lean_Meta_TransparencyMode_beq(x_91, x_94); +if (x_97 == 0) +{ +lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; +lean_dec(x_96); +lean_dec(x_95); +lean_dec(x_93); +lean_dec(x_92); +lean_dec(x_90); +x_98 = l_Std_PersistentHashMap_mkCollisionNode___rarg(x_88, x_89, x_4, x_5); +x_99 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_99, 0, x_98); +x_100 = lean_array_fset(x_87, x_81, x_99); +lean_dec(x_81); +x_101 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_101, 0, x_100); +return x_101; +} +else +{ +uint8_t x_102; +x_102 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Meta_InfoCacheKey_instBEqInfoCacheKey___spec__1(x_93, x_96); +lean_dec(x_96); +lean_dec(x_93); +if (x_102 == 0) +{ +lean_object* x_103; lean_object* x_104; lean_object* x_105; lean_object* x_106; +lean_dec(x_95); +lean_dec(x_92); +lean_dec(x_90); +x_103 = l_Std_PersistentHashMap_mkCollisionNode___rarg(x_88, x_89, x_4, x_5); +x_104 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_104, 0, x_103); +x_105 = lean_array_fset(x_87, x_81, x_104); +lean_dec(x_81); +x_106 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_106, 0, x_105); +return x_106; +} +else +{ +uint8_t x_107; +x_107 = lean_expr_eqv(x_92, x_95); +lean_dec(x_95); +lean_dec(x_92); +if (x_107 == 0) +{ +lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; +lean_dec(x_90); +x_108 = l_Std_PersistentHashMap_mkCollisionNode___rarg(x_88, x_89, x_4, x_5); +x_109 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_109, 0, x_108); +x_110 = lean_array_fset(x_87, x_81, x_109); +lean_dec(x_81); x_111 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_111, 0, x_103); +lean_ctor_set(x_111, 0, x_110); return x_111; } else { lean_object* x_112; lean_object* x_113; lean_object* x_114; -x_112 = lean_array_fget(x_103, x_108); -x_113 = lean_box(2); -x_114 = lean_array_fset(x_103, x_108, x_113); -switch (lean_obj_tag(x_112)) { -case 0: -{ -lean_object* x_115; lean_object* x_116; lean_object* x_117; uint8_t x_118; lean_object* x_119; lean_object* x_120; uint8_t x_121; lean_object* x_122; lean_object* x_123; uint8_t x_124; -x_115 = lean_ctor_get(x_112, 0); -lean_inc(x_115); -x_116 = lean_ctor_get(x_112, 1); -lean_inc(x_116); -if (lean_is_exclusive(x_112)) { - lean_ctor_release(x_112, 0); - lean_ctor_release(x_112, 1); - x_117 = x_112; +lean_dec(x_89); +lean_dec(x_88); +if (lean_is_scalar(x_90)) { + x_112 = lean_alloc_ctor(0, 2, 0); } else { - lean_dec_ref(x_112); - x_117 = lean_box(0); -} -x_118 = lean_ctor_get_uint8(x_4, sizeof(void*)*2); -x_119 = lean_ctor_get(x_4, 0); -lean_inc(x_119); -x_120 = lean_ctor_get(x_4, 1); -lean_inc(x_120); -x_121 = lean_ctor_get_uint8(x_115, sizeof(void*)*2); -x_122 = lean_ctor_get(x_115, 0); -lean_inc(x_122); -x_123 = lean_ctor_get(x_115, 1); -lean_inc(x_123); -x_124 = l_Lean_Meta_TransparencyMode_beq(x_118, x_121); -if (x_124 == 0) -{ -lean_object* x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; -lean_dec(x_123); -lean_dec(x_122); -lean_dec(x_120); -lean_dec(x_119); -lean_dec(x_117); -x_125 = l_Std_PersistentHashMap_mkCollisionNode___rarg(x_115, x_116, x_4, x_5); -x_126 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_126, 0, x_125); -x_127 = lean_array_fset(x_114, x_108, x_126); -lean_dec(x_108); -x_128 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_128, 0, x_127); -return x_128; -} -else -{ -if (lean_obj_tag(x_120) == 0) -{ -if (lean_obj_tag(x_123) == 0) -{ -uint8_t x_129; -x_129 = lean_expr_eqv(x_119, x_122); -lean_dec(x_122); -lean_dec(x_119); -if (x_129 == 0) -{ -lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; -lean_dec(x_117); -x_130 = l_Std_PersistentHashMap_mkCollisionNode___rarg(x_115, x_116, x_4, x_5); -x_131 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_131, 0, x_130); -x_132 = lean_array_fset(x_114, x_108, x_131); -lean_dec(x_108); -x_133 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_133, 0, x_132); -return x_133; -} -else -{ -lean_object* x_134; lean_object* x_135; lean_object* x_136; -lean_dec(x_116); -lean_dec(x_115); -if (lean_is_scalar(x_117)) { - x_134 = lean_alloc_ctor(0, 2, 0); -} else { - x_134 = x_117; -} -lean_ctor_set(x_134, 0, x_4); -lean_ctor_set(x_134, 1, x_5); -x_135 = lean_array_fset(x_114, x_108, x_134); -lean_dec(x_108); -x_136 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_136, 0, x_135); -return x_136; -} -} -else -{ -lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; -lean_dec(x_123); -lean_dec(x_122); -lean_dec(x_119); -lean_dec(x_117); -x_137 = l_Std_PersistentHashMap_mkCollisionNode___rarg(x_115, x_116, x_4, x_5); -x_138 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_138, 0, x_137); -x_139 = lean_array_fset(x_114, x_108, x_138); -lean_dec(x_108); -x_140 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_140, 0, x_139); -return x_140; -} -} -else -{ -if (lean_obj_tag(x_123) == 0) -{ -lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; -lean_dec(x_122); -lean_dec(x_120); -lean_dec(x_119); -lean_dec(x_117); -x_141 = l_Std_PersistentHashMap_mkCollisionNode___rarg(x_115, x_116, x_4, x_5); -x_142 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_142, 0, x_141); -x_143 = lean_array_fset(x_114, x_108, x_142); -lean_dec(x_108); -x_144 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_144, 0, x_143); -return x_144; -} -else -{ -lean_object* x_145; lean_object* x_146; uint8_t x_147; -x_145 = lean_ctor_get(x_120, 0); -lean_inc(x_145); -lean_dec(x_120); -x_146 = lean_ctor_get(x_123, 0); -lean_inc(x_146); -lean_dec(x_123); -x_147 = lean_nat_dec_eq(x_145, x_146); -lean_dec(x_146); -lean_dec(x_145); -if (x_147 == 0) -{ -lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; -lean_dec(x_122); -lean_dec(x_119); -lean_dec(x_117); -x_148 = l_Std_PersistentHashMap_mkCollisionNode___rarg(x_115, x_116, x_4, x_5); -x_149 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_149, 0, x_148); -x_150 = lean_array_fset(x_114, x_108, x_149); -lean_dec(x_108); -x_151 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_151, 0, x_150); -return x_151; -} -else -{ -uint8_t x_152; -x_152 = lean_expr_eqv(x_119, x_122); -lean_dec(x_122); -lean_dec(x_119); -if (x_152 == 0) -{ -lean_object* x_153; lean_object* x_154; lean_object* x_155; lean_object* x_156; -lean_dec(x_117); -x_153 = l_Std_PersistentHashMap_mkCollisionNode___rarg(x_115, x_116, x_4, x_5); -x_154 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_154, 0, x_153); -x_155 = lean_array_fset(x_114, x_108, x_154); -lean_dec(x_108); -x_156 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_156, 0, x_155); -return x_156; -} -else -{ -lean_object* x_157; lean_object* x_158; lean_object* x_159; -lean_dec(x_116); -lean_dec(x_115); -if (lean_is_scalar(x_117)) { - x_157 = lean_alloc_ctor(0, 2, 0); -} else { - x_157 = x_117; -} -lean_ctor_set(x_157, 0, x_4); -lean_ctor_set(x_157, 1, x_5); -x_158 = lean_array_fset(x_114, x_108, x_157); -lean_dec(x_108); -x_159 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_159, 0, x_158); -return x_159; -} + x_112 = x_90; } +lean_ctor_set(x_112, 0, x_4); +lean_ctor_set(x_112, 1, x_5); +x_113 = lean_array_fset(x_87, x_81, x_112); +lean_dec(x_81); +x_114 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_114, 0, x_113); +return x_114; } } } } case 1: { -lean_object* x_160; lean_object* x_161; size_t x_162; size_t x_163; lean_object* x_164; lean_object* x_165; lean_object* x_166; lean_object* x_167; -x_160 = lean_ctor_get(x_112, 0); -lean_inc(x_160); -if (lean_is_exclusive(x_112)) { - lean_ctor_release(x_112, 0); - x_161 = x_112; +lean_object* x_115; lean_object* x_116; size_t x_117; size_t x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; +x_115 = lean_ctor_get(x_85, 0); +lean_inc(x_115); +if (lean_is_exclusive(x_85)) { + lean_ctor_release(x_85, 0); + x_116 = x_85; } else { - lean_dec_ref(x_112); - x_161 = lean_box(0); + lean_dec_ref(x_85); + x_116 = lean_box(0); } -x_162 = x_2 >> x_105; -x_163 = x_3 + x_104; -x_164 = l_Std_PersistentHashMap_insertAux___at___private_Lean_Meta_FunInfo_0__Lean_Meta_checkFunInfoCache___spec__5(x_160, x_162, x_163, x_4, x_5); -if (lean_is_scalar(x_161)) { - x_165 = lean_alloc_ctor(1, 1, 0); +x_117 = x_2 >> x_78; +x_118 = x_3 + x_77; +x_119 = l_Std_PersistentHashMap_insertAux___at___private_Lean_Meta_FunInfo_0__Lean_Meta_checkFunInfoCache___spec__5(x_115, x_117, x_118, x_4, x_5); +if (lean_is_scalar(x_116)) { + x_120 = lean_alloc_ctor(1, 1, 0); } else { - x_165 = x_161; + x_120 = x_116; } -lean_ctor_set(x_165, 0, x_164); -x_166 = lean_array_fset(x_114, x_108, x_165); -lean_dec(x_108); -x_167 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_167, 0, x_166); -return x_167; +lean_ctor_set(x_120, 0, x_119); +x_121 = lean_array_fset(x_87, x_81, x_120); +lean_dec(x_81); +x_122 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_122, 0, x_121); +return x_122; } default: { -lean_object* x_168; lean_object* x_169; lean_object* x_170; -x_168 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_168, 0, x_4); -lean_ctor_set(x_168, 1, x_5); -x_169 = lean_array_fset(x_114, x_108, x_168); -lean_dec(x_108); -x_170 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_170, 0, x_169); -return x_170; +lean_object* x_123; lean_object* x_124; lean_object* x_125; +x_123 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_123, 0, x_4); +lean_ctor_set(x_123, 1, x_5); +x_124 = lean_array_fset(x_87, x_81, x_123); +lean_dec(x_81); +x_125 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_125, 0, x_124); +return x_125; } } } @@ -1517,90 +1023,90 @@ return x_170; } else { -uint8_t x_171; -x_171 = !lean_is_exclusive(x_1); -if (x_171 == 0) +uint8_t x_126; +x_126 = !lean_is_exclusive(x_1); +if (x_126 == 0) { -lean_object* x_172; lean_object* x_173; size_t x_174; uint8_t x_175; -x_172 = lean_unsigned_to_nat(0u); -x_173 = l_Std_PersistentHashMap_insertAtCollisionNodeAux___at___private_Lean_Meta_FunInfo_0__Lean_Meta_checkFunInfoCache___spec__7(x_1, x_172, x_4, x_5); -x_174 = 7; -x_175 = x_174 <= x_3; -if (x_175 == 0) +lean_object* x_127; lean_object* x_128; size_t x_129; uint8_t x_130; +x_127 = lean_unsigned_to_nat(0u); +x_128 = l_Std_PersistentHashMap_insertAtCollisionNodeAux___at___private_Lean_Meta_FunInfo_0__Lean_Meta_checkFunInfoCache___spec__7(x_1, x_127, x_4, x_5); +x_129 = 7; +x_130 = x_129 <= x_3; +if (x_130 == 0) { -lean_object* x_176; lean_object* x_177; uint8_t x_178; -x_176 = l_Std_PersistentHashMap_getCollisionNodeSize___rarg(x_173); -x_177 = lean_unsigned_to_nat(4u); -x_178 = lean_nat_dec_lt(x_176, x_177); -lean_dec(x_176); -if (x_178 == 0) +lean_object* x_131; lean_object* x_132; uint8_t x_133; +x_131 = l_Std_PersistentHashMap_getCollisionNodeSize___rarg(x_128); +x_132 = lean_unsigned_to_nat(4u); +x_133 = lean_nat_dec_lt(x_131, x_132); +lean_dec(x_131); +if (x_133 == 0) { -lean_object* x_179; lean_object* x_180; lean_object* x_181; lean_object* x_182; -x_179 = lean_ctor_get(x_173, 0); -lean_inc(x_179); -x_180 = lean_ctor_get(x_173, 1); -lean_inc(x_180); -lean_dec(x_173); -x_181 = l_Std_PersistentHashMap_insertAux___rarg___closed__3; -x_182 = l_Std_PersistentHashMap_insertAux_traverse___at___private_Lean_Meta_FunInfo_0__Lean_Meta_checkFunInfoCache___spec__6(x_3, x_179, x_180, lean_box(0), x_172, x_181); -lean_dec(x_180); -lean_dec(x_179); -return x_182; +lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; +x_134 = lean_ctor_get(x_128, 0); +lean_inc(x_134); +x_135 = lean_ctor_get(x_128, 1); +lean_inc(x_135); +lean_dec(x_128); +x_136 = l_Std_PersistentHashMap_insertAux___rarg___closed__3; +x_137 = l_Std_PersistentHashMap_insertAux_traverse___at___private_Lean_Meta_FunInfo_0__Lean_Meta_checkFunInfoCache___spec__6(x_3, x_134, x_135, lean_box(0), x_127, x_136); +lean_dec(x_135); +lean_dec(x_134); +return x_137; } else { -return x_173; +return x_128; } } else { -return x_173; +return x_128; } } else { -lean_object* x_183; lean_object* x_184; lean_object* x_185; lean_object* x_186; lean_object* x_187; size_t x_188; uint8_t x_189; -x_183 = lean_ctor_get(x_1, 0); -x_184 = lean_ctor_get(x_1, 1); -lean_inc(x_184); -lean_inc(x_183); +lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; size_t x_143; uint8_t x_144; +x_138 = lean_ctor_get(x_1, 0); +x_139 = lean_ctor_get(x_1, 1); +lean_inc(x_139); +lean_inc(x_138); lean_dec(x_1); -x_185 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_185, 0, x_183); -lean_ctor_set(x_185, 1, x_184); -x_186 = lean_unsigned_to_nat(0u); -x_187 = l_Std_PersistentHashMap_insertAtCollisionNodeAux___at___private_Lean_Meta_FunInfo_0__Lean_Meta_checkFunInfoCache___spec__7(x_185, x_186, x_4, x_5); -x_188 = 7; -x_189 = x_188 <= x_3; -if (x_189 == 0) +x_140 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_140, 0, x_138); +lean_ctor_set(x_140, 1, x_139); +x_141 = lean_unsigned_to_nat(0u); +x_142 = l_Std_PersistentHashMap_insertAtCollisionNodeAux___at___private_Lean_Meta_FunInfo_0__Lean_Meta_checkFunInfoCache___spec__7(x_140, x_141, x_4, x_5); +x_143 = 7; +x_144 = x_143 <= x_3; +if (x_144 == 0) { -lean_object* x_190; lean_object* x_191; uint8_t x_192; -x_190 = l_Std_PersistentHashMap_getCollisionNodeSize___rarg(x_187); -x_191 = lean_unsigned_to_nat(4u); -x_192 = lean_nat_dec_lt(x_190, x_191); -lean_dec(x_190); -if (x_192 == 0) +lean_object* x_145; lean_object* x_146; uint8_t x_147; +x_145 = l_Std_PersistentHashMap_getCollisionNodeSize___rarg(x_142); +x_146 = lean_unsigned_to_nat(4u); +x_147 = lean_nat_dec_lt(x_145, x_146); +lean_dec(x_145); +if (x_147 == 0) { -lean_object* x_193; lean_object* x_194; lean_object* x_195; lean_object* x_196; -x_193 = lean_ctor_get(x_187, 0); -lean_inc(x_193); -x_194 = lean_ctor_get(x_187, 1); -lean_inc(x_194); -lean_dec(x_187); -x_195 = l_Std_PersistentHashMap_insertAux___rarg___closed__3; -x_196 = l_Std_PersistentHashMap_insertAux_traverse___at___private_Lean_Meta_FunInfo_0__Lean_Meta_checkFunInfoCache___spec__6(x_3, x_193, x_194, lean_box(0), x_186, x_195); -lean_dec(x_194); -lean_dec(x_193); -return x_196; +lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; +x_148 = lean_ctor_get(x_142, 0); +lean_inc(x_148); +x_149 = lean_ctor_get(x_142, 1); +lean_inc(x_149); +lean_dec(x_142); +x_150 = l_Std_PersistentHashMap_insertAux___rarg___closed__3; +x_151 = l_Std_PersistentHashMap_insertAux_traverse___at___private_Lean_Meta_FunInfo_0__Lean_Meta_checkFunInfoCache___spec__6(x_3, x_148, x_149, lean_box(0), x_141, x_150); +lean_dec(x_149); +lean_dec(x_148); +return x_151; } else { -return x_187; +return x_142; } } else { -return x_187; +return x_142; } } } diff --git a/stage0/stdlib/Lean/Meta/PPGoal.c b/stage0/stdlib/Lean/Meta/PPGoal.c index b0e4837f96..5f50c6aaf5 100644 --- a/stage0/stdlib/Lean/Meta/PPGoal.c +++ b/stage0/stdlib/Lean/Meta/PPGoal.c @@ -93,6 +93,7 @@ uint8_t l_Array_anyMUnsafe_any___at_Lean_Meta_ToHide_hasVisibleDep___spec__20(le uint8_t l_Array_anyMUnsafe_any___at_Lean_Meta_ToHide_hasVisibleDep___spec__35(lean_object*, lean_object*, size_t, size_t); lean_object* l_Lean_Meta_ToHide_collect_match__1___rarg(lean_object*, lean_object*); lean_object* l_Std_PersistentArray_anyM___at_Lean_Meta_ToHide_hasVisibleDep___spec__17___boxed(lean_object*, lean_object*); +uint8_t l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Meta_ppGoal_ppVars___spec__1(lean_object*, lean_object*); lean_object* l_Std_PersistentArray_foldlM___at_Lean_Meta_ToHide_collect___spec__2___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_ppGoal_match__3___rarg(lean_object*, lean_object*); lean_object* lean_array_get_size(lean_object*); @@ -186,6 +187,7 @@ uint8_t l_Std_RBNode_isBlack___rarg(lean_object*); uint8_t l_Std_PersistentArray_anyM___at_Lean_Meta_ToHide_hasVisibleDep___spec__31(lean_object*, lean_object*); lean_object* l_Lean_Meta_ppGoal_match__4___rarg(lean_object*, lean_object*); lean_object* l___private_Std_Data_PersistentArray_0__Std_PersistentArray_foldlMAux___at_Lean_Meta_ppGoal___spec__4(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Meta_ppGoal_ppVars___spec__1___boxed(lean_object*, lean_object*); lean_object* l___private_Std_Data_PersistentArray_0__Std_PersistentArray_foldlMAux___at_Lean_Meta_ppGoal___spec__11(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Std_PersistentArray_anyM___at_Lean_Meta_ToHide_hasVisibleDep___spec__31___boxed(lean_object*, lean_object*); lean_object* l___private_Lean_MetavarContext_0__Lean_MetavarContext_DependsOn_dep_visit___at_Lean_Meta_ToHide_hasInaccessibleNameDep___spec__15(lean_object*, lean_object*, lean_object*, lean_object*); @@ -14636,6 +14638,43 @@ lean_dec(x_5); return x_10; } } +uint8_t l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Meta_ppGoal_ppVars___spec__1(lean_object* x_1, lean_object* x_2) { +_start: +{ +if (lean_obj_tag(x_1) == 0) +{ +if (lean_obj_tag(x_2) == 0) +{ +uint8_t x_3; +x_3 = 1; +return x_3; +} +else +{ +uint8_t x_4; +x_4 = 0; +return x_4; +} +} +else +{ +if (lean_obj_tag(x_2) == 0) +{ +uint8_t x_5; +x_5 = 0; +return x_5; +} +else +{ +lean_object* x_6; lean_object* x_7; uint8_t x_8; +x_6 = lean_ctor_get(x_1, 0); +x_7 = lean_ctor_get(x_2, 0); +x_8 = lean_expr_eqv(x_6, x_7); +return x_8; +} +} +} +} static lean_object* _init_l_Lean_Meta_ppGoal_ppVars___closed__1() { _start: { @@ -14689,214 +14728,219 @@ lean_inc(x_7); x_17 = l_Lean_Meta_instantiateMVars(x_15, x_7, x_8, x_9, x_10, x_11); if (lean_obj_tag(x_17) == 0) { -if (lean_obj_tag(x_4) == 0) -{ uint8_t x_18; -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_1); 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; lean_object* x_23; +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_alloc_ctor(1, 2, 0); -lean_ctor_set(x_20, 0, x_16); -lean_ctor_set(x_20, 1, x_3); -x_21 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_21, 0, 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_5); -x_23 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_23, 0, x_20); -lean_ctor_set(x_23, 1, x_22); -lean_ctor_set(x_17, 0, x_23); -return x_17; -} -else +x_20 = lean_ctor_get(x_17, 1); +x_21 = lean_box(0); +x_22 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Meta_ppGoal_ppVars___spec__1(x_4, x_21); +if (x_22 == 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; -x_24 = lean_ctor_get(x_17, 0); -x_25 = lean_ctor_get(x_17, 1); -lean_inc(x_25); -lean_inc(x_24); -lean_dec(x_17); -x_26 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_26, 0, x_16); -lean_ctor_set(x_26, 1, x_3); -x_27 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_27, 0, 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_5); -x_29 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_29, 0, x_26); -lean_ctor_set(x_29, 1, x_28); -x_30 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_30, 0, x_29); -lean_ctor_set(x_30, 1, x_25); -return x_30; -} -} -else +lean_object* x_23; uint8_t x_24; +x_23 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_23, 0, x_19); +x_24 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Meta_ppGoal_ppVars___spec__1(x_4, x_23); +if (x_24 == 0) { -uint8_t x_31; -x_31 = !lean_is_exclusive(x_17); -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_17, 0); -x_33 = lean_ctor_get(x_17, 1); -x_34 = lean_ctor_get(x_4, 0); -lean_inc(x_34); -x_35 = lean_expr_eqv(x_34, x_32); -lean_dec(x_34); -if (x_35 == 0) -{ -lean_object* x_36; uint8_t x_37; +lean_object* x_25; lean_free_object(x_17); -lean_inc(x_4); -x_36 = l_Lean_Meta_ppGoal_pushPending(x_1, x_3, x_4, x_5, x_7, x_8, x_9, x_10, x_33); +x_25 = l_Lean_Meta_ppGoal_pushPending(x_1, x_3, x_4, x_5, x_7, x_8, x_9, x_10, x_20); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); -x_37 = !lean_is_exclusive(x_4); -if (x_37 == 0) +if (lean_obj_tag(x_25) == 0) { -lean_object* x_38; -x_38 = lean_ctor_get(x_4, 0); -lean_dec(x_38); -if (lean_obj_tag(x_36) == 0) +uint8_t x_26; +x_26 = !lean_is_exclusive(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; +x_27 = lean_ctor_get(x_25, 0); +x_28 = lean_box(0); +x_29 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_29, 0, x_16); +lean_ctor_set(x_29, 1, x_28); +x_30 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_30, 0, x_23); +lean_ctor_set(x_30, 1, x_27); +x_31 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_31, 0, x_29); +lean_ctor_set(x_31, 1, x_30); +lean_ctor_set(x_25, 0, x_31); +return x_25; +} +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; +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 = lean_box(0); +x_35 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_35, 0, x_16); +lean_ctor_set(x_35, 1, x_34); +x_36 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_36, 0, x_23); +lean_ctor_set(x_36, 1, x_32); +x_37 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_37, 0, x_35); +lean_ctor_set(x_37, 1, x_36); +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; -x_39 = !lean_is_exclusive(x_36); +lean_dec(x_23); +lean_dec(x_16); +x_39 = !lean_is_exclusive(x_25); if (x_39 == 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_36, 0); -x_41 = lean_box(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_16); +lean_ctor_set(x_42, 0, x_40); lean_ctor_set(x_42, 1, x_41); -lean_ctor_set(x_4, 0, x_32); -x_43 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_43, 0, x_4); -lean_ctor_set(x_43, 1, x_40); -x_44 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_44, 0, x_42); -lean_ctor_set(x_44, 1, x_43); -lean_ctor_set(x_36, 0, x_44); -return x_36; -} -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_36, 0); -x_46 = lean_ctor_get(x_36, 1); -lean_inc(x_46); -lean_inc(x_45); -lean_dec(x_36); -x_47 = lean_box(0); -x_48 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_48, 0, x_16); -lean_ctor_set(x_48, 1, x_47); -lean_ctor_set(x_4, 0, x_32); -x_49 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_49, 0, x_4); -lean_ctor_set(x_49, 1, x_45); -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_51 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_51, 0, x_50); -lean_ctor_set(x_51, 1, x_46); -return x_51; -} -} -else -{ -uint8_t x_52; -lean_free_object(x_4); -lean_dec(x_32); -lean_dec(x_16); -x_52 = !lean_is_exclusive(x_36); -if (x_52 == 0) -{ -return x_36; -} -else -{ -lean_object* x_53; lean_object* x_54; lean_object* x_55; -x_53 = lean_ctor_get(x_36, 0); -x_54 = lean_ctor_get(x_36, 1); -lean_inc(x_54); -lean_inc(x_53); -lean_dec(x_36); -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; +return x_42; } } } else { +lean_object* x_43; lean_object* x_44; lean_object* x_45; +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); lean_dec(x_4); -if (lean_obj_tag(x_36) == 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; lean_object* x_62; lean_object* x_63; lean_object* x_64; -x_56 = lean_ctor_get(x_36, 0); -lean_inc(x_56); -x_57 = lean_ctor_get(x_36, 1); -lean_inc(x_57); -if (lean_is_exclusive(x_36)) { - lean_ctor_release(x_36, 0); - lean_ctor_release(x_36, 1); - x_58 = x_36; -} else { - lean_dec_ref(x_36); - x_58 = lean_box(0); +lean_dec(x_1); +x_43 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_43, 0, x_16); +lean_ctor_set(x_43, 1, x_3); +x_44 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_44, 0, x_23); +lean_ctor_set(x_44, 1, x_5); +x_45 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_45, 0, x_43); +lean_ctor_set(x_45, 1, x_44); +lean_ctor_set(x_17, 0, x_45); +return x_17; } -x_59 = lean_box(0); -x_60 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_60, 0, x_16); -lean_ctor_set(x_60, 1, x_59); -x_61 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_61, 0, x_32); +} +else +{ +lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_4); +lean_dec(x_1); +x_46 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_46, 0, x_16); +lean_ctor_set(x_46, 1, x_3); +x_47 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_47, 0, x_19); +x_48 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_48, 0, x_47); +lean_ctor_set(x_48, 1, x_5); +x_49 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_49, 0, x_46); +lean_ctor_set(x_49, 1, x_48); +lean_ctor_set(x_17, 0, x_49); +return x_17; +} +} +else +{ +lean_object* x_50; lean_object* x_51; lean_object* x_52; uint8_t x_53; +x_50 = lean_ctor_get(x_17, 0); +x_51 = lean_ctor_get(x_17, 1); +lean_inc(x_51); +lean_inc(x_50); +lean_dec(x_17); +x_52 = lean_box(0); +x_53 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Meta_ppGoal_ppVars___spec__1(x_4, x_52); +if (x_53 == 0) +{ +lean_object* x_54; uint8_t x_55; +x_54 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_54, 0, x_50); +x_55 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Meta_ppGoal_ppVars___spec__1(x_4, x_54); +if (x_55 == 0) +{ +lean_object* x_56; +x_56 = l_Lean_Meta_ppGoal_pushPending(x_1, x_3, x_4, x_5, x_7, x_8, x_9, x_10, x_51); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +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; lean_object* x_63; lean_object* x_64; +x_57 = lean_ctor_get(x_56, 0); +lean_inc(x_57); +x_58 = lean_ctor_get(x_56, 1); +lean_inc(x_58); +if (lean_is_exclusive(x_56)) { + lean_ctor_release(x_56, 0); + lean_ctor_release(x_56, 1); + x_59 = x_56; +} else { + lean_dec_ref(x_56); + x_59 = lean_box(0); +} +x_60 = lean_box(0); +x_61 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_61, 0, x_16); +lean_ctor_set(x_61, 1, x_60); x_62 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_62, 0, x_61); -lean_ctor_set(x_62, 1, x_56); +lean_ctor_set(x_62, 0, x_54); +lean_ctor_set(x_62, 1, x_57); x_63 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_63, 0, x_60); +lean_ctor_set(x_63, 0, x_61); lean_ctor_set(x_63, 1, x_62); -if (lean_is_scalar(x_58)) { +if (lean_is_scalar(x_59)) { x_64 = lean_alloc_ctor(0, 2, 0); } else { - x_64 = x_58; + x_64 = x_59; } lean_ctor_set(x_64, 0, x_63); -lean_ctor_set(x_64, 1, x_57); +lean_ctor_set(x_64, 1, x_58); return x_64; } else { lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; -lean_dec(x_32); +lean_dec(x_54); lean_dec(x_16); -x_65 = lean_ctor_get(x_36, 0); +x_65 = lean_ctor_get(x_56, 0); lean_inc(x_65); -x_66 = lean_ctor_get(x_36, 1); +x_66 = lean_ctor_get(x_56, 1); lean_inc(x_66); -if (lean_is_exclusive(x_36)) { - lean_ctor_release(x_36, 0); - lean_ctor_release(x_36, 1); - x_67 = x_36; +if (lean_is_exclusive(x_56)) { + lean_ctor_release(x_56, 0); + lean_ctor_release(x_56, 1); + x_67 = x_56; } else { - lean_dec_ref(x_36); + lean_dec_ref(x_56); x_67 = lean_box(0); } if (lean_is_scalar(x_67)) { @@ -14909,191 +14953,60 @@ lean_ctor_set(x_68, 1, x_66); return x_68; } } -} else { -uint8_t x_69; +lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); -lean_dec(x_1); -x_69 = !lean_is_exclusive(x_4); -if (x_69 == 0) -{ -lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; -x_70 = lean_ctor_get(x_4, 0); -lean_dec(x_70); -x_71 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_71, 0, x_16); -lean_ctor_set(x_71, 1, x_3); -lean_ctor_set(x_4, 0, x_32); -x_72 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_72, 0, x_4); -lean_ctor_set(x_72, 1, x_5); -x_73 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_73, 0, x_71); -lean_ctor_set(x_73, 1, x_72); -lean_ctor_set(x_17, 0, x_73); -return x_17; -} -else -{ -lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_dec(x_4); -x_74 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_74, 0, x_16); -lean_ctor_set(x_74, 1, x_3); -x_75 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_75, 0, x_32); -x_76 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_76, 0, x_75); -lean_ctor_set(x_76, 1, x_5); -x_77 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_77, 0, x_74); -lean_ctor_set(x_77, 1, x_76); -lean_ctor_set(x_17, 0, x_77); -return x_17; -} -} -} -else -{ -lean_object* x_78; lean_object* x_79; lean_object* x_80; uint8_t x_81; -x_78 = lean_ctor_get(x_17, 0); -x_79 = lean_ctor_get(x_17, 1); -lean_inc(x_79); -lean_inc(x_78); -lean_dec(x_17); -x_80 = lean_ctor_get(x_4, 0); -lean_inc(x_80); -x_81 = lean_expr_eqv(x_80, x_78); -lean_dec(x_80); -if (x_81 == 0) -{ -lean_object* x_82; lean_object* x_83; -lean_inc(x_4); -x_82 = l_Lean_Meta_ppGoal_pushPending(x_1, x_3, x_4, x_5, x_7, x_8, x_9, x_10, x_79); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -if (lean_is_exclusive(x_4)) { - lean_ctor_release(x_4, 0); - x_83 = x_4; -} else { - lean_dec_ref(x_4); - x_83 = lean_box(0); -} -if (lean_obj_tag(x_82) == 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; -x_84 = lean_ctor_get(x_82, 0); -lean_inc(x_84); -x_85 = lean_ctor_get(x_82, 1); -lean_inc(x_85); -if (lean_is_exclusive(x_82)) { - lean_ctor_release(x_82, 0); - lean_ctor_release(x_82, 1); - x_86 = x_82; -} else { - lean_dec_ref(x_82); - x_86 = lean_box(0); -} -x_87 = lean_box(0); -x_88 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_88, 0, x_16); -lean_ctor_set(x_88, 1, x_87); -if (lean_is_scalar(x_83)) { - x_89 = lean_alloc_ctor(1, 1, 0); -} else { - x_89 = x_83; -} -lean_ctor_set(x_89, 0, x_78); -x_90 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_90, 0, x_89); -lean_ctor_set(x_90, 1, x_84); -x_91 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_91, 0, x_88); -lean_ctor_set(x_91, 1, x_90); -if (lean_is_scalar(x_86)) { - x_92 = lean_alloc_ctor(0, 2, 0); -} else { - x_92 = x_86; -} -lean_ctor_set(x_92, 0, x_91); -lean_ctor_set(x_92, 1, x_85); -return x_92; -} -else -{ -lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; -lean_dec(x_83); -lean_dec(x_78); -lean_dec(x_16); -x_93 = lean_ctor_get(x_82, 0); -lean_inc(x_93); -x_94 = lean_ctor_get(x_82, 1); -lean_inc(x_94); -if (lean_is_exclusive(x_82)) { - lean_ctor_release(x_82, 0); - lean_ctor_release(x_82, 1); - x_95 = x_82; -} else { - lean_dec_ref(x_82); - x_95 = lean_box(0); -} -if (lean_is_scalar(x_95)) { - x_96 = lean_alloc_ctor(1, 2, 0); -} else { - x_96 = x_95; -} -lean_ctor_set(x_96, 0, x_93); -lean_ctor_set(x_96, 1, x_94); -return x_96; -} -} -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_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); lean_dec(x_1); -if (lean_is_exclusive(x_4)) { - lean_ctor_release(x_4, 0); - x_97 = x_4; -} else { - lean_dec_ref(x_4); - x_97 = lean_box(0); +x_69 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_69, 0, x_16); +lean_ctor_set(x_69, 1, x_3); +x_70 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_70, 0, x_54); +lean_ctor_set(x_70, 1, x_5); +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_ctor(0, 2, 0); +lean_ctor_set(x_72, 0, x_71); +lean_ctor_set(x_72, 1, x_51); +return x_72; } -x_98 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_98, 0, x_16); -lean_ctor_set(x_98, 1, x_3); -if (lean_is_scalar(x_97)) { - x_99 = lean_alloc_ctor(1, 1, 0); -} else { - x_99 = x_97; -} -lean_ctor_set(x_99, 0, x_78); -x_100 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_100, 0, x_99); -lean_ctor_set(x_100, 1, x_5); -x_101 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_101, 0, x_98); -lean_ctor_set(x_101, 1, x_100); -x_102 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_102, 0, x_101); -lean_ctor_set(x_102, 1, x_79); -return x_102; } +else +{ +lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_4); +lean_dec(x_1); +x_73 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_73, 0, x_16); +lean_ctor_set(x_73, 1, x_3); +x_74 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_74, 0, x_50); +x_75 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_75, 0, x_74); +lean_ctor_set(x_75, 1, x_5); +x_76 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_76, 0, x_73); +lean_ctor_set(x_76, 1, x_75); +x_77 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_77, 0, x_76); +lean_ctor_set(x_77, 1, x_51); +return x_77; } } } else { -uint8_t x_103; +uint8_t x_78; lean_dec(x_16); lean_dec(x_10); lean_dec(x_9); @@ -15103,515 +15016,526 @@ lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_1); -x_103 = !lean_is_exclusive(x_17); -if (x_103 == 0) +x_78 = !lean_is_exclusive(x_17); +if (x_78 == 0) { return x_17; } else { -lean_object* x_104; lean_object* x_105; lean_object* x_106; -x_104 = lean_ctor_get(x_17, 0); -x_105 = lean_ctor_get(x_17, 1); -lean_inc(x_105); -lean_inc(x_104); +lean_object* x_79; lean_object* x_80; lean_object* x_81; +x_79 = lean_ctor_get(x_17, 0); +x_80 = lean_ctor_get(x_17, 1); +lean_inc(x_80); +lean_inc(x_79); lean_dec(x_17); -x_106 = lean_alloc_ctor(1, 2, 0); +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_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; +x_82 = lean_ctor_get(x_6, 2); +lean_inc(x_82); +x_83 = lean_ctor_get(x_6, 3); +lean_inc(x_83); +x_84 = lean_ctor_get(x_6, 4); +lean_inc(x_84); +lean_dec(x_6); +x_85 = lean_simp_macro_scopes(x_82); +lean_inc(x_1); +x_86 = l_Lean_Meta_ppGoal_pushPending(x_1, x_3, x_4, x_5, 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; lean_object* x_89; lean_object* 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(x_86); +x_89 = l___private_Lean_Meta_PPGoal_0__Lean_Meta_addLine(x_87); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +x_90 = l_Lean_Meta_instantiateMVars(x_83, x_7, x_8, x_9, x_10, x_88); +if (lean_obj_tag(x_90) == 0) +{ +lean_object* x_91; lean_object* x_92; lean_object* x_93; +x_91 = lean_ctor_get(x_90, 0); +lean_inc(x_91); +x_92 = lean_ctor_get(x_90, 1); +lean_inc(x_92); +lean_dec(x_90); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +x_93 = l_Lean_Meta_instantiateMVars(x_84, x_7, x_8, x_9, x_10, x_92); +if (lean_obj_tag(x_93) == 0) +{ +lean_object* x_94; lean_object* x_95; lean_object* x_96; +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(x_93); +x_96 = l_Lean_Meta_ppExpr(x_91, x_7, x_8, x_9, x_10, x_95); +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(x_96); +x_99 = l_Lean_Meta_ppExpr(x_94, x_7, x_8, x_9, x_10, x_98); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +if (lean_obj_tag(x_99) == 0) +{ +uint8_t x_100; +x_100 = !lean_is_exclusive(x_99); +if (x_100 == 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; 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_118; lean_object* x_119; lean_object* x_120; +x_101 = lean_ctor_get(x_99, 0); +x_102 = l_Lean_Name_toString___closed__1; +x_103 = l_Lean_Name_toStringWithSep(x_102, x_85); +x_104 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_104, 0, x_103); +x_105 = l_Lean_Meta_ppGoal_ppVars___closed__1; +x_106 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_106, 0, x_104); lean_ctor_set(x_106, 1, x_105); -return x_106; -} -} +x_107 = lean_alloc_ctor(4, 2, 0); +lean_ctor_set(x_107, 0, x_106); +lean_ctor_set(x_107, 1, x_97); +x_108 = l_Lean_Meta_ppGoal_ppVars___closed__3; +x_109 = lean_alloc_ctor(4, 2, 0); +lean_ctor_set(x_109, 0, x_107); +lean_ctor_set(x_109, 1, x_108); +x_110 = lean_box(1); +x_111 = lean_alloc_ctor(4, 2, 0); +lean_ctor_set(x_111, 0, x_110); +lean_ctor_set(x_111, 1, x_101); +x_112 = lean_alloc_ctor(3, 2, 0); +lean_ctor_set(x_112, 0, x_1); +lean_ctor_set(x_112, 1, x_111); +x_113 = lean_alloc_ctor(4, 2, 0); +lean_ctor_set(x_113, 0, x_109); +lean_ctor_set(x_113, 1, x_112); +x_114 = 0; +x_115 = lean_alloc_ctor(5, 1, 1); +lean_ctor_set(x_115, 0, x_113); +lean_ctor_set_uint8(x_115, sizeof(void*)*1, x_114); +x_116 = lean_alloc_ctor(4, 2, 0); +lean_ctor_set(x_116, 0, x_89); +lean_ctor_set(x_116, 1, x_115); +x_117 = lean_box(0); +x_118 = lean_box(0); +x_119 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_119, 0, x_118); +lean_ctor_set(x_119, 1, x_116); +x_120 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_120, 0, x_117); +lean_ctor_set(x_120, 1, x_119); +lean_ctor_set(x_99, 0, x_120); +return x_99; } else { -lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; -x_107 = lean_ctor_get(x_6, 2); -lean_inc(x_107); -x_108 = lean_ctor_get(x_6, 3); -lean_inc(x_108); -x_109 = lean_ctor_get(x_6, 4); -lean_inc(x_109); -lean_dec(x_6); -x_110 = lean_simp_macro_scopes(x_107); -lean_inc(x_1); -x_111 = l_Lean_Meta_ppGoal_pushPending(x_1, x_3, x_4, x_5, x_7, x_8, x_9, x_10, x_11); -if (lean_obj_tag(x_111) == 0) -{ -lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; -x_112 = lean_ctor_get(x_111, 0); -lean_inc(x_112); -x_113 = lean_ctor_get(x_111, 1); -lean_inc(x_113); -lean_dec(x_111); -x_114 = l___private_Lean_Meta_PPGoal_0__Lean_Meta_addLine(x_112); -lean_inc(x_10); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -x_115 = l_Lean_Meta_instantiateMVars(x_108, x_7, x_8, x_9, x_10, x_113); -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(x_115); -lean_inc(x_10); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -x_118 = l_Lean_Meta_instantiateMVars(x_109, x_7, x_8, x_9, x_10, x_117); -if (lean_obj_tag(x_118) == 0) -{ -lean_object* x_119; lean_object* x_120; lean_object* x_121; -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(x_118); -x_121 = l_Lean_Meta_ppExpr(x_116, x_7, x_8, x_9, x_10, x_120); -if (lean_obj_tag(x_121) == 0) -{ -lean_object* x_122; lean_object* x_123; lean_object* x_124; -x_122 = lean_ctor_get(x_121, 0); +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; uint8_t 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; +x_121 = lean_ctor_get(x_99, 0); +x_122 = lean_ctor_get(x_99, 1); lean_inc(x_122); -x_123 = lean_ctor_get(x_121, 1); -lean_inc(x_123); -lean_dec(x_121); -x_124 = l_Lean_Meta_ppExpr(x_119, x_7, x_8, x_9, x_10, x_123); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -if (lean_obj_tag(x_124) == 0) -{ -uint8_t x_125; -x_125 = !lean_is_exclusive(x_124); -if (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; 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; -x_126 = lean_ctor_get(x_124, 0); -x_127 = l_Lean_Name_toString___closed__1; -x_128 = l_Lean_Name_toStringWithSep(x_127, x_110); -x_129 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_129, 0, x_128); -x_130 = l_Lean_Meta_ppGoal_ppVars___closed__1; -x_131 = lean_alloc_ctor(4, 2, 0); -lean_ctor_set(x_131, 0, x_129); -lean_ctor_set(x_131, 1, x_130); +lean_inc(x_121); +lean_dec(x_99); +x_123 = l_Lean_Name_toString___closed__1; +x_124 = l_Lean_Name_toStringWithSep(x_123, x_85); +x_125 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_125, 0, x_124); +x_126 = l_Lean_Meta_ppGoal_ppVars___closed__1; +x_127 = lean_alloc_ctor(4, 2, 0); +lean_ctor_set(x_127, 0, x_125); +lean_ctor_set(x_127, 1, x_126); +x_128 = lean_alloc_ctor(4, 2, 0); +lean_ctor_set(x_128, 0, x_127); +lean_ctor_set(x_128, 1, x_97); +x_129 = l_Lean_Meta_ppGoal_ppVars___closed__3; +x_130 = lean_alloc_ctor(4, 2, 0); +lean_ctor_set(x_130, 0, x_128); +lean_ctor_set(x_130, 1, x_129); +x_131 = lean_box(1); x_132 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_132, 0, x_131); -lean_ctor_set(x_132, 1, x_122); -x_133 = l_Lean_Meta_ppGoal_ppVars___closed__3; +lean_ctor_set(x_132, 1, x_121); +x_133 = lean_alloc_ctor(3, 2, 0); +lean_ctor_set(x_133, 0, x_1); +lean_ctor_set(x_133, 1, x_132); x_134 = lean_alloc_ctor(4, 2, 0); -lean_ctor_set(x_134, 0, x_132); +lean_ctor_set(x_134, 0, x_130); lean_ctor_set(x_134, 1, x_133); -x_135 = lean_box(1); -x_136 = lean_alloc_ctor(4, 2, 0); -lean_ctor_set(x_136, 0, x_135); -lean_ctor_set(x_136, 1, x_126); -x_137 = lean_alloc_ctor(3, 2, 0); -lean_ctor_set(x_137, 0, x_1); +x_135 = 0; +x_136 = lean_alloc_ctor(5, 1, 1); +lean_ctor_set(x_136, 0, x_134); +lean_ctor_set_uint8(x_136, sizeof(void*)*1, x_135); +x_137 = lean_alloc_ctor(4, 2, 0); +lean_ctor_set(x_137, 0, x_89); lean_ctor_set(x_137, 1, x_136); -x_138 = lean_alloc_ctor(4, 2, 0); -lean_ctor_set(x_138, 0, x_134); -lean_ctor_set(x_138, 1, x_137); -x_139 = 0; -x_140 = lean_alloc_ctor(5, 1, 1); -lean_ctor_set(x_140, 0, x_138); -lean_ctor_set_uint8(x_140, sizeof(void*)*1, x_139); -x_141 = lean_alloc_ctor(4, 2, 0); -lean_ctor_set(x_141, 0, x_114); +x_138 = lean_box(0); +x_139 = lean_box(0); +x_140 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_140, 0, x_139); +lean_ctor_set(x_140, 1, x_137); +x_141 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_141, 0, x_138); lean_ctor_set(x_141, 1, x_140); -x_142 = lean_box(0); -x_143 = lean_box(0); -x_144 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_144, 0, x_143); -lean_ctor_set(x_144, 1, x_141); -x_145 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_145, 0, x_142); -lean_ctor_set(x_145, 1, x_144); -lean_ctor_set(x_124, 0, x_145); -return x_124; +x_142 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_142, 0, x_141); +lean_ctor_set(x_142, 1, x_122); +return x_142; +} } else { -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; uint8_t 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_146 = lean_ctor_get(x_124, 0); -x_147 = lean_ctor_get(x_124, 1); -lean_inc(x_147); -lean_inc(x_146); -lean_dec(x_124); -x_148 = l_Lean_Name_toString___closed__1; -x_149 = l_Lean_Name_toStringWithSep(x_148, x_110); -x_150 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_150, 0, x_149); -x_151 = l_Lean_Meta_ppGoal_ppVars___closed__1; -x_152 = lean_alloc_ctor(4, 2, 0); -lean_ctor_set(x_152, 0, x_150); -lean_ctor_set(x_152, 1, x_151); -x_153 = lean_alloc_ctor(4, 2, 0); -lean_ctor_set(x_153, 0, x_152); -lean_ctor_set(x_153, 1, x_122); -x_154 = l_Lean_Meta_ppGoal_ppVars___closed__3; -x_155 = lean_alloc_ctor(4, 2, 0); -lean_ctor_set(x_155, 0, x_153); -lean_ctor_set(x_155, 1, x_154); -x_156 = lean_box(1); -x_157 = lean_alloc_ctor(4, 2, 0); -lean_ctor_set(x_157, 0, x_156); -lean_ctor_set(x_157, 1, x_146); -x_158 = lean_alloc_ctor(3, 2, 0); -lean_ctor_set(x_158, 0, x_1); +uint8_t x_143; +lean_dec(x_97); +lean_dec(x_89); +lean_dec(x_85); +lean_dec(x_1); +x_143 = !lean_is_exclusive(x_99); +if (x_143 == 0) +{ +return x_99; +} +else +{ +lean_object* x_144; lean_object* x_145; lean_object* x_146; +x_144 = lean_ctor_get(x_99, 0); +x_145 = lean_ctor_get(x_99, 1); +lean_inc(x_145); +lean_inc(x_144); +lean_dec(x_99); +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; +} +} +} +else +{ +uint8_t x_147; +lean_dec(x_94); +lean_dec(x_89); +lean_dec(x_85); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_1); +x_147 = !lean_is_exclusive(x_96); +if (x_147 == 0) +{ +return x_96; +} +else +{ +lean_object* x_148; lean_object* x_149; lean_object* x_150; +x_148 = lean_ctor_get(x_96, 0); +x_149 = lean_ctor_get(x_96, 1); +lean_inc(x_149); +lean_inc(x_148); +lean_dec(x_96); +x_150 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_150, 0, x_148); +lean_ctor_set(x_150, 1, x_149); +return x_150; +} +} +} +else +{ +uint8_t x_151; +lean_dec(x_91); +lean_dec(x_89); +lean_dec(x_85); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_1); +x_151 = !lean_is_exclusive(x_93); +if (x_151 == 0) +{ +return x_93; +} +else +{ +lean_object* x_152; lean_object* x_153; lean_object* x_154; +x_152 = lean_ctor_get(x_93, 0); +x_153 = lean_ctor_get(x_93, 1); +lean_inc(x_153); +lean_inc(x_152); +lean_dec(x_93); +x_154 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_154, 0, x_152); +lean_ctor_set(x_154, 1, x_153); +return x_154; +} +} +} +else +{ +uint8_t x_155; +lean_dec(x_89); +lean_dec(x_85); +lean_dec(x_84); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_1); +x_155 = !lean_is_exclusive(x_90); +if (x_155 == 0) +{ +return x_90; +} +else +{ +lean_object* x_156; lean_object* x_157; lean_object* x_158; +x_156 = lean_ctor_get(x_90, 0); +x_157 = lean_ctor_get(x_90, 1); +lean_inc(x_157); +lean_inc(x_156); +lean_dec(x_90); +x_158 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_158, 0, x_156); lean_ctor_set(x_158, 1, x_157); -x_159 = lean_alloc_ctor(4, 2, 0); -lean_ctor_set(x_159, 0, x_155); -lean_ctor_set(x_159, 1, x_158); -x_160 = 0; -x_161 = lean_alloc_ctor(5, 1, 1); -lean_ctor_set(x_161, 0, x_159); -lean_ctor_set_uint8(x_161, sizeof(void*)*1, x_160); -x_162 = lean_alloc_ctor(4, 2, 0); -lean_ctor_set(x_162, 0, x_114); +return x_158; +} +} +} +else +{ +uint8_t x_159; +lean_dec(x_85); +lean_dec(x_84); +lean_dec(x_83); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_1); +x_159 = !lean_is_exclusive(x_86); +if (x_159 == 0) +{ +return x_86; +} +else +{ +lean_object* x_160; lean_object* x_161; lean_object* x_162; +x_160 = lean_ctor_get(x_86, 0); +x_161 = lean_ctor_get(x_86, 1); +lean_inc(x_161); +lean_inc(x_160); +lean_dec(x_86); +x_162 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_162, 0, x_160); lean_ctor_set(x_162, 1, x_161); -x_163 = lean_box(0); -x_164 = lean_box(0); -x_165 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_165, 0, x_164); -lean_ctor_set(x_165, 1, x_162); -x_166 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_166, 0, x_163); -lean_ctor_set(x_166, 1, x_165); -x_167 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_167, 0, x_166); -lean_ctor_set(x_167, 1, x_147); -return x_167; -} -} -else -{ -uint8_t x_168; -lean_dec(x_122); -lean_dec(x_114); -lean_dec(x_110); -lean_dec(x_1); -x_168 = !lean_is_exclusive(x_124); -if (x_168 == 0) -{ -return x_124; -} -else -{ -lean_object* x_169; lean_object* x_170; lean_object* x_171; -x_169 = lean_ctor_get(x_124, 0); -x_170 = lean_ctor_get(x_124, 1); -lean_inc(x_170); -lean_inc(x_169); -lean_dec(x_124); -x_171 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_171, 0, x_169); -lean_ctor_set(x_171, 1, x_170); -return x_171; -} -} -} -else -{ -uint8_t x_172; -lean_dec(x_119); -lean_dec(x_114); -lean_dec(x_110); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_1); -x_172 = !lean_is_exclusive(x_121); -if (x_172 == 0) -{ -return x_121; -} -else -{ -lean_object* x_173; lean_object* x_174; lean_object* x_175; -x_173 = lean_ctor_get(x_121, 0); -x_174 = lean_ctor_get(x_121, 1); -lean_inc(x_174); -lean_inc(x_173); -lean_dec(x_121); -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_116); -lean_dec(x_114); -lean_dec(x_110); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_1); -x_176 = !lean_is_exclusive(x_118); -if (x_176 == 0) -{ -return x_118; -} -else -{ -lean_object* x_177; lean_object* x_178; lean_object* x_179; -x_177 = lean_ctor_get(x_118, 0); -x_178 = lean_ctor_get(x_118, 1); -lean_inc(x_178); -lean_inc(x_177); -lean_dec(x_118); -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(x_114); -lean_dec(x_110); -lean_dec(x_109); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_1); -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; -} -} -} -else -{ -uint8_t x_184; -lean_dec(x_110); -lean_dec(x_109); -lean_dec(x_108); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_1); -x_184 = !lean_is_exclusive(x_111); -if (x_184 == 0) -{ -return x_111; -} -else -{ -lean_object* x_185; lean_object* x_186; lean_object* x_187; -x_185 = lean_ctor_get(x_111, 0); -x_186 = lean_ctor_get(x_111, 1); -lean_inc(x_186); -lean_inc(x_185); -lean_dec(x_111); -x_187 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_187, 0, x_185); -lean_ctor_set(x_187, 1, x_186); -return x_187; +return x_162; } } } } else { -lean_object* x_188; -x_188 = l_Lean_Meta_ppGoal_pushPending(x_1, x_3, x_4, x_5, x_7, x_8, x_9, x_10, x_11); -if (lean_obj_tag(x_188) == 0) +lean_object* x_163; +x_163 = l_Lean_Meta_ppGoal_pushPending(x_1, x_3, x_4, x_5, x_7, x_8, x_9, x_10, x_11); +if (lean_obj_tag(x_163) == 0) { -lean_object* x_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; lean_object* x_193; -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(x_188); -x_191 = l___private_Lean_Meta_PPGoal_0__Lean_Meta_addLine(x_189); -x_192 = l_Lean_LocalDecl_type(x_6); +lean_object* x_164; lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; +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(x_163); +x_166 = l___private_Lean_Meta_PPGoal_0__Lean_Meta_addLine(x_164); +x_167 = l_Lean_LocalDecl_type(x_6); lean_dec(x_6); lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); -x_193 = l_Lean_Meta_instantiateMVars(x_192, x_7, x_8, x_9, x_10, x_190); -if (lean_obj_tag(x_193) == 0) +x_168 = l_Lean_Meta_instantiateMVars(x_167, x_7, x_8, x_9, x_10, x_165); +if (lean_obj_tag(x_168) == 0) { -lean_object* x_194; lean_object* x_195; lean_object* x_196; -x_194 = lean_ctor_get(x_193, 0); -lean_inc(x_194); -x_195 = lean_ctor_get(x_193, 1); -lean_inc(x_195); -lean_dec(x_193); -x_196 = l_Lean_Meta_ppExpr(x_194, x_7, x_8, x_9, x_10, x_195); +lean_object* x_169; lean_object* x_170; lean_object* x_171; +x_169 = lean_ctor_get(x_168, 0); +lean_inc(x_169); +x_170 = lean_ctor_get(x_168, 1); +lean_inc(x_170); +lean_dec(x_168); +x_171 = l_Lean_Meta_ppExpr(x_169, x_7, x_8, x_9, x_10, x_170); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); -if (lean_obj_tag(x_196) == 0) +if (lean_obj_tag(x_171) == 0) { -uint8_t x_197; -x_197 = !lean_is_exclusive(x_196); -if (x_197 == 0) +uint8_t x_172; +x_172 = !lean_is_exclusive(x_171); +if (x_172 == 0) { -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; -x_198 = lean_ctor_get(x_196, 0); -x_199 = l_Lean_Meta_ppGoal_ppVars___closed__1; -x_200 = lean_alloc_ctor(4, 2, 0); -lean_ctor_set(x_200, 0, x_191); -lean_ctor_set(x_200, 1, x_199); -x_201 = lean_alloc_ctor(4, 2, 0); -lean_ctor_set(x_201, 0, x_200); -lean_ctor_set(x_201, 1, x_198); -x_202 = lean_box(0); -x_203 = lean_box(0); -x_204 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_204, 0, x_203); -lean_ctor_set(x_204, 1, x_201); -x_205 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_205, 0, x_202); -lean_ctor_set(x_205, 1, x_204); -lean_ctor_set(x_196, 0, x_205); -return x_196; +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; +x_173 = lean_ctor_get(x_171, 0); +x_174 = l_Lean_Meta_ppGoal_ppVars___closed__1; +x_175 = lean_alloc_ctor(4, 2, 0); +lean_ctor_set(x_175, 0, x_166); +lean_ctor_set(x_175, 1, x_174); +x_176 = lean_alloc_ctor(4, 2, 0); +lean_ctor_set(x_176, 0, x_175); +lean_ctor_set(x_176, 1, x_173); +x_177 = lean_box(0); +x_178 = lean_box(0); +x_179 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_179, 0, x_178); +lean_ctor_set(x_179, 1, x_176); +x_180 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_180, 0, x_177); +lean_ctor_set(x_180, 1, x_179); +lean_ctor_set(x_171, 0, x_180); +return x_171; } 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; -x_206 = lean_ctor_get(x_196, 0); -x_207 = lean_ctor_get(x_196, 1); -lean_inc(x_207); -lean_inc(x_206); -lean_dec(x_196); -x_208 = l_Lean_Meta_ppGoal_ppVars___closed__1; -x_209 = lean_alloc_ctor(4, 2, 0); -lean_ctor_set(x_209, 0, x_191); -lean_ctor_set(x_209, 1, x_208); -x_210 = lean_alloc_ctor(4, 2, 0); -lean_ctor_set(x_210, 0, x_209); -lean_ctor_set(x_210, 1, x_206); -x_211 = lean_box(0); -x_212 = lean_box(0); -x_213 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_213, 0, x_212); -lean_ctor_set(x_213, 1, x_210); -x_214 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_214, 0, x_211); -lean_ctor_set(x_214, 1, x_213); -x_215 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_215, 0, x_214); -lean_ctor_set(x_215, 1, x_207); -return x_215; +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; +x_181 = lean_ctor_get(x_171, 0); +x_182 = lean_ctor_get(x_171, 1); +lean_inc(x_182); +lean_inc(x_181); +lean_dec(x_171); +x_183 = l_Lean_Meta_ppGoal_ppVars___closed__1; +x_184 = lean_alloc_ctor(4, 2, 0); +lean_ctor_set(x_184, 0, x_166); +lean_ctor_set(x_184, 1, x_183); +x_185 = lean_alloc_ctor(4, 2, 0); +lean_ctor_set(x_185, 0, x_184); +lean_ctor_set(x_185, 1, x_181); +x_186 = lean_box(0); +x_187 = lean_box(0); +x_188 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_188, 0, x_187); +lean_ctor_set(x_188, 1, x_185); +x_189 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_189, 0, x_186); +lean_ctor_set(x_189, 1, x_188); +x_190 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_190, 0, x_189); +lean_ctor_set(x_190, 1, x_182); +return x_190; } } else { -uint8_t x_216; -lean_dec(x_191); -x_216 = !lean_is_exclusive(x_196); -if (x_216 == 0) +uint8_t x_191; +lean_dec(x_166); +x_191 = !lean_is_exclusive(x_171); +if (x_191 == 0) { -return x_196; +return x_171; } else { -lean_object* x_217; lean_object* x_218; lean_object* x_219; -x_217 = lean_ctor_get(x_196, 0); -x_218 = lean_ctor_get(x_196, 1); -lean_inc(x_218); -lean_inc(x_217); -lean_dec(x_196); -x_219 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_219, 0, x_217); -lean_ctor_set(x_219, 1, x_218); -return x_219; +lean_object* x_192; lean_object* x_193; lean_object* x_194; +x_192 = lean_ctor_get(x_171, 0); +x_193 = lean_ctor_get(x_171, 1); +lean_inc(x_193); +lean_inc(x_192); +lean_dec(x_171); +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_220; -lean_dec(x_191); +uint8_t x_195; +lean_dec(x_166); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); -x_220 = !lean_is_exclusive(x_193); -if (x_220 == 0) +x_195 = !lean_is_exclusive(x_168); +if (x_195 == 0) { -return x_193; +return x_168; } else { -lean_object* x_221; lean_object* x_222; lean_object* x_223; -x_221 = lean_ctor_get(x_193, 0); -x_222 = lean_ctor_get(x_193, 1); -lean_inc(x_222); -lean_inc(x_221); -lean_dec(x_193); -x_223 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_223, 0, x_221); -lean_ctor_set(x_223, 1, x_222); -return x_223; +lean_object* x_196; lean_object* x_197; lean_object* x_198; +x_196 = lean_ctor_get(x_168, 0); +x_197 = lean_ctor_get(x_168, 1); +lean_inc(x_197); +lean_inc(x_196); +lean_dec(x_168); +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 { -uint8_t x_224; +uint8_t x_199; lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); -x_224 = !lean_is_exclusive(x_188); -if (x_224 == 0) +x_199 = !lean_is_exclusive(x_163); +if (x_199 == 0) { -return x_188; +return x_163; } else { -lean_object* x_225; lean_object* x_226; lean_object* x_227; -x_225 = lean_ctor_get(x_188, 0); -x_226 = lean_ctor_get(x_188, 1); -lean_inc(x_226); -lean_inc(x_225); -lean_dec(x_188); -x_227 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_227, 0, x_225); -lean_ctor_set(x_227, 1, x_226); -return x_227; +lean_object* x_200; lean_object* x_201; lean_object* x_202; +x_200 = lean_ctor_get(x_163, 0); +x_201 = lean_ctor_get(x_163, 1); +lean_inc(x_201); +lean_inc(x_200); +lean_dec(x_163); +x_202 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_202, 0, x_200); +lean_ctor_set(x_202, 1, x_201); +return x_202; } } } } } +lean_object* l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Meta_ppGoal_ppVars___spec__1___boxed(lean_object* x_1, lean_object* x_2) { +_start: +{ +uint8_t x_3; lean_object* x_4; +x_3 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Meta_ppGoal_ppVars___spec__1(x_1, x_2); +lean_dec(x_2); +lean_dec(x_1); +x_4 = lean_box(x_3); +return x_4; +} +} lean_object* l_Lean_Meta_ppGoal_ppVars___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, 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: { diff --git a/stage0/stdlib/Lean/Parser/Attr.c b/stage0/stdlib/Lean/Parser/Attr.c index 3178e2baea..f1df0c8bc2 100644 --- a/stage0/stdlib/Lean/Parser/Attr.c +++ b/stage0/stdlib/Lean/Parser/Attr.c @@ -320,6 +320,7 @@ lean_object* l_Lean_Parser_Attr_class___elambda__1___closed__3; lean_object* l_Lean_Parser_Attr_macro_formatter___closed__3; lean_object* l_Lean_Parser_symbolInfo(lean_object*); lean_object* l___regBuiltin_Lean_Parser_Attr_class_formatter___closed__1; +uint8_t l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_orelseFnCore(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_epsilonInfo; lean_object* l_Lean_Parser_Attr_externEntry_parenthesizer___closed__6; @@ -700,22 +701,24 @@ return x_8; lean_object* l_Lean_Parser_Priority_numPrio___elambda__1(lean_object* x_1, lean_object* x_2) { _start: { -lean_object* x_3; lean_object* x_4; lean_object* x_5; +lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; uint8_t x_7; x_3 = l_Lean_Parser_maxPrec; x_4 = l_Lean_Parser_checkPrecFn(x_3, x_1, x_2); x_5 = lean_ctor_get(x_4, 3); lean_inc(x_5); -if (lean_obj_tag(x_5) == 0) +x_6 = lean_box(0); +x_7 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_5, x_6); +lean_dec(x_5); +if (x_7 == 0) { -lean_object* x_6; -x_6 = l_Lean_Parser_numLit___elambda__1(x_1, x_4); -return x_6; +lean_dec(x_1); +return x_4; } else { -lean_dec(x_5); -lean_dec(x_1); -return x_4; +lean_object* x_8; +x_8 = l_Lean_Parser_numLit___elambda__1(x_1, x_4); +return x_8; } } } diff --git a/stage0/stdlib/Lean/Parser/Basic.c b/stage0/stdlib/Lean/Parser/Basic.c index 834d2967d8..49d6b701e7 100644 --- a/stage0/stdlib/Lean/Parser/Basic.c +++ b/stage0/stdlib/Lean/Parser/Basic.c @@ -21,6 +21,7 @@ lean_object* l_Lean_Syntax_foldArgs___rarg(lean_object*, lean_object*, lean_obje lean_object* l_Lean_Parser_categoryParserOfStack___elambda__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_qsort_sort___at_Lean_Parser_Error_toString___spec__1___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Array_findSomeRevM_x3f_find___at___private_Lean_Parser_Basic_0__Lean_Parser_pickNonNone___spec__1___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Parser_Basic_0__Lean_Parser_nameLitAux___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Parser_info___default___elambda__1(lean_object*); lean_object* l_Lean_Parser_finishCommentBlock(lean_object*, lean_object*, lean_object*); lean_object* lean_string_push(lean_object*, uint32_t); @@ -125,6 +126,7 @@ lean_object* l_Lean_Parser_ParserState_keepLatest_match__1___rarg(lean_object*, lean_object* l_Lean_Parser_nameLitNoAntiquot___closed__2; lean_object* l_Lean_Parser_whitespace___lambda__1___boxed(lean_object*); lean_object* l_Lean_Parser_instInhabitedError___closed__1; +uint8_t l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_mkTokenAndFixPos___spec__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Trie_matchPrefix___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_octalNumberFn___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_ParserState_stackSize___boxed(lean_object*); @@ -210,6 +212,7 @@ extern lean_object* l_Lean_charLitKind___closed__1; lean_object* l_Lean_Parser_mkTokenAndFixPos_match__1___rarg(lean_object*, lean_object*, lean_object*); lean_object* lean_string_append(lean_object*, lean_object*); lean_object* l_Lean_Parser_checkColGeFn_match__1___rarg(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_mkTokenAndFixPos___spec__1___boxed(lean_object*, lean_object*); lean_object* l_Lean_Parser_tokenFn(lean_object*, lean_object*); lean_object* l_Lean_Parser_withoutForbidden___lambda__1(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_mkAtomicInfo(lean_object*); @@ -320,6 +323,7 @@ lean_object* l_Lean_Parser_initCacheForInput(lean_object*); lean_object* l_Lean_Parser_evalParserConst___rarg___boxed(lean_object*); lean_object* l_Lean_Parser_antiquotNestedExpr___elambda__1___closed__4; lean_object* l_Lean_Parser_mkAntiquot___closed__18; +lean_object* l_Lean_Parser_mkIdResult___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_fieldIdx___closed__1; lean_object* l_Lean_Parser_TokenMap_insert(lean_object*); lean_object* l_Lean_Parser_setExpected___boxed(lean_object*, lean_object*); @@ -341,6 +345,7 @@ lean_object* l_Std_RBNode_ins___at_Lean_Parser_TokenMap_insert___spec__3(lean_ob lean_object* l_Lean_Parser_mkTokenAndFixPos___closed__1; lean_object* l_Lean_Parser_whitespace___boxed(lean_object*, lean_object*); lean_object* l_Lean_Parser_errorAtSavedPosFn_match__2(lean_object*); +lean_object* l_Lean_Parser_mkTokenAndFixPos___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_quotedCharFn(lean_object*, lean_object*); lean_object* l_Lean_Parser_checkNoWsBeforeFn___boxed(lean_object*, lean_object*, lean_object*); lean_object* lean_array_fget(lean_object*, lean_object*); @@ -546,6 +551,7 @@ lean_object* l_Lean_Parser_unicodeSymbol___boxed(lean_object*, lean_object*); lean_object* l_Lean_Parser_nodeInfo___elambda__2(lean_object*, lean_object*); lean_object* l_Lean_Parser_parserOfStack(lean_object*, lean_object*); lean_object* l_Lean_Parser_identFnAux(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_identFnAux___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_strLitNoAntiquot___closed__3; lean_object* l_Array_findSomeRevM_x3f_find___at___private_Lean_Parser_Basic_0__Lean_Parser_pickNonNone___spec__1(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_parserOfStackFnUnsafe___closed__5; @@ -568,6 +574,7 @@ lean_object* l_Lean_Parser_Error_toString___closed__2; extern lean_object* l_Lean_instInhabitedSyntax; lean_object* l_Lean_Parser_categoryParserOfStackFn_match__1___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_checkInsideQuot; +lean_object* l_Lean_Parser_identFnAux_parse___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_nameLitNoAntiquot___closed__3; lean_object* l_Lean_Parser_leadingParserAux_match__1___rarg(lean_object*, lean_object*); lean_object* l_Std_RBNode_find___at_Lean_Parser_indexed___spec__7___rarg(lean_object*, lean_object*); @@ -754,6 +761,7 @@ lean_object* l_Lean_Parser_satisfySymbolFn(lean_object*, lean_object*, lean_obje lean_object* l_Lean_Parser_symbolInfo(lean_object*); lean_object* l_Lean_Parser_checkStackTop(lean_object*, lean_object*); lean_object* l_String_decLt___boxed(lean_object*, lean_object*); +uint8_t l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_instInhabitedPrattParsingTables; lean_object* l_Lean_Parser_eoiFn(lean_object*, lean_object*); lean_object* l_Lean_Parser_sepBy1Fn(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); @@ -813,6 +821,7 @@ lean_object* l_Lean_Parser_identEqFn_match__1(lean_object*); lean_object* l_Lean_Parser_sepBy1NoAntiquot(lean_object*, lean_object*, uint8_t); lean_object* l_Lean_Parser_instInhabitedParserFn___rarg(lean_object*); extern lean_object* l_Lean_mkOptionalNode___closed__1; +lean_object* l_Lean_Parser_rawIdentFn___boxed(lean_object*, lean_object*); lean_object* l_Lean_Parser_Parser_info___default___elambda__2(lean_object*); lean_object* l_String_trim(lean_object*); lean_object* l_Lean_isIdEndEscape___boxed(lean_object*); @@ -824,6 +833,7 @@ lean_object* l_Lean_Syntax_getTailInfo(lean_object*); lean_object* l_Lean_Parser_instInhabitedParserInfo___closed__2; lean_object* l_Lean_Parser_errorAtSavedPosFn_match__2___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_nodeFn(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1___boxed(lean_object*, lean_object*); lean_object* l_Lean_Parser_ParserState_pos___default; lean_object* l_Lean_Parser_checkWsBeforeFn___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_optionalFn(lean_object*, lean_object*, lean_object*); @@ -2637,24 +2647,74 @@ x_1 = lean_box(0); return x_1; } } -uint8_t l_Lean_Parser_ParserState_hasError(lean_object* x_1) { +uint8_t l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(lean_object* x_1, lean_object* x_2) { _start: { -lean_object* x_2; -x_2 = lean_ctor_get(x_1, 3); +if (lean_obj_tag(x_1) == 0) +{ if (lean_obj_tag(x_2) == 0) { uint8_t x_3; -x_3 = 0; +x_3 = 1; return x_3; } else { uint8_t x_4; -x_4 = 1; +x_4 = 0; return x_4; } } +else +{ +if (lean_obj_tag(x_2) == 0) +{ +uint8_t x_5; +x_5 = 0; +return x_5; +} +else +{ +lean_object* x_6; lean_object* x_7; uint8_t x_8; +x_6 = lean_ctor_get(x_1, 0); +x_7 = lean_ctor_get(x_2, 0); +x_8 = l_Lean_Parser_Error_beq(x_6, x_7); +return x_8; +} +} +} +} +uint8_t l_Lean_Parser_ParserState_hasError(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; uint8_t x_4; +x_2 = lean_ctor_get(x_1, 3); +x_3 = lean_box(0); +x_4 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_2, x_3); +if (x_4 == 0) +{ +uint8_t x_5; +x_5 = 1; +return x_5; +} +else +{ +uint8_t x_6; +x_6 = 0; +return x_6; +} +} +} +lean_object* l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1___boxed(lean_object* x_1, lean_object* x_2) { +_start: +{ +uint8_t x_3; lean_object* x_4; +x_3 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_1, x_2); +lean_dec(x_2); +lean_dec(x_1); +x_4 = lean_box(x_3); +return x_4; +} } lean_object* l_Lean_Parser_ParserState_hasError___boxed(lean_object* x_1) { _start: @@ -3058,93 +3118,105 @@ return x_2; lean_object* l_Lean_Parser_ParserState_mkNode(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { -lean_object* x_4; -x_4 = lean_ctor_get(x_1, 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; +x_4 = lean_ctor_get(x_1, 0); lean_inc(x_4); -if (lean_obj_tag(x_4) == 0) -{ -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; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; -x_6 = lean_ctor_get(x_1, 0); -x_7 = lean_ctor_get(x_1, 3); -lean_dec(x_7); -x_8 = lean_array_get_size(x_6); -lean_inc(x_3); +x_5 = lean_ctor_get(x_1, 1); +lean_inc(x_5); +x_6 = lean_ctor_get(x_1, 2); lean_inc(x_6); -x_9 = l_Array_extract___rarg(x_6, x_3, x_8); -x_10 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_10, 0, x_2); -lean_ctor_set(x_10, 1, x_9); -x_11 = l_Array_shrink___rarg(x_6, x_3); +x_7 = lean_ctor_get(x_1, 3); +lean_inc(x_7); +x_8 = lean_box(0); +x_9 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_7, x_8); +if (x_9 == 0) +{ +lean_object* x_10; uint8_t x_11; +x_10 = lean_array_get_size(x_4); +x_11 = lean_nat_dec_eq(x_10, x_3); +if (x_11 == 0) +{ +uint8_t x_12; +x_12 = !lean_is_exclusive(x_1); +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; +x_13 = lean_ctor_get(x_1, 3); +lean_dec(x_13); +x_14 = lean_ctor_get(x_1, 2); +lean_dec(x_14); +x_15 = lean_ctor_get(x_1, 1); +lean_dec(x_15); +x_16 = lean_ctor_get(x_1, 0); +lean_dec(x_16); +lean_inc(x_3); +lean_inc(x_4); +x_17 = l_Array_extract___rarg(x_4, x_3, x_10); +x_18 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_18, 0, x_2); +lean_ctor_set(x_18, 1, x_17); +x_19 = l_Array_shrink___rarg(x_4, x_3); lean_dec(x_3); -x_12 = lean_array_push(x_11, x_10); -lean_ctor_set(x_1, 0, x_12); +x_20 = lean_array_push(x_19, x_18); +lean_ctor_set(x_1, 0, x_20); return x_1; } else { -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 = lean_ctor_get(x_1, 0); -x_14 = lean_ctor_get(x_1, 1); -x_15 = lean_ctor_get(x_1, 2); -lean_inc(x_15); -lean_inc(x_14); -lean_inc(x_13); +lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_dec(x_1); -x_16 = lean_array_get_size(x_13); lean_inc(x_3); -lean_inc(x_13); -x_17 = l_Array_extract___rarg(x_13, x_3, x_16); -x_18 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_18, 0, x_2); -lean_ctor_set(x_18, 1, x_17); -x_19 = l_Array_shrink___rarg(x_13, x_3); +lean_inc(x_4); +x_21 = l_Array_extract___rarg(x_4, x_3, x_10); +x_22 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_22, 0, x_2); +lean_ctor_set(x_22, 1, x_21); +x_23 = l_Array_shrink___rarg(x_4, x_3); lean_dec(x_3); -x_20 = lean_array_push(x_19, x_18); -x_21 = lean_alloc_ctor(0, 4, 0); -lean_ctor_set(x_21, 0, x_20); -lean_ctor_set(x_21, 1, x_14); -lean_ctor_set(x_21, 2, x_15); -lean_ctor_set(x_21, 3, x_4); -return x_21; +x_24 = lean_array_push(x_23, x_22); +x_25 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_25, 0, x_24); +lean_ctor_set(x_25, 1, x_5); +lean_ctor_set(x_25, 2, x_6); +lean_ctor_set(x_25, 3, x_7); +return x_25; } } else { -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_1, 0); -lean_inc(x_22); -x_23 = lean_ctor_get(x_1, 1); -lean_inc(x_23); -x_24 = lean_ctor_get(x_1, 2); -lean_inc(x_24); -x_25 = lean_array_get_size(x_22); -x_26 = lean_nat_dec_eq(x_25, x_3); +lean_dec(x_10); +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_1; +} +} +else +{ +uint8_t x_26; +x_26 = !lean_is_exclusive(x_1); if (x_26 == 0) { -uint8_t x_27; -x_27 = !lean_is_exclusive(x_1); -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; lean_object* x_34; lean_object* x_35; -x_28 = lean_ctor_get(x_1, 3); +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_27 = lean_ctor_get(x_1, 3); +lean_dec(x_27); +x_28 = lean_ctor_get(x_1, 2); lean_dec(x_28); -x_29 = lean_ctor_get(x_1, 2); +x_29 = lean_ctor_get(x_1, 1); lean_dec(x_29); -x_30 = lean_ctor_get(x_1, 1); +x_30 = lean_ctor_get(x_1, 0); lean_dec(x_30); -x_31 = lean_ctor_get(x_1, 0); -lean_dec(x_31); +x_31 = lean_array_get_size(x_4); lean_inc(x_3); -lean_inc(x_22); -x_32 = l_Array_extract___rarg(x_22, x_3, x_25); +lean_inc(x_4); +x_32 = l_Array_extract___rarg(x_4, x_3, x_31); x_33 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_33, 0, x_2); lean_ctor_set(x_33, 1, x_32); -x_34 = l_Array_shrink___rarg(x_22, x_3); +x_34 = l_Array_shrink___rarg(x_4, x_3); lean_dec(x_3); x_35 = lean_array_push(x_34, x_33); lean_ctor_set(x_1, 0, x_35); @@ -3152,35 +3224,24 @@ return x_1; } else { -lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; +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_1); +x_36 = lean_array_get_size(x_4); lean_inc(x_3); -lean_inc(x_22); -x_36 = l_Array_extract___rarg(x_22, x_3, x_25); -x_37 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_37, 0, x_2); -lean_ctor_set(x_37, 1, x_36); -x_38 = l_Array_shrink___rarg(x_22, x_3); +lean_inc(x_4); +x_37 = l_Array_extract___rarg(x_4, x_3, x_36); +x_38 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_38, 0, x_2); +lean_ctor_set(x_38, 1, x_37); +x_39 = l_Array_shrink___rarg(x_4, x_3); lean_dec(x_3); -x_39 = lean_array_push(x_38, x_37); -x_40 = lean_alloc_ctor(0, 4, 0); -lean_ctor_set(x_40, 0, x_39); -lean_ctor_set(x_40, 1, x_23); -lean_ctor_set(x_40, 2, x_24); -lean_ctor_set(x_40, 3, x_4); -return x_40; -} -} -else -{ -lean_dec(x_25); -lean_dec(x_24); -lean_dec(x_23); -lean_dec(x_22); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -return x_1; +x_40 = lean_array_push(x_39, x_38); +x_41 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_41, 0, x_40); +lean_ctor_set(x_41, 1, x_5); +lean_ctor_set(x_41, 2, x_6); +lean_ctor_set(x_41, 3, x_7); +return x_41; } } } @@ -4842,24 +4903,26 @@ return x_5; lean_object* l_Lean_Parser_andthenFn(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_5; lean_object* x_6; lean_object* x_7; uint8_t x_8; lean_inc(x_3); x_5 = lean_apply_2(x_1, x_3, x_4); x_6 = lean_ctor_get(x_5, 3); lean_inc(x_6); -if (lean_obj_tag(x_6) == 0) -{ -lean_object* x_7; -x_7 = lean_apply_2(x_2, x_3, x_5); -return x_7; -} -else -{ +x_7 = lean_box(0); +x_8 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_6, x_7); lean_dec(x_6); +if (x_8 == 0) +{ lean_dec(x_3); lean_dec(x_2); return x_5; } +else +{ +lean_object* x_9; +x_9 = lean_apply_2(x_2, x_3, x_5); +return x_9; +} } } lean_object* l_Lean_Parser_andthenInfo___elambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { @@ -6754,7 +6817,7 @@ return x_8; lean_object* l_Lean_Parser_optionalFn(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_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; uint8_t x_10; x_4 = lean_ctor_get(x_3, 0); lean_inc(x_4); x_5 = lean_array_get_size(x_4); @@ -6764,18 +6827,12 @@ lean_inc(x_6); x_7 = lean_apply_2(x_1, x_2, x_3); x_8 = lean_ctor_get(x_7, 3); lean_inc(x_8); -if (lean_obj_tag(x_8) == 0) -{ -lean_object* x_9; lean_object* x_10; -lean_dec(x_6); -x_9 = l_Lean_nullKind; -x_10 = l_Lean_Parser_ParserState_mkNode(x_7, x_9, x_5); -return x_10; -} -else +x_9 = lean_box(0); +x_10 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_8, x_9); +lean_dec(x_8); +if (x_10 == 0) { lean_object* x_11; uint8_t x_12; -lean_dec(x_8); x_11 = lean_ctor_get(x_7, 1); lean_inc(x_11); x_12 = lean_nat_dec_eq(x_11, x_6); @@ -6797,6 +6854,14 @@ x_17 = l_Lean_Parser_ParserState_mkNode(x_15, x_16, x_5); return x_17; } } +else +{ +lean_object* x_18; lean_object* x_19; +lean_dec(x_6); +x_18 = l_Lean_nullKind; +x_19 = l_Lean_Parser_ParserState_mkNode(x_7, x_18, x_5); +return x_19; +} } } lean_object* l_Lean_Parser_optionaInfo___elambda__1(lean_object* x_1, lean_object* x_2) { @@ -6863,7 +6928,7 @@ return x_6; lean_object* l_Lean_Parser_lookaheadFn(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_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; uint8_t x_10; x_4 = lean_ctor_get(x_3, 0); lean_inc(x_4); x_5 = lean_array_get_size(x_4); @@ -6873,20 +6938,22 @@ lean_inc(x_6); x_7 = lean_apply_2(x_1, x_2, x_3); x_8 = lean_ctor_get(x_7, 3); lean_inc(x_8); -if (lean_obj_tag(x_8) == 0) -{ -lean_object* x_9; -x_9 = l_Lean_Parser_ParserState_restore(x_7, x_5, x_6); -lean_dec(x_5); -return x_9; -} -else -{ +x_9 = lean_box(0); +x_10 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_8, x_9); lean_dec(x_8); +if (x_10 == 0) +{ lean_dec(x_6); lean_dec(x_5); return x_7; } +else +{ +lean_object* x_11; +x_11 = l_Lean_Parser_ParserState_restore(x_7, x_5, x_6); +lean_dec(x_5); +return x_11; +} } } lean_object* l_Lean_Parser_lookahead(lean_object* x_1) { @@ -6931,7 +6998,7 @@ return x_1; lean_object* l_Lean_Parser_notFollowedByFn(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_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; x_5 = lean_ctor_get(x_4, 0); lean_inc(x_5); x_6 = lean_array_get_size(x_5); @@ -6941,25 +7008,27 @@ lean_inc(x_7); x_8 = lean_apply_2(x_1, x_3, x_4); x_9 = lean_ctor_get(x_8, 3); lean_inc(x_9); -if (lean_obj_tag(x_9) == 0) +x_10 = lean_box(0); +x_11 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_9, x_10); +lean_dec(x_9); +if (x_11 == 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; -x_10 = l_Lean_Parser_ParserState_restore(x_8, x_6, x_7); +lean_object* x_12; +x_12 = l_Lean_Parser_ParserState_restore(x_8, x_6, x_7); lean_dec(x_6); -x_11 = l_Lean_Parser_notFollowedByFn___closed__1; -x_12 = lean_string_append(x_11, x_2); -x_13 = l_Lean_instInhabitedParserDescr___closed__1; -x_14 = lean_string_append(x_12, x_13); -x_15 = l_Lean_Parser_ParserState_mkUnexpectedError(x_10, x_14); -return x_15; +return x_12; } else { -lean_object* x_16; -lean_dec(x_9); -x_16 = l_Lean_Parser_ParserState_restore(x_8, x_6, x_7); +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 = l_Lean_Parser_ParserState_restore(x_8, x_6, x_7); lean_dec(x_6); -return x_16; +x_14 = l_Lean_Parser_notFollowedByFn___closed__1; +x_15 = lean_string_append(x_14, x_2); +x_16 = l_Lean_instInhabitedParserDescr___closed__1; +x_17 = lean_string_append(x_15, x_16); +x_18 = l_Lean_Parser_ParserState_mkUnexpectedError(x_13, x_17); +return x_18; } } } @@ -7000,7 +7069,7 @@ return x_1; lean_object* l_Lean_Parser_manyAux(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_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; uint8_t x_10; x_4 = lean_ctor_get(x_3, 0); lean_inc(x_4); x_5 = lean_array_get_size(x_4); @@ -7012,41 +7081,19 @@ lean_inc(x_2); x_7 = lean_apply_2(x_1, x_2, x_3); x_8 = lean_ctor_get(x_7, 3); lean_inc(x_8); -if (lean_obj_tag(x_8) == 0) -{ -lean_object* x_9; uint8_t x_10; -lean_dec(x_5); -x_9 = lean_ctor_get(x_7, 1); -lean_inc(x_9); -x_10 = lean_nat_dec_eq(x_6, x_9); -lean_dec(x_9); -lean_dec(x_6); +x_9 = lean_box(0); +x_10 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_8, x_9); +lean_dec(x_8); if (x_10 == 0) { -x_3 = x_7; -goto _start; -} -else -{ -lean_object* x_12; lean_object* x_13; +lean_object* x_11; uint8_t x_12; lean_dec(x_2); lean_dec(x_1); -x_12 = l_Lean_Parser_manyAux___closed__1; -x_13 = l_Lean_Parser_ParserState_mkUnexpectedError(x_7, x_12); -return x_13; -} -} -else -{ -lean_object* x_14; uint8_t x_15; -lean_dec(x_8); -lean_dec(x_2); -lean_dec(x_1); -x_14 = lean_ctor_get(x_7, 1); -lean_inc(x_14); -x_15 = lean_nat_dec_eq(x_6, x_14); -lean_dec(x_14); -if (x_15 == 0) +x_11 = lean_ctor_get(x_7, 1); +lean_inc(x_11); +x_12 = lean_nat_dec_eq(x_6, x_11); +lean_dec(x_11); +if (x_12 == 0) { lean_dec(x_6); lean_dec(x_5); @@ -7054,10 +7101,34 @@ return x_7; } else { -lean_object* x_16; -x_16 = l_Lean_Parser_ParserState_restore(x_7, x_5, x_6); +lean_object* x_13; +x_13 = l_Lean_Parser_ParserState_restore(x_7, x_5, x_6); lean_dec(x_5); -return x_16; +return x_13; +} +} +else +{ +lean_object* x_14; uint8_t x_15; +lean_dec(x_5); +x_14 = lean_ctor_get(x_7, 1); +lean_inc(x_14); +x_15 = lean_nat_dec_eq(x_6, x_14); +lean_dec(x_14); +lean_dec(x_6); +if (x_15 == 0) +{ +x_3 = x_7; +goto _start; +} +else +{ +lean_object* x_17; lean_object* x_18; +lean_dec(x_2); +lean_dec(x_1); +x_17 = l_Lean_Parser_manyAux___closed__1; +x_18 = l_Lean_Parser_ParserState_mkUnexpectedError(x_7, x_17); +return x_18; } } } @@ -7097,7 +7168,7 @@ return x_6; lean_object* l_Lean_Parser_many1Fn(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_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; uint8_t x_9; x_4 = lean_ctor_get(x_3, 0); lean_inc(x_4); x_5 = lean_array_get_size(x_4); @@ -7107,23 +7178,25 @@ lean_inc(x_2); x_6 = lean_apply_2(x_1, x_2, x_3); x_7 = lean_ctor_get(x_6, 3); lean_inc(x_7); -if (lean_obj_tag(x_7) == 0) +x_8 = lean_box(0); +x_9 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_7, x_8); +lean_dec(x_7); +if (x_9 == 0) { -lean_object* x_8; lean_object* x_9; lean_object* x_10; -x_8 = l_Lean_Parser_manyAux(x_1, x_2, x_6); -x_9 = l_Lean_nullKind; -x_10 = l_Lean_Parser_ParserState_mkNode(x_8, x_9, x_5); -return x_10; +lean_object* x_10; lean_object* x_11; +lean_dec(x_2); +lean_dec(x_1); +x_10 = l_Lean_nullKind; +x_11 = l_Lean_Parser_ParserState_mkNode(x_6, x_10, x_5); +return x_11; } else { -lean_object* x_11; lean_object* x_12; -lean_dec(x_7); -lean_dec(x_2); -lean_dec(x_1); -x_11 = l_Lean_nullKind; -x_12 = l_Lean_Parser_ParserState_mkNode(x_6, x_11, x_5); -return x_12; +lean_object* x_12; lean_object* x_13; lean_object* x_14; +x_12 = l_Lean_Parser_manyAux(x_1, x_2, x_6); +x_13 = l_Lean_nullKind; +x_14 = l_Lean_Parser_ParserState_mkNode(x_12, x_13, x_5); +return x_14; } } } @@ -7161,7 +7234,7 @@ return x_8; lean_object* l___private_Lean_Parser_Basic_0__Lean_Parser_sepByFnAux_parse(lean_object* 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) { _start: { -lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; +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; x_8 = lean_ctor_get(x_7, 0); lean_inc(x_8); x_9 = lean_array_get_size(x_8); @@ -7173,80 +7246,40 @@ lean_inc(x_6); x_11 = lean_apply_2(x_1, x_6, x_7); x_12 = lean_ctor_get(x_11, 3); lean_inc(x_12); -if (lean_obj_tag(x_12) == 0) +x_13 = lean_box(0); +x_14 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_12, x_13); +lean_dec(x_12); +if (x_14 == 0) { -lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; -lean_dec(x_10); -lean_dec(x_9); -x_13 = lean_ctor_get(x_11, 0); -lean_inc(x_13); -x_14 = lean_array_get_size(x_13); -lean_dec(x_13); +lean_object* x_15; uint8_t x_16; +lean_dec(x_6); +lean_dec(x_2); +lean_dec(x_1); x_15 = lean_ctor_get(x_11, 1); lean_inc(x_15); -lean_inc(x_2); -lean_inc(x_6); -x_16 = lean_apply_2(x_2, x_6, x_11); -x_17 = lean_ctor_get(x_16, 3); -lean_inc(x_17); -if (lean_obj_tag(x_17) == 0) -{ +x_16 = lean_nat_dec_lt(x_10, x_15); lean_dec(x_15); -lean_dec(x_14); -{ -uint8_t _tmp_4 = x_3; -lean_object* _tmp_6 = x_16; -x_5 = _tmp_4; -x_7 = _tmp_6; -} -goto _start; -} -else -{ -lean_object* x_19; lean_object* x_20; lean_object* x_21; -lean_dec(x_17); -lean_dec(x_6); -lean_dec(x_2); -lean_dec(x_1); -x_19 = l_Lean_Parser_ParserState_restore(x_16, x_14, x_15); -lean_dec(x_14); -x_20 = l_Lean_nullKind; -x_21 = l_Lean_Parser_ParserState_mkNode(x_19, x_20, x_4); -return x_21; -} -} -else -{ -lean_object* x_22; uint8_t x_23; -lean_dec(x_12); -lean_dec(x_6); -lean_dec(x_2); -lean_dec(x_1); -x_22 = lean_ctor_get(x_11, 1); -lean_inc(x_22); -x_23 = lean_nat_dec_lt(x_10, x_22); -lean_dec(x_22); -if (x_23 == 0) +if (x_16 == 0) { if (x_5 == 0) { -lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; +lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_dec(x_10); lean_dec(x_9); -x_24 = lean_box(0); -x_25 = l_Lean_Parser_ParserState_pushSyntax(x_11, x_24); -x_26 = l_Lean_nullKind; -x_27 = l_Lean_Parser_ParserState_mkNode(x_25, x_26, x_4); -return x_27; +x_17 = lean_box(0); +x_18 = l_Lean_Parser_ParserState_pushSyntax(x_11, x_17); +x_19 = l_Lean_nullKind; +x_20 = l_Lean_Parser_ParserState_mkNode(x_18, x_19, x_4); +return x_20; } else { -lean_object* x_28; lean_object* x_29; lean_object* x_30; -x_28 = l_Lean_Parser_ParserState_restore(x_11, x_9, x_10); +lean_object* x_21; lean_object* x_22; lean_object* x_23; +x_21 = l_Lean_Parser_ParserState_restore(x_11, x_9, x_10); lean_dec(x_9); -x_29 = l_Lean_nullKind; -x_30 = l_Lean_Parser_ParserState_mkNode(x_28, x_29, x_4); -return x_30; +x_22 = l_Lean_nullKind; +x_23 = l_Lean_Parser_ParserState_mkNode(x_21, x_22, x_4); +return x_23; } } else @@ -7257,6 +7290,49 @@ lean_dec(x_4); return x_11; } } +else +{ +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_dec(x_10); +lean_dec(x_9); +x_24 = lean_ctor_get(x_11, 0); +lean_inc(x_24); +x_25 = lean_array_get_size(x_24); +lean_dec(x_24); +x_26 = lean_ctor_get(x_11, 1); +lean_inc(x_26); +lean_inc(x_2); +lean_inc(x_6); +x_27 = lean_apply_2(x_2, x_6, x_11); +x_28 = lean_ctor_get(x_27, 3); +lean_inc(x_28); +x_29 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_28, x_13); +lean_dec(x_28); +if (x_29 == 0) +{ +lean_object* x_30; lean_object* x_31; lean_object* x_32; +lean_dec(x_6); +lean_dec(x_2); +lean_dec(x_1); +x_30 = l_Lean_Parser_ParserState_restore(x_27, x_25, x_26); +lean_dec(x_25); +x_31 = l_Lean_nullKind; +x_32 = l_Lean_Parser_ParserState_mkNode(x_30, x_31, x_4); +return x_32; +} +else +{ +lean_dec(x_26); +lean_dec(x_25); +{ +uint8_t _tmp_4 = x_3; +lean_object* _tmp_6 = x_27; +x_5 = _tmp_4; +x_7 = _tmp_6; +} +goto _start; +} +} } } lean_object* l___private_Lean_Parser_Basic_0__Lean_Parser_sepByFnAux_parse___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { @@ -7530,27 +7606,29 @@ return x_5; lean_object* l_Lean_Parser_withResultOfFn(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_5; lean_object* x_6; lean_object* x_7; uint8_t x_8; x_5 = lean_apply_2(x_1, x_3, x_4); x_6 = lean_ctor_get(x_5, 3); lean_inc(x_6); -if (lean_obj_tag(x_6) == 0) +x_7 = lean_box(0); +x_8 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_6, x_7); +lean_dec(x_6); +if (x_8 == 0) { -lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; -x_7 = lean_ctor_get(x_5, 0); -lean_inc(x_7); -x_8 = l_Array_back___at_Lean_Syntax_Traverser_up___spec__2(x_7); -lean_dec(x_7); -x_9 = l_Lean_Parser_ParserState_popSyntax(x_5); -x_10 = lean_apply_1(x_2, x_8); -x_11 = l_Lean_Parser_ParserState_pushSyntax(x_9, x_10); -return x_11; +lean_dec(x_2); +return x_5; } else { -lean_dec(x_6); -lean_dec(x_2); -return x_5; +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_5, 0); +lean_inc(x_9); +x_10 = l_Array_back___at_Lean_Syntax_Traverser_up___spec__2(x_9); +lean_dec(x_9); +x_11 = l_Lean_Parser_ParserState_popSyntax(x_5); +x_12 = lean_apply_1(x_2, x_10); +x_13 = l_Lean_Parser_ParserState_pushSyntax(x_11, x_12); +return x_13; } } } @@ -7799,22 +7877,24 @@ return x_4; lean_object* l_Lean_Parser_takeWhile1Fn(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_5; lean_object* x_6; lean_object* x_7; uint8_t x_8; lean_inc(x_1); x_5 = l_Lean_Parser_satisfyFn(x_1, x_2, x_3, x_4); x_6 = lean_ctor_get(x_5, 3); lean_inc(x_6); -if (lean_obj_tag(x_6) == 0) +x_7 = lean_box(0); +x_8 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_6, x_7); +lean_dec(x_6); +if (x_8 == 0) { -lean_object* x_7; -x_7 = l_Lean_Parser_takeWhileFn(x_1, x_3, x_5); -return x_7; +lean_dec(x_1); +return x_5; } else { -lean_dec(x_6); -lean_dec(x_1); -return x_5; +lean_object* x_9; +x_9 = l_Lean_Parser_takeWhileFn(x_1, x_3, x_5); +return x_9; } } } @@ -8038,22 +8118,24 @@ x_17 = lean_string_utf8_get(x_4, x_16); x_18 = x_17 == x_9; if (x_18 == 0) { -lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; +lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; uint8_t x_24; x_19 = l_Lean_Parser_ParserState_next(x_2, x_4, x_16); lean_dec(x_16); x_20 = lean_unsigned_to_nat(1u); x_21 = l_Lean_Parser_finishCommentBlock(x_20, x_1, x_19); x_22 = lean_ctor_get(x_21, 3); lean_inc(x_22); -if (lean_obj_tag(x_22) == 0) +x_23 = lean_box(0); +x_24 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_22, x_23); +lean_dec(x_22); +if (x_24 == 0) { -x_2 = x_21; -goto _start; +return x_21; } else { -lean_dec(x_22); -return x_21; +x_2 = x_21; +goto _start; } } else @@ -8066,44 +8148,46 @@ return x_2; } else { -lean_object* x_24; uint32_t x_25; uint8_t x_26; -x_24 = lean_string_utf8_next(x_4, x_5); +lean_object* x_26; uint32_t x_27; uint8_t x_28; +x_26 = lean_string_utf8_next(x_4, x_5); lean_dec(x_5); -x_25 = lean_string_utf8_get(x_4, x_24); -x_26 = x_25 == x_9; -if (x_26 == 0) +x_27 = lean_string_utf8_get(x_4, x_26); +x_28 = x_27 == x_9; +if (x_28 == 0) { -lean_dec(x_24); +lean_dec(x_26); return x_2; } else { -lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; -x_27 = l_Lean_Parser_ParserState_next(x_2, x_4, x_24); -lean_dec(x_24); -x_28 = l_Lean_Parser_whitespace___closed__1; -x_29 = l_Lean_Parser_takeUntilFn(x_28, x_1, x_27); -x_30 = lean_ctor_get(x_29, 3); -lean_inc(x_30); -if (lean_obj_tag(x_30) == 0) +lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; uint8_t x_34; +x_29 = l_Lean_Parser_ParserState_next(x_2, x_4, x_26); +lean_dec(x_26); +x_30 = l_Lean_Parser_whitespace___closed__1; +x_31 = l_Lean_Parser_takeUntilFn(x_30, x_1, x_29); +x_32 = lean_ctor_get(x_31, 3); +lean_inc(x_32); +x_33 = lean_box(0); +x_34 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_32, x_33); +lean_dec(x_32); +if (x_34 == 0) { -x_2 = x_29; +return x_31; +} +else +{ +x_2 = x_31; goto _start; } -else -{ -lean_dec(x_30); -return x_29; -} } } } else { -lean_object* x_32; -x_32 = l_Lean_Parser_ParserState_next(x_2, x_4, x_5); +lean_object* x_36; +x_36 = l_Lean_Parser_ParserState_next(x_2, x_4, x_5); lean_dec(x_5); -x_2 = x_32; +x_2 = x_36; goto _start; } } @@ -8229,27 +8313,29 @@ return x_6; lean_object* l_Lean_Parser_rawFn(lean_object* x_1, uint8_t 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_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; uint8_t x_9; x_5 = lean_ctor_get(x_4, 1); lean_inc(x_5); lean_inc(x_3); x_6 = lean_apply_2(x_1, x_3, x_4); x_7 = lean_ctor_get(x_6, 3); lean_inc(x_7); -if (lean_obj_tag(x_7) == 0) -{ -lean_object* x_8; -x_8 = l___private_Lean_Parser_Basic_0__Lean_Parser_rawAux(x_5, x_2, x_3, x_6); -lean_dec(x_3); -return x_8; -} -else -{ +x_8 = lean_box(0); +x_9 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_7, x_8); lean_dec(x_7); +if (x_9 == 0) +{ lean_dec(x_5); lean_dec(x_3); return x_6; } +else +{ +lean_object* x_10; +x_10 = l___private_Lean_Parser_Basic_0__Lean_Parser_rawAux(x_5, x_2, x_3, x_6); +lean_dec(x_3); +return x_10; +} } } lean_object* l_Lean_Parser_rawFn___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { @@ -8265,7 +8351,7 @@ return x_6; lean_object* l_Lean_Parser_chFn(uint32_t x_1, uint8_t 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_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_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; x_5 = lean_box_uint32(x_1); x_6 = lean_alloc_closure((void*)(l_UInt32_decEq___boxed), 2, 1); lean_closure_set(x_6, 0, x_5); @@ -8280,17 +8366,19 @@ lean_inc(x_12); x_13 = l_Lean_Parser_satisfyFn(x_6, x_11, x_3, x_4); x_14 = lean_ctor_get(x_13, 3); lean_inc(x_14); -if (lean_obj_tag(x_14) == 0) +x_15 = lean_box(0); +x_16 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_14, x_15); +lean_dec(x_14); +if (x_16 == 0) { -lean_object* x_15; -x_15 = l___private_Lean_Parser_Basic_0__Lean_Parser_rawAux(x_12, x_2, x_3, x_13); -return x_15; +lean_dec(x_12); +return x_13; } else { -lean_dec(x_14); -lean_dec(x_12); -return x_13; +lean_object* x_17; +x_17 = l___private_Lean_Parser_Basic_0__Lean_Parser_rawAux(x_12, x_2, x_3, x_13); +return x_17; } } } @@ -8310,7 +8398,7 @@ return x_7; lean_object* l_Lean_Parser_rawCh___elambda__1(uint32_t x_1, uint8_t 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_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_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; x_5 = lean_box_uint32(x_1); x_6 = lean_alloc_closure((void*)(l_UInt32_decEq___boxed), 2, 1); lean_closure_set(x_6, 0, x_5); @@ -8325,17 +8413,19 @@ lean_inc(x_12); x_13 = l_Lean_Parser_satisfyFn(x_6, x_11, x_3, x_4); x_14 = lean_ctor_get(x_13, 3); lean_inc(x_14); -if (lean_obj_tag(x_14) == 0) +x_15 = lean_box(0); +x_16 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_14, x_15); +lean_dec(x_14); +if (x_16 == 0) { -lean_object* x_15; -x_15 = l___private_Lean_Parser_Basic_0__Lean_Parser_rawAux(x_12, x_2, x_3, x_13); -return x_15; +lean_dec(x_12); +return x_13; } else { -lean_dec(x_14); -lean_dec(x_12); -return x_13; +lean_object* x_17; +x_17 = l___private_Lean_Parser_Basic_0__Lean_Parser_rawAux(x_12, x_2, x_3, x_13); +return x_17; } } } @@ -8542,86 +8632,92 @@ return x_17; } else { -lean_object* x_18; lean_object* x_19; lean_object* x_20; +lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; uint8_t x_22; x_18 = l_Lean_Parser_ParserState_next(x_3, x_5, x_6); lean_dec(x_6); x_19 = l_Lean_Parser_hexDigitFn(x_2, x_18); x_20 = lean_ctor_get(x_19, 3); lean_inc(x_20); -if (lean_obj_tag(x_20) == 0) -{ -lean_object* x_21; lean_object* x_22; -x_21 = l_Lean_Parser_hexDigitFn(x_2, x_19); -x_22 = lean_ctor_get(x_21, 3); -lean_inc(x_22); -if (lean_obj_tag(x_22) == 0) -{ -lean_object* x_23; lean_object* x_24; -x_23 = l_Lean_Parser_hexDigitFn(x_2, x_21); -x_24 = lean_ctor_get(x_23, 3); -lean_inc(x_24); -if (lean_obj_tag(x_24) == 0) -{ -lean_object* x_25; -x_25 = l_Lean_Parser_hexDigitFn(x_2, x_23); -return x_25; -} -else -{ -lean_dec(x_24); -return x_23; -} -} -else -{ -lean_dec(x_22); -return x_21; -} -} -else -{ +x_21 = lean_box(0); +x_22 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_20, x_21); lean_dec(x_20); +if (x_22 == 0) +{ return x_19; } -} +else +{ +lean_object* x_23; lean_object* x_24; uint8_t x_25; +x_23 = l_Lean_Parser_hexDigitFn(x_2, x_19); +x_24 = lean_ctor_get(x_23, 3); +lean_inc(x_24); +x_25 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_24, x_21); +lean_dec(x_24); +if (x_25 == 0) +{ +return x_23; } else { -lean_object* x_26; lean_object* x_27; lean_object* x_28; -x_26 = l_Lean_Parser_ParserState_next(x_3, x_5, x_6); -lean_dec(x_6); -x_27 = l_Lean_Parser_hexDigitFn(x_2, x_26); -x_28 = lean_ctor_get(x_27, 3); -lean_inc(x_28); -if (lean_obj_tag(x_28) == 0) +lean_object* x_26; lean_object* x_27; uint8_t x_28; +x_26 = l_Lean_Parser_hexDigitFn(x_2, x_23); +x_27 = lean_ctor_get(x_26, 3); +lean_inc(x_27); +x_28 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_27, x_21); +lean_dec(x_27); +if (x_28 == 0) +{ +return x_26; +} +else { lean_object* x_29; -x_29 = l_Lean_Parser_hexDigitFn(x_2, x_27); +x_29 = l_Lean_Parser_hexDigitFn(x_2, x_26); return x_29; } -else -{ -lean_dec(x_28); -return x_27; +} } } } else { -lean_object* x_30; +lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; uint8_t x_34; x_30 = l_Lean_Parser_ParserState_next(x_3, x_5, x_6); lean_dec(x_6); -return x_30; +x_31 = l_Lean_Parser_hexDigitFn(x_2, x_30); +x_32 = lean_ctor_get(x_31, 3); +lean_inc(x_32); +x_33 = lean_box(0); +x_34 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_32, x_33); +lean_dec(x_32); +if (x_34 == 0) +{ +return x_31; +} +else +{ +lean_object* x_35; +x_35 = l_Lean_Parser_hexDigitFn(x_2, x_31); +return x_35; +} } } else { -lean_object* x_31; lean_object* x_32; +lean_object* x_36; +x_36 = l_Lean_Parser_ParserState_next(x_3, x_5, x_6); +lean_dec(x_6); +return x_36; +} +} +else +{ +lean_object* x_37; lean_object* x_38; lean_dec(x_6); lean_dec(x_1); -x_31 = l_Lean_Parser_ParserState_mkEOIError___closed__1; -x_32 = l_Lean_Parser_ParserState_mkUnexpectedError(x_3, x_31); -return x_32; +x_37 = l_Lean_Parser_ParserState_mkEOIError___closed__1; +x_38 = l_Lean_Parser_ParserState_mkUnexpectedError(x_3, x_37); +return x_38; } } } @@ -8806,7 +8902,7 @@ lean_inc(x_6); x_7 = lean_string_utf8_at_end(x_5, x_6); if (x_7 == 0) { -uint32_t x_8; lean_object* x_9; lean_object* x_10; uint32_t x_11; uint8_t x_12; +uint32_t x_8; lean_object* x_9; lean_object* x_10; uint32_t x_11; uint8_t x_12; lean_object* x_13; x_8 = lean_string_utf8_get(x_5, x_6); x_9 = lean_string_utf8_next(x_5, x_6); lean_dec(x_6); @@ -8815,97 +8911,100 @@ lean_inc(x_3); x_10 = l_Lean_Parser_ParserState_setPos(x_3, x_9); x_11 = 92; x_12 = x_8 == x_11; +x_13 = lean_box(0); if (x_12 == 0) { -lean_object* x_13; -x_13 = lean_ctor_get(x_3, 3); -lean_inc(x_13); +lean_object* x_14; uint8_t x_15; +x_14 = lean_ctor_get(x_3, 3); +lean_inc(x_14); lean_dec(x_3); -if (lean_obj_tag(x_13) == 0) +x_15 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_14, x_13); +lean_dec(x_14); +if (x_15 == 0) { -uint32_t x_14; lean_object* x_15; lean_object* x_16; uint32_t x_17; uint8_t x_18; -x_14 = lean_string_utf8_get(x_5, x_9); -x_15 = lean_string_utf8_next(x_5, x_9); -lean_dec(x_9); -x_16 = l_Lean_Parser_ParserState_setPos(x_10, x_15); -x_17 = 39; -x_18 = x_14 == x_17; -if (x_18 == 0) -{ -lean_object* x_19; lean_object* x_20; -lean_dec(x_1); -x_19 = l_Lean_Parser_charLitFnAux___closed__1; -x_20 = l_Lean_Parser_ParserState_mkUnexpectedError(x_16, x_19); -return x_20; -} -else -{ -lean_object* x_21; lean_object* x_22; -x_21 = l_Lean_charLitKind; -x_22 = l_Lean_Parser_mkNodeToken(x_21, x_1, x_2, x_16); -return x_22; -} -} -else -{ -lean_dec(x_13); lean_dec(x_9); lean_dec(x_1); return x_10; } -} else { -lean_object* x_23; lean_object* x_24; lean_object* x_25; +uint32_t x_16; lean_object* x_17; lean_object* x_18; uint32_t x_19; uint8_t x_20; +x_16 = lean_string_utf8_get(x_5, x_9); +x_17 = lean_string_utf8_next(x_5, x_9); lean_dec(x_9); -lean_dec(x_3); -x_23 = l_Lean_Parser_quotedCharFn___closed__1; -x_24 = l_Lean_Parser_quotedCharCoreFn(x_23, x_2, x_10); -x_25 = lean_ctor_get(x_24, 3); -lean_inc(x_25); -if (lean_obj_tag(x_25) == 0) +x_18 = l_Lean_Parser_ParserState_setPos(x_10, x_17); +x_19 = 39; +x_20 = x_16 == x_19; +if (x_20 == 0) { -lean_object* x_26; uint32_t x_27; lean_object* x_28; lean_object* x_29; uint32_t x_30; uint8_t x_31; -x_26 = lean_ctor_get(x_24, 1); -lean_inc(x_26); -x_27 = lean_string_utf8_get(x_5, x_26); -x_28 = lean_string_utf8_next(x_5, x_26); -lean_dec(x_26); -x_29 = l_Lean_Parser_ParserState_setPos(x_24, x_28); -x_30 = 39; -x_31 = x_27 == x_30; -if (x_31 == 0) -{ -lean_object* x_32; lean_object* x_33; +lean_object* x_21; lean_object* x_22; lean_dec(x_1); -x_32 = l_Lean_Parser_charLitFnAux___closed__1; -x_33 = l_Lean_Parser_ParserState_mkUnexpectedError(x_29, x_32); -return x_33; +x_21 = l_Lean_Parser_charLitFnAux___closed__1; +x_22 = l_Lean_Parser_ParserState_mkUnexpectedError(x_18, x_21); +return x_22; } else { -lean_object* x_34; lean_object* x_35; -x_34 = l_Lean_charLitKind; -x_35 = l_Lean_Parser_mkNodeToken(x_34, x_1, x_2, x_29); -return x_35; -} -} -else -{ -lean_dec(x_25); -lean_dec(x_1); +lean_object* x_23; lean_object* x_24; +x_23 = l_Lean_charLitKind; +x_24 = l_Lean_Parser_mkNodeToken(x_23, x_1, x_2, x_18); return x_24; } } } else { -lean_object* x_36; lean_object* x_37; +lean_object* x_25; lean_object* x_26; lean_object* x_27; uint8_t x_28; +lean_dec(x_9); +lean_dec(x_3); +x_25 = l_Lean_Parser_quotedCharFn___closed__1; +x_26 = l_Lean_Parser_quotedCharCoreFn(x_25, x_2, x_10); +x_27 = lean_ctor_get(x_26, 3); +lean_inc(x_27); +x_28 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_27, x_13); +lean_dec(x_27); +if (x_28 == 0) +{ +lean_dec(x_1); +return x_26; +} +else +{ +lean_object* x_29; uint32_t x_30; lean_object* x_31; lean_object* x_32; uint32_t x_33; uint8_t x_34; +x_29 = lean_ctor_get(x_26, 1); +lean_inc(x_29); +x_30 = lean_string_utf8_get(x_5, x_29); +x_31 = lean_string_utf8_next(x_5, x_29); +lean_dec(x_29); +x_32 = l_Lean_Parser_ParserState_setPos(x_26, x_31); +x_33 = 39; +x_34 = x_30 == x_33; +if (x_34 == 0) +{ +lean_object* x_35; lean_object* x_36; +lean_dec(x_1); +x_35 = l_Lean_Parser_charLitFnAux___closed__1; +x_36 = l_Lean_Parser_ParserState_mkUnexpectedError(x_32, x_35); +return x_36; +} +else +{ +lean_object* x_37; lean_object* x_38; +x_37 = l_Lean_charLitKind; +x_38 = l_Lean_Parser_mkNodeToken(x_37, x_1, x_2, x_32); +return x_38; +} +} +} +} +else +{ +lean_object* x_39; lean_object* x_40; lean_dec(x_6); lean_dec(x_1); -x_36 = l_Lean_Parser_ParserState_mkEOIError___closed__1; -x_37 = l_Lean_Parser_ParserState_mkUnexpectedError(x_3, x_36); -return x_37; +x_39 = l_Lean_Parser_ParserState_mkEOIError___closed__1; +x_40 = l_Lean_Parser_ParserState_mkUnexpectedError(x_3, x_39); +return x_40; } } } @@ -8948,40 +9047,42 @@ goto _start; } else { -lean_object* x_16; lean_object* x_17; lean_object* x_18; +lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; uint8_t x_20; x_16 = l_Lean_Parser_quotedCharFn___closed__1; x_17 = l_Lean_Parser_quotedCharCoreFn(x_16, x_2, x_10); x_18 = lean_ctor_get(x_17, 3); lean_inc(x_18); -if (lean_obj_tag(x_18) == 0) +x_19 = lean_box(0); +x_20 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_18, x_19); +lean_dec(x_18); +if (x_20 == 0) +{ +lean_dec(x_1); +return x_17; +} +else { x_3 = x_17; goto _start; } -else -{ -lean_dec(x_18); -lean_dec(x_1); -return x_17; -} -} -} -else -{ -lean_object* x_20; lean_object* x_21; -x_20 = l_Lean_strLitKind; -x_21 = l_Lean_Parser_mkNodeToken(x_20, x_1, x_2, x_10); -return x_21; } } else { lean_object* x_22; lean_object* x_23; +x_22 = l_Lean_strLitKind; +x_23 = l_Lean_Parser_mkNodeToken(x_22, x_1, x_2, x_10); +return x_23; +} +} +else +{ +lean_object* x_24; lean_object* x_25; lean_dec(x_6); lean_dec(x_1); -x_22 = l_Lean_Parser_ParserState_mkEOIError___closed__1; -x_23 = l_Lean_Parser_ParserState_mkUnexpectedError(x_3, x_22); -return x_23; +x_24 = l_Lean_Parser_ParserState_mkEOIError___closed__1; +x_25 = l_Lean_Parser_ParserState_mkUnexpectedError(x_3, x_24); +return x_25; } } } @@ -9260,27 +9361,29 @@ return x_1; lean_object* l_Lean_Parser_binNumberFn(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_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; uint8_t x_9; x_4 = l_Lean_Parser_binNumberFn___closed__1; x_5 = l_Lean_Parser_binNumberFn___closed__2; x_6 = l_Lean_Parser_satisfyFn(x_4, x_5, x_2, x_3); x_7 = lean_ctor_get(x_6, 3); lean_inc(x_7); -if (lean_obj_tag(x_7) == 0) +x_8 = lean_box(0); +x_9 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_7, x_8); +lean_dec(x_7); +if (x_9 == 0) { -lean_object* x_8; lean_object* x_9; lean_object* x_10; -x_8 = l_Lean_Parser_takeWhileFn(x_4, x_2, x_6); -x_9 = l_Lean_numLitKind; -x_10 = l_Lean_Parser_mkNodeToken(x_9, x_1, x_2, x_8); -return x_10; +lean_object* x_10; lean_object* x_11; +x_10 = l_Lean_numLitKind; +x_11 = l_Lean_Parser_mkNodeToken(x_10, x_1, x_2, x_6); +return x_11; } else { -lean_object* x_11; lean_object* x_12; -lean_dec(x_7); -x_11 = l_Lean_numLitKind; -x_12 = l_Lean_Parser_mkNodeToken(x_11, x_1, x_2, x_6); -return x_12; +lean_object* x_12; lean_object* x_13; lean_object* x_14; +x_12 = l_Lean_Parser_takeWhileFn(x_4, x_2, x_6); +x_13 = l_Lean_numLitKind; +x_14 = l_Lean_Parser_mkNodeToken(x_13, x_1, x_2, x_12); +return x_14; } } } @@ -9344,27 +9447,29 @@ return x_1; lean_object* l_Lean_Parser_octalNumberFn(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_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; uint8_t x_9; x_4 = l_Lean_Parser_octalNumberFn___closed__1; x_5 = l_Lean_Parser_octalNumberFn___closed__2; x_6 = l_Lean_Parser_satisfyFn(x_4, x_5, x_2, x_3); x_7 = lean_ctor_get(x_6, 3); lean_inc(x_7); -if (lean_obj_tag(x_7) == 0) +x_8 = lean_box(0); +x_9 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_7, x_8); +lean_dec(x_7); +if (x_9 == 0) { -lean_object* x_8; lean_object* x_9; lean_object* x_10; -x_8 = l_Lean_Parser_takeWhileFn(x_4, x_2, x_6); -x_9 = l_Lean_numLitKind; -x_10 = l_Lean_Parser_mkNodeToken(x_9, x_1, x_2, x_8); -return x_10; +lean_object* x_10; lean_object* x_11; +x_10 = l_Lean_numLitKind; +x_11 = l_Lean_Parser_mkNodeToken(x_10, x_1, x_2, x_6); +return x_11; } else { -lean_object* x_11; lean_object* x_12; -lean_dec(x_7); -x_11 = l_Lean_numLitKind; -x_12 = l_Lean_Parser_mkNodeToken(x_11, x_1, x_2, x_6); -return x_12; +lean_object* x_12; lean_object* x_13; lean_object* x_14; +x_12 = l_Lean_Parser_takeWhileFn(x_4, x_2, x_6); +x_13 = l_Lean_numLitKind; +x_14 = l_Lean_Parser_mkNodeToken(x_13, x_1, x_2, x_12); +return x_14; } } } @@ -9498,27 +9603,29 @@ return x_1; lean_object* l_Lean_Parser_hexNumberFn(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_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; uint8_t x_9; x_4 = l_Lean_Parser_hexNumberFn___closed__1; x_5 = l_Lean_Parser_hexNumberFn___closed__2; x_6 = l_Lean_Parser_satisfyFn(x_4, x_5, x_2, x_3); x_7 = lean_ctor_get(x_6, 3); lean_inc(x_7); -if (lean_obj_tag(x_7) == 0) +x_8 = lean_box(0); +x_9 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_7, x_8); +lean_dec(x_7); +if (x_9 == 0) { -lean_object* x_8; lean_object* x_9; lean_object* x_10; -x_8 = l_Lean_Parser_takeWhileFn(x_4, x_2, x_6); -x_9 = l_Lean_numLitKind; -x_10 = l_Lean_Parser_mkNodeToken(x_9, x_1, x_2, x_8); -return x_10; +lean_object* x_10; lean_object* x_11; +x_10 = l_Lean_numLitKind; +x_11 = l_Lean_Parser_mkNodeToken(x_10, x_1, x_2, x_6); +return x_11; } else { -lean_object* x_11; lean_object* x_12; -lean_dec(x_7); -x_11 = l_Lean_numLitKind; -x_12 = l_Lean_Parser_mkNodeToken(x_11, x_1, x_2, x_6); -return x_12; +lean_object* x_12; lean_object* x_13; lean_object* x_14; +x_12 = l_Lean_Parser_takeWhileFn(x_4, x_2, x_6); +x_13 = l_Lean_numLitKind; +x_14 = l_Lean_Parser_mkNodeToken(x_13, x_1, x_2, x_12); +return x_14; } } } @@ -9854,6 +9961,43 @@ x_2 = lean_alloc_closure((void*)(l_Lean_Parser_mkTokenAndFixPos_match__1___rarg) return x_2; } } +uint8_t l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_mkTokenAndFixPos___spec__1(lean_object* x_1, lean_object* x_2) { +_start: +{ +if (lean_obj_tag(x_1) == 0) +{ +if (lean_obj_tag(x_2) == 0) +{ +uint8_t x_3; +x_3 = 1; +return x_3; +} +else +{ +uint8_t x_4; +x_4 = 0; +return x_4; +} +} +else +{ +if (lean_obj_tag(x_2) == 0) +{ +uint8_t x_5; +x_5 = 0; +return x_5; +} +else +{ +lean_object* x_6; lean_object* x_7; uint8_t x_8; +x_6 = lean_ctor_get(x_1, 0); +x_7 = lean_ctor_get(x_2, 0); +x_8 = lean_string_dec_eq(x_6, x_7); +return x_8; +} +} +} +} static lean_object* _init_l_Lean_Parser_mkTokenAndFixPos___closed__1() { _start: { @@ -9876,316 +10020,153 @@ _start: if (lean_obj_tag(x_2) == 0) { lean_object* x_5; lean_object* x_6; -lean_dec(x_3); x_5 = l_Lean_Parser_mkTokenAndFixPos___closed__1; x_6 = l_Lean_Parser_ParserState_mkErrorAt(x_4, x_5, x_1); return x_6; } else { -lean_object* x_7; -x_7 = lean_ctor_get(x_3, 5); -lean_inc(x_7); -if (lean_obj_tag(x_7) == 0) +uint8_t x_7; +x_7 = !lean_is_exclusive(x_2); +if (x_7 == 0) { -lean_object* x_8; uint8_t x_9; -x_8 = lean_ctor_get(x_3, 0); +lean_object* x_8; lean_object* x_9; uint8_t x_10; +x_8 = lean_ctor_get(x_2, 0); +x_9 = lean_ctor_get(x_3, 5); lean_inc(x_8); -x_9 = !lean_is_exclusive(x_2); -if (x_9 == 0) +x_10 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_mkTokenAndFixPos___spec__1(x_9, x_2); +lean_dec(x_2); +if (x_10 == 0) { -lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; -x_10 = lean_ctor_get(x_2, 0); -x_11 = lean_ctor_get(x_8, 0); -lean_inc(x_11); -lean_dec(x_8); +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_ctor_get(x_3, 0); +x_12 = lean_ctor_get(x_11, 0); lean_inc_n(x_1, 2); -lean_inc(x_11); -x_12 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_12, 0, x_11); -lean_ctor_set(x_12, 1, x_1); -lean_ctor_set(x_12, 2, x_1); -x_13 = lean_string_utf8_byte_size(x_10); -x_14 = lean_nat_add(x_1, x_13); -lean_dec(x_13); -lean_inc(x_14); -x_15 = l_Lean_Parser_ParserState_setPos(x_4, x_14); -x_16 = l_Lean_Parser_whitespace(x_3, x_15); -lean_dec(x_3); -x_17 = lean_ctor_get(x_16, 1); -lean_inc(x_17); -x_18 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_18, 0, x_11); -lean_ctor_set(x_18, 1, x_14); -lean_ctor_set(x_18, 2, x_17); -lean_ctor_set(x_2, 0, x_12); -x_19 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_19, 0, x_1); +lean_inc(x_12); +x_13 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_13, 0, x_12); +lean_ctor_set(x_13, 1, x_1); +lean_ctor_set(x_13, 2, x_1); +x_14 = lean_string_utf8_byte_size(x_8); +x_15 = lean_nat_add(x_1, x_14); +lean_dec(x_14); +lean_inc(x_15); +x_16 = l_Lean_Parser_ParserState_setPos(x_4, x_15); +x_17 = l_Lean_Parser_whitespace(x_3, x_16); +x_18 = lean_ctor_get(x_17, 1); +lean_inc(x_18); +lean_inc(x_12); +x_19 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_19, 0, x_12); +lean_ctor_set(x_19, 1, x_15); +lean_ctor_set(x_19, 2, x_18); x_20 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_20, 0, x_18); -x_21 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_21, 0, x_2); -lean_ctor_set(x_21, 1, x_19); -lean_ctor_set(x_21, 2, x_20); -x_22 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_22, 0, x_21); -lean_ctor_set(x_22, 1, x_10); -x_23 = l_Lean_Parser_ParserState_pushSyntax(x_16, x_22); -return x_23; +lean_ctor_set(x_20, 0, x_13); +x_21 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_21, 0, x_1); +x_22 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_22, 0, x_19); +x_23 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_23, 0, x_20); +lean_ctor_set(x_23, 1, x_21); +lean_ctor_set(x_23, 2, x_22); +x_24 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_24, 0, x_23); +lean_ctor_set(x_24, 1, x_8); +x_25 = l_Lean_Parser_ParserState_pushSyntax(x_17, x_24); +return x_25; } 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; lean_object* x_37; lean_object* x_38; -x_24 = lean_ctor_get(x_2, 0); -lean_inc(x_24); -lean_dec(x_2); -x_25 = lean_ctor_get(x_8, 0); -lean_inc(x_25); +lean_object* x_26; lean_object* x_27; lean_dec(x_8); -lean_inc_n(x_1, 2); -lean_inc(x_25); -x_26 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_26, 0, x_25); -lean_ctor_set(x_26, 1, x_1); -lean_ctor_set(x_26, 2, x_1); -x_27 = lean_string_utf8_byte_size(x_24); -x_28 = lean_nat_add(x_1, x_27); -lean_dec(x_27); +x_26 = l_Lean_Parser_mkTokenAndFixPos___closed__2; +x_27 = l_Lean_Parser_ParserState_mkErrorAt(x_4, x_26, x_1); +return x_27; +} +} +else +{ +lean_object* x_28; lean_object* x_29; lean_object* x_30; uint8_t x_31; +x_28 = lean_ctor_get(x_2, 0); lean_inc(x_28); -x_29 = l_Lean_Parser_ParserState_setPos(x_4, x_28); -x_30 = l_Lean_Parser_whitespace(x_3, x_29); -lean_dec(x_3); -x_31 = lean_ctor_get(x_30, 1); -lean_inc(x_31); -x_32 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_32, 0, x_25); -lean_ctor_set(x_32, 1, x_28); -lean_ctor_set(x_32, 2, x_31); -x_33 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_33, 0, x_26); -x_34 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_34, 0, x_1); -x_35 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_35, 0, x_32); -x_36 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_36, 0, x_33); -lean_ctor_set(x_36, 1, x_34); -lean_ctor_set(x_36, 2, x_35); -x_37 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_37, 0, x_36); -lean_ctor_set(x_37, 1, x_24); -x_38 = l_Lean_Parser_ParserState_pushSyntax(x_30, x_37); -return x_38; -} -} -else -{ -uint8_t x_39; -x_39 = !lean_is_exclusive(x_2); -if (x_39 == 0) -{ -uint8_t x_40; -x_40 = !lean_is_exclusive(x_7); -if (x_40 == 0) -{ -lean_object* x_41; lean_object* x_42; uint8_t x_43; -x_41 = lean_ctor_get(x_2, 0); -x_42 = lean_ctor_get(x_7, 0); -x_43 = lean_string_dec_eq(x_42, x_41); -lean_dec(x_42); -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; 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_44 = lean_ctor_get(x_3, 0); -lean_inc(x_44); -x_45 = lean_ctor_get(x_44, 0); -lean_inc(x_45); -lean_dec(x_44); -lean_inc_n(x_1, 2); -lean_inc(x_45); -x_46 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_46, 0, x_45); -lean_ctor_set(x_46, 1, x_1); -lean_ctor_set(x_46, 2, x_1); -x_47 = lean_string_utf8_byte_size(x_41); -x_48 = lean_nat_add(x_1, x_47); -lean_dec(x_47); -lean_inc(x_48); -x_49 = l_Lean_Parser_ParserState_setPos(x_4, x_48); -x_50 = l_Lean_Parser_whitespace(x_3, x_49); -lean_dec(x_3); -x_51 = lean_ctor_get(x_50, 1); -lean_inc(x_51); -x_52 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_52, 0, x_45); -lean_ctor_set(x_52, 1, x_48); -lean_ctor_set(x_52, 2, x_51); -lean_ctor_set(x_7, 0, x_46); -lean_ctor_set(x_2, 0, x_1); -x_53 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_53, 0, x_52); -x_54 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_54, 0, x_7); -lean_ctor_set(x_54, 1, x_2); -lean_ctor_set(x_54, 2, x_53); -x_55 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_55, 0, x_54); -lean_ctor_set(x_55, 1, x_41); -x_56 = l_Lean_Parser_ParserState_pushSyntax(x_50, x_55); -return x_56; -} -else -{ -lean_object* x_57; lean_object* x_58; -lean_free_object(x_7); -lean_free_object(x_2); -lean_dec(x_41); -lean_dec(x_3); -x_57 = l_Lean_Parser_mkTokenAndFixPos___closed__2; -x_58 = l_Lean_Parser_ParserState_mkErrorAt(x_4, x_57, x_1); -return x_58; -} -} -else -{ -lean_object* x_59; lean_object* x_60; uint8_t x_61; -x_59 = lean_ctor_get(x_2, 0); -x_60 = lean_ctor_get(x_7, 0); -lean_inc(x_60); -lean_dec(x_7); -x_61 = lean_string_dec_eq(x_60, x_59); -lean_dec(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; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; -x_62 = lean_ctor_get(x_3, 0); -lean_inc(x_62); -x_63 = lean_ctor_get(x_62, 0); -lean_inc(x_63); -lean_dec(x_62); -lean_inc_n(x_1, 2); -lean_inc(x_63); -x_64 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_64, 0, x_63); -lean_ctor_set(x_64, 1, x_1); -lean_ctor_set(x_64, 2, x_1); -x_65 = lean_string_utf8_byte_size(x_59); -x_66 = lean_nat_add(x_1, x_65); -lean_dec(x_65); -lean_inc(x_66); -x_67 = l_Lean_Parser_ParserState_setPos(x_4, x_66); -x_68 = l_Lean_Parser_whitespace(x_3, x_67); -lean_dec(x_3); -x_69 = lean_ctor_get(x_68, 1); -lean_inc(x_69); -x_70 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_70, 0, x_63); -lean_ctor_set(x_70, 1, x_66); -lean_ctor_set(x_70, 2, x_69); -x_71 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_71, 0, x_64); -lean_ctor_set(x_2, 0, x_1); -x_72 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_72, 0, x_70); -x_73 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_73, 0, x_71); -lean_ctor_set(x_73, 1, x_2); -lean_ctor_set(x_73, 2, x_72); -x_74 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_74, 0, x_73); -lean_ctor_set(x_74, 1, x_59); -x_75 = l_Lean_Parser_ParserState_pushSyntax(x_68, x_74); -return x_75; -} -else -{ -lean_object* x_76; lean_object* x_77; -lean_free_object(x_2); -lean_dec(x_59); -lean_dec(x_3); -x_76 = l_Lean_Parser_mkTokenAndFixPos___closed__2; -x_77 = l_Lean_Parser_ParserState_mkErrorAt(x_4, x_76, x_1); -return x_77; -} -} -} -else -{ -lean_object* x_78; lean_object* x_79; lean_object* x_80; uint8_t x_81; -x_78 = lean_ctor_get(x_2, 0); -lean_inc(x_78); lean_dec(x_2); -x_79 = lean_ctor_get(x_7, 0); -lean_inc(x_79); -if (lean_is_exclusive(x_7)) { - lean_ctor_release(x_7, 0); - x_80 = x_7; -} else { - lean_dec_ref(x_7); - x_80 = lean_box(0); -} -x_81 = lean_string_dec_eq(x_79, x_78); -lean_dec(x_79); -if (x_81 == 0) +x_29 = lean_ctor_get(x_3, 5); +lean_inc(x_28); +x_30 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_30, 0, x_28); +x_31 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_mkTokenAndFixPos___spec__1(x_29, x_30); +lean_dec(x_30); +if (x_31 == 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_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_82 = lean_ctor_get(x_3, 0); -lean_inc(x_82); -x_83 = lean_ctor_get(x_82, 0); -lean_inc(x_83); -lean_dec(x_82); +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; +x_32 = lean_ctor_get(x_3, 0); +x_33 = lean_ctor_get(x_32, 0); lean_inc_n(x_1, 2); -lean_inc(x_83); -x_84 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_84, 0, x_83); -lean_ctor_set(x_84, 1, x_1); -lean_ctor_set(x_84, 2, x_1); -x_85 = lean_string_utf8_byte_size(x_78); -x_86 = lean_nat_add(x_1, x_85); -lean_dec(x_85); -lean_inc(x_86); -x_87 = l_Lean_Parser_ParserState_setPos(x_4, x_86); -x_88 = l_Lean_Parser_whitespace(x_3, x_87); -lean_dec(x_3); -x_89 = lean_ctor_get(x_88, 1); -lean_inc(x_89); -x_90 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_90, 0, x_83); -lean_ctor_set(x_90, 1, x_86); -lean_ctor_set(x_90, 2, x_89); -if (lean_is_scalar(x_80)) { - x_91 = lean_alloc_ctor(1, 1, 0); -} else { - x_91 = x_80; -} -lean_ctor_set(x_91, 0, x_84); -x_92 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_92, 0, x_1); -x_93 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_93, 0, x_90); -x_94 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_94, 0, x_91); -lean_ctor_set(x_94, 1, x_92); -lean_ctor_set(x_94, 2, x_93); -x_95 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_95, 0, x_94); -lean_ctor_set(x_95, 1, x_78); -x_96 = l_Lean_Parser_ParserState_pushSyntax(x_88, x_95); -return x_96; +lean_inc(x_33); +x_34 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_34, 0, x_33); +lean_ctor_set(x_34, 1, x_1); +lean_ctor_set(x_34, 2, x_1); +x_35 = lean_string_utf8_byte_size(x_28); +x_36 = lean_nat_add(x_1, x_35); +lean_dec(x_35); +lean_inc(x_36); +x_37 = l_Lean_Parser_ParserState_setPos(x_4, x_36); +x_38 = l_Lean_Parser_whitespace(x_3, x_37); +x_39 = lean_ctor_get(x_38, 1); +lean_inc(x_39); +lean_inc(x_33); +x_40 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_40, 0, x_33); +lean_ctor_set(x_40, 1, x_36); +lean_ctor_set(x_40, 2, x_39); +x_41 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_41, 0, x_34); +x_42 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_42, 0, x_1); +x_43 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_43, 0, x_40); +x_44 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_44, 0, x_41); +lean_ctor_set(x_44, 1, x_42); +lean_ctor_set(x_44, 2, x_43); +x_45 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_45, 0, x_44); +lean_ctor_set(x_45, 1, x_28); +x_46 = l_Lean_Parser_ParserState_pushSyntax(x_38, x_45); +return x_46; } else { -lean_object* x_97; lean_object* x_98; -lean_dec(x_80); -lean_dec(x_78); +lean_object* x_47; lean_object* x_48; +lean_dec(x_28); +x_47 = l_Lean_Parser_mkTokenAndFixPos___closed__2; +x_48 = l_Lean_Parser_ParserState_mkErrorAt(x_4, x_47, x_1); +return x_48; +} +} +} +} +} +lean_object* l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_mkTokenAndFixPos___spec__1___boxed(lean_object* x_1, lean_object* x_2) { +_start: +{ +uint8_t x_3; lean_object* x_4; +x_3 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_mkTokenAndFixPos___spec__1(x_1, x_2); +lean_dec(x_2); +lean_dec(x_1); +x_4 = lean_box(x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_mkTokenAndFixPos___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +lean_object* x_5; +x_5 = l_Lean_Parser_mkTokenAndFixPos(x_1, x_2, x_3, x_4); lean_dec(x_3); -x_97 = l_Lean_Parser_mkTokenAndFixPos___closed__2; -x_98 = l_Lean_Parser_ParserState_mkErrorAt(x_4, x_97, x_1); -return x_98; -} -} -} -} +return x_5; } } lean_object* l_Lean_Parser_mkIdResult(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { @@ -10200,10 +10181,7 @@ if (x_7 == 0) lean_object* x_8; lean_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_dec(x_2); x_8 = lean_ctor_get(x_4, 0); -lean_inc(x_8); x_9 = lean_ctor_get(x_8, 0); -lean_inc(x_9); -lean_dec(x_8); lean_inc(x_6); lean_inc(x_1); lean_inc(x_9); @@ -10212,7 +10190,6 @@ lean_ctor_set(x_10, 0, x_9); lean_ctor_set(x_10, 1, x_1); lean_ctor_set(x_10, 2, x_6); x_11 = l_Lean_Parser_whitespace(x_4, x_5); -lean_dec(x_4); x_12 = lean_ctor_get(x_11, 1); lean_inc(x_12); lean_inc_n(x_1, 2); @@ -10221,6 +10198,7 @@ x_13 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_13, 0, x_9); lean_ctor_set(x_13, 1, x_1); lean_ctor_set(x_13, 2, x_1); +lean_inc(x_9); x_14 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_14, 0, x_9); lean_ctor_set(x_14, 1, x_6); @@ -10254,6 +10232,15 @@ return x_22; } } } +lean_object* l_Lean_Parser_mkIdResult___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_Parser_mkIdResult(x_1, x_2, x_3, x_4, x_5); +lean_dec(x_4); +return x_6; +} +} static lean_object* _init_l_Lean_Parser_identFnAux_parse___closed__1() { _start: { @@ -10283,10 +10270,7 @@ _start: { lean_object* x_6; lean_object* x_7; lean_object* x_8; uint8_t x_9; x_6 = lean_ctor_get(x_4, 0); -lean_inc(x_6); x_7 = lean_ctor_get(x_6, 0); -lean_inc(x_7); -lean_dec(x_6); x_8 = lean_ctor_get(x_5, 1); lean_inc(x_8); x_9 = lean_string_utf8_at_end(x_7, x_8); @@ -10304,7 +10288,6 @@ if (x_13 == 0) { lean_object* x_14; lean_dec(x_8); -lean_dec(x_7); lean_dec(x_3); x_14 = l_Lean_Parser_mkTokenAndFixPos(x_1, x_2, x_4, x_5); return x_14; @@ -10325,7 +10308,6 @@ if (x_21 == 0) { lean_object* x_22; lean_dec(x_18); -lean_dec(x_7); x_22 = l_Lean_Parser_mkIdResult(x_1, x_2, x_20, x_4, x_17); return x_22; } @@ -10334,7 +10316,6 @@ else lean_object* x_23; x_23 = l_Lean_Parser_ParserState_next(x_17, x_7, x_18); lean_dec(x_18); -lean_dec(x_7); x_3 = x_20; x_5 = x_23; goto _start; @@ -10343,7 +10324,7 @@ goto _start; } 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_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_34; x_25 = lean_string_utf8_next(x_7, x_8); lean_dec(x_8); lean_inc(x_25); @@ -10356,63 +10337,68 @@ x_30 = l_Lean_Parser_identFnAux_parse___closed__3; x_31 = l_Lean_Parser_satisfyFn(x_27, x_30, x_4, x_28); x_32 = lean_ctor_get(x_31, 3); lean_inc(x_32); -if (lean_obj_tag(x_32) == 0) -{ -lean_object* x_33; lean_object* x_34; uint8_t x_35; -x_33 = lean_string_utf8_extract(x_7, x_25, x_29); -lean_dec(x_29); -lean_dec(x_25); -x_34 = lean_name_mk_string(x_3, x_33); -x_35 = l_Lean_Parser_isIdCont(x_7, x_31); -if (x_35 == 0) -{ -lean_object* x_36; -lean_dec(x_7); -x_36 = l_Lean_Parser_mkIdResult(x_1, x_2, x_34, x_4, x_31); -return x_36; -} -else -{ -lean_object* x_37; lean_object* x_38; -x_37 = lean_ctor_get(x_31, 1); -lean_inc(x_37); -x_38 = l_Lean_Parser_ParserState_next(x_31, x_7, x_37); -lean_dec(x_37); -lean_dec(x_7); -x_3 = x_34; -x_5 = x_38; -goto _start; -} -} -else -{ +x_33 = lean_box(0); +x_34 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_32, x_33); lean_dec(x_32); +if (x_34 == 0) +{ lean_dec(x_29); lean_dec(x_25); -lean_dec(x_7); -lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); return x_31; } +else +{ +lean_object* x_35; lean_object* x_36; uint8_t x_37; +x_35 = lean_string_utf8_extract(x_7, x_25, x_29); +lean_dec(x_29); +lean_dec(x_25); +x_36 = lean_name_mk_string(x_3, x_35); +x_37 = l_Lean_Parser_isIdCont(x_7, x_31); +if (x_37 == 0) +{ +lean_object* x_38; +x_38 = l_Lean_Parser_mkIdResult(x_1, x_2, x_36, x_4, x_31); +return x_38; +} +else +{ +lean_object* x_39; lean_object* x_40; +x_39 = lean_ctor_get(x_31, 1); +lean_inc(x_39); +x_40 = l_Lean_Parser_ParserState_next(x_31, x_7, x_39); +lean_dec(x_39); +x_3 = x_36; +x_5 = x_40; +goto _start; +} +} } } else { -lean_object* x_40; lean_object* x_41; +lean_object* x_42; lean_object* x_43; lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_40 = l_Lean_Parser_ParserState_mkEOIError___closed__1; -x_41 = l_Lean_Parser_ParserState_mkUnexpectedError(x_5, x_40); -return x_41; +x_42 = l_Lean_Parser_ParserState_mkEOIError___closed__1; +x_43 = l_Lean_Parser_ParserState_mkUnexpectedError(x_5, x_42); +return x_43; } } } +lean_object* l_Lean_Parser_identFnAux_parse___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_Parser_identFnAux_parse(x_1, x_2, x_3, x_4, x_5); +lean_dec(x_4); +return x_6; +} +} lean_object* l_Lean_Parser_identFnAux(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { @@ -10421,6 +10407,15 @@ x_6 = l_Lean_Parser_identFnAux_parse(x_1, x_2, x_3, x_4, x_5); return x_6; } } +lean_object* l_Lean_Parser_identFnAux___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_Parser_identFnAux(x_1, x_2, x_3, x_4, x_5); +lean_dec(x_4); +return x_6; +} +} uint8_t l___private_Lean_Parser_Basic_0__Lean_Parser_isIdFirstOrBeginEscape(uint32_t x_1) { _start: { @@ -10499,73 +10494,79 @@ return x_1; lean_object* l___private_Lean_Parser_Basic_0__Lean_Parser_nameLitAux(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_4; 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; x_4 = lean_ctor_get(x_2, 0); -lean_inc(x_4); x_5 = lean_ctor_get(x_4, 0); -lean_inc(x_5); -lean_dec(x_4); x_6 = lean_box(0); x_7 = l_Lean_Parser_ParserState_next(x_3, x_5, x_1); -lean_dec(x_5); x_8 = lean_box(0); lean_inc(x_1); x_9 = l_Lean_Parser_identFnAux_parse(x_1, x_6, x_8, x_2, x_7); x_10 = lean_ctor_get(x_9, 3); lean_inc(x_10); -if (lean_obj_tag(x_10) == 0) -{ -lean_object* x_11; lean_object* x_12; -lean_dec(x_1); -x_11 = lean_ctor_get(x_9, 0); -lean_inc(x_11); -x_12 = l_Array_back___at_Lean_Syntax_Traverser_up___spec__2(x_11); -lean_dec(x_11); -if (lean_obj_tag(x_12) == 3) -{ -lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; -x_13 = lean_ctor_get(x_12, 1); -lean_inc(x_13); -x_14 = l_Lean_Parser_ParserState_popSyntax(x_9); -x_15 = lean_ctor_get(x_13, 0); -lean_inc(x_15); -x_16 = lean_ctor_get(x_13, 1); -lean_inc(x_16); -x_17 = lean_ctor_get(x_13, 2); -lean_inc(x_17); -lean_dec(x_13); -x_18 = lean_string_utf8_extract(x_15, x_16, x_17); -lean_dec(x_17); -lean_dec(x_16); -lean_dec(x_15); -x_19 = l_Lean_mkAtomFrom(x_12, x_18); -lean_dec(x_12); -x_20 = l_Lean_mkOptionalNode___closed__2; -x_21 = lean_array_push(x_20, x_19); -x_22 = l_Lean_nameLitKind; -x_23 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_23, 0, x_22); -lean_ctor_set(x_23, 1, x_21); -x_24 = l_Lean_Parser_ParserState_pushSyntax(x_14, x_23); -return x_24; -} -else -{ -lean_object* x_25; lean_object* x_26; -lean_dec(x_12); -x_25 = l___private_Lean_Parser_Basic_0__Lean_Parser_nameLitAux___closed__1; -x_26 = l_Lean_Parser_ParserState_mkError(x_9, x_25); -return x_26; -} -} -else -{ -lean_object* x_27; lean_object* x_28; +x_11 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_10, x_6); lean_dec(x_10); -x_27 = l___private_Lean_Parser_Basic_0__Lean_Parser_nameLitAux___closed__1; -x_28 = l_Lean_Parser_ParserState_mkErrorAt(x_9, x_27, x_1); -return x_28; +if (x_11 == 0) +{ +lean_object* x_12; lean_object* x_13; +x_12 = l___private_Lean_Parser_Basic_0__Lean_Parser_nameLitAux___closed__1; +x_13 = l_Lean_Parser_ParserState_mkErrorAt(x_9, x_12, x_1); +return x_13; } +else +{ +lean_object* x_14; lean_object* x_15; +lean_dec(x_1); +x_14 = lean_ctor_get(x_9, 0); +lean_inc(x_14); +x_15 = l_Array_back___at_Lean_Syntax_Traverser_up___spec__2(x_14); +lean_dec(x_14); +if (lean_obj_tag(x_15) == 3) +{ +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_16 = lean_ctor_get(x_15, 1); +lean_inc(x_16); +x_17 = l_Lean_Parser_ParserState_popSyntax(x_9); +x_18 = lean_ctor_get(x_16, 0); +lean_inc(x_18); +x_19 = lean_ctor_get(x_16, 1); +lean_inc(x_19); +x_20 = lean_ctor_get(x_16, 2); +lean_inc(x_20); +lean_dec(x_16); +x_21 = lean_string_utf8_extract(x_18, x_19, x_20); +lean_dec(x_20); +lean_dec(x_19); +lean_dec(x_18); +x_22 = l_Lean_mkAtomFrom(x_15, x_21); +lean_dec(x_15); +x_23 = l_Lean_mkOptionalNode___closed__2; +x_24 = lean_array_push(x_23, x_22); +x_25 = l_Lean_nameLitKind; +x_26 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_26, 0, x_25); +lean_ctor_set(x_26, 1, x_24); +x_27 = l_Lean_Parser_ParserState_pushSyntax(x_17, x_26); +return x_27; +} +else +{ +lean_object* x_28; lean_object* x_29; +lean_dec(x_15); +x_28 = l___private_Lean_Parser_Basic_0__Lean_Parser_nameLitAux___closed__1; +x_29 = l_Lean_Parser_ParserState_mkError(x_9, x_28); +return x_29; +} +} +} +} +lean_object* l___private_Lean_Parser_Basic_0__Lean_Parser_nameLitAux___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; +x_4 = l___private_Lean_Parser_Basic_0__Lean_Parser_nameLitAux(x_1, x_2, x_3); +lean_dec(x_2); +return x_4; } } lean_object* l___private_Lean_Parser_Basic_0__Lean_Parser_tokenFnAux_match__1___rarg(lean_object* x_1, lean_object* x_2) { @@ -10630,6 +10631,7 @@ lean_inc(x_16); lean_dec(x_15); x_17 = lean_box(0); x_18 = l_Lean_Parser_identFnAux_parse(x_5, x_16, x_17, x_1, x_2); +lean_dec(x_1); return x_18; } else @@ -10650,6 +10652,7 @@ lean_inc(x_23); lean_dec(x_22); x_24 = lean_box(0); x_25 = l_Lean_Parser_identFnAux_parse(x_5, x_23, x_24, x_1, x_2); +lean_dec(x_1); return x_25; } else @@ -10657,6 +10660,7 @@ else lean_object* x_26; lean_dec(x_4); x_26 = l___private_Lean_Parser_Basic_0__Lean_Parser_nameLitAux(x_5, x_1, x_2); +lean_dec(x_1); return x_26; } } @@ -10867,7 +10871,7 @@ return x_17; lean_object* l_Lean_Parser_peekTokenAux(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_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; x_3 = lean_ctor_get(x_2, 0); lean_inc(x_3); x_4 = lean_array_get_size(x_3); @@ -10877,33 +10881,34 @@ lean_inc(x_5); x_6 = l_Lean_Parser_tokenFn(x_1, x_2); x_7 = lean_ctor_get(x_6, 3); lean_inc(x_7); -if (lean_obj_tag(x_7) == 0) +x_8 = lean_box(0); +x_9 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_7, x_8); +lean_dec(x_7); +if (x_9 == 0) { -lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; -x_8 = lean_ctor_get(x_6, 0); -lean_inc(x_8); -x_9 = l_Array_back___at_Lean_Syntax_Traverser_up___spec__2(x_8); -lean_dec(x_8); +lean_object* x_10; lean_object* x_11; x_10 = l_Lean_Parser_ParserState_restore(x_6, x_4, x_5); lean_dec(x_4); -x_11 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_11, 0, x_9); -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; +x_11 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_11, 0, x_10); +lean_ctor_set(x_11, 1, x_8); +return x_11; } else { -lean_object* x_13; lean_object* x_14; lean_object* x_15; -lean_dec(x_7); -x_13 = l_Lean_Parser_ParserState_restore(x_6, x_4, x_5); +lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; +x_12 = lean_ctor_get(x_6, 0); +lean_inc(x_12); +x_13 = l_Array_back___at_Lean_Syntax_Traverser_up___spec__2(x_12); +lean_dec(x_12); +x_14 = l_Lean_Parser_ParserState_restore(x_6, x_4, x_5); lean_dec(x_4); -x_14 = lean_box(0); -x_15 = lean_alloc_ctor(0, 2, 0); +x_15 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_15, 0, x_13); -lean_ctor_set(x_15, 1, x_14); -return x_15; +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; } } } @@ -10948,14 +10953,10 @@ _start: { lean_object* x_3; lean_object* x_4; lean_object* x_5; uint8_t x_6; x_3 = lean_ctor_get(x_1, 0); -lean_inc(x_3); x_4 = lean_ctor_get(x_3, 0); -lean_inc(x_4); -lean_dec(x_3); x_5 = lean_ctor_get(x_2, 1); lean_inc(x_5); x_6 = lean_string_utf8_at_end(x_4, x_5); -lean_dec(x_4); if (x_6 == 0) { lean_object* x_7; lean_object* x_8; lean_object* x_9; @@ -10968,13 +10969,21 @@ else { lean_object* x_10; lean_object* x_11; lean_dec(x_5); -lean_dec(x_1); x_10 = l_Lean_Parser_ParserState_mkEOIError___closed__1; x_11 = l_Lean_Parser_ParserState_mkUnexpectedError(x_2, x_10); return x_11; } } } +lean_object* l_Lean_Parser_rawIdentFn___boxed(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; +x_3 = l_Lean_Parser_rawIdentFn(x_1, x_2); +lean_dec(x_1); +return x_3; +} +} lean_object* l_Lean_Parser_satisfySymbolFn_match__1___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { @@ -11010,33 +11019,43 @@ return x_2; lean_object* l_Lean_Parser_satisfySymbolFn(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_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; uint8_t x_9; x_5 = lean_ctor_get(x_4, 1); lean_inc(x_5); x_6 = l_Lean_Parser_tokenFn(x_3, x_4); x_7 = lean_ctor_get(x_6, 3); lean_inc(x_7); -if (lean_obj_tag(x_7) == 0) +x_8 = lean_box(0); +x_9 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_7, x_8); +lean_dec(x_7); +if (x_9 == 0) { -lean_object* x_8; lean_object* x_9; -x_8 = lean_ctor_get(x_6, 0); -lean_inc(x_8); -x_9 = l_Array_back___at_Lean_Syntax_Traverser_up___spec__2(x_8); -lean_dec(x_8); -if (lean_obj_tag(x_9) == 2) +lean_object* x_10; +lean_dec(x_1); +x_10 = l_Lean_Parser_ParserState_mkErrorsAt(x_6, x_2, x_5); +return x_10; +} +else { -lean_object* x_10; lean_object* x_11; uint8_t x_12; -x_10 = lean_ctor_get(x_9, 1); -lean_inc(x_10); -lean_dec(x_9); -x_11 = lean_apply_1(x_1, x_10); -x_12 = lean_unbox(x_11); +lean_object* x_11; lean_object* x_12; +x_11 = lean_ctor_get(x_6, 0); +lean_inc(x_11); +x_12 = l_Array_back___at_Lean_Syntax_Traverser_up___spec__2(x_11); lean_dec(x_11); -if (x_12 == 0) +if (lean_obj_tag(x_12) == 2) { -lean_object* x_13; -x_13 = l_Lean_Parser_ParserState_mkErrorsAt(x_6, x_2, x_5); -return x_13; +lean_object* x_13; lean_object* x_14; uint8_t x_15; +x_13 = lean_ctor_get(x_12, 1); +lean_inc(x_13); +lean_dec(x_12); +x_14 = lean_apply_1(x_1, x_13); +x_15 = lean_unbox(x_14); +lean_dec(x_14); +if (x_15 == 0) +{ +lean_object* x_16; +x_16 = l_Lean_Parser_ParserState_mkErrorsAt(x_6, x_2, x_5); +return x_16; } else { @@ -11047,27 +11066,19 @@ return x_6; } else { -lean_object* x_14; -lean_dec(x_9); +lean_object* x_17; +lean_dec(x_12); lean_dec(x_1); -x_14 = l_Lean_Parser_ParserState_mkErrorsAt(x_6, x_2, x_5); -return x_14; +x_17 = l_Lean_Parser_ParserState_mkErrorsAt(x_6, x_2, x_5); +return x_17; } } -else -{ -lean_object* x_15; -lean_dec(x_7); -lean_dec(x_1); -x_15 = l_Lean_Parser_ParserState_mkErrorsAt(x_6, x_2, x_5); -return x_15; -} } } lean_object* l_Lean_Parser_symbolFnAux(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_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; x_5 = lean_box(0); x_6 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_6, 0, x_2); @@ -11077,26 +11088,35 @@ lean_inc(x_7); x_8 = l_Lean_Parser_tokenFn(x_3, x_4); x_9 = lean_ctor_get(x_8, 3); lean_inc(x_9); -if (lean_obj_tag(x_9) == 0) +x_10 = lean_box(0); +x_11 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_9, x_10); +lean_dec(x_9); +if (x_11 == 0) { -lean_object* x_10; lean_object* x_11; -x_10 = lean_ctor_get(x_8, 0); -lean_inc(x_10); -x_11 = l_Array_back___at_Lean_Syntax_Traverser_up___spec__2(x_10); -lean_dec(x_10); -if (lean_obj_tag(x_11) == 2) +lean_object* x_12; +x_12 = l_Lean_Parser_ParserState_mkErrorsAt(x_8, x_6, x_7); +return x_12; +} +else { -lean_object* x_12; uint8_t x_13; -x_12 = lean_ctor_get(x_11, 1); -lean_inc(x_12); -lean_dec(x_11); -x_13 = lean_string_dec_eq(x_12, x_1); -lean_dec(x_12); -if (x_13 == 0) +lean_object* x_13; lean_object* x_14; +x_13 = lean_ctor_get(x_8, 0); +lean_inc(x_13); +x_14 = l_Array_back___at_Lean_Syntax_Traverser_up___spec__2(x_13); +lean_dec(x_13); +if (lean_obj_tag(x_14) == 2) { -lean_object* x_14; -x_14 = l_Lean_Parser_ParserState_mkErrorsAt(x_8, x_6, x_7); -return x_14; +lean_object* x_15; uint8_t x_16; +x_15 = lean_ctor_get(x_14, 1); +lean_inc(x_15); +lean_dec(x_14); +x_16 = lean_string_dec_eq(x_15, x_1); +lean_dec(x_15); +if (x_16 == 0) +{ +lean_object* x_17; +x_17 = l_Lean_Parser_ParserState_mkErrorsAt(x_8, x_6, x_7); +return x_17; } else { @@ -11107,19 +11127,12 @@ return x_8; } else { -lean_object* x_15; -lean_dec(x_11); -x_15 = l_Lean_Parser_ParserState_mkErrorsAt(x_8, x_6, x_7); -return x_15; +lean_object* x_18; +lean_dec(x_14); +x_18 = l_Lean_Parser_ParserState_mkErrorsAt(x_8, x_6, x_7); +return x_18; } } -else -{ -lean_object* x_16; -lean_dec(x_9); -x_16 = l_Lean_Parser_ParserState_mkErrorsAt(x_8, x_6, x_7); -return x_16; -} } } lean_object* l_Lean_Parser_symbolFnAux___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { @@ -11286,34 +11299,44 @@ return x_2; lean_object* l_Lean_Parser_nonReservedSymbolFnAux(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_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; uint8_t x_9; x_5 = lean_ctor_get(x_4, 1); lean_inc(x_5); x_6 = l_Lean_Parser_tokenFn(x_3, x_4); x_7 = lean_ctor_get(x_6, 3); lean_inc(x_7); -if (lean_obj_tag(x_7) == 0) +x_8 = lean_box(0); +x_9 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_7, x_8); +lean_dec(x_7); +if (x_9 == 0) { -lean_object* x_8; lean_object* x_9; -x_8 = lean_ctor_get(x_6, 0); -lean_inc(x_8); -x_9 = l_Array_back___at_Lean_Syntax_Traverser_up___spec__2(x_8); -lean_dec(x_8); -switch (lean_obj_tag(x_9)) { +lean_object* x_10; +lean_dec(x_1); +x_10 = l_Lean_Parser_ParserState_mkErrorAt(x_6, x_2, x_5); +return x_10; +} +else +{ +lean_object* x_11; lean_object* x_12; +x_11 = lean_ctor_get(x_6, 0); +lean_inc(x_11); +x_12 = l_Array_back___at_Lean_Syntax_Traverser_up___spec__2(x_11); +lean_dec(x_11); +switch (lean_obj_tag(x_12)) { case 2: { -lean_object* x_10; uint8_t x_11; -x_10 = lean_ctor_get(x_9, 1); -lean_inc(x_10); -lean_dec(x_9); -x_11 = lean_string_dec_eq(x_1, x_10); -lean_dec(x_10); +lean_object* x_13; uint8_t x_14; +x_13 = lean_ctor_get(x_12, 1); +lean_inc(x_13); +lean_dec(x_12); +x_14 = lean_string_dec_eq(x_1, x_13); +lean_dec(x_13); lean_dec(x_1); -if (x_11 == 0) +if (x_14 == 0) { -lean_object* x_12; -x_12 = l_Lean_Parser_ParserState_mkErrorAt(x_6, x_2, x_5); -return x_12; +lean_object* x_15; +x_15 = l_Lean_Parser_ParserState_mkErrorAt(x_6, x_2, x_5); +return x_15; } else { @@ -11324,64 +11347,56 @@ return x_6; } case 3: { -lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; uint8_t x_19; -x_13 = lean_ctor_get(x_9, 1); -lean_inc(x_13); -x_14 = lean_ctor_get(x_9, 0); -lean_inc(x_14); -lean_dec(x_9); -x_15 = lean_ctor_get(x_13, 0); -lean_inc(x_15); -x_16 = lean_ctor_get(x_13, 1); +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; +x_16 = lean_ctor_get(x_12, 1); lean_inc(x_16); -x_17 = lean_ctor_get(x_13, 2); +x_17 = lean_ctor_get(x_12, 0); lean_inc(x_17); -lean_dec(x_13); -x_18 = lean_string_utf8_extract(x_15, x_16, x_17); -lean_dec(x_17); +lean_dec(x_12); +x_18 = lean_ctor_get(x_16, 0); +lean_inc(x_18); +x_19 = lean_ctor_get(x_16, 1); +lean_inc(x_19); +x_20 = lean_ctor_get(x_16, 2); +lean_inc(x_20); lean_dec(x_16); -lean_dec(x_15); -x_19 = lean_string_dec_eq(x_1, x_18); +x_21 = lean_string_utf8_extract(x_18, x_19, x_20); +lean_dec(x_20); +lean_dec(x_19); lean_dec(x_18); -if (x_19 == 0) +x_22 = lean_string_dec_eq(x_1, x_21); +lean_dec(x_21); +if (x_22 == 0) { -lean_object* x_20; -lean_dec(x_14); +lean_object* x_23; +lean_dec(x_17); lean_dec(x_1); -x_20 = l_Lean_Parser_ParserState_mkErrorAt(x_6, x_2, x_5); -return x_20; +x_23 = l_Lean_Parser_ParserState_mkErrorAt(x_6, x_2, x_5); +return x_23; } 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_5); lean_dec(x_2); -x_21 = l_Lean_Parser_ParserState_popSyntax(x_6); -x_22 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_22, 0, x_14); -lean_ctor_set(x_22, 1, x_1); -x_23 = l_Lean_Parser_ParserState_pushSyntax(x_21, x_22); -return x_23; +x_24 = l_Lean_Parser_ParserState_popSyntax(x_6); +x_25 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_25, 0, x_17); +lean_ctor_set(x_25, 1, x_1); +x_26 = l_Lean_Parser_ParserState_pushSyntax(x_24, x_25); +return x_26; } } default: { -lean_object* x_24; -lean_dec(x_9); +lean_object* x_27; +lean_dec(x_12); lean_dec(x_1); -x_24 = l_Lean_Parser_ParserState_mkErrorAt(x_6, x_2, x_5); -return x_24; +x_27 = l_Lean_Parser_ParserState_mkErrorAt(x_6, x_2, x_5); +return x_27; } } } -else -{ -lean_object* x_25; -lean_dec(x_7); -lean_dec(x_1); -x_25 = l_Lean_Parser_ParserState_mkErrorAt(x_6, x_2, x_5); -return x_25; -} } } lean_object* l_Lean_Parser_nonReservedSymbolFn(lean_object* x_1, lean_object* x_2, lean_object* x_3) { @@ -12065,66 +12080,68 @@ return x_4; lean_object* l_Lean_Parser_unicodeSymbolFnAux(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_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; uint8_t x_10; x_6 = lean_ctor_get(x_5, 1); lean_inc(x_6); x_7 = l_Lean_Parser_tokenFn(x_4, x_5); x_8 = lean_ctor_get(x_7, 3); lean_inc(x_8); -if (lean_obj_tag(x_8) == 0) -{ -lean_object* x_9; lean_object* x_10; -x_9 = lean_ctor_get(x_7, 0); -lean_inc(x_9); -x_10 = l_Array_back___at_Lean_Syntax_Traverser_up___spec__2(x_9); -lean_dec(x_9); -if (lean_obj_tag(x_10) == 2) -{ -lean_object* x_11; uint8_t x_12; -x_11 = lean_ctor_get(x_10, 1); -lean_inc(x_11); -lean_dec(x_10); -x_12 = lean_string_dec_eq(x_11, x_1); -if (x_12 == 0) -{ -uint8_t x_13; -x_13 = lean_string_dec_eq(x_11, x_2); -lean_dec(x_11); -if (x_13 == 0) -{ -lean_object* x_14; -x_14 = l_Lean_Parser_ParserState_mkErrorsAt(x_7, x_3, x_6); -return x_14; -} -else -{ -lean_dec(x_6); -lean_dec(x_3); -return x_7; -} -} -else -{ -lean_dec(x_11); -lean_dec(x_6); -lean_dec(x_3); -return x_7; -} -} -else -{ -lean_object* x_15; -lean_dec(x_10); -x_15 = l_Lean_Parser_ParserState_mkErrorsAt(x_7, x_3, x_6); -return x_15; -} -} -else -{ -lean_object* x_16; +x_9 = lean_box(0); +x_10 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_8, x_9); lean_dec(x_8); -x_16 = l_Lean_Parser_ParserState_mkErrorsAt(x_7, x_3, x_6); -return x_16; +if (x_10 == 0) +{ +lean_object* x_11; +x_11 = l_Lean_Parser_ParserState_mkErrorsAt(x_7, x_3, x_6); +return x_11; +} +else +{ +lean_object* x_12; lean_object* x_13; +x_12 = lean_ctor_get(x_7, 0); +lean_inc(x_12); +x_13 = l_Array_back___at_Lean_Syntax_Traverser_up___spec__2(x_12); +lean_dec(x_12); +if (lean_obj_tag(x_13) == 2) +{ +lean_object* x_14; uint8_t x_15; +x_14 = lean_ctor_get(x_13, 1); +lean_inc(x_14); +lean_dec(x_13); +x_15 = lean_string_dec_eq(x_14, x_1); +if (x_15 == 0) +{ +uint8_t x_16; +x_16 = lean_string_dec_eq(x_14, x_2); +lean_dec(x_14); +if (x_16 == 0) +{ +lean_object* x_17; +x_17 = l_Lean_Parser_ParserState_mkErrorsAt(x_7, x_3, x_6); +return x_17; +} +else +{ +lean_dec(x_6); +lean_dec(x_3); +return x_7; +} +} +else +{ +lean_dec(x_14); +lean_dec(x_6); +lean_dec(x_3); +return x_7; +} +} +else +{ +lean_object* x_18; +lean_dec(x_13); +x_18 = l_Lean_Parser_ParserState_mkErrorsAt(x_7, x_3, x_6); +return x_18; +} } } } @@ -12335,27 +12352,37 @@ return x_2; lean_object* l_Lean_Parser_numLitFn(lean_object* x_1, lean_object* x_2) { _start: { -lean_object* x_3; lean_object* x_4; lean_object* x_5; +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_2, 1); lean_inc(x_3); x_4 = l_Lean_Parser_tokenFn(x_1, x_2); x_5 = lean_ctor_get(x_4, 3); lean_inc(x_5); -if (lean_obj_tag(x_5) == 0) +x_6 = lean_box(0); +x_7 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_5, x_6); +lean_dec(x_5); +if (x_7 == 0) { -lean_object* x_6; lean_object* x_7; lean_object* x_8; uint8_t x_9; -x_6 = lean_ctor_get(x_4, 0); -lean_inc(x_6); -x_7 = l_Array_back___at_Lean_Syntax_Traverser_up___spec__2(x_6); -lean_dec(x_6); -x_8 = l_Lean_numLitKind; -x_9 = l_Lean_Syntax_isOfKind(x_7, x_8); -if (x_9 == 0) +lean_object* x_8; lean_object* x_9; +x_8 = l_Lean_Parser_numberFnAux___closed__1; +x_9 = l_Lean_Parser_ParserState_mkErrorAt(x_4, x_8, x_3); +return x_9; +} +else { -lean_object* x_10; lean_object* x_11; -x_10 = l_Lean_Parser_numberFnAux___closed__1; -x_11 = l_Lean_Parser_ParserState_mkErrorAt(x_4, x_10, x_3); -return x_11; +lean_object* x_10; lean_object* x_11; lean_object* x_12; uint8_t x_13; +x_10 = lean_ctor_get(x_4, 0); +lean_inc(x_10); +x_11 = l_Array_back___at_Lean_Syntax_Traverser_up___spec__2(x_10); +lean_dec(x_10); +x_12 = l_Lean_numLitKind; +x_13 = l_Lean_Syntax_isOfKind(x_11, x_12); +if (x_13 == 0) +{ +lean_object* x_14; lean_object* x_15; +x_14 = l_Lean_Parser_numberFnAux___closed__1; +x_15 = l_Lean_Parser_ParserState_mkErrorAt(x_4, x_14, x_3); +return x_15; } else { @@ -12363,14 +12390,6 @@ lean_dec(x_3); return x_4; } } -else -{ -lean_object* x_12; lean_object* x_13; -lean_dec(x_5); -x_12 = l_Lean_Parser_numberFnAux___closed__1; -x_13 = l_Lean_Parser_ParserState_mkErrorAt(x_4, x_12, x_3); -return x_13; -} } } static lean_object* _init_l_Lean_Parser_numLitNoAntiquot___closed__1() { @@ -12421,27 +12440,37 @@ return x_1; lean_object* l_Lean_Parser_scientificLitFn(lean_object* x_1, lean_object* x_2) { _start: { -lean_object* x_3; lean_object* x_4; lean_object* x_5; +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_2, 1); lean_inc(x_3); x_4 = l_Lean_Parser_tokenFn(x_1, x_2); x_5 = lean_ctor_get(x_4, 3); lean_inc(x_5); -if (lean_obj_tag(x_5) == 0) +x_6 = lean_box(0); +x_7 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_5, x_6); +lean_dec(x_5); +if (x_7 == 0) { -lean_object* x_6; lean_object* x_7; lean_object* x_8; uint8_t x_9; -x_6 = lean_ctor_get(x_4, 0); -lean_inc(x_6); -x_7 = l_Array_back___at_Lean_Syntax_Traverser_up___spec__2(x_6); -lean_dec(x_6); -x_8 = l_Lean_scientificLitKind; -x_9 = l_Lean_Syntax_isOfKind(x_7, x_8); -if (x_9 == 0) +lean_object* x_8; lean_object* x_9; +x_8 = l_Lean_Parser_scientificLitFn___closed__1; +x_9 = l_Lean_Parser_ParserState_mkErrorAt(x_4, x_8, x_3); +return x_9; +} +else { -lean_object* x_10; lean_object* x_11; -x_10 = l_Lean_Parser_scientificLitFn___closed__1; -x_11 = l_Lean_Parser_ParserState_mkErrorAt(x_4, x_10, x_3); -return x_11; +lean_object* x_10; lean_object* x_11; lean_object* x_12; uint8_t x_13; +x_10 = lean_ctor_get(x_4, 0); +lean_inc(x_10); +x_11 = l_Array_back___at_Lean_Syntax_Traverser_up___spec__2(x_10); +lean_dec(x_10); +x_12 = l_Lean_scientificLitKind; +x_13 = l_Lean_Syntax_isOfKind(x_11, x_12); +if (x_13 == 0) +{ +lean_object* x_14; lean_object* x_15; +x_14 = l_Lean_Parser_scientificLitFn___closed__1; +x_15 = l_Lean_Parser_ParserState_mkErrorAt(x_4, x_14, x_3); +return x_15; } else { @@ -12449,14 +12478,6 @@ lean_dec(x_3); return x_4; } } -else -{ -lean_object* x_12; lean_object* x_13; -lean_dec(x_5); -x_12 = l_Lean_Parser_scientificLitFn___closed__1; -x_13 = l_Lean_Parser_ParserState_mkErrorAt(x_4, x_12, x_3); -return x_13; -} } } static lean_object* _init_l_Lean_Parser_scientificLitNoAntiquot___closed__1() { @@ -12507,27 +12528,37 @@ return x_1; lean_object* l_Lean_Parser_strLitFn(lean_object* x_1, lean_object* x_2) { _start: { -lean_object* x_3; lean_object* x_4; lean_object* x_5; +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_2, 1); lean_inc(x_3); x_4 = l_Lean_Parser_tokenFn(x_1, x_2); x_5 = lean_ctor_get(x_4, 3); lean_inc(x_5); -if (lean_obj_tag(x_5) == 0) +x_6 = lean_box(0); +x_7 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_5, x_6); +lean_dec(x_5); +if (x_7 == 0) { -lean_object* x_6; lean_object* x_7; lean_object* x_8; uint8_t x_9; -x_6 = lean_ctor_get(x_4, 0); -lean_inc(x_6); -x_7 = l_Array_back___at_Lean_Syntax_Traverser_up___spec__2(x_6); -lean_dec(x_6); -x_8 = l_Lean_strLitKind; -x_9 = l_Lean_Syntax_isOfKind(x_7, x_8); -if (x_9 == 0) +lean_object* x_8; lean_object* x_9; +x_8 = l_Lean_Parser_strLitFn___closed__1; +x_9 = l_Lean_Parser_ParserState_mkErrorAt(x_4, x_8, x_3); +return x_9; +} +else { -lean_object* x_10; lean_object* x_11; -x_10 = l_Lean_Parser_strLitFn___closed__1; -x_11 = l_Lean_Parser_ParserState_mkErrorAt(x_4, x_10, x_3); -return x_11; +lean_object* x_10; lean_object* x_11; lean_object* x_12; uint8_t x_13; +x_10 = lean_ctor_get(x_4, 0); +lean_inc(x_10); +x_11 = l_Array_back___at_Lean_Syntax_Traverser_up___spec__2(x_10); +lean_dec(x_10); +x_12 = l_Lean_strLitKind; +x_13 = l_Lean_Syntax_isOfKind(x_11, x_12); +if (x_13 == 0) +{ +lean_object* x_14; lean_object* x_15; +x_14 = l_Lean_Parser_strLitFn___closed__1; +x_15 = l_Lean_Parser_ParserState_mkErrorAt(x_4, x_14, x_3); +return x_15; } else { @@ -12535,14 +12566,6 @@ lean_dec(x_3); return x_4; } } -else -{ -lean_object* x_12; lean_object* x_13; -lean_dec(x_5); -x_12 = l_Lean_Parser_strLitFn___closed__1; -x_13 = l_Lean_Parser_ParserState_mkErrorAt(x_4, x_12, x_3); -return x_13; -} } } static lean_object* _init_l_Lean_Parser_strLitNoAntiquot___closed__1() { @@ -12593,27 +12616,37 @@ return x_1; lean_object* l_Lean_Parser_charLitFn(lean_object* x_1, lean_object* x_2) { _start: { -lean_object* x_3; lean_object* x_4; lean_object* x_5; +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_2, 1); lean_inc(x_3); x_4 = l_Lean_Parser_tokenFn(x_1, x_2); x_5 = lean_ctor_get(x_4, 3); lean_inc(x_5); -if (lean_obj_tag(x_5) == 0) +x_6 = lean_box(0); +x_7 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_5, x_6); +lean_dec(x_5); +if (x_7 == 0) { -lean_object* x_6; lean_object* x_7; lean_object* x_8; uint8_t x_9; -x_6 = lean_ctor_get(x_4, 0); -lean_inc(x_6); -x_7 = l_Array_back___at_Lean_Syntax_Traverser_up___spec__2(x_6); -lean_dec(x_6); -x_8 = l_Lean_charLitKind; -x_9 = l_Lean_Syntax_isOfKind(x_7, x_8); -if (x_9 == 0) +lean_object* x_8; lean_object* x_9; +x_8 = l_Lean_Parser_charLitFn___closed__1; +x_9 = l_Lean_Parser_ParserState_mkErrorAt(x_4, x_8, x_3); +return x_9; +} +else { -lean_object* x_10; lean_object* x_11; -x_10 = l_Lean_Parser_charLitFn___closed__1; -x_11 = l_Lean_Parser_ParserState_mkErrorAt(x_4, x_10, x_3); -return x_11; +lean_object* x_10; lean_object* x_11; lean_object* x_12; uint8_t x_13; +x_10 = lean_ctor_get(x_4, 0); +lean_inc(x_10); +x_11 = l_Array_back___at_Lean_Syntax_Traverser_up___spec__2(x_10); +lean_dec(x_10); +x_12 = l_Lean_charLitKind; +x_13 = l_Lean_Syntax_isOfKind(x_11, x_12); +if (x_13 == 0) +{ +lean_object* x_14; lean_object* x_15; +x_14 = l_Lean_Parser_charLitFn___closed__1; +x_15 = l_Lean_Parser_ParserState_mkErrorAt(x_4, x_14, x_3); +return x_15; } else { @@ -12621,14 +12654,6 @@ lean_dec(x_3); return x_4; } } -else -{ -lean_object* x_12; lean_object* x_13; -lean_dec(x_5); -x_12 = l_Lean_Parser_charLitFn___closed__1; -x_13 = l_Lean_Parser_ParserState_mkErrorAt(x_4, x_12, x_3); -return x_13; -} } } static lean_object* _init_l_Lean_Parser_charLitNoAntiquot___closed__1() { @@ -12679,27 +12704,37 @@ return x_1; lean_object* l_Lean_Parser_nameLitFn(lean_object* x_1, lean_object* x_2) { _start: { -lean_object* x_3; lean_object* x_4; lean_object* x_5; +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_2, 1); lean_inc(x_3); x_4 = l_Lean_Parser_tokenFn(x_1, x_2); x_5 = lean_ctor_get(x_4, 3); lean_inc(x_5); -if (lean_obj_tag(x_5) == 0) +x_6 = lean_box(0); +x_7 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_5, x_6); +lean_dec(x_5); +if (x_7 == 0) { -lean_object* x_6; lean_object* x_7; lean_object* x_8; uint8_t x_9; -x_6 = lean_ctor_get(x_4, 0); -lean_inc(x_6); -x_7 = l_Array_back___at_Lean_Syntax_Traverser_up___spec__2(x_6); -lean_dec(x_6); -x_8 = l_Lean_nameLitKind; -x_9 = l_Lean_Syntax_isOfKind(x_7, x_8); -if (x_9 == 0) +lean_object* x_8; lean_object* x_9; +x_8 = l_Lean_Parser_nameLitFn___closed__1; +x_9 = l_Lean_Parser_ParserState_mkErrorAt(x_4, x_8, x_3); +return x_9; +} +else { -lean_object* x_10; lean_object* x_11; -x_10 = l_Lean_Parser_nameLitFn___closed__1; -x_11 = l_Lean_Parser_ParserState_mkErrorAt(x_4, x_10, x_3); -return x_11; +lean_object* x_10; lean_object* x_11; lean_object* x_12; uint8_t x_13; +x_10 = lean_ctor_get(x_4, 0); +lean_inc(x_10); +x_11 = l_Array_back___at_Lean_Syntax_Traverser_up___spec__2(x_10); +lean_dec(x_10); +x_12 = l_Lean_nameLitKind; +x_13 = l_Lean_Syntax_isOfKind(x_11, x_12); +if (x_13 == 0) +{ +lean_object* x_14; lean_object* x_15; +x_14 = l_Lean_Parser_nameLitFn___closed__1; +x_15 = l_Lean_Parser_ParserState_mkErrorAt(x_4, x_14, x_3); +return x_15; } else { @@ -12707,14 +12742,6 @@ lean_dec(x_3); return x_4; } } -else -{ -lean_object* x_12; lean_object* x_13; -lean_dec(x_5); -x_12 = l_Lean_Parser_nameLitFn___closed__1; -x_13 = l_Lean_Parser_ParserState_mkErrorAt(x_4, x_12, x_3); -return x_13; -} } } static lean_object* _init_l_Lean_Parser_nameLitNoAntiquot___closed__1() { @@ -12765,27 +12792,37 @@ return x_1; lean_object* l_Lean_Parser_identFn(lean_object* x_1, lean_object* x_2) { _start: { -lean_object* x_3; lean_object* x_4; lean_object* x_5; +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_2, 1); lean_inc(x_3); x_4 = l_Lean_Parser_tokenFn(x_1, x_2); x_5 = lean_ctor_get(x_4, 3); lean_inc(x_5); -if (lean_obj_tag(x_5) == 0) +x_6 = lean_box(0); +x_7 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_5, x_6); +lean_dec(x_5); +if (x_7 == 0) { -lean_object* x_6; lean_object* x_7; uint8_t x_8; -x_6 = lean_ctor_get(x_4, 0); -lean_inc(x_6); -x_7 = l_Array_back___at_Lean_Syntax_Traverser_up___spec__2(x_6); -lean_dec(x_6); -x_8 = l_Lean_Syntax_isIdent(x_7); -lean_dec(x_7); -if (x_8 == 0) +lean_object* x_8; lean_object* x_9; +x_8 = l_Lean_Parser_identFn___closed__1; +x_9 = l_Lean_Parser_ParserState_mkErrorAt(x_4, x_8, x_3); +return x_9; +} +else { -lean_object* x_9; lean_object* x_10; -x_9 = l_Lean_Parser_identFn___closed__1; -x_10 = l_Lean_Parser_ParserState_mkErrorAt(x_4, x_9, x_3); -return x_10; +lean_object* x_10; lean_object* x_11; uint8_t x_12; +x_10 = lean_ctor_get(x_4, 0); +lean_inc(x_10); +x_11 = l_Array_back___at_Lean_Syntax_Traverser_up___spec__2(x_10); +lean_dec(x_10); +x_12 = l_Lean_Syntax_isIdent(x_11); +lean_dec(x_11); +if (x_12 == 0) +{ +lean_object* x_13; lean_object* x_14; +x_13 = l_Lean_Parser_identFn___closed__1; +x_14 = l_Lean_Parser_ParserState_mkErrorAt(x_4, x_13, x_3); +return x_14; } else { @@ -12793,14 +12830,6 @@ lean_dec(x_3); return x_4; } } -else -{ -lean_object* x_11; lean_object* x_12; -lean_dec(x_5); -x_11 = l_Lean_Parser_identFn___closed__1; -x_12 = l_Lean_Parser_ParserState_mkErrorAt(x_4, x_11, x_3); -return x_12; -} } } static lean_object* _init_l_Lean_Parser_identNoAntiquot___closed__1() { @@ -12844,7 +12873,7 @@ static lean_object* _init_l_Lean_Parser_rawIdentNoAntiquot___closed__1() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_rawIdentFn), 2, 0); +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_rawIdentFn___boxed), 2, 0); return x_1; } } @@ -12915,39 +12944,50 @@ return x_1; lean_object* l_Lean_Parser_identEqFn(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_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; uint8_t x_8; x_4 = lean_ctor_get(x_3, 1); lean_inc(x_4); x_5 = l_Lean_Parser_tokenFn(x_2, x_3); x_6 = lean_ctor_get(x_5, 3); lean_inc(x_6); -if (lean_obj_tag(x_6) == 0) +x_7 = lean_box(0); +x_8 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_6, x_7); +lean_dec(x_6); +if (x_8 == 0) { -lean_object* x_7; lean_object* x_8; -x_7 = lean_ctor_get(x_5, 0); -lean_inc(x_7); -x_8 = l_Array_back___at_Lean_Syntax_Traverser_up___spec__2(x_7); -lean_dec(x_7); -if (lean_obj_tag(x_8) == 3) +lean_object* x_9; lean_object* x_10; +lean_dec(x_1); +x_9 = l_Lean_Parser_identFn___closed__1; +x_10 = l_Lean_Parser_ParserState_mkErrorAt(x_5, x_9, x_4); +return x_10; +} +else { -lean_object* x_9; uint8_t x_10; -x_9 = lean_ctor_get(x_8, 2); -lean_inc(x_9); -lean_dec(x_8); -x_10 = lean_name_eq(x_9, x_1); -lean_dec(x_9); -if (x_10 == 0) +lean_object* x_11; lean_object* x_12; +x_11 = lean_ctor_get(x_5, 0); +lean_inc(x_11); +x_12 = l_Array_back___at_Lean_Syntax_Traverser_up___spec__2(x_11); +lean_dec(x_11); +if (lean_obj_tag(x_12) == 3) { -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 = l_Lean_Name_toString___closed__1; -x_12 = l_Lean_Name_toStringWithSep(x_11, x_1); -x_13 = l_Lean_Parser_identEqFn___closed__1; -x_14 = lean_string_append(x_13, x_12); +lean_object* x_13; uint8_t x_14; +x_13 = lean_ctor_get(x_12, 2); +lean_inc(x_13); lean_dec(x_12); -x_15 = l_instReprChar___closed__1; -x_16 = lean_string_append(x_14, x_15); -x_17 = l_Lean_Parser_ParserState_mkErrorAt(x_5, x_16, x_4); -return x_17; +x_14 = lean_name_eq(x_13, x_1); +lean_dec(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; +x_15 = l_Lean_Name_toString___closed__1; +x_16 = l_Lean_Name_toStringWithSep(x_15, x_1); +x_17 = l_Lean_Parser_identEqFn___closed__1; +x_18 = lean_string_append(x_17, x_16); +lean_dec(x_16); +x_19 = l_instReprChar___closed__1; +x_20 = lean_string_append(x_18, x_19); +x_21 = l_Lean_Parser_ParserState_mkErrorAt(x_5, x_20, x_4); +return x_21; } else { @@ -12958,23 +12998,14 @@ return x_5; } else { -lean_object* x_18; lean_object* x_19; -lean_dec(x_8); +lean_object* x_22; lean_object* x_23; +lean_dec(x_12); lean_dec(x_1); -x_18 = l_Lean_Parser_identFn___closed__1; -x_19 = l_Lean_Parser_ParserState_mkErrorAt(x_5, x_18, x_4); -return x_19; +x_22 = l_Lean_Parser_identFn___closed__1; +x_23 = l_Lean_Parser_ParserState_mkErrorAt(x_5, x_22, x_4); +return x_23; } } -else -{ -lean_object* x_20; lean_object* x_21; -lean_dec(x_6); -lean_dec(x_1); -x_20 = l_Lean_Parser_identFn___closed__1; -x_21 = l_Lean_Parser_ParserState_mkErrorAt(x_5, x_20, x_4); -return x_21; -} } } lean_object* l_Lean_Parser_identEq(lean_object* x_1) { @@ -13475,88 +13506,92 @@ x_6 = lean_array_get_size(x_5); lean_dec(x_5); if (lean_obj_tag(x_1) == 0) { -lean_object* x_7; lean_object* x_8; +lean_object* x_7; lean_object* x_8; lean_object* x_9; uint8_t x_10; x_7 = lean_apply_2(x_2, x_3, x_4); x_8 = lean_ctor_get(x_7, 3); lean_inc(x_8); -if (lean_obj_tag(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); -lean_inc(x_9); -x_10 = lean_array_get_size(x_9); -lean_dec(x_9); -x_11 = lean_unsigned_to_nat(1u); -x_12 = lean_nat_add(x_6, x_11); -lean_dec(x_6); -x_13 = lean_nat_dec_eq(x_10, x_12); -lean_dec(x_12); -lean_dec(x_10); -if (x_13 == 0) -{ -lean_object* x_14; lean_object* x_15; -x_14 = l_Lean_Parser_invalidLongestMatchParser___closed__1; -x_15 = l_Lean_Parser_ParserState_mkError(x_7, x_14); -return x_15; -} -else -{ -return x_7; -} -} -else -{ +x_9 = lean_box(0); +x_10 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_8, x_9); lean_dec(x_8); +if (x_10 == 0) +{ lean_dec(x_6); return x_7; } +else +{ +lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; uint8_t x_15; +x_11 = lean_ctor_get(x_7, 0); +lean_inc(x_11); +x_12 = lean_array_get_size(x_11); +lean_dec(x_11); +x_13 = lean_unsigned_to_nat(1u); +x_14 = lean_nat_add(x_6, x_13); +lean_dec(x_6); +x_15 = lean_nat_dec_eq(x_12, x_14); +lean_dec(x_14); +lean_dec(x_12); +if (x_15 == 0) +{ +lean_object* x_16; lean_object* x_17; +x_16 = l_Lean_Parser_invalidLongestMatchParser___closed__1; +x_17 = l_Lean_Parser_ParserState_mkError(x_7, x_16); +return x_17; } else { -lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; -x_16 = lean_ctor_get(x_1, 0); -lean_inc(x_16); +return x_7; +} +} +} +else +{ +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_1, 0); +lean_inc(x_18); lean_dec(x_1); -x_17 = l_Lean_Parser_ParserState_pushSyntax(x_4, x_16); -x_18 = lean_apply_2(x_2, x_3, x_17); -x_19 = lean_ctor_get(x_18, 3); -lean_inc(x_19); -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; -x_20 = lean_ctor_get(x_18, 0); -lean_inc(x_20); -x_21 = lean_array_get_size(x_20); -x_22 = lean_unsigned_to_nat(2u); -x_23 = lean_nat_add(x_6, x_22); -x_24 = lean_nat_dec_eq(x_21, x_23); -lean_dec(x_23); +x_19 = l_Lean_Parser_ParserState_pushSyntax(x_4, x_18); +x_20 = lean_apply_2(x_2, x_3, x_19); +x_21 = lean_ctor_get(x_20, 3); +lean_inc(x_21); +x_22 = lean_box(0); +x_23 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_21, x_22); lean_dec(x_21); -if (x_24 == 0) +if (x_23 == 0) { -lean_object* x_25; lean_object* x_26; -lean_dec(x_20); lean_dec(x_6); -x_25 = l_Lean_Parser_invalidLongestMatchParser___closed__1; -x_26 = l_Lean_Parser_ParserState_mkError(x_18, x_25); -return x_26; +return x_20; } else { -lean_object* x_27; lean_object* x_28; lean_object* x_29; -x_27 = l_Array_back___at_Lean_Syntax_Traverser_up___spec__2(x_20); -lean_dec(x_20); -x_28 = l_Lean_Parser_ParserState_shrinkStack(x_18, x_6); +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_20, 0); +lean_inc(x_24); +x_25 = lean_array_get_size(x_24); +x_26 = lean_unsigned_to_nat(2u); +x_27 = lean_nat_add(x_6, x_26); +x_28 = lean_nat_dec_eq(x_25, x_27); +lean_dec(x_27); +lean_dec(x_25); +if (x_28 == 0) +{ +lean_object* x_29; lean_object* x_30; +lean_dec(x_24); lean_dec(x_6); -x_29 = l_Lean_Parser_ParserState_pushSyntax(x_28, x_27); -return x_29; -} +x_29 = l_Lean_Parser_invalidLongestMatchParser___closed__1; +x_30 = l_Lean_Parser_ParserState_mkError(x_20, x_29); +return x_30; } else { -lean_dec(x_19); +lean_object* x_31; lean_object* x_32; lean_object* x_33; +x_31 = l_Array_back___at_Lean_Syntax_Traverser_up___spec__2(x_24); +lean_dec(x_24); +x_32 = l_Lean_Parser_ParserState_shrinkStack(x_20, x_6); lean_dec(x_6); -return x_18; +x_33 = l_Lean_Parser_ParserState_pushSyntax(x_32, x_31); +return x_33; +} } } } @@ -13946,40 +13981,42 @@ return x_9; lean_object* l_Lean_Parser_longestMatchMkResult(lean_object* x_1, lean_object* x_2) { _start: { -lean_object* x_3; +lean_object* x_3; lean_object* x_4; uint8_t x_5; x_3 = lean_ctor_get(x_2, 3); lean_inc(x_3); -if (lean_obj_tag(x_3) == 0) -{ -lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; uint8_t x_8; -x_4 = lean_unsigned_to_nat(1u); -x_5 = lean_nat_add(x_1, x_4); -x_6 = lean_ctor_get(x_2, 0); -lean_inc(x_6); -x_7 = lean_array_get_size(x_6); -lean_dec(x_6); -x_8 = lean_nat_dec_lt(x_5, x_7); -lean_dec(x_7); -lean_dec(x_5); -if (x_8 == 0) -{ -lean_dec(x_1); -return x_2; -} -else -{ -lean_object* x_9; lean_object* x_10; -x_9 = l_Lean_choiceKind; -x_10 = l_Lean_Parser_ParserState_mkNode(x_2, x_9, x_1); -return x_10; -} -} -else -{ +x_4 = lean_box(0); +x_5 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_3, x_4); lean_dec(x_3); +if (x_5 == 0) +{ lean_dec(x_1); return x_2; } +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_add(x_1, x_6); +x_8 = lean_ctor_get(x_2, 0); +lean_inc(x_8); +x_9 = lean_array_get_size(x_8); +lean_dec(x_8); +x_10 = lean_nat_dec_lt(x_7, x_9); +lean_dec(x_9); +lean_dec(x_7); +if (x_10 == 0) +{ +lean_dec(x_1); +return x_2; +} +else +{ +lean_object* x_11; lean_object* x_12; +x_11 = l_Lean_choiceKind; +x_12 = l_Lean_Parser_ParserState_mkNode(x_2, x_11, x_1); +return x_12; +} +} } } lean_object* l_Lean_Parser_longestMatchFnAux_parse_match__1___rarg(lean_object* x_1, lean_object* x_2) { @@ -14180,7 +14217,7 @@ 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_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_2, 0); lean_inc(x_12); lean_dec(x_2); @@ -14200,19 +14237,12 @@ lean_inc(x_1); x_18 = l_Lean_Parser_runLongestMatchParser(x_1, x_17, x_3, x_4); x_19 = lean_ctor_get(x_18, 3); lean_inc(x_19); -if (lean_obj_tag(x_19) == 0) -{ -lean_object* x_20; lean_object* x_21; -x_20 = lean_ctor_get(x_12, 1); -lean_inc(x_20); -lean_dec(x_12); -x_21 = l_Lean_Parser_longestMatchFnAux_parse(x_1, x_14, x_15, x_20, x_7, x_3, x_18); -return x_21; -} -else +x_20 = lean_box(0); +x_21 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_19, x_20); +lean_dec(x_19); +if (x_21 == 0) { lean_object* x_22; lean_object* x_23; lean_object* x_24; -lean_dec(x_19); x_22 = l_Lean_Parser_ParserState_shrinkStack(x_18, x_14); x_23 = lean_ctor_get(x_12, 1); lean_inc(x_23); @@ -14220,6 +14250,15 @@ lean_dec(x_12); x_24 = l_Lean_Parser_longestMatchFnAux_parse(x_1, x_14, x_15, x_23, x_7, x_3, x_22); return x_24; } +else +{ +lean_object* x_25; lean_object* x_26; +x_25 = lean_ctor_get(x_12, 1); +lean_inc(x_25); +lean_dec(x_12); +x_26 = l_Lean_Parser_longestMatchFnAux_parse(x_1, x_14, x_15, x_25, x_7, x_3, x_18); +return x_26; +} } } } @@ -27993,7 +28032,7 @@ return x_3; lean_object* l_Lean_Parser_antiquotNestedExpr___elambda__1(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; +lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; uint8_t x_10; x_3 = lean_ctor_get(x_2, 0); lean_inc(x_3); x_4 = lean_array_get_size(x_3); @@ -28004,42 +28043,45 @@ lean_inc(x_1); x_7 = l_Lean_Parser_symbolFnAux(x_5, x_6, x_1, x_2); x_8 = lean_ctor_get(x_7, 3); lean_inc(x_8); -if (lean_obj_tag(x_8) == 0) +x_9 = lean_box(0); +x_10 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_8, x_9); +lean_dec(x_8); +if (x_10 == 0) { -lean_object* x_9; lean_object* x_10; lean_object* x_11; -x_9 = l_Lean_Parser_antiquotNestedExpr___elambda__1___closed__2; -lean_inc(x_1); -x_10 = l_Lean_Parser_toggleInsideQuotFn(x_9, x_1, x_7); -x_11 = lean_ctor_get(x_10, 3); -lean_inc(x_11); -if (lean_obj_tag(x_11) == 0) -{ -lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; -x_12 = l_Lean_Parser_antiquotNestedExpr___elambda__1___closed__3; -x_13 = l_Lean_Parser_antiquotNestedExpr___elambda__1___closed__7; -x_14 = l_Lean_Parser_symbolFnAux(x_12, x_13, x_1, x_10); -x_15 = l_Lean_Syntax_mkAntiquotNode___closed__6; -x_16 = l_Lean_Parser_ParserState_mkNode(x_14, x_15, x_4); -return x_16; +lean_object* x_11; lean_object* x_12; +lean_dec(x_1); +x_11 = l_Lean_Syntax_mkAntiquotNode___closed__6; +x_12 = l_Lean_Parser_ParserState_mkNode(x_7, x_11, x_4); +return x_12; } else { +lean_object* x_13; lean_object* x_14; lean_object* x_15; uint8_t x_16; +x_13 = l_Lean_Parser_antiquotNestedExpr___elambda__1___closed__2; +lean_inc(x_1); +x_14 = l_Lean_Parser_toggleInsideQuotFn(x_13, x_1, x_7); +x_15 = lean_ctor_get(x_14, 3); +lean_inc(x_15); +x_16 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_15, x_9); +lean_dec(x_15); +if (x_16 == 0) +{ lean_object* x_17; lean_object* x_18; -lean_dec(x_11); lean_dec(x_1); x_17 = l_Lean_Syntax_mkAntiquotNode___closed__6; -x_18 = l_Lean_Parser_ParserState_mkNode(x_10, x_17, x_4); +x_18 = l_Lean_Parser_ParserState_mkNode(x_14, x_17, x_4); return x_18; } -} else { -lean_object* x_19; lean_object* x_20; -lean_dec(x_8); -lean_dec(x_1); -x_19 = l_Lean_Syntax_mkAntiquotNode___closed__6; -x_20 = l_Lean_Parser_ParserState_mkNode(x_7, x_19, x_4); -return x_20; +lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; +x_19 = l_Lean_Parser_antiquotNestedExpr___elambda__1___closed__3; +x_20 = l_Lean_Parser_antiquotNestedExpr___elambda__1___closed__7; +x_21 = l_Lean_Parser_symbolFnAux(x_19, x_20, x_1, x_14); +x_22 = l_Lean_Syntax_mkAntiquotNode___closed__6; +x_23 = l_Lean_Parser_ParserState_mkNode(x_21, x_22, x_4); +return x_23; +} } } } @@ -28185,47 +28227,51 @@ return x_1; lean_object* l_Lean_Parser_mkAntiquot___elambda__1(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_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; uint8_t x_8; x_4 = l_Lean_Parser_maxPrec; x_5 = l_Lean_Parser_checkPrecFn(x_4, x_2, x_3); x_6 = lean_ctor_get(x_5, 3); lean_inc(x_6); -if (lean_obj_tag(x_6) == 0) -{ -lean_object* x_7; -x_7 = lean_apply_2(x_1, x_2, x_5); -return x_7; -} -else -{ +x_7 = lean_box(0); +x_8 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_6, x_7); lean_dec(x_6); +if (x_8 == 0) +{ lean_dec(x_2); lean_dec(x_1); return x_5; } +else +{ +lean_object* x_9; +x_9 = lean_apply_2(x_1, x_2, x_5); +return x_9; +} } } lean_object* l_Lean_Parser_mkAntiquot___elambda__2(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_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; uint8_t x_8; x_4 = l_Lean_Parser_maxPrec; x_5 = l_Lean_Parser_checkPrecFn(x_4, x_2, x_3); x_6 = lean_ctor_get(x_5, 3); lean_inc(x_6); -if (lean_obj_tag(x_6) == 0) -{ -lean_object* x_7; -x_7 = lean_apply_2(x_1, x_2, x_5); -return x_7; -} -else -{ +x_7 = lean_box(0); +x_8 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_6, x_7); lean_dec(x_6); +if (x_8 == 0) +{ lean_dec(x_2); lean_dec(x_1); return x_5; } +else +{ +lean_object* x_9; +x_9 = lean_apply_2(x_1, x_2, x_5); +return x_9; +} } } static lean_object* _init_l_Lean_Parser_mkAntiquot___closed__1() { @@ -28758,24 +28804,26 @@ return x_4; lean_object* l_Lean_Parser_mkAntiquotSplice___elambda__1(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_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; uint8_t x_8; x_4 = l_Lean_Parser_maxPrec; x_5 = l_Lean_Parser_checkPrecFn(x_4, x_2, x_3); x_6 = lean_ctor_get(x_5, 3); lean_inc(x_6); -if (lean_obj_tag(x_6) == 0) -{ -lean_object* x_7; -x_7 = lean_apply_2(x_1, x_2, x_5); -return x_7; -} -else -{ +x_7 = lean_box(0); +x_8 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_6, x_7); lean_dec(x_6); +if (x_8 == 0) +{ lean_dec(x_2); lean_dec(x_1); return x_5; } +else +{ +lean_object* x_9; +x_9 = lean_apply_2(x_1, x_2, x_5); +return x_9; +} } } static lean_object* _init_l_Lean_Parser_mkAntiquotSplice___closed__1() { @@ -28946,7 +28994,7 @@ return x_10; lean_object* l_Lean_Parser_withAntiquotSuffixSpliceFn___lambda__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; lean_object* x_9; lean_object* x_10; lean_object* x_11; uint8_t x_12; x_6 = lean_ctor_get(x_1, 0); lean_inc(x_6); x_7 = lean_array_get_size(x_6); @@ -28956,63 +29004,67 @@ lean_inc(x_8); x_9 = lean_apply_2(x_2, x_3, x_1); x_10 = lean_ctor_get(x_9, 3); lean_inc(x_10); -if (lean_obj_tag(x_10) == 0) -{ -lean_object* x_11; lean_object* x_12; -lean_dec(x_8); -lean_dec(x_7); x_11 = lean_box(0); -x_12 = l_Lean_Parser_withAntiquotSuffixSpliceFn___lambda__1(x_4, x_9, x_11); -return x_12; -} -else +x_12 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_10, x_11); +lean_dec(x_10); +if (x_12 == 0) { lean_object* x_13; -lean_dec(x_10); x_13 = l_Lean_Parser_ParserState_restore(x_9, x_7, x_8); lean_dec(x_7); return x_13; } +else +{ +lean_object* x_14; lean_object* x_15; +lean_dec(x_8); +lean_dec(x_7); +x_14 = lean_box(0); +x_15 = l_Lean_Parser_withAntiquotSuffixSpliceFn___lambda__1(x_4, x_9, x_14); +return x_15; +} } } lean_object* l_Lean_Parser_withAntiquotSuffixSpliceFn(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_6; lean_object* x_7; lean_object* x_8; uint8_t x_9; lean_inc(x_4); x_6 = lean_apply_2(x_2, x_4, x_5); x_7 = lean_ctor_get(x_6, 3); lean_inc(x_7); -if (lean_obj_tag(x_7) == 0) -{ -lean_object* x_8; lean_object* x_9; uint8_t x_10; -x_8 = lean_ctor_get(x_6, 0); -lean_inc(x_8); -x_9 = l_Array_back___at_Lean_Syntax_Traverser_up___spec__2(x_8); -lean_dec(x_8); -x_10 = l_Lean_Syntax_isAntiquot(x_9); -lean_dec(x_9); -if (x_10 == 0) -{ -lean_dec(x_4); -lean_dec(x_3); -return x_6; -} -else -{ -lean_object* x_11; lean_object* x_12; -x_11 = lean_box(0); -x_12 = l_Lean_Parser_withAntiquotSuffixSpliceFn___lambda__2(x_6, x_3, x_4, x_1, x_11); -return x_12; -} -} -else -{ +x_8 = lean_box(0); +x_9 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_7, x_8); lean_dec(x_7); +if (x_9 == 0) +{ lean_dec(x_4); lean_dec(x_3); return x_6; } +else +{ +lean_object* x_10; lean_object* x_11; uint8_t x_12; +x_10 = lean_ctor_get(x_6, 0); +lean_inc(x_10); +x_11 = l_Array_back___at_Lean_Syntax_Traverser_up___spec__2(x_10); +lean_dec(x_10); +x_12 = l_Lean_Syntax_isAntiquot(x_11); +lean_dec(x_11); +if (x_12 == 0) +{ +lean_dec(x_4); +lean_dec(x_3); +return x_6; +} +else +{ +lean_object* x_13; lean_object* x_14; +x_13 = lean_box(0); +x_14 = l_Lean_Parser_withAntiquotSuffixSpliceFn___lambda__2(x_6, x_3, x_4, x_1, x_13); +return x_14; +} +} } } lean_object* l_Lean_Parser_withAntiquotSuffixSpliceFn___lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { @@ -30063,7 +30115,7 @@ lean_inc(x_24); lean_dec(x_14); if (lean_obj_tag(x_24) == 0) { -lean_object* x_25; lean_object* x_26; lean_object* x_27; +lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; uint8_t x_29; lean_dec(x_13); x_25 = lean_ctor_get(x_22, 0); lean_inc(x_25); @@ -30071,115 +30123,117 @@ lean_dec(x_22); x_26 = l_Lean_Parser_evalParserConstUnsafe(x_25, x_2, x_3); x_27 = lean_ctor_get(x_26, 3); lean_inc(x_27); -if (lean_obj_tag(x_27) == 0) -{ -lean_object* x_28; lean_object* x_29; lean_object* x_30; uint8_t x_31; -x_28 = lean_ctor_get(x_26, 0); -lean_inc(x_28); -x_29 = lean_array_get_size(x_28); -lean_dec(x_28); -x_30 = lean_nat_add(x_5, x_6); -lean_dec(x_5); -x_31 = lean_nat_dec_eq(x_29, x_30); -lean_dec(x_30); -lean_dec(x_29); -if (x_31 == 0) -{ -lean_object* x_32; lean_object* x_33; -x_32 = l_Lean_Parser_parserOfStackFnUnsafe___closed__3; -x_33 = l_Lean_Parser_ParserState_mkUnexpectedError(x_26, x_32); -return x_33; -} -else -{ -return x_26; -} -} -else -{ +x_28 = lean_box(0); +x_29 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_27, x_28); lean_dec(x_27); +if (x_29 == 0) +{ lean_dec(x_5); return x_26; } +else +{ +lean_object* x_30; lean_object* x_31; lean_object* x_32; uint8_t x_33; +x_30 = lean_ctor_get(x_26, 0); +lean_inc(x_30); +x_31 = lean_array_get_size(x_30); +lean_dec(x_30); +x_32 = lean_nat_add(x_5, x_6); +lean_dec(x_5); +x_33 = lean_nat_dec_eq(x_31, x_32); +lean_dec(x_32); +lean_dec(x_31); +if (x_33 == 0) +{ +lean_object* x_34; lean_object* x_35; +x_34 = l_Lean_Parser_parserOfStackFnUnsafe___closed__3; +x_35 = l_Lean_Parser_ParserState_mkUnexpectedError(x_26, x_34); +return x_35; +} +else +{ +return x_26; +} +} } 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_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_24); lean_dec(x_22); lean_dec(x_5); lean_dec(x_2); -x_34 = l_Lean_Name_toString___closed__1; -x_35 = l_Lean_Name_toStringWithSep(x_34, x_13); -x_36 = l_Lean_Parser_parserOfStackFnUnsafe___closed__4; -x_37 = lean_string_append(x_36, x_35); -lean_dec(x_35); -x_38 = l_Lean_instInhabitedParserDescr___closed__1; -x_39 = lean_string_append(x_37, x_38); -x_40 = l_Lean_Parser_ParserState_mkUnexpectedError(x_3, x_39); -return x_40; +x_36 = l_Lean_Name_toString___closed__1; +x_37 = l_Lean_Name_toStringWithSep(x_36, x_13); +x_38 = l_Lean_Parser_parserOfStackFnUnsafe___closed__4; +x_39 = lean_string_append(x_38, x_37); +lean_dec(x_37); +x_40 = l_Lean_instInhabitedParserDescr___closed__1; +x_41 = lean_string_append(x_39, x_40); +x_42 = l_Lean_Parser_ParserState_mkUnexpectedError(x_3, x_41); +return x_42; } } else { -lean_object* x_41; +lean_object* x_43; lean_dec(x_23); lean_dec(x_22); lean_dec(x_5); lean_dec(x_2); -x_41 = lean_ctor_get(x_14, 1); -lean_inc(x_41); +x_43 = lean_ctor_get(x_14, 1); +lean_inc(x_43); lean_dec(x_14); -if (lean_obj_tag(x_41) == 0) +if (lean_obj_tag(x_43) == 0) { -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 = l_Lean_Name_toString___closed__1; -x_43 = l_Lean_Name_toStringWithSep(x_42, x_13); -x_44 = l_Lean_Parser_parserOfStackFnUnsafe___closed__2; -x_45 = lean_string_append(x_44, 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_44 = l_Lean_Name_toString___closed__1; +x_45 = l_Lean_Name_toStringWithSep(x_44, x_13); +x_46 = l_Lean_Parser_parserOfStackFnUnsafe___closed__2; +x_47 = lean_string_append(x_46, x_45); +lean_dec(x_45); +x_48 = l_Lean_instInhabitedParserDescr___closed__1; +x_49 = lean_string_append(x_47, x_48); +x_50 = l_Lean_Parser_ParserState_mkUnexpectedError(x_3, x_49); +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_dec(x_43); -x_46 = l_Lean_instInhabitedParserDescr___closed__1; -x_47 = lean_string_append(x_45, x_46); -x_48 = l_Lean_Parser_ParserState_mkUnexpectedError(x_3, x_47); -return x_48; -} -else -{ -lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; -lean_dec(x_41); -x_49 = l_Lean_Name_toString___closed__1; -x_50 = l_Lean_Name_toStringWithSep(x_49, x_13); -x_51 = l_Lean_Parser_parserOfStackFnUnsafe___closed__4; -x_52 = lean_string_append(x_51, x_50); -lean_dec(x_50); -x_53 = l_Lean_instInhabitedParserDescr___closed__1; -x_54 = lean_string_append(x_52, x_53); -x_55 = l_Lean_Parser_ParserState_mkUnexpectedError(x_3, x_54); -return x_55; -} -} -} -} -else -{ -lean_object* x_56; lean_object* x_57; -lean_dec(x_12); -lean_dec(x_5); -lean_dec(x_2); -x_56 = l_Lean_Parser_parserOfStackFnUnsafe___closed__1; +x_51 = l_Lean_Name_toString___closed__1; +x_52 = l_Lean_Name_toStringWithSep(x_51, x_13); +x_53 = l_Lean_Parser_parserOfStackFnUnsafe___closed__4; +x_54 = lean_string_append(x_53, x_52); +lean_dec(x_52); +x_55 = l_Lean_instInhabitedParserDescr___closed__1; +x_56 = lean_string_append(x_54, x_55); x_57 = l_Lean_Parser_ParserState_mkUnexpectedError(x_3, x_56); return x_57; } } +} +} else { lean_object* x_58; lean_object* x_59; +lean_dec(x_12); +lean_dec(x_5); +lean_dec(x_2); +x_58 = l_Lean_Parser_parserOfStackFnUnsafe___closed__1; +x_59 = l_Lean_Parser_ParserState_mkUnexpectedError(x_3, x_58); +return x_59; +} +} +else +{ +lean_object* x_60; lean_object* x_61; lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); -x_58 = l_Lean_Parser_parserOfStackFnUnsafe___closed__5; -x_59 = l_Lean_Parser_ParserState_mkUnexpectedError(x_3, x_58); -return x_59; +x_60 = l_Lean_Parser_parserOfStackFnUnsafe___closed__5; +x_61 = l_Lean_Parser_ParserState_mkUnexpectedError(x_3, x_60); +return x_61; } } } @@ -30714,7 +30768,7 @@ lean_dec(x_6); x_9 = l_List_isEmpty___rarg(x_8); if (x_9 == 0) { -lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; +lean_object* x_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_10 = lean_ctor_get(x_7, 0); lean_inc(x_10); x_11 = l_Array_back___at_Lean_Syntax_Traverser_up___spec__2(x_10); @@ -30727,18 +30781,12 @@ lean_inc(x_1); x_14 = l_Lean_Parser_trailingLoopStep(x_1, x_11, x_8, x_2, x_7); x_15 = lean_ctor_get(x_14, 3); lean_inc(x_15); -if (lean_obj_tag(x_15) == 0) -{ -lean_object* x_16; -lean_dec(x_13); -x_16 = l___private_Lean_Parser_Basic_0__Lean_Parser_mkTrailingResult(x_14, x_12); -x_3 = x_16; -goto _start; -} -else +x_16 = lean_box(0); +x_17 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_15, x_16); +lean_dec(x_15); +if (x_17 == 0) { lean_object* x_18; uint8_t x_19; -lean_dec(x_15); lean_dec(x_2); lean_dec(x_1); x_18 = lean_ctor_get(x_14, 1); @@ -30759,61 +30807,71 @@ lean_dec(x_12); return x_20; } } -} else { -lean_object* x_21; uint8_t x_22; -x_21 = lean_ctor_get(x_1, 3); -lean_inc(x_21); -x_22 = l_List_isEmpty___rarg(x_21); -lean_dec(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; -x_23 = lean_ctor_get(x_7, 0); -lean_inc(x_23); -x_24 = l_Array_back___at_Lean_Syntax_Traverser_up___spec__2(x_23); -x_25 = lean_array_get_size(x_23); -lean_dec(x_23); -x_26 = lean_ctor_get(x_7, 1); -lean_inc(x_26); -lean_inc(x_2); -lean_inc(x_1); -x_27 = l_Lean_Parser_trailingLoopStep(x_1, x_24, x_8, x_2, x_7); -x_28 = lean_ctor_get(x_27, 3); -lean_inc(x_28); -if (lean_obj_tag(x_28) == 0) -{ -lean_object* x_29; -lean_dec(x_26); -x_29 = l___private_Lean_Parser_Basic_0__Lean_Parser_mkTrailingResult(x_27, x_25); -x_3 = x_29; +lean_object* x_21; +lean_dec(x_13); +x_21 = l___private_Lean_Parser_Basic_0__Lean_Parser_mkTrailingResult(x_14, x_12); +x_3 = x_21; goto _start; } +} else { -lean_object* x_31; uint8_t x_32; -lean_dec(x_28); -lean_dec(x_2); -lean_dec(x_1); -x_31 = lean_ctor_get(x_27, 1); -lean_inc(x_31); -x_32 = lean_nat_dec_eq(x_31, x_26); -lean_dec(x_31); +lean_object* x_23; uint8_t x_24; +x_23 = lean_ctor_get(x_1, 3); +lean_inc(x_23); +x_24 = l_List_isEmpty___rarg(x_23); +lean_dec(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; uint8_t x_32; +x_25 = lean_ctor_get(x_7, 0); +lean_inc(x_25); +x_26 = l_Array_back___at_Lean_Syntax_Traverser_up___spec__2(x_25); +x_27 = lean_array_get_size(x_25); +lean_dec(x_25); +x_28 = lean_ctor_get(x_7, 1); +lean_inc(x_28); +lean_inc(x_2); +lean_inc(x_1); +x_29 = l_Lean_Parser_trailingLoopStep(x_1, x_26, x_8, x_2, x_7); +x_30 = lean_ctor_get(x_29, 3); +lean_inc(x_30); +x_31 = lean_box(0); +x_32 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_30, x_31); +lean_dec(x_30); if (x_32 == 0) { -lean_dec(x_26); -lean_dec(x_25); -return x_27; +lean_object* x_33; uint8_t x_34; +lean_dec(x_2); +lean_dec(x_1); +x_33 = lean_ctor_get(x_29, 1); +lean_inc(x_33); +x_34 = lean_nat_dec_eq(x_33, x_28); +lean_dec(x_33); +if (x_34 == 0) +{ +lean_dec(x_28); +lean_dec(x_27); +return x_29; } else { -lean_object* x_33; -x_33 = l_Lean_Parser_ParserState_restore(x_27, x_25, x_26); -lean_dec(x_25); -return x_33; +lean_object* x_35; +x_35 = l_Lean_Parser_ParserState_restore(x_29, x_27, x_28); +lean_dec(x_27); +return x_35; } } +else +{ +lean_object* x_36; +lean_dec(x_28); +x_36 = l___private_Lean_Parser_Basic_0__Lean_Parser_mkTrailingResult(x_29, x_27); +x_3 = x_36; +goto _start; +} } else { @@ -30828,7 +30886,7 @@ return x_7; lean_object* l_Lean_Parser_prattParser(lean_object* x_1, lean_object* x_2, uint8_t 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; +lean_object* x_7; lean_object* x_8; uint8_t x_9; lean_object* x_10; x_7 = lean_box(x_3); lean_inc(x_2); lean_inc(x_1); @@ -30839,51 +30897,54 @@ lean_closure_set(x_8, 2, x_7); lean_inc(x_6); lean_inc(x_5); x_9 = l_Lean_Parser_tryAnti(x_5, x_6); +x_10 = lean_box(0); if (x_9 == 0) { -lean_object* x_10; lean_object* x_11; +lean_object* x_11; lean_object* x_12; uint8_t x_13; lean_dec(x_8); lean_dec(x_4); lean_inc(x_5); lean_inc(x_2); -x_10 = l_Lean_Parser_leadingParserAux(x_1, x_2, x_3, x_5, x_6); -x_11 = lean_ctor_get(x_10, 3); -lean_inc(x_11); -if (lean_obj_tag(x_11) == 0) +x_11 = l_Lean_Parser_leadingParserAux(x_1, x_2, x_3, x_5, x_6); +x_12 = lean_ctor_get(x_11, 3); +lean_inc(x_12); +x_13 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_12, x_10); +lean_dec(x_12); +if (x_13 == 0) { -lean_object* x_12; -x_12 = l_Lean_Parser_trailingLoop(x_2, x_5, x_10); -return x_12; -} -else -{ -lean_dec(x_11); lean_dec(x_5); lean_dec(x_2); -return x_10; +return x_11; +} +else +{ +lean_object* x_14; +x_14 = l_Lean_Parser_trailingLoop(x_2, x_5, x_11); +return x_14; } } else { -uint8_t x_13; lean_object* x_14; lean_object* x_15; +uint8_t x_15; lean_object* x_16; lean_object* x_17; uint8_t x_18; lean_dec(x_1); -x_13 = 1; +x_15 = 1; lean_inc(x_5); -x_14 = l_Lean_Parser_orelseFnCore(x_4, x_8, x_13, x_5, x_6); -x_15 = lean_ctor_get(x_14, 3); -lean_inc(x_15); -if (lean_obj_tag(x_15) == 0) +x_16 = l_Lean_Parser_orelseFnCore(x_4, x_8, x_15, x_5, x_6); +x_17 = lean_ctor_get(x_16, 3); +lean_inc(x_17); +x_18 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_17, x_10); +lean_dec(x_17); +if (x_18 == 0) { -lean_object* x_16; -x_16 = l_Lean_Parser_trailingLoop(x_2, x_5, x_14); +lean_dec(x_5); +lean_dec(x_2); return x_16; } else { -lean_dec(x_15); -lean_dec(x_5); -lean_dec(x_2); -return x_14; +lean_object* x_19; +x_19 = l_Lean_Parser_trailingLoop(x_2, x_5, x_16); +return x_19; } } } diff --git a/stage0/stdlib/Lean/Parser/Command.c b/stage0/stdlib/Lean/Parser/Command.c index 11090a5e2e..0245d38165 100644 --- a/stage0/stdlib/Lean/Parser/Command.c +++ b/stage0/stdlib/Lean/Parser/Command.c @@ -2041,6 +2041,7 @@ lean_object* l_Lean_Parser_Command_structExplicitBinder_formatter___closed__10; lean_object* l_Lean_Parser_Command_set__option_parenthesizer___closed__7; lean_object* l_Lean_Parser_Command_openRenaming___closed__8; lean_object* l_Lean_Parser_Command_declaration_parenthesizer___closed__2; +uint8_t l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_docComment_formatter___closed__7; lean_object* l_Lean_Parser_Command_classInductive_formatter___closed__2; lean_object* l_Lean_Parser_Command_structExplicitBinder___elambda__1___closed__10; @@ -3341,25 +3342,27 @@ return x_5; lean_object* l_Lean_Parser_Command_commentBody___elambda__1(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_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; uint8_t x_8; x_3 = lean_ctor_get(x_2, 1); lean_inc(x_3); x_4 = lean_unsigned_to_nat(1u); x_5 = l_Lean_Parser_finishCommentBlock(x_4, x_1, x_2); x_6 = lean_ctor_get(x_5, 3); lean_inc(x_6); -if (lean_obj_tag(x_6) == 0) +x_7 = lean_box(0); +x_8 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_6, x_7); +lean_dec(x_6); +if (x_8 == 0) { -uint8_t x_7; lean_object* x_8; -x_7 = 1; -x_8 = l___private_Lean_Parser_Basic_0__Lean_Parser_rawAux(x_3, x_7, x_1, x_5); -return x_8; +lean_dec(x_3); +return x_5; } else { -lean_dec(x_6); -lean_dec(x_3); -return x_5; +uint8_t x_9; lean_object* x_10; +x_9 = 1; +x_10 = l___private_Lean_Parser_Basic_0__Lean_Parser_rawAux(x_3, x_9, x_1, x_5); +return x_10; } } } @@ -30334,52 +30337,55 @@ return x_3; lean_object* l_Lean_Parser_Command_in___elambda__1(lean_object* x_1, lean_object* x_2) { _start: { -lean_object* x_3; lean_object* x_4; lean_object* x_5; +lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; uint8_t x_7; x_3 = lean_unsigned_to_nat(1024u); x_4 = l_Lean_Parser_checkPrecFn(x_3, x_1, x_2); x_5 = lean_ctor_get(x_4, 3); lean_inc(x_5); -if (lean_obj_tag(x_5) == 0) +x_6 = lean_box(0); +x_7 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_5, x_6); +lean_dec(x_5); +if (x_7 == 0) { -lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; -x_6 = lean_ctor_get(x_4, 0); -lean_inc(x_6); -x_7 = lean_array_get_size(x_6); -lean_dec(x_6); -x_8 = l_Lean_Parser_Term_doFor___elambda__1___closed__6; -x_9 = l_Lean_Parser_Command_in___elambda__1___closed__4; +lean_dec(x_1); +return x_4; +} +else +{ +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; +x_8 = lean_ctor_get(x_4, 0); +lean_inc(x_8); +x_9 = lean_array_get_size(x_8); +lean_dec(x_8); +x_10 = l_Lean_Parser_Term_doFor___elambda__1___closed__6; +x_11 = l_Lean_Parser_Command_in___elambda__1___closed__4; lean_inc(x_1); -x_10 = l_Lean_Parser_symbolFnAux(x_8, x_9, x_1, x_4); -x_11 = lean_ctor_get(x_10, 3); -lean_inc(x_11); -if (lean_obj_tag(x_11) == 0) +x_12 = l_Lean_Parser_symbolFnAux(x_10, x_11, x_1, x_4); +x_13 = lean_ctor_get(x_12, 3); +lean_inc(x_13); +x_14 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_13, x_6); +lean_dec(x_13); +if (x_14 == 0) { -lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; -x_12 = l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_3697____closed__4; -x_13 = lean_unsigned_to_nat(0u); -x_14 = l_Lean_Parser_categoryParser___elambda__1(x_12, x_13, x_1, x_10); +lean_object* x_15; lean_object* x_16; +lean_dec(x_1); x_15 = l_Lean_Parser_Command_in___elambda__1___closed__2; -x_16 = l_Lean_Parser_ParserState_mkTrailingNode(x_14, x_15, x_7); -lean_dec(x_7); +x_16 = l_Lean_Parser_ParserState_mkTrailingNode(x_12, x_15, x_9); +lean_dec(x_9); return x_16; } else { -lean_object* x_17; lean_object* x_18; -lean_dec(x_11); -lean_dec(x_1); -x_17 = l_Lean_Parser_Command_in___elambda__1___closed__2; -x_18 = l_Lean_Parser_ParserState_mkTrailingNode(x_10, x_17, x_7); -lean_dec(x_7); -return x_18; +lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; +x_17 = l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_3697____closed__4; +x_18 = lean_unsigned_to_nat(0u); +x_19 = l_Lean_Parser_categoryParser___elambda__1(x_17, x_18, x_1, x_12); +x_20 = l_Lean_Parser_Command_in___elambda__1___closed__2; +x_21 = l_Lean_Parser_ParserState_mkTrailingNode(x_19, x_20, x_9); +lean_dec(x_9); +return x_21; } } -else -{ -lean_dec(x_5); -lean_dec(x_1); -return x_4; -} } } static lean_object* _init_l_Lean_Parser_Command_in___closed__1() { diff --git a/stage0/stdlib/Lean/Parser/Do.c b/stage0/stdlib/Lean/Parser/Do.c index 308d268e57..9694366b24 100644 --- a/stage0/stdlib/Lean/Parser/Do.c +++ b/stage0/stdlib/Lean/Parser/Do.c @@ -1091,6 +1091,7 @@ lean_object* l_Lean_Parser_Term_doContinue_parenthesizer___closed__2; lean_object* l_Lean_Parser_Term_doFor___closed__3; lean_object* l_Lean_Parser_Term_doBreak_parenthesizer___closed__2; lean_object* l_Lean_Parser_Term_doIf_formatter___closed__4; +uint8_t l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_orelseFnCore(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_epsilonInfo; lean_object* l_Lean_Parser_Term_doCatch_parenthesizer___closed__3; @@ -5623,7 +5624,7 @@ uint8_t x_10; x_10 = !lean_is_exclusive(x_7); 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; lean_object* x_17; +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; uint8_t x_19; x_11 = lean_ctor_get(x_4, 1); lean_inc(x_11); x_12 = lean_alloc_ctor(1, 1, 0); @@ -5636,301 +5637,313 @@ lean_inc(x_3); x_16 = l_Lean_Parser_symbolFnAux(x_1, x_15, x_3, x_4); x_17 = lean_ctor_get(x_16, 3); lean_inc(x_17); -if (lean_obj_tag(x_17) == 0) -{ -lean_object* x_18; lean_object* x_19; -lean_inc(x_3); -x_18 = lean_apply_2(x_2, x_3, x_16); -x_19 = lean_ctor_get(x_18, 3); -lean_inc(x_19); -if (lean_obj_tag(x_19) == 0) -{ -lean_object* x_20; lean_object* x_21; uint8_t x_22; lean_object* x_23; -x_20 = l_Lean_Parser_Term_doIdDecl___closed__7; -x_21 = l_Lean_Parser_Term_doPatDecl___closed__7; -x_22 = 1; -x_23 = l_Lean_Parser_orelseFnCore(x_20, x_21, x_22, x_3, x_18); -return x_23; -} -else -{ -lean_dec(x_19); -lean_dec(x_3); -return x_18; -} -} -else -{ +x_18 = lean_box(0); +x_19 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_17, x_18); lean_dec(x_17); +if (x_19 == 0) +{ lean_dec(x_3); lean_dec(x_2); return x_16; } +else +{ +lean_object* x_20; lean_object* x_21; uint8_t x_22; +lean_inc(x_3); +x_20 = lean_apply_2(x_2, x_3, x_16); +x_21 = lean_ctor_get(x_20, 3); +lean_inc(x_21); +x_22 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_21, x_18); +lean_dec(x_21); +if (x_22 == 0) +{ +lean_dec(x_3); +return x_20; } 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_7, 0); -x_25 = lean_ctor_get(x_7, 1); -x_26 = lean_ctor_get(x_7, 2); -x_27 = lean_ctor_get(x_7, 3); -lean_inc(x_27); -lean_inc(x_26); -lean_inc(x_25); -lean_inc(x_24); -lean_dec(x_7); -x_28 = lean_alloc_ctor(0, 4, 0); -lean_ctor_set(x_28, 0, x_24); -lean_ctor_set(x_28, 1, x_25); -lean_ctor_set(x_28, 2, x_26); -lean_ctor_set(x_28, 3, x_27); -x_29 = lean_ctor_get(x_4, 1); +lean_object* x_23; lean_object* x_24; uint8_t x_25; lean_object* x_26; +x_23 = l_Lean_Parser_Term_doIdDecl___closed__7; +x_24 = l_Lean_Parser_Term_doPatDecl___closed__7; +x_25 = 1; +x_26 = l_Lean_Parser_orelseFnCore(x_23, x_24, x_25, x_3, x_20); +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; uint8_t x_40; +x_27 = lean_ctor_get(x_7, 0); +x_28 = lean_ctor_get(x_7, 1); +x_29 = lean_ctor_get(x_7, 2); +x_30 = lean_ctor_get(x_7, 3); +lean_inc(x_30); lean_inc(x_29); -x_30 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_30, 0, x_29); -lean_ctor_set(x_3, 4, x_30); -lean_ctor_set(x_3, 1, x_28); -x_31 = l_instReprChar___closed__1; -x_32 = lean_string_append(x_31, x_1); -x_33 = lean_string_append(x_32, x_31); +lean_inc(x_28); +lean_inc(x_27); +lean_dec(x_7); +x_31 = lean_alloc_ctor(0, 4, 0); +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_30); +x_32 = lean_ctor_get(x_4, 1); +lean_inc(x_32); +x_33 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_33, 0, x_32); +lean_ctor_set(x_3, 4, x_33); +lean_ctor_set(x_3, 1, x_31); +x_34 = l_instReprChar___closed__1; +x_35 = lean_string_append(x_34, x_1); +x_36 = lean_string_append(x_35, x_34); lean_inc(x_3); -x_34 = l_Lean_Parser_symbolFnAux(x_1, x_33, x_3, x_4); -x_35 = lean_ctor_get(x_34, 3); -lean_inc(x_35); -if (lean_obj_tag(x_35) == 0) +x_37 = l_Lean_Parser_symbolFnAux(x_1, x_36, x_3, x_4); +x_38 = lean_ctor_get(x_37, 3); +lean_inc(x_38); +x_39 = lean_box(0); +x_40 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_38, x_39); +lean_dec(x_38); +if (x_40 == 0) { -lean_object* x_36; lean_object* x_37; +lean_dec(x_3); +lean_dec(x_2); +return x_37; +} +else +{ +lean_object* x_41; lean_object* x_42; uint8_t x_43; lean_inc(x_3); -x_36 = lean_apply_2(x_2, x_3, x_34); -x_37 = lean_ctor_get(x_36, 3); -lean_inc(x_37); -if (lean_obj_tag(x_37) == 0) +x_41 = lean_apply_2(x_2, x_3, x_37); +x_42 = lean_ctor_get(x_41, 3); +lean_inc(x_42); +x_43 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_42, x_39); +lean_dec(x_42); +if (x_43 == 0) { -lean_object* x_38; lean_object* x_39; uint8_t x_40; lean_object* x_41; -x_38 = l_Lean_Parser_Term_doIdDecl___closed__7; -x_39 = l_Lean_Parser_Term_doPatDecl___closed__7; -x_40 = 1; -x_41 = l_Lean_Parser_orelseFnCore(x_38, x_39, x_40, x_3, x_36); +lean_dec(x_3); return x_41; } else { -lean_dec(x_37); -lean_dec(x_3); -return x_36; +lean_object* x_44; lean_object* x_45; uint8_t x_46; lean_object* x_47; +x_44 = l_Lean_Parser_Term_doIdDecl___closed__7; +x_45 = l_Lean_Parser_Term_doPatDecl___closed__7; +x_46 = 1; +x_47 = l_Lean_Parser_orelseFnCore(x_44, x_45, x_46, x_3, x_41); +return x_47; } } -else -{ -lean_dec(x_35); -lean_dec(x_3); -lean_dec(x_2); -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; 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_42 = lean_ctor_get(x_6, 0); -x_43 = lean_ctor_get(x_6, 1); -x_44 = lean_ctor_get(x_6, 2); -lean_inc(x_44); -lean_inc(x_43); -lean_inc(x_42); -lean_dec(x_6); -x_45 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_45, 0, x_42); -lean_ctor_set(x_45, 1, x_43); -lean_ctor_set(x_45, 2, x_44); -x_46 = lean_ctor_get(x_7, 0); -lean_inc(x_46); -x_47 = lean_ctor_get(x_7, 1); -lean_inc(x_47); -x_48 = lean_ctor_get(x_7, 2); -lean_inc(x_48); -x_49 = lean_ctor_get(x_7, 3); +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; uint8_t x_66; +x_48 = lean_ctor_get(x_6, 0); +x_49 = lean_ctor_get(x_6, 1); +x_50 = lean_ctor_get(x_6, 2); +lean_inc(x_50); lean_inc(x_49); +lean_inc(x_48); +lean_dec(x_6); +x_51 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_51, 0, x_48); +lean_ctor_set(x_51, 1, x_49); +lean_ctor_set(x_51, 2, x_50); +x_52 = lean_ctor_get(x_7, 0); +lean_inc(x_52); +x_53 = lean_ctor_get(x_7, 1); +lean_inc(x_53); +x_54 = lean_ctor_get(x_7, 2); +lean_inc(x_54); +x_55 = lean_ctor_get(x_7, 3); +lean_inc(x_55); 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); - x_50 = x_7; + x_56 = x_7; } else { lean_dec_ref(x_7); - x_50 = lean_box(0); + x_56 = lean_box(0); } -if (lean_is_scalar(x_50)) { - x_51 = lean_alloc_ctor(0, 4, 0); +if (lean_is_scalar(x_56)) { + x_57 = lean_alloc_ctor(0, 4, 0); } else { - x_51 = x_50; + x_57 = x_56; } -lean_ctor_set(x_51, 0, x_46); -lean_ctor_set(x_51, 1, x_47); -lean_ctor_set(x_51, 2, x_48); -lean_ctor_set(x_51, 3, x_49); -x_52 = lean_ctor_get(x_4, 1); -lean_inc(x_52); -x_53 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_53, 0, x_52); -lean_ctor_set(x_3, 4, x_53); -lean_ctor_set(x_3, 1, x_51); -lean_ctor_set(x_3, 0, x_45); -x_54 = l_instReprChar___closed__1; -x_55 = lean_string_append(x_54, x_1); -x_56 = lean_string_append(x_55, x_54); -lean_inc(x_3); -x_57 = l_Lean_Parser_symbolFnAux(x_1, x_56, x_3, x_4); -x_58 = lean_ctor_get(x_57, 3); +lean_ctor_set(x_57, 0, x_52); +lean_ctor_set(x_57, 1, x_53); +lean_ctor_set(x_57, 2, x_54); +lean_ctor_set(x_57, 3, x_55); +x_58 = lean_ctor_get(x_4, 1); lean_inc(x_58); -if (lean_obj_tag(x_58) == 0) -{ -lean_object* x_59; lean_object* x_60; +x_59 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_59, 0, x_58); +lean_ctor_set(x_3, 4, x_59); +lean_ctor_set(x_3, 1, x_57); +lean_ctor_set(x_3, 0, x_51); +x_60 = l_instReprChar___closed__1; +x_61 = lean_string_append(x_60, x_1); +x_62 = lean_string_append(x_61, x_60); lean_inc(x_3); -x_59 = lean_apply_2(x_2, x_3, x_57); -x_60 = lean_ctor_get(x_59, 3); -lean_inc(x_60); -if (lean_obj_tag(x_60) == 0) +x_63 = l_Lean_Parser_symbolFnAux(x_1, x_62, x_3, x_4); +x_64 = lean_ctor_get(x_63, 3); +lean_inc(x_64); +x_65 = lean_box(0); +x_66 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_64, x_65); +lean_dec(x_64); +if (x_66 == 0) { -lean_object* x_61; lean_object* x_62; uint8_t x_63; lean_object* x_64; -x_61 = l_Lean_Parser_Term_doIdDecl___closed__7; -x_62 = l_Lean_Parser_Term_doPatDecl___closed__7; -x_63 = 1; -x_64 = l_Lean_Parser_orelseFnCore(x_61, x_62, x_63, x_3, x_59); -return x_64; -} -else -{ -lean_dec(x_60); -lean_dec(x_3); -return x_59; -} -} -else -{ -lean_dec(x_58); lean_dec(x_3); lean_dec(x_2); -return x_57; -} -} +return x_63; } else { -lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; uint8_t 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_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; -x_65 = lean_ctor_get(x_3, 0); -x_66 = lean_ctor_get(x_3, 1); -x_67 = lean_ctor_get(x_3, 2); -x_68 = lean_ctor_get(x_3, 3); -x_69 = lean_ctor_get_uint8(x_3, sizeof(void*)*6); -x_70 = lean_ctor_get_uint8(x_3, sizeof(void*)*6 + 1); -x_71 = lean_ctor_get(x_3, 5); -lean_inc(x_71); +lean_object* x_67; lean_object* x_68; uint8_t x_69; +lean_inc(x_3); +x_67 = lean_apply_2(x_2, x_3, x_63); +x_68 = lean_ctor_get(x_67, 3); lean_inc(x_68); -lean_inc(x_67); -lean_inc(x_66); -lean_inc(x_65); +x_69 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_68, x_65); +lean_dec(x_68); +if (x_69 == 0) +{ lean_dec(x_3); -x_72 = lean_ctor_get(x_65, 0); -lean_inc(x_72); -x_73 = lean_ctor_get(x_65, 1); -lean_inc(x_73); -x_74 = lean_ctor_get(x_65, 2); -lean_inc(x_74); -if (lean_is_exclusive(x_65)) { - lean_ctor_release(x_65, 0); - lean_ctor_release(x_65, 1); - lean_ctor_release(x_65, 2); - x_75 = x_65; -} else { - lean_dec_ref(x_65); - x_75 = lean_box(0); +return x_67; } -if (lean_is_scalar(x_75)) { - x_76 = lean_alloc_ctor(0, 3, 0); -} else { - x_76 = x_75; +else +{ +lean_object* x_70; lean_object* x_71; uint8_t x_72; lean_object* x_73; +x_70 = l_Lean_Parser_Term_doIdDecl___closed__7; +x_71 = l_Lean_Parser_Term_doPatDecl___closed__7; +x_72 = 1; +x_73 = l_Lean_Parser_orelseFnCore(x_70, x_71, x_72, x_3, x_67); +return x_73; } -lean_ctor_set(x_76, 0, x_72); -lean_ctor_set(x_76, 1, x_73); -lean_ctor_set(x_76, 2, x_74); -x_77 = lean_ctor_get(x_66, 0); -lean_inc(x_77); -x_78 = lean_ctor_get(x_66, 1); -lean_inc(x_78); -x_79 = lean_ctor_get(x_66, 2); -lean_inc(x_79); -x_80 = lean_ctor_get(x_66, 3); +} +} +} +else +{ +lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; uint8_t 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; 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; uint8_t x_101; +x_74 = lean_ctor_get(x_3, 0); +x_75 = lean_ctor_get(x_3, 1); +x_76 = lean_ctor_get(x_3, 2); +x_77 = lean_ctor_get(x_3, 3); +x_78 = lean_ctor_get_uint8(x_3, sizeof(void*)*6); +x_79 = lean_ctor_get_uint8(x_3, sizeof(void*)*6 + 1); +x_80 = lean_ctor_get(x_3, 5); lean_inc(x_80); -if (lean_is_exclusive(x_66)) { - lean_ctor_release(x_66, 0); - lean_ctor_release(x_66, 1); - lean_ctor_release(x_66, 2); - lean_ctor_release(x_66, 3); - x_81 = x_66; -} else { - lean_dec_ref(x_66); - x_81 = lean_box(0); -} -if (lean_is_scalar(x_81)) { - x_82 = lean_alloc_ctor(0, 4, 0); -} else { - x_82 = x_81; -} -lean_ctor_set(x_82, 0, x_77); -lean_ctor_set(x_82, 1, x_78); -lean_ctor_set(x_82, 2, x_79); -lean_ctor_set(x_82, 3, x_80); -x_83 = lean_ctor_get(x_4, 1); +lean_inc(x_77); +lean_inc(x_76); +lean_inc(x_75); +lean_inc(x_74); +lean_dec(x_3); +x_81 = lean_ctor_get(x_74, 0); +lean_inc(x_81); +x_82 = lean_ctor_get(x_74, 1); +lean_inc(x_82); +x_83 = lean_ctor_get(x_74, 2); lean_inc(x_83); -x_84 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_84, 0, x_83); -x_85 = lean_alloc_ctor(0, 6, 2); -lean_ctor_set(x_85, 0, x_76); +if (lean_is_exclusive(x_74)) { + lean_ctor_release(x_74, 0); + lean_ctor_release(x_74, 1); + lean_ctor_release(x_74, 2); + x_84 = x_74; +} else { + lean_dec_ref(x_74); + x_84 = lean_box(0); +} +if (lean_is_scalar(x_84)) { + x_85 = lean_alloc_ctor(0, 3, 0); +} else { + x_85 = x_84; +} +lean_ctor_set(x_85, 0, x_81); lean_ctor_set(x_85, 1, x_82); -lean_ctor_set(x_85, 2, x_67); -lean_ctor_set(x_85, 3, x_68); -lean_ctor_set(x_85, 4, x_84); -lean_ctor_set(x_85, 5, x_71); -lean_ctor_set_uint8(x_85, sizeof(void*)*6, x_69); -lean_ctor_set_uint8(x_85, sizeof(void*)*6 + 1, x_70); -x_86 = l_instReprChar___closed__1; -x_87 = lean_string_append(x_86, x_1); -x_88 = lean_string_append(x_87, x_86); -lean_inc(x_85); -x_89 = l_Lean_Parser_symbolFnAux(x_1, x_88, x_85, x_4); -x_90 = lean_ctor_get(x_89, 3); -lean_inc(x_90); -if (lean_obj_tag(x_90) == 0) -{ -lean_object* x_91; lean_object* x_92; -lean_inc(x_85); -x_91 = lean_apply_2(x_2, x_85, x_89); -x_92 = lean_ctor_get(x_91, 3); +lean_ctor_set(x_85, 2, x_83); +x_86 = lean_ctor_get(x_75, 0); +lean_inc(x_86); +x_87 = lean_ctor_get(x_75, 1); +lean_inc(x_87); +x_88 = lean_ctor_get(x_75, 2); +lean_inc(x_88); +x_89 = lean_ctor_get(x_75, 3); +lean_inc(x_89); +if (lean_is_exclusive(x_75)) { + lean_ctor_release(x_75, 0); + lean_ctor_release(x_75, 1); + lean_ctor_release(x_75, 2); + lean_ctor_release(x_75, 3); + x_90 = x_75; +} else { + lean_dec_ref(x_75); + x_90 = lean_box(0); +} +if (lean_is_scalar(x_90)) { + x_91 = lean_alloc_ctor(0, 4, 0); +} else { + x_91 = x_90; +} +lean_ctor_set(x_91, 0, x_86); +lean_ctor_set(x_91, 1, x_87); +lean_ctor_set(x_91, 2, x_88); +lean_ctor_set(x_91, 3, x_89); +x_92 = lean_ctor_get(x_4, 1); lean_inc(x_92); -if (lean_obj_tag(x_92) == 0) +x_93 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_93, 0, x_92); +x_94 = lean_alloc_ctor(0, 6, 2); +lean_ctor_set(x_94, 0, x_85); +lean_ctor_set(x_94, 1, x_91); +lean_ctor_set(x_94, 2, x_76); +lean_ctor_set(x_94, 3, x_77); +lean_ctor_set(x_94, 4, x_93); +lean_ctor_set(x_94, 5, x_80); +lean_ctor_set_uint8(x_94, sizeof(void*)*6, x_78); +lean_ctor_set_uint8(x_94, sizeof(void*)*6 + 1, x_79); +x_95 = l_instReprChar___closed__1; +x_96 = lean_string_append(x_95, x_1); +x_97 = lean_string_append(x_96, x_95); +lean_inc(x_94); +x_98 = l_Lean_Parser_symbolFnAux(x_1, x_97, x_94, x_4); +x_99 = lean_ctor_get(x_98, 3); +lean_inc(x_99); +x_100 = lean_box(0); +x_101 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_99, x_100); +lean_dec(x_99); +if (x_101 == 0) { -lean_object* x_93; lean_object* x_94; uint8_t x_95; lean_object* x_96; -x_93 = l_Lean_Parser_Term_doIdDecl___closed__7; -x_94 = l_Lean_Parser_Term_doPatDecl___closed__7; -x_95 = 1; -x_96 = l_Lean_Parser_orelseFnCore(x_93, x_94, x_95, x_85, x_91); -return x_96; -} -else -{ -lean_dec(x_92); -lean_dec(x_85); -return x_91; -} -} -else -{ -lean_dec(x_90); -lean_dec(x_85); +lean_dec(x_94); lean_dec(x_2); -return x_89; +return x_98; +} +else +{ +lean_object* x_102; lean_object* x_103; uint8_t x_104; +lean_inc(x_94); +x_102 = lean_apply_2(x_2, x_94, x_98); +x_103 = lean_ctor_get(x_102, 3); +lean_inc(x_103); +x_104 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_103, x_100); +lean_dec(x_103); +if (x_104 == 0) +{ +lean_dec(x_94); +return x_102; +} +else +{ +lean_object* x_105; lean_object* x_106; uint8_t x_107; lean_object* x_108; +x_105 = l_Lean_Parser_Term_doIdDecl___closed__7; +x_106 = l_Lean_Parser_Term_doPatDecl___closed__7; +x_107 = 1; +x_108 = l_Lean_Parser_orelseFnCore(x_105, x_106, x_107, x_94, x_102); +return x_108; +} } } } @@ -6810,7 +6823,7 @@ return x_3; lean_object* l_Lean_Parser_Term_letIdDeclNoBinders___elambda__1(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_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; x_3 = lean_ctor_get(x_2, 0); lean_inc(x_3); x_4 = lean_array_get_size(x_3); @@ -6820,24 +6833,26 @@ lean_inc(x_1); x_6 = l_Lean_Parser_atomicFn(x_5, x_1, x_2); x_7 = lean_ctor_get(x_6, 3); lean_inc(x_7); -if (lean_obj_tag(x_7) == 0) +x_8 = lean_box(0); +x_9 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_7, x_8); +lean_dec(x_7); +if (x_9 == 0) { -lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; -x_8 = l_term___u2218_____closed__6; -x_9 = lean_unsigned_to_nat(0u); -x_10 = l_Lean_Parser_categoryParser___elambda__1(x_8, x_9, x_1, x_6); -x_11 = l_myMacro____x40_Init_Notation___hyg_12942____closed__8; -x_12 = l_Lean_Parser_ParserState_mkNode(x_10, x_11, x_4); -return x_12; +lean_object* x_10; lean_object* x_11; +lean_dec(x_1); +x_10 = l_myMacro____x40_Init_Notation___hyg_12942____closed__8; +x_11 = l_Lean_Parser_ParserState_mkNode(x_6, x_10, x_4); +return x_11; } else { -lean_object* x_13; lean_object* x_14; -lean_dec(x_7); -lean_dec(x_1); -x_13 = l_myMacro____x40_Init_Notation___hyg_12942____closed__8; -x_14 = l_Lean_Parser_ParserState_mkNode(x_6, x_13, x_4); -return x_14; +lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; +x_12 = l_term___u2218_____closed__6; +x_13 = lean_unsigned_to_nat(0u); +x_14 = l_Lean_Parser_categoryParser___elambda__1(x_12, x_13, x_1, x_6); +x_15 = l_myMacro____x40_Init_Notation___hyg_12942____closed__8; +x_16 = l_Lean_Parser_ParserState_mkNode(x_14, x_15, x_4); +return x_16; } } } @@ -8302,7 +8317,7 @@ lean_inc(x_10); x_11 = !lean_is_exclusive(x_7); if (x_11 == 0) { -lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; +lean_object* x_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; x_12 = lean_ctor_get(x_4, 1); lean_inc(x_12); lean_inc(x_12); @@ -8316,354 +8331,422 @@ lean_inc(x_3); x_17 = l_Lean_Parser_symbolFnAux(x_1, x_16, x_3, x_4); x_18 = lean_ctor_get(x_17, 3); lean_inc(x_18); -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; uint8_t x_24; -x_19 = l_Lean_FileMap_toPosition(x_10, x_12); -x_20 = lean_ctor_get(x_17, 1); -lean_inc(x_20); -x_21 = l_Lean_FileMap_toPosition(x_10, x_20); -lean_dec(x_10); -x_22 = lean_ctor_get(x_21, 0); -lean_inc(x_22); -lean_dec(x_21); -x_23 = lean_ctor_get(x_19, 0); -lean_inc(x_23); -lean_dec(x_19); -x_24 = lean_nat_dec_eq(x_22, x_23); -lean_dec(x_23); -lean_dec(x_22); -if (x_24 == 0) -{ -lean_object* x_25; lean_object* x_26; -lean_dec(x_3); -x_25 = l_Lean_Parser_Term_elseIf___elambda__1___lambda__1___closed__1; -x_26 = l_Lean_Parser_ParserState_mkError(x_17, x_25); -return x_26; -} -else -{ -lean_object* x_27; lean_object* x_28; lean_object* x_29; -x_27 = lean_string_append(x_14, x_2); -x_28 = lean_string_append(x_27, x_14); -x_29 = l_Lean_Parser_symbolFnAux(x_2, x_28, x_3, x_17); -return x_29; -} -} -else -{ +x_19 = lean_box(0); +x_20 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_18, x_19); lean_dec(x_18); +if (x_20 == 0) +{ lean_dec(x_3); lean_dec(x_12); lean_dec(x_10); return x_17; } +else +{ +lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; uint8_t x_26; +x_21 = l_Lean_FileMap_toPosition(x_10, x_12); +x_22 = lean_ctor_get(x_17, 1); +lean_inc(x_22); +x_23 = l_Lean_FileMap_toPosition(x_10, x_22); +lean_dec(x_10); +x_24 = lean_ctor_get(x_23, 0); +lean_inc(x_24); +lean_dec(x_23); +x_25 = lean_ctor_get(x_21, 0); +lean_inc(x_25); +lean_dec(x_21); +x_26 = lean_nat_dec_eq(x_24, x_25); +lean_dec(x_25); +lean_dec(x_24); +if (x_26 == 0) +{ +lean_object* x_27; lean_object* x_28; lean_object* x_29; uint8_t x_30; +x_27 = l_Lean_Parser_Term_elseIf___elambda__1___lambda__1___closed__1; +x_28 = l_Lean_Parser_ParserState_mkError(x_17, x_27); +x_29 = lean_ctor_get(x_28, 3); +lean_inc(x_29); +x_30 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_29, x_19); +lean_dec(x_29); +if (x_30 == 0) +{ +lean_dec(x_3); +return x_28; } 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; 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_30 = lean_ctor_get(x_7, 0); -x_31 = lean_ctor_get(x_7, 1); -x_32 = lean_ctor_get(x_7, 2); -x_33 = lean_ctor_get(x_7, 3); -lean_inc(x_33); -lean_inc(x_32); -lean_inc(x_31); -lean_inc(x_30); +lean_object* x_31; lean_object* x_32; lean_object* x_33; +x_31 = lean_string_append(x_14, x_2); +x_32 = lean_string_append(x_31, x_14); +x_33 = l_Lean_Parser_symbolFnAux(x_2, x_32, x_3, x_28); +return x_33; +} +} +else +{ +lean_object* x_34; lean_object* x_35; lean_object* x_36; +x_34 = lean_string_append(x_14, x_2); +x_35 = lean_string_append(x_34, x_14); +x_36 = l_Lean_Parser_symbolFnAux(x_2, x_35, x_3, x_17); +return x_36; +} +} +} +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; uint8_t x_50; +x_37 = lean_ctor_get(x_7, 0); +x_38 = lean_ctor_get(x_7, 1); +x_39 = lean_ctor_get(x_7, 2); +x_40 = lean_ctor_get(x_7, 3); +lean_inc(x_40); +lean_inc(x_39); +lean_inc(x_38); +lean_inc(x_37); lean_dec(x_7); -x_34 = lean_alloc_ctor(0, 4, 0); -lean_ctor_set(x_34, 0, x_30); -lean_ctor_set(x_34, 1, x_31); -lean_ctor_set(x_34, 2, x_32); -lean_ctor_set(x_34, 3, x_33); -x_35 = lean_ctor_get(x_4, 1); -lean_inc(x_35); -lean_inc(x_35); -x_36 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_36, 0, x_35); -lean_ctor_set(x_3, 4, x_36); -lean_ctor_set(x_3, 1, x_34); -x_37 = l_instReprChar___closed__1; -x_38 = lean_string_append(x_37, x_1); -x_39 = lean_string_append(x_38, x_37); +x_41 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_41, 0, x_37); +lean_ctor_set(x_41, 1, x_38); +lean_ctor_set(x_41, 2, x_39); +lean_ctor_set(x_41, 3, x_40); +x_42 = lean_ctor_get(x_4, 1); +lean_inc(x_42); +lean_inc(x_42); +x_43 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_43, 0, x_42); +lean_ctor_set(x_3, 4, x_43); +lean_ctor_set(x_3, 1, x_41); +x_44 = l_instReprChar___closed__1; +x_45 = lean_string_append(x_44, x_1); +x_46 = lean_string_append(x_45, x_44); lean_inc(x_3); -x_40 = l_Lean_Parser_symbolFnAux(x_1, x_39, x_3, x_4); -x_41 = lean_ctor_get(x_40, 3); -lean_inc(x_41); -if (lean_obj_tag(x_41) == 0) +x_47 = l_Lean_Parser_symbolFnAux(x_1, x_46, x_3, x_4); +x_48 = lean_ctor_get(x_47, 3); +lean_inc(x_48); +x_49 = lean_box(0); +x_50 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_48, x_49); +lean_dec(x_48); +if (x_50 == 0) { -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_42 = l_Lean_FileMap_toPosition(x_10, x_35); -x_43 = lean_ctor_get(x_40, 1); -lean_inc(x_43); -x_44 = l_Lean_FileMap_toPosition(x_10, x_43); -lean_dec(x_10); -x_45 = lean_ctor_get(x_44, 0); -lean_inc(x_45); -lean_dec(x_44); -x_46 = lean_ctor_get(x_42, 0); -lean_inc(x_46); +lean_dec(x_3); lean_dec(x_42); -x_47 = lean_nat_dec_eq(x_45, x_46); -lean_dec(x_46); -lean_dec(x_45); -if (x_47 == 0) -{ -lean_object* x_48; lean_object* x_49; -lean_dec(x_3); -x_48 = l_Lean_Parser_Term_elseIf___elambda__1___lambda__1___closed__1; -x_49 = l_Lean_Parser_ParserState_mkError(x_40, x_48); -return x_49; -} -else -{ -lean_object* x_50; lean_object* x_51; lean_object* x_52; -x_50 = lean_string_append(x_37, x_2); -x_51 = lean_string_append(x_50, x_37); -x_52 = l_Lean_Parser_symbolFnAux(x_2, x_51, x_3, x_40); -return x_52; -} -} -else -{ -lean_dec(x_41); -lean_dec(x_3); -lean_dec(x_35); lean_dec(x_10); -return x_40; +return x_47; +} +else +{ +lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; uint8_t x_56; +x_51 = l_Lean_FileMap_toPosition(x_10, x_42); +x_52 = lean_ctor_get(x_47, 1); +lean_inc(x_52); +x_53 = l_Lean_FileMap_toPosition(x_10, x_52); +lean_dec(x_10); +x_54 = lean_ctor_get(x_53, 0); +lean_inc(x_54); +lean_dec(x_53); +x_55 = lean_ctor_get(x_51, 0); +lean_inc(x_55); +lean_dec(x_51); +x_56 = lean_nat_dec_eq(x_54, x_55); +lean_dec(x_55); +lean_dec(x_54); +if (x_56 == 0) +{ +lean_object* x_57; lean_object* x_58; lean_object* x_59; uint8_t x_60; +x_57 = l_Lean_Parser_Term_elseIf___elambda__1___lambda__1___closed__1; +x_58 = l_Lean_Parser_ParserState_mkError(x_47, x_57); +x_59 = lean_ctor_get(x_58, 3); +lean_inc(x_59); +x_60 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_59, x_49); +lean_dec(x_59); +if (x_60 == 0) +{ +lean_dec(x_3); +return x_58; +} +else +{ +lean_object* x_61; lean_object* x_62; lean_object* x_63; +x_61 = lean_string_append(x_44, x_2); +x_62 = lean_string_append(x_61, x_44); +x_63 = l_Lean_Parser_symbolFnAux(x_2, x_62, x_3, x_58); +return x_63; +} +} +else +{ +lean_object* x_64; lean_object* x_65; lean_object* x_66; +x_64 = lean_string_append(x_44, x_2); +x_65 = lean_string_append(x_64, x_44); +x_66 = l_Lean_Parser_symbolFnAux(x_2, x_65, x_3, x_47); +return x_66; +} } } } else { -lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; -x_53 = lean_ctor_get(x_6, 0); -x_54 = lean_ctor_get(x_6, 1); -x_55 = lean_ctor_get(x_6, 2); -lean_inc(x_55); -lean_inc(x_54); -lean_inc(x_53); +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; uint8_t x_85; +x_67 = lean_ctor_get(x_6, 0); +x_68 = lean_ctor_get(x_6, 1); +x_69 = lean_ctor_get(x_6, 2); +lean_inc(x_69); +lean_inc(x_68); +lean_inc(x_67); lean_dec(x_6); -lean_inc(x_55); -x_56 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_56, 0, x_53); -lean_ctor_set(x_56, 1, x_54); -lean_ctor_set(x_56, 2, x_55); -x_57 = lean_ctor_get(x_7, 0); -lean_inc(x_57); -x_58 = lean_ctor_get(x_7, 1); -lean_inc(x_58); -x_59 = lean_ctor_get(x_7, 2); -lean_inc(x_59); -x_60 = lean_ctor_get(x_7, 3); -lean_inc(x_60); +lean_inc(x_69); +x_70 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_70, 0, x_67); +lean_ctor_set(x_70, 1, x_68); +lean_ctor_set(x_70, 2, x_69); +x_71 = lean_ctor_get(x_7, 0); +lean_inc(x_71); +x_72 = lean_ctor_get(x_7, 1); +lean_inc(x_72); +x_73 = lean_ctor_get(x_7, 2); +lean_inc(x_73); +x_74 = lean_ctor_get(x_7, 3); +lean_inc(x_74); 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); - x_61 = x_7; + x_75 = x_7; } else { lean_dec_ref(x_7); - x_61 = lean_box(0); + x_75 = lean_box(0); } -if (lean_is_scalar(x_61)) { - x_62 = lean_alloc_ctor(0, 4, 0); +if (lean_is_scalar(x_75)) { + x_76 = lean_alloc_ctor(0, 4, 0); } else { - x_62 = x_61; + x_76 = x_75; } -lean_ctor_set(x_62, 0, x_57); -lean_ctor_set(x_62, 1, x_58); -lean_ctor_set(x_62, 2, x_59); -lean_ctor_set(x_62, 3, x_60); -x_63 = lean_ctor_get(x_4, 1); -lean_inc(x_63); -lean_inc(x_63); -x_64 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_64, 0, x_63); -lean_ctor_set(x_3, 4, x_64); -lean_ctor_set(x_3, 1, x_62); -lean_ctor_set(x_3, 0, x_56); -x_65 = l_instReprChar___closed__1; -x_66 = lean_string_append(x_65, x_1); -x_67 = lean_string_append(x_66, x_65); +lean_ctor_set(x_76, 0, x_71); +lean_ctor_set(x_76, 1, x_72); +lean_ctor_set(x_76, 2, x_73); +lean_ctor_set(x_76, 3, x_74); +x_77 = lean_ctor_get(x_4, 1); +lean_inc(x_77); +lean_inc(x_77); +x_78 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_78, 0, x_77); +lean_ctor_set(x_3, 4, x_78); +lean_ctor_set(x_3, 1, x_76); +lean_ctor_set(x_3, 0, x_70); +x_79 = l_instReprChar___closed__1; +x_80 = lean_string_append(x_79, x_1); +x_81 = lean_string_append(x_80, x_79); lean_inc(x_3); -x_68 = l_Lean_Parser_symbolFnAux(x_1, x_67, x_3, x_4); -x_69 = lean_ctor_get(x_68, 3); -lean_inc(x_69); -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; uint8_t x_75; -x_70 = l_Lean_FileMap_toPosition(x_55, x_63); -x_71 = lean_ctor_get(x_68, 1); -lean_inc(x_71); -x_72 = l_Lean_FileMap_toPosition(x_55, x_71); -lean_dec(x_55); -x_73 = lean_ctor_get(x_72, 0); -lean_inc(x_73); -lean_dec(x_72); -x_74 = lean_ctor_get(x_70, 0); -lean_inc(x_74); -lean_dec(x_70); -x_75 = lean_nat_dec_eq(x_73, x_74); -lean_dec(x_74); -lean_dec(x_73); -if (x_75 == 0) -{ -lean_object* x_76; lean_object* x_77; -lean_dec(x_3); -x_76 = l_Lean_Parser_Term_elseIf___elambda__1___lambda__1___closed__1; -x_77 = l_Lean_Parser_ParserState_mkError(x_68, x_76); -return x_77; -} -else -{ -lean_object* x_78; lean_object* x_79; lean_object* x_80; -x_78 = lean_string_append(x_65, x_2); -x_79 = lean_string_append(x_78, x_65); -x_80 = l_Lean_Parser_symbolFnAux(x_2, x_79, x_3, x_68); -return x_80; -} -} -else -{ -lean_dec(x_69); -lean_dec(x_3); -lean_dec(x_63); -lean_dec(x_55); -return x_68; -} -} -} -else -{ -lean_object* x_81; lean_object* 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_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_81 = lean_ctor_get(x_3, 0); -x_82 = lean_ctor_get(x_3, 1); -x_83 = lean_ctor_get(x_3, 2); -x_84 = lean_ctor_get(x_3, 3); -x_85 = lean_ctor_get_uint8(x_3, sizeof(void*)*6); -x_86 = lean_ctor_get_uint8(x_3, sizeof(void*)*6 + 1); -x_87 = lean_ctor_get(x_3, 5); -lean_inc(x_87); -lean_inc(x_84); +x_82 = l_Lean_Parser_symbolFnAux(x_1, x_81, x_3, x_4); +x_83 = lean_ctor_get(x_82, 3); lean_inc(x_83); -lean_inc(x_82); -lean_inc(x_81); +x_84 = lean_box(0); +x_85 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_83, x_84); +lean_dec(x_83); +if (x_85 == 0) +{ lean_dec(x_3); -x_88 = lean_ctor_get(x_81, 0); -lean_inc(x_88); -x_89 = lean_ctor_get(x_81, 1); +lean_dec(x_77); +lean_dec(x_69); +return x_82; +} +else +{ +lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; uint8_t x_91; +x_86 = l_Lean_FileMap_toPosition(x_69, x_77); +x_87 = lean_ctor_get(x_82, 1); +lean_inc(x_87); +x_88 = l_Lean_FileMap_toPosition(x_69, x_87); +lean_dec(x_69); +x_89 = lean_ctor_get(x_88, 0); lean_inc(x_89); -x_90 = lean_ctor_get(x_81, 2); +lean_dec(x_88); +x_90 = lean_ctor_get(x_86, 0); lean_inc(x_90); -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_91 = x_81; -} else { - lean_dec_ref(x_81); - x_91 = lean_box(0); -} -lean_inc(x_90); -if (lean_is_scalar(x_91)) { - x_92 = lean_alloc_ctor(0, 3, 0); -} else { - x_92 = x_91; -} -lean_ctor_set(x_92, 0, x_88); -lean_ctor_set(x_92, 1, x_89); -lean_ctor_set(x_92, 2, x_90); -x_93 = lean_ctor_get(x_82, 0); -lean_inc(x_93); -x_94 = lean_ctor_get(x_82, 1); +lean_dec(x_86); +x_91 = lean_nat_dec_eq(x_89, x_90); +lean_dec(x_90); +lean_dec(x_89); +if (x_91 == 0) +{ +lean_object* x_92; lean_object* x_93; lean_object* x_94; uint8_t x_95; +x_92 = l_Lean_Parser_Term_elseIf___elambda__1___lambda__1___closed__1; +x_93 = l_Lean_Parser_ParserState_mkError(x_82, x_92); +x_94 = lean_ctor_get(x_93, 3); lean_inc(x_94); -x_95 = lean_ctor_get(x_82, 2); -lean_inc(x_95); -x_96 = lean_ctor_get(x_82, 3); -lean_inc(x_96); -if (lean_is_exclusive(x_82)) { - lean_ctor_release(x_82, 0); - lean_ctor_release(x_82, 1); - lean_ctor_release(x_82, 2); - lean_ctor_release(x_82, 3); - x_97 = x_82; -} else { - lean_dec_ref(x_82); - x_97 = lean_box(0); -} -if (lean_is_scalar(x_97)) { - x_98 = lean_alloc_ctor(0, 4, 0); -} else { - x_98 = x_97; -} -lean_ctor_set(x_98, 0, x_93); -lean_ctor_set(x_98, 1, x_94); -lean_ctor_set(x_98, 2, x_95); -lean_ctor_set(x_98, 3, x_96); -x_99 = lean_ctor_get(x_4, 1); -lean_inc(x_99); -lean_inc(x_99); -x_100 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_100, 0, x_99); -x_101 = lean_alloc_ctor(0, 6, 2); -lean_ctor_set(x_101, 0, x_92); -lean_ctor_set(x_101, 1, x_98); -lean_ctor_set(x_101, 2, x_83); -lean_ctor_set(x_101, 3, x_84); -lean_ctor_set(x_101, 4, x_100); -lean_ctor_set(x_101, 5, x_87); -lean_ctor_set_uint8(x_101, sizeof(void*)*6, x_85); -lean_ctor_set_uint8(x_101, sizeof(void*)*6 + 1, x_86); -x_102 = l_instReprChar___closed__1; -x_103 = lean_string_append(x_102, x_1); -x_104 = lean_string_append(x_103, x_102); -lean_inc(x_101); -x_105 = l_Lean_Parser_symbolFnAux(x_1, x_104, x_101, x_4); -x_106 = lean_ctor_get(x_105, 3); -lean_inc(x_106); -if (lean_obj_tag(x_106) == 0) +x_95 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_94, x_84); +lean_dec(x_94); +if (x_95 == 0) { -lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; uint8_t x_112; -x_107 = l_Lean_FileMap_toPosition(x_90, x_99); -x_108 = lean_ctor_get(x_105, 1); +lean_dec(x_3); +return x_93; +} +else +{ +lean_object* x_96; lean_object* x_97; lean_object* x_98; +x_96 = lean_string_append(x_79, x_2); +x_97 = lean_string_append(x_96, x_79); +x_98 = l_Lean_Parser_symbolFnAux(x_2, x_97, x_3, x_93); +return x_98; +} +} +else +{ +lean_object* x_99; lean_object* x_100; lean_object* x_101; +x_99 = lean_string_append(x_79, x_2); +x_100 = lean_string_append(x_99, x_79); +x_101 = l_Lean_Parser_symbolFnAux(x_2, x_100, x_3, x_82); +return x_101; +} +} +} +} +else +{ +lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; uint8_t 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; 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; uint8_t x_129; +x_102 = lean_ctor_get(x_3, 0); +x_103 = lean_ctor_get(x_3, 1); +x_104 = lean_ctor_get(x_3, 2); +x_105 = lean_ctor_get(x_3, 3); +x_106 = lean_ctor_get_uint8(x_3, sizeof(void*)*6); +x_107 = lean_ctor_get_uint8(x_3, sizeof(void*)*6 + 1); +x_108 = lean_ctor_get(x_3, 5); lean_inc(x_108); -x_109 = l_Lean_FileMap_toPosition(x_90, x_108); -lean_dec(x_90); -x_110 = lean_ctor_get(x_109, 0); +lean_inc(x_105); +lean_inc(x_104); +lean_inc(x_103); +lean_inc(x_102); +lean_dec(x_3); +x_109 = lean_ctor_get(x_102, 0); +lean_inc(x_109); +x_110 = lean_ctor_get(x_102, 1); lean_inc(x_110); -lean_dec(x_109); -x_111 = lean_ctor_get(x_107, 0); +x_111 = lean_ctor_get(x_102, 2); lean_inc(x_111); -lean_dec(x_107); -x_112 = lean_nat_dec_eq(x_110, x_111); +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_112 = x_102; +} else { + lean_dec_ref(x_102); + x_112 = lean_box(0); +} +lean_inc(x_111); +if (lean_is_scalar(x_112)) { + x_113 = lean_alloc_ctor(0, 3, 0); +} else { + x_113 = x_112; +} +lean_ctor_set(x_113, 0, x_109); +lean_ctor_set(x_113, 1, x_110); +lean_ctor_set(x_113, 2, x_111); +x_114 = lean_ctor_get(x_103, 0); +lean_inc(x_114); +x_115 = lean_ctor_get(x_103, 1); +lean_inc(x_115); +x_116 = lean_ctor_get(x_103, 2); +lean_inc(x_116); +x_117 = lean_ctor_get(x_103, 3); +lean_inc(x_117); +if (lean_is_exclusive(x_103)) { + lean_ctor_release(x_103, 0); + lean_ctor_release(x_103, 1); + lean_ctor_release(x_103, 2); + lean_ctor_release(x_103, 3); + x_118 = x_103; +} else { + lean_dec_ref(x_103); + x_118 = lean_box(0); +} +if (lean_is_scalar(x_118)) { + x_119 = lean_alloc_ctor(0, 4, 0); +} else { + x_119 = x_118; +} +lean_ctor_set(x_119, 0, x_114); +lean_ctor_set(x_119, 1, x_115); +lean_ctor_set(x_119, 2, x_116); +lean_ctor_set(x_119, 3, x_117); +x_120 = lean_ctor_get(x_4, 1); +lean_inc(x_120); +lean_inc(x_120); +x_121 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_121, 0, x_120); +x_122 = lean_alloc_ctor(0, 6, 2); +lean_ctor_set(x_122, 0, x_113); +lean_ctor_set(x_122, 1, x_119); +lean_ctor_set(x_122, 2, x_104); +lean_ctor_set(x_122, 3, x_105); +lean_ctor_set(x_122, 4, x_121); +lean_ctor_set(x_122, 5, x_108); +lean_ctor_set_uint8(x_122, sizeof(void*)*6, x_106); +lean_ctor_set_uint8(x_122, sizeof(void*)*6 + 1, x_107); +x_123 = l_instReprChar___closed__1; +x_124 = lean_string_append(x_123, x_1); +x_125 = lean_string_append(x_124, x_123); +lean_inc(x_122); +x_126 = l_Lean_Parser_symbolFnAux(x_1, x_125, x_122, x_4); +x_127 = lean_ctor_get(x_126, 3); +lean_inc(x_127); +x_128 = lean_box(0); +x_129 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_127, x_128); +lean_dec(x_127); +if (x_129 == 0) +{ +lean_dec(x_122); +lean_dec(x_120); lean_dec(x_111); -lean_dec(x_110); -if (x_112 == 0) -{ -lean_object* x_113; lean_object* x_114; -lean_dec(x_101); -x_113 = l_Lean_Parser_Term_elseIf___elambda__1___lambda__1___closed__1; -x_114 = l_Lean_Parser_ParserState_mkError(x_105, x_113); -return x_114; +return x_126; } else { -lean_object* x_115; lean_object* x_116; lean_object* x_117; -x_115 = lean_string_append(x_102, x_2); -x_116 = lean_string_append(x_115, x_102); -x_117 = l_Lean_Parser_symbolFnAux(x_2, x_116, x_101, x_105); -return x_117; +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_130 = l_Lean_FileMap_toPosition(x_111, x_120); +x_131 = lean_ctor_get(x_126, 1); +lean_inc(x_131); +x_132 = l_Lean_FileMap_toPosition(x_111, x_131); +lean_dec(x_111); +x_133 = lean_ctor_get(x_132, 0); +lean_inc(x_133); +lean_dec(x_132); +x_134 = lean_ctor_get(x_130, 0); +lean_inc(x_134); +lean_dec(x_130); +x_135 = lean_nat_dec_eq(x_133, x_134); +lean_dec(x_134); +lean_dec(x_133); +if (x_135 == 0) +{ +lean_object* x_136; lean_object* x_137; lean_object* x_138; uint8_t x_139; +x_136 = l_Lean_Parser_Term_elseIf___elambda__1___lambda__1___closed__1; +x_137 = l_Lean_Parser_ParserState_mkError(x_126, x_136); +x_138 = lean_ctor_get(x_137, 3); +lean_inc(x_138); +x_139 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_138, x_128); +lean_dec(x_138); +if (x_139 == 0) +{ +lean_dec(x_122); +return x_137; +} +else +{ +lean_object* x_140; lean_object* x_141; lean_object* x_142; +x_140 = lean_string_append(x_123, x_2); +x_141 = lean_string_append(x_140, x_123); +x_142 = l_Lean_Parser_symbolFnAux(x_2, x_141, x_122, x_137); +return x_142; } } else { -lean_dec(x_106); -lean_dec(x_101); -lean_dec(x_99); -lean_dec(x_90); -return x_105; +lean_object* x_143; lean_object* x_144; lean_object* x_145; +x_143 = lean_string_append(x_123, x_2); +x_144 = lean_string_append(x_143, x_123); +x_145 = l_Lean_Parser_symbolFnAux(x_2, x_144, x_122, x_126); +return x_145; +} } } } @@ -8832,7 +8915,7 @@ uint8_t x_14; x_14 = !lean_is_exclusive(x_11); 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_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; x_15 = lean_ctor_get(x_8, 1); lean_inc(x_15); x_16 = lean_alloc_ctor(1, 1, 0); @@ -8845,101 +8928,11 @@ lean_inc(x_7); x_20 = l_Lean_Parser_symbolFnAux(x_1, x_19, x_7, x_8); x_21 = lean_ctor_get(x_20, 3); lean_inc(x_21); -if (lean_obj_tag(x_21) == 0) -{ -lean_object* x_22; lean_object* x_23; -lean_inc(x_7); -x_22 = lean_apply_2(x_2, x_7, x_20); -x_23 = lean_ctor_get(x_22, 3); -lean_inc(x_23); -if (lean_obj_tag(x_23) == 0) -{ -lean_object* x_24; lean_object* x_25; lean_object* x_26; -x_24 = lean_unsigned_to_nat(0u); -lean_inc(x_7); -x_25 = l_Lean_Parser_categoryParser___elambda__1(x_3, x_24, x_7, x_22); -x_26 = lean_ctor_get(x_25, 3); -lean_inc(x_26); -if (lean_obj_tag(x_26) == 0) -{ -lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; -x_27 = lean_string_append(x_17, x_4); -x_28 = lean_string_append(x_27, x_17); -lean_inc(x_7); -x_29 = l_Lean_Parser_symbolFnAux(x_4, x_28, x_7, x_25); -x_30 = lean_ctor_get(x_29, 3); -lean_inc(x_30); -if (lean_obj_tag(x_30) == 0) -{ -lean_object* x_31; lean_object* x_32; uint8_t x_33; lean_object* x_34; lean_object* x_35; -x_31 = l_Lean_Parser_Term_doSeqBracketed___closed__6; -x_32 = l_Lean_Parser_Term_doSeqIndent___closed__4; -x_33 = 1; -lean_inc(x_7); -x_34 = l_Lean_Parser_orelseFnCore(x_31, x_32, x_33, x_7, x_29); -x_35 = lean_ctor_get(x_34, 3); -lean_inc(x_35); -if (lean_obj_tag(x_35) == 0) -{ -lean_object* x_36; lean_object* x_37; -lean_inc(x_7); -x_36 = lean_apply_2(x_5, x_7, x_34); -x_37 = lean_ctor_get(x_36, 3); -lean_inc(x_37); -if (lean_obj_tag(x_37) == 0) -{ -lean_object* x_38; -x_38 = lean_apply_2(x_6, x_7, x_36); -return x_38; -} -else -{ -lean_dec(x_37); -lean_dec(x_7); -lean_dec(x_6); -return x_36; -} -} -else -{ -lean_dec(x_35); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -return x_34; -} -} -else -{ -lean_dec(x_30); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -return x_29; -} -} -else -{ -lean_dec(x_26); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -return x_25; -} -} -else -{ -lean_dec(x_23); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_3); -return x_22; -} -} -else -{ +x_22 = lean_box(0); +x_23 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_21, x_22); lean_dec(x_21); +if (x_23 == 0) +{ lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); @@ -8947,487 +8940,605 @@ lean_dec(x_3); lean_dec(x_2); return x_20; } -} 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_11, 0); -x_40 = lean_ctor_get(x_11, 1); -x_41 = lean_ctor_get(x_11, 2); -x_42 = lean_ctor_get(x_11, 3); -lean_inc(x_42); -lean_inc(x_41); -lean_inc(x_40); -lean_inc(x_39); -lean_dec(x_11); -x_43 = lean_alloc_ctor(0, 4, 0); -lean_ctor_set(x_43, 0, x_39); -lean_ctor_set(x_43, 1, x_40); -lean_ctor_set(x_43, 2, x_41); -lean_ctor_set(x_43, 3, x_42); -x_44 = lean_ctor_get(x_8, 1); -lean_inc(x_44); -x_45 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_45, 0, x_44); -lean_ctor_set(x_7, 4, x_45); -lean_ctor_set(x_7, 1, x_43); -x_46 = l_instReprChar___closed__1; -x_47 = lean_string_append(x_46, x_1); -x_48 = lean_string_append(x_47, x_46); +lean_object* x_24; lean_object* x_25; uint8_t x_26; lean_inc(x_7); -x_49 = l_Lean_Parser_symbolFnAux(x_1, x_48, x_7, x_8); -x_50 = lean_ctor_get(x_49, 3); -lean_inc(x_50); -if (lean_obj_tag(x_50) == 0) +x_24 = lean_apply_2(x_2, x_7, x_20); +x_25 = lean_ctor_get(x_24, 3); +lean_inc(x_25); +x_26 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_25, x_22); +lean_dec(x_25); +if (x_26 == 0) { -lean_object* x_51; lean_object* x_52; -lean_inc(x_7); -x_51 = lean_apply_2(x_2, x_7, x_49); -x_52 = lean_ctor_get(x_51, 3); -lean_inc(x_52); -if (lean_obj_tag(x_52) == 0) -{ -lean_object* x_53; lean_object* x_54; lean_object* x_55; -x_53 = lean_unsigned_to_nat(0u); -lean_inc(x_7); -x_54 = l_Lean_Parser_categoryParser___elambda__1(x_3, x_53, x_7, x_51); -x_55 = lean_ctor_get(x_54, 3); -lean_inc(x_55); -if (lean_obj_tag(x_55) == 0) -{ -lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; -x_56 = lean_string_append(x_46, x_4); -x_57 = lean_string_append(x_56, x_46); -lean_inc(x_7); -x_58 = l_Lean_Parser_symbolFnAux(x_4, x_57, x_7, x_54); -x_59 = lean_ctor_get(x_58, 3); -lean_inc(x_59); -if (lean_obj_tag(x_59) == 0) -{ -lean_object* x_60; lean_object* x_61; uint8_t x_62; lean_object* x_63; lean_object* x_64; -x_60 = l_Lean_Parser_Term_doSeqBracketed___closed__6; -x_61 = l_Lean_Parser_Term_doSeqIndent___closed__4; -x_62 = 1; -lean_inc(x_7); -x_63 = l_Lean_Parser_orelseFnCore(x_60, x_61, x_62, x_7, x_58); -x_64 = lean_ctor_get(x_63, 3); -lean_inc(x_64); -if (lean_obj_tag(x_64) == 0) -{ -lean_object* x_65; lean_object* x_66; -lean_inc(x_7); -x_65 = lean_apply_2(x_5, x_7, x_63); -x_66 = lean_ctor_get(x_65, 3); -lean_inc(x_66); -if (lean_obj_tag(x_66) == 0) -{ -lean_object* x_67; -x_67 = lean_apply_2(x_6, x_7, x_65); -return x_67; -} -else -{ -lean_dec(x_66); -lean_dec(x_7); -lean_dec(x_6); -return x_65; -} -} -else -{ -lean_dec(x_64); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -return x_63; -} -} -else -{ -lean_dec(x_59); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -return x_58; -} -} -else -{ -lean_dec(x_55); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -return x_54; -} -} -else -{ -lean_dec(x_52); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_3); -return x_51; +return x_24; +} +else +{ +lean_object* x_27; lean_object* x_28; lean_object* x_29; uint8_t x_30; +x_27 = lean_unsigned_to_nat(0u); +lean_inc(x_7); +x_28 = l_Lean_Parser_categoryParser___elambda__1(x_3, x_27, x_7, x_24); +x_29 = lean_ctor_get(x_28, 3); +lean_inc(x_29); +x_30 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_29, x_22); +lean_dec(x_29); +if (x_30 == 0) +{ +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +return x_28; +} +else +{ +lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; uint8_t x_35; +x_31 = lean_string_append(x_17, x_4); +x_32 = lean_string_append(x_31, x_17); +lean_inc(x_7); +x_33 = l_Lean_Parser_symbolFnAux(x_4, x_32, x_7, x_28); +x_34 = lean_ctor_get(x_33, 3); +lean_inc(x_34); +x_35 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_34, x_22); +lean_dec(x_34); +if (x_35 == 0) +{ +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +return x_33; +} +else +{ +lean_object* x_36; lean_object* x_37; uint8_t x_38; lean_object* x_39; lean_object* x_40; uint8_t x_41; +x_36 = l_Lean_Parser_Term_doSeqBracketed___closed__6; +x_37 = l_Lean_Parser_Term_doSeqIndent___closed__4; +x_38 = 1; +lean_inc(x_7); +x_39 = l_Lean_Parser_orelseFnCore(x_36, x_37, x_38, x_7, x_33); +x_40 = lean_ctor_get(x_39, 3); +lean_inc(x_40); +x_41 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_40, x_22); +lean_dec(x_40); +if (x_41 == 0) +{ +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +return x_39; +} +else +{ +lean_object* x_42; lean_object* x_43; uint8_t x_44; +lean_inc(x_7); +x_42 = lean_apply_2(x_5, x_7, x_39); +x_43 = lean_ctor_get(x_42, 3); +lean_inc(x_43); +x_44 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_43, x_22); +lean_dec(x_43); +if (x_44 == 0) +{ +lean_dec(x_7); +lean_dec(x_6); +return x_42; +} +else +{ +lean_object* x_45; +x_45 = lean_apply_2(x_6, x_7, x_42); +return x_45; +} +} +} +} +} } } else { -lean_dec(x_50); +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; uint8_t x_59; +x_46 = lean_ctor_get(x_11, 0); +x_47 = lean_ctor_get(x_11, 1); +x_48 = lean_ctor_get(x_11, 2); +x_49 = lean_ctor_get(x_11, 3); +lean_inc(x_49); +lean_inc(x_48); +lean_inc(x_47); +lean_inc(x_46); +lean_dec(x_11); +x_50 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_50, 0, x_46); +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 = lean_ctor_get(x_8, 1); +lean_inc(x_51); +x_52 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_52, 0, x_51); +lean_ctor_set(x_7, 4, x_52); +lean_ctor_set(x_7, 1, x_50); +x_53 = l_instReprChar___closed__1; +x_54 = lean_string_append(x_53, x_1); +x_55 = lean_string_append(x_54, x_53); +lean_inc(x_7); +x_56 = l_Lean_Parser_symbolFnAux(x_1, x_55, x_7, x_8); +x_57 = lean_ctor_get(x_56, 3); +lean_inc(x_57); +x_58 = lean_box(0); +x_59 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_57, x_58); +lean_dec(x_57); +if (x_59 == 0) +{ lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_3); lean_dec(x_2); -return x_49; +return x_56; +} +else +{ +lean_object* x_60; lean_object* x_61; uint8_t x_62; +lean_inc(x_7); +x_60 = lean_apply_2(x_2, x_7, x_56); +x_61 = lean_ctor_get(x_60, 3); +lean_inc(x_61); +x_62 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_61, x_58); +lean_dec(x_61); +if (x_62 == 0) +{ +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_3); +return x_60; +} +else +{ +lean_object* x_63; lean_object* x_64; lean_object* x_65; uint8_t x_66; +x_63 = lean_unsigned_to_nat(0u); +lean_inc(x_7); +x_64 = l_Lean_Parser_categoryParser___elambda__1(x_3, x_63, x_7, x_60); +x_65 = lean_ctor_get(x_64, 3); +lean_inc(x_65); +x_66 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_65, x_58); +lean_dec(x_65); +if (x_66 == 0) +{ +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +return x_64; +} +else +{ +lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; uint8_t x_71; +x_67 = lean_string_append(x_53, x_4); +x_68 = lean_string_append(x_67, x_53); +lean_inc(x_7); +x_69 = l_Lean_Parser_symbolFnAux(x_4, x_68, x_7, x_64); +x_70 = lean_ctor_get(x_69, 3); +lean_inc(x_70); +x_71 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_70, x_58); +lean_dec(x_70); +if (x_71 == 0) +{ +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +return x_69; +} +else +{ +lean_object* x_72; lean_object* x_73; uint8_t x_74; lean_object* x_75; lean_object* x_76; uint8_t x_77; +x_72 = l_Lean_Parser_Term_doSeqBracketed___closed__6; +x_73 = l_Lean_Parser_Term_doSeqIndent___closed__4; +x_74 = 1; +lean_inc(x_7); +x_75 = l_Lean_Parser_orelseFnCore(x_72, x_73, x_74, x_7, x_69); +x_76 = lean_ctor_get(x_75, 3); +lean_inc(x_76); +x_77 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_76, x_58); +lean_dec(x_76); +if (x_77 == 0) +{ +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +return x_75; +} +else +{ +lean_object* x_78; lean_object* x_79; uint8_t x_80; +lean_inc(x_7); +x_78 = lean_apply_2(x_5, x_7, x_75); +x_79 = lean_ctor_get(x_78, 3); +lean_inc(x_79); +x_80 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_79, x_58); +lean_dec(x_79); +if (x_80 == 0) +{ +lean_dec(x_7); +lean_dec(x_6); +return x_78; +} +else +{ +lean_object* x_81; +x_81 = lean_apply_2(x_6, x_7, x_78); +return x_81; +} +} +} +} +} } } } else { -lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_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_68 = lean_ctor_get(x_10, 0); -x_69 = lean_ctor_get(x_10, 1); -x_70 = lean_ctor_get(x_10, 2); -lean_inc(x_70); -lean_inc(x_69); -lean_inc(x_68); +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; uint8_t x_100; +x_82 = lean_ctor_get(x_10, 0); +x_83 = lean_ctor_get(x_10, 1); +x_84 = lean_ctor_get(x_10, 2); +lean_inc(x_84); +lean_inc(x_83); +lean_inc(x_82); lean_dec(x_10); -x_71 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_71, 0, x_68); -lean_ctor_set(x_71, 1, x_69); -lean_ctor_set(x_71, 2, x_70); -x_72 = lean_ctor_get(x_11, 0); -lean_inc(x_72); -x_73 = lean_ctor_get(x_11, 1); -lean_inc(x_73); -x_74 = lean_ctor_get(x_11, 2); -lean_inc(x_74); -x_75 = lean_ctor_get(x_11, 3); -lean_inc(x_75); +x_85 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_85, 0, x_82); +lean_ctor_set(x_85, 1, x_83); +lean_ctor_set(x_85, 2, x_84); +x_86 = lean_ctor_get(x_11, 0); +lean_inc(x_86); +x_87 = lean_ctor_get(x_11, 1); +lean_inc(x_87); +x_88 = lean_ctor_get(x_11, 2); +lean_inc(x_88); +x_89 = lean_ctor_get(x_11, 3); +lean_inc(x_89); if (lean_is_exclusive(x_11)) { lean_ctor_release(x_11, 0); lean_ctor_release(x_11, 1); lean_ctor_release(x_11, 2); lean_ctor_release(x_11, 3); - x_76 = x_11; + x_90 = x_11; } else { lean_dec_ref(x_11); - x_76 = lean_box(0); + x_90 = lean_box(0); } -if (lean_is_scalar(x_76)) { - x_77 = lean_alloc_ctor(0, 4, 0); +if (lean_is_scalar(x_90)) { + x_91 = lean_alloc_ctor(0, 4, 0); } else { - x_77 = x_76; + x_91 = x_90; } -lean_ctor_set(x_77, 0, x_72); -lean_ctor_set(x_77, 1, x_73); -lean_ctor_set(x_77, 2, x_74); -lean_ctor_set(x_77, 3, x_75); -x_78 = lean_ctor_get(x_8, 1); -lean_inc(x_78); -x_79 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_79, 0, x_78); -lean_ctor_set(x_7, 4, x_79); -lean_ctor_set(x_7, 1, x_77); -lean_ctor_set(x_7, 0, x_71); -x_80 = l_instReprChar___closed__1; -x_81 = lean_string_append(x_80, x_1); -x_82 = lean_string_append(x_81, x_80); +lean_ctor_set(x_91, 0, x_86); +lean_ctor_set(x_91, 1, x_87); +lean_ctor_set(x_91, 2, x_88); +lean_ctor_set(x_91, 3, x_89); +x_92 = lean_ctor_get(x_8, 1); +lean_inc(x_92); +x_93 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_93, 0, x_92); +lean_ctor_set(x_7, 4, x_93); +lean_ctor_set(x_7, 1, x_91); +lean_ctor_set(x_7, 0, x_85); +x_94 = l_instReprChar___closed__1; +x_95 = lean_string_append(x_94, x_1); +x_96 = lean_string_append(x_95, x_94); lean_inc(x_7); -x_83 = l_Lean_Parser_symbolFnAux(x_1, x_82, x_7, x_8); -x_84 = lean_ctor_get(x_83, 3); -lean_inc(x_84); -if (lean_obj_tag(x_84) == 0) -{ -lean_object* x_85; lean_object* x_86; -lean_inc(x_7); -x_85 = lean_apply_2(x_2, x_7, x_83); -x_86 = lean_ctor_get(x_85, 3); -lean_inc(x_86); -if (lean_obj_tag(x_86) == 0) -{ -lean_object* x_87; lean_object* x_88; lean_object* x_89; -x_87 = lean_unsigned_to_nat(0u); -lean_inc(x_7); -x_88 = l_Lean_Parser_categoryParser___elambda__1(x_3, x_87, x_7, x_85); -x_89 = lean_ctor_get(x_88, 3); -lean_inc(x_89); -if (lean_obj_tag(x_89) == 0) -{ -lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; -x_90 = lean_string_append(x_80, x_4); -x_91 = lean_string_append(x_90, x_80); -lean_inc(x_7); -x_92 = l_Lean_Parser_symbolFnAux(x_4, x_91, x_7, x_88); -x_93 = lean_ctor_get(x_92, 3); -lean_inc(x_93); -if (lean_obj_tag(x_93) == 0) -{ -lean_object* x_94; lean_object* x_95; uint8_t x_96; lean_object* x_97; lean_object* x_98; -x_94 = l_Lean_Parser_Term_doSeqBracketed___closed__6; -x_95 = l_Lean_Parser_Term_doSeqIndent___closed__4; -x_96 = 1; -lean_inc(x_7); -x_97 = l_Lean_Parser_orelseFnCore(x_94, x_95, x_96, x_7, x_92); +x_97 = l_Lean_Parser_symbolFnAux(x_1, x_96, x_7, x_8); x_98 = lean_ctor_get(x_97, 3); lean_inc(x_98); -if (lean_obj_tag(x_98) == 0) +x_99 = lean_box(0); +x_100 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_98, x_99); +lean_dec(x_98); +if (x_100 == 0) { -lean_object* x_99; lean_object* x_100; +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_3); +lean_dec(x_2); +return x_97; +} +else +{ +lean_object* x_101; lean_object* x_102; uint8_t x_103; lean_inc(x_7); -x_99 = lean_apply_2(x_5, x_7, x_97); -x_100 = lean_ctor_get(x_99, 3); -lean_inc(x_100); -if (lean_obj_tag(x_100) == 0) +x_101 = lean_apply_2(x_2, x_7, x_97); +x_102 = lean_ctor_get(x_101, 3); +lean_inc(x_102); +x_103 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_102, x_99); +lean_dec(x_102); +if (x_103 == 0) { -lean_object* x_101; -x_101 = lean_apply_2(x_6, x_7, x_99); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_3); return x_101; } else { -lean_dec(x_100); -lean_dec(x_7); -lean_dec(x_6); -return x_99; -} -} -else +lean_object* x_104; lean_object* x_105; lean_object* x_106; uint8_t x_107; +x_104 = lean_unsigned_to_nat(0u); +lean_inc(x_7); +x_105 = l_Lean_Parser_categoryParser___elambda__1(x_3, x_104, x_7, x_101); +x_106 = lean_ctor_get(x_105, 3); +lean_inc(x_106); +x_107 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_106, x_99); +lean_dec(x_106); +if (x_107 == 0) { -lean_dec(x_98); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); -return x_97; -} +return x_105; } else { -lean_dec(x_93); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -return x_92; -} -} -else -{ -lean_dec(x_89); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -return x_88; -} -} -else -{ -lean_dec(x_86); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_3); -return x_85; -} -} -else -{ -lean_dec(x_84); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_3); -lean_dec(x_2); -return x_83; -} -} -} -else -{ -lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; uint8_t 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; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; -x_102 = lean_ctor_get(x_7, 0); -x_103 = lean_ctor_get(x_7, 1); -x_104 = lean_ctor_get(x_7, 2); -x_105 = lean_ctor_get(x_7, 3); -x_106 = lean_ctor_get_uint8(x_7, sizeof(void*)*6); -x_107 = lean_ctor_get_uint8(x_7, sizeof(void*)*6 + 1); -x_108 = lean_ctor_get(x_7, 5); -lean_inc(x_108); -lean_inc(x_105); -lean_inc(x_104); -lean_inc(x_103); -lean_inc(x_102); -lean_dec(x_7); -x_109 = lean_ctor_get(x_102, 0); -lean_inc(x_109); -x_110 = lean_ctor_get(x_102, 1); -lean_inc(x_110); -x_111 = lean_ctor_get(x_102, 2); +lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; uint8_t x_112; +x_108 = lean_string_append(x_94, x_4); +x_109 = lean_string_append(x_108, x_94); +lean_inc(x_7); +x_110 = l_Lean_Parser_symbolFnAux(x_4, x_109, x_7, x_105); +x_111 = lean_ctor_get(x_110, 3); lean_inc(x_111); -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_112 = x_102; -} else { - lean_dec_ref(x_102); - x_112 = lean_box(0); -} -if (lean_is_scalar(x_112)) { - x_113 = lean_alloc_ctor(0, 3, 0); -} else { - x_113 = x_112; -} -lean_ctor_set(x_113, 0, x_109); -lean_ctor_set(x_113, 1, x_110); -lean_ctor_set(x_113, 2, x_111); -x_114 = lean_ctor_get(x_103, 0); -lean_inc(x_114); -x_115 = lean_ctor_get(x_103, 1); -lean_inc(x_115); -x_116 = lean_ctor_get(x_103, 2); -lean_inc(x_116); -x_117 = lean_ctor_get(x_103, 3); -lean_inc(x_117); -if (lean_is_exclusive(x_103)) { - lean_ctor_release(x_103, 0); - lean_ctor_release(x_103, 1); - lean_ctor_release(x_103, 2); - lean_ctor_release(x_103, 3); - x_118 = x_103; -} else { - lean_dec_ref(x_103); - x_118 = lean_box(0); -} -if (lean_is_scalar(x_118)) { - x_119 = lean_alloc_ctor(0, 4, 0); -} else { - x_119 = x_118; -} -lean_ctor_set(x_119, 0, x_114); -lean_ctor_set(x_119, 1, x_115); -lean_ctor_set(x_119, 2, x_116); -lean_ctor_set(x_119, 3, x_117); -x_120 = lean_ctor_get(x_8, 1); -lean_inc(x_120); -x_121 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_121, 0, x_120); -x_122 = lean_alloc_ctor(0, 6, 2); -lean_ctor_set(x_122, 0, x_113); -lean_ctor_set(x_122, 1, x_119); -lean_ctor_set(x_122, 2, x_104); -lean_ctor_set(x_122, 3, x_105); -lean_ctor_set(x_122, 4, x_121); -lean_ctor_set(x_122, 5, x_108); -lean_ctor_set_uint8(x_122, sizeof(void*)*6, x_106); -lean_ctor_set_uint8(x_122, sizeof(void*)*6 + 1, x_107); -x_123 = l_instReprChar___closed__1; -x_124 = lean_string_append(x_123, x_1); -x_125 = lean_string_append(x_124, x_123); -lean_inc(x_122); -x_126 = l_Lean_Parser_symbolFnAux(x_1, x_125, x_122, x_8); -x_127 = lean_ctor_get(x_126, 3); -lean_inc(x_127); -if (lean_obj_tag(x_127) == 0) +x_112 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_111, x_99); +lean_dec(x_111); +if (x_112 == 0) { -lean_object* x_128; lean_object* x_129; -lean_inc(x_122); -x_128 = lean_apply_2(x_2, x_122, x_126); -x_129 = lean_ctor_get(x_128, 3); -lean_inc(x_129); -if (lean_obj_tag(x_129) == 0) -{ -lean_object* x_130; lean_object* x_131; lean_object* x_132; -x_130 = lean_unsigned_to_nat(0u); -lean_inc(x_122); -x_131 = l_Lean_Parser_categoryParser___elambda__1(x_3, x_130, x_122, x_128); -x_132 = lean_ctor_get(x_131, 3); -lean_inc(x_132); -if (lean_obj_tag(x_132) == 0) -{ -lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; -x_133 = lean_string_append(x_123, x_4); -x_134 = lean_string_append(x_133, x_123); -lean_inc(x_122); -x_135 = l_Lean_Parser_symbolFnAux(x_4, x_134, x_122, x_131); -x_136 = lean_ctor_get(x_135, 3); -lean_inc(x_136); -if (lean_obj_tag(x_136) == 0) -{ -lean_object* x_137; lean_object* x_138; uint8_t x_139; lean_object* x_140; lean_object* x_141; -x_137 = l_Lean_Parser_Term_doSeqBracketed___closed__6; -x_138 = l_Lean_Parser_Term_doSeqIndent___closed__4; -x_139 = 1; -lean_inc(x_122); -x_140 = l_Lean_Parser_orelseFnCore(x_137, x_138, x_139, x_122, x_135); -x_141 = lean_ctor_get(x_140, 3); -lean_inc(x_141); -if (lean_obj_tag(x_141) == 0) -{ -lean_object* x_142; lean_object* x_143; -lean_inc(x_122); -x_142 = lean_apply_2(x_5, x_122, x_140); -x_143 = lean_ctor_get(x_142, 3); -lean_inc(x_143); -if (lean_obj_tag(x_143) == 0) -{ -lean_object* x_144; -x_144 = lean_apply_2(x_6, x_122, x_142); -return x_144; +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +return x_110; } else { +lean_object* x_113; lean_object* x_114; uint8_t x_115; lean_object* x_116; lean_object* x_117; uint8_t x_118; +x_113 = l_Lean_Parser_Term_doSeqBracketed___closed__6; +x_114 = l_Lean_Parser_Term_doSeqIndent___closed__4; +x_115 = 1; +lean_inc(x_7); +x_116 = l_Lean_Parser_orelseFnCore(x_113, x_114, x_115, x_7, x_110); +x_117 = lean_ctor_get(x_116, 3); +lean_inc(x_117); +x_118 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_117, x_99); +lean_dec(x_117); +if (x_118 == 0) +{ +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +return x_116; +} +else +{ +lean_object* x_119; lean_object* x_120; uint8_t x_121; +lean_inc(x_7); +x_119 = lean_apply_2(x_5, x_7, x_116); +x_120 = lean_ctor_get(x_119, 3); +lean_inc(x_120); +x_121 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_120, x_99); +lean_dec(x_120); +if (x_121 == 0) +{ +lean_dec(x_7); +lean_dec(x_6); +return x_119; +} +else +{ +lean_object* x_122; +x_122 = lean_apply_2(x_6, x_7, x_119); +return x_122; +} +} +} +} +} +} +} +} +else +{ +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; 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; uint8_t x_150; +x_123 = lean_ctor_get(x_7, 0); +x_124 = lean_ctor_get(x_7, 1); +x_125 = lean_ctor_get(x_7, 2); +x_126 = lean_ctor_get(x_7, 3); +x_127 = lean_ctor_get_uint8(x_7, sizeof(void*)*6); +x_128 = lean_ctor_get_uint8(x_7, sizeof(void*)*6 + 1); +x_129 = lean_ctor_get(x_7, 5); +lean_inc(x_129); +lean_inc(x_126); +lean_inc(x_125); +lean_inc(x_124); +lean_inc(x_123); +lean_dec(x_7); +x_130 = lean_ctor_get(x_123, 0); +lean_inc(x_130); +x_131 = lean_ctor_get(x_123, 1); +lean_inc(x_131); +x_132 = lean_ctor_get(x_123, 2); +lean_inc(x_132); +if (lean_is_exclusive(x_123)) { + lean_ctor_release(x_123, 0); + lean_ctor_release(x_123, 1); + lean_ctor_release(x_123, 2); + x_133 = x_123; +} else { + lean_dec_ref(x_123); + x_133 = lean_box(0); +} +if (lean_is_scalar(x_133)) { + x_134 = lean_alloc_ctor(0, 3, 0); +} else { + x_134 = x_133; +} +lean_ctor_set(x_134, 0, x_130); +lean_ctor_set(x_134, 1, x_131); +lean_ctor_set(x_134, 2, x_132); +x_135 = lean_ctor_get(x_124, 0); +lean_inc(x_135); +x_136 = lean_ctor_get(x_124, 1); +lean_inc(x_136); +x_137 = lean_ctor_get(x_124, 2); +lean_inc(x_137); +x_138 = lean_ctor_get(x_124, 3); +lean_inc(x_138); +if (lean_is_exclusive(x_124)) { + lean_ctor_release(x_124, 0); + lean_ctor_release(x_124, 1); + lean_ctor_release(x_124, 2); + lean_ctor_release(x_124, 3); + x_139 = x_124; +} else { + lean_dec_ref(x_124); + x_139 = lean_box(0); +} +if (lean_is_scalar(x_139)) { + x_140 = lean_alloc_ctor(0, 4, 0); +} else { + x_140 = x_139; +} +lean_ctor_set(x_140, 0, x_135); +lean_ctor_set(x_140, 1, x_136); +lean_ctor_set(x_140, 2, x_137); +lean_ctor_set(x_140, 3, x_138); +x_141 = lean_ctor_get(x_8, 1); +lean_inc(x_141); +x_142 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_142, 0, x_141); +x_143 = lean_alloc_ctor(0, 6, 2); +lean_ctor_set(x_143, 0, x_134); +lean_ctor_set(x_143, 1, x_140); +lean_ctor_set(x_143, 2, x_125); +lean_ctor_set(x_143, 3, x_126); +lean_ctor_set(x_143, 4, x_142); +lean_ctor_set(x_143, 5, x_129); +lean_ctor_set_uint8(x_143, sizeof(void*)*6, x_127); +lean_ctor_set_uint8(x_143, sizeof(void*)*6 + 1, x_128); +x_144 = l_instReprChar___closed__1; +x_145 = lean_string_append(x_144, x_1); +x_146 = lean_string_append(x_145, x_144); +lean_inc(x_143); +x_147 = l_Lean_Parser_symbolFnAux(x_1, x_146, x_143, x_8); +x_148 = lean_ctor_get(x_147, 3); +lean_inc(x_148); +x_149 = lean_box(0); +x_150 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_148, x_149); +lean_dec(x_148); +if (x_150 == 0) +{ lean_dec(x_143); -lean_dec(x_122); -lean_dec(x_6); -return x_142; -} -} -else -{ -lean_dec(x_141); -lean_dec(x_122); -lean_dec(x_6); -lean_dec(x_5); -return x_140; -} -} -else -{ -lean_dec(x_136); -lean_dec(x_122); -lean_dec(x_6); -lean_dec(x_5); -return x_135; -} -} -else -{ -lean_dec(x_132); -lean_dec(x_122); -lean_dec(x_6); -lean_dec(x_5); -return x_131; -} -} -else -{ -lean_dec(x_129); -lean_dec(x_122); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_3); -return x_128; -} -} -else -{ -lean_dec(x_127); -lean_dec(x_122); lean_dec(x_6); lean_dec(x_5); lean_dec(x_3); lean_dec(x_2); -return x_126; +return x_147; +} +else +{ +lean_object* x_151; lean_object* x_152; uint8_t x_153; +lean_inc(x_143); +x_151 = lean_apply_2(x_2, x_143, x_147); +x_152 = lean_ctor_get(x_151, 3); +lean_inc(x_152); +x_153 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_152, x_149); +lean_dec(x_152); +if (x_153 == 0) +{ +lean_dec(x_143); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_3); +return x_151; +} +else +{ +lean_object* x_154; lean_object* x_155; lean_object* x_156; uint8_t x_157; +x_154 = lean_unsigned_to_nat(0u); +lean_inc(x_143); +x_155 = l_Lean_Parser_categoryParser___elambda__1(x_3, x_154, x_143, x_151); +x_156 = lean_ctor_get(x_155, 3); +lean_inc(x_156); +x_157 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_156, x_149); +lean_dec(x_156); +if (x_157 == 0) +{ +lean_dec(x_143); +lean_dec(x_6); +lean_dec(x_5); +return x_155; +} +else +{ +lean_object* x_158; lean_object* x_159; lean_object* x_160; lean_object* x_161; uint8_t x_162; +x_158 = lean_string_append(x_144, x_4); +x_159 = lean_string_append(x_158, x_144); +lean_inc(x_143); +x_160 = l_Lean_Parser_symbolFnAux(x_4, x_159, x_143, x_155); +x_161 = lean_ctor_get(x_160, 3); +lean_inc(x_161); +x_162 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_161, x_149); +lean_dec(x_161); +if (x_162 == 0) +{ +lean_dec(x_143); +lean_dec(x_6); +lean_dec(x_5); +return x_160; +} +else +{ +lean_object* x_163; lean_object* x_164; uint8_t x_165; lean_object* x_166; lean_object* x_167; uint8_t x_168; +x_163 = l_Lean_Parser_Term_doSeqBracketed___closed__6; +x_164 = l_Lean_Parser_Term_doSeqIndent___closed__4; +x_165 = 1; +lean_inc(x_143); +x_166 = l_Lean_Parser_orelseFnCore(x_163, x_164, x_165, x_143, x_160); +x_167 = lean_ctor_get(x_166, 3); +lean_inc(x_167); +x_168 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_167, x_149); +lean_dec(x_167); +if (x_168 == 0) +{ +lean_dec(x_143); +lean_dec(x_6); +lean_dec(x_5); +return x_166; +} +else +{ +lean_object* x_169; lean_object* x_170; uint8_t x_171; +lean_inc(x_143); +x_169 = lean_apply_2(x_5, x_143, x_166); +x_170 = lean_ctor_get(x_169, 3); +lean_inc(x_170); +x_171 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_170, x_149); +lean_dec(x_170); +if (x_171 == 0) +{ +lean_dec(x_143); +lean_dec(x_6); +return x_169; +} +else +{ +lean_object* x_172; +x_172 = lean_apply_2(x_6, x_143, x_169); +return x_172; +} +} +} +} +} } } } diff --git a/stage0/stdlib/Lean/Parser/Extension.c b/stage0/stdlib/Lean/Parser/Extension.c index 6c4cf94661..32599e42f1 100644 --- a/stage0/stdlib/Lean/Parser/Extension.c +++ b/stage0/stdlib/Lean/Parser/Extension.c @@ -434,6 +434,7 @@ lean_object* l_Lean_Parser_addLeadingParser_match__1(lean_object*); lean_object* l_Lean_Parser_symbolInfo(lean_object*); lean_object* l_Lean_Parser_parserAttributeHooks; lean_object* l___private_Lean_Parser_Extension_0__Lean_Parser_updateBuiltinTokens(lean_object*, lean_object*, lean_object*); +uint8_t l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_orelseFnCore(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*); lean_object* l_Lean_Parser_ParserExtension_State_kinds___default; extern lean_object* l_Lean_Parser_epsilonInfo; @@ -9559,17 +9560,17 @@ lean_dec(x_9); if (x_5 == 0) { x_11 = x_1; -goto block_34; +goto block_37; } else { -lean_object* x_35; +lean_object* x_38; lean_dec(x_1); -x_35 = l_stx___x3c_x7c_x3e_____closed__6; -x_11 = x_35; -goto block_34; +x_38 = l_stx___x3c_x7c_x3e_____closed__6; +x_11 = x_38; +goto block_37; } -block_34: +block_37: { lean_object* x_12; x_12 = l_Std_PersistentHashMap_find_x3f___at_Lean_Parser_getCategory___spec__1(x_10, x_11); @@ -9589,7 +9590,7 @@ return x_19; } else { -lean_object* x_20; lean_object* x_21; uint8_t x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; uint8_t x_26; +lean_object* x_20; lean_object* x_21; uint8_t x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; uint8_t x_26; lean_object* x_27; x_20 = lean_ctor_get(x_12, 0); lean_inc(x_20); lean_dec(x_12); @@ -9610,51 +9611,54 @@ lean_closure_set(x_25, 2, x_24); lean_inc(x_3); lean_inc(x_2); x_26 = l_Lean_Parser_tryAnti(x_2, x_3); +x_27 = lean_box(0); if (x_26 == 0) { -lean_object* x_27; lean_object* x_28; +lean_object* x_28; lean_object* x_29; uint8_t x_30; lean_dec(x_25); lean_dec(x_23); lean_inc(x_2); lean_inc(x_21); -x_27 = l_Lean_Parser_leadingParserAux(x_11, x_21, x_22, x_2, x_3); -x_28 = lean_ctor_get(x_27, 3); -lean_inc(x_28); -if (lean_obj_tag(x_28) == 0) +x_28 = l_Lean_Parser_leadingParserAux(x_11, x_21, x_22, x_2, x_3); +x_29 = lean_ctor_get(x_28, 3); +lean_inc(x_29); +x_30 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_29, x_27); +lean_dec(x_29); +if (x_30 == 0) { -lean_object* x_29; -x_29 = l_Lean_Parser_trailingLoop(x_21, x_2, x_27); -return x_29; -} -else -{ -lean_dec(x_28); lean_dec(x_21); lean_dec(x_2); -return x_27; +return x_28; +} +else +{ +lean_object* x_31; +x_31 = l_Lean_Parser_trailingLoop(x_21, x_2, x_28); +return x_31; } } else { -uint8_t x_30; lean_object* x_31; lean_object* x_32; +uint8_t x_32; lean_object* x_33; lean_object* x_34; uint8_t x_35; lean_dec(x_11); -x_30 = 1; +x_32 = 1; lean_inc(x_2); -x_31 = l_Lean_Parser_orelseFnCore(x_23, x_25, x_30, x_2, x_3); -x_32 = lean_ctor_get(x_31, 3); -lean_inc(x_32); -if (lean_obj_tag(x_32) == 0) +x_33 = l_Lean_Parser_orelseFnCore(x_23, x_25, x_32, x_2, x_3); +x_34 = lean_ctor_get(x_33, 3); +lean_inc(x_34); +x_35 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_34, x_27); +lean_dec(x_34); +if (x_35 == 0) { -lean_object* x_33; -x_33 = l_Lean_Parser_trailingLoop(x_21, x_2, x_31); +lean_dec(x_21); +lean_dec(x_2); return x_33; } else { -lean_dec(x_32); -lean_dec(x_21); -lean_dec(x_2); -return x_31; +lean_object* x_36; +x_36 = l_Lean_Parser_trailingLoop(x_21, x_2, x_33); +return x_36; } } } @@ -10235,7 +10239,7 @@ return x_2; lean_object* l_Lean_Parser_runParserCategory(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_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; 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_inc(x_3); x_5 = l_Lean_Parser_mkInputContext(x_3, x_4); x_6 = lean_box(0); @@ -10252,47 +10256,49 @@ lean_inc(x_9); x_12 = l_Lean_Parser_categoryParserFnImpl(x_2, x_9, x_11); x_13 = lean_ctor_get(x_12, 3); lean_inc(x_13); -if (lean_obj_tag(x_13) == 0) -{ -lean_object* x_14; uint8_t x_15; -x_14 = lean_ctor_get(x_12, 1); -lean_inc(x_14); -x_15 = lean_string_utf8_at_end(x_3, x_14); -lean_dec(x_14); -lean_dec(x_3); +x_14 = lean_box(0); +x_15 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_13, x_14); +lean_dec(x_13); if (x_15 == 0) { -lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; -x_16 = l_Lean_Parser_ParserState_mkEOIError___closed__1; -x_17 = l_Lean_Parser_ParserState_mkError(x_12, x_16); -x_18 = l_Lean_Parser_ParserState_toErrorMsg(x_9, x_17); -x_19 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_19, 0, x_18); -return x_19; -} -else -{ -lean_object* x_20; lean_object* x_21; lean_object* x_22; -lean_dec(x_9); -x_20 = lean_ctor_get(x_12, 0); -lean_inc(x_20); -lean_dec(x_12); -x_21 = l_Array_back___at_Lean_Syntax_Traverser_up___spec__2(x_20); -lean_dec(x_20); -x_22 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_22, 0, x_21); -return x_22; -} -} -else -{ -lean_object* x_23; lean_object* x_24; -lean_dec(x_13); +lean_object* x_16; lean_object* x_17; lean_dec(x_3); -x_23 = l_Lean_Parser_ParserState_toErrorMsg(x_9, x_12); -x_24 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_24, 0, x_23); -return x_24; +x_16 = l_Lean_Parser_ParserState_toErrorMsg(x_9, x_12); +x_17 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_17, 0, x_16); +return x_17; +} +else +{ +lean_object* x_18; uint8_t x_19; +x_18 = lean_ctor_get(x_12, 1); +lean_inc(x_18); +x_19 = lean_string_utf8_at_end(x_3, x_18); +lean_dec(x_18); +lean_dec(x_3); +if (x_19 == 0) +{ +lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; +x_20 = l_Lean_Parser_ParserState_mkEOIError___closed__1; +x_21 = l_Lean_Parser_ParserState_mkError(x_12, x_20); +x_22 = l_Lean_Parser_ParserState_toErrorMsg(x_9, x_21); +x_23 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_23, 0, x_22); +return x_23; +} +else +{ +lean_object* x_24; lean_object* x_25; lean_object* x_26; +lean_dec(x_9); +x_24 = lean_ctor_get(x_12, 0); +lean_inc(x_24); +lean_dec(x_12); +x_25 = l_Array_back___at_Lean_Syntax_Traverser_up___spec__2(x_24); +lean_dec(x_24); +x_26 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_26, 0, x_25); +return x_26; +} } } } diff --git a/stage0/stdlib/Lean/Parser/Extra.c b/stage0/stdlib/Lean/Parser/Extra.c index 44e7907129..3061a3909c 100644 --- a/stage0/stdlib/Lean/Parser/Extra.c +++ b/stage0/stdlib/Lean/Parser/Extra.c @@ -415,6 +415,7 @@ lean_object* l_Lean_Parser_symbolInfo(lean_object*); lean_object* l_Lean_Parser_charLit_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_charLit_parenthesizer___closed__2; lean_object* l_Lean_Parser_charLit_formatter___closed__3; +uint8_t l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_orelseFnCore(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*); extern lean_object* l_Int_instInhabitedInt___closed__1; lean_object* l_Lean_Parser_notSymbol_parenthesizer___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1988,7 +1989,7 @@ return x_10; lean_object* l_Lean_Parser_many1___elambda__1(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_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; uint8_t x_9; x_4 = lean_ctor_get(x_3, 0); lean_inc(x_4); x_5 = lean_array_get_size(x_4); @@ -1998,23 +1999,25 @@ lean_inc(x_2); x_6 = lean_apply_2(x_1, x_2, x_3); x_7 = lean_ctor_get(x_6, 3); lean_inc(x_7); -if (lean_obj_tag(x_7) == 0) +x_8 = lean_box(0); +x_9 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_7, x_8); +lean_dec(x_7); +if (x_9 == 0) { -lean_object* x_8; lean_object* x_9; lean_object* x_10; -x_8 = l_Lean_Parser_manyAux(x_1, x_2, x_6); -x_9 = l_Lean_nullKind; -x_10 = l_Lean_Parser_ParserState_mkNode(x_8, x_9, x_5); -return x_10; +lean_object* x_10; lean_object* x_11; +lean_dec(x_2); +lean_dec(x_1); +x_10 = l_Lean_nullKind; +x_11 = l_Lean_Parser_ParserState_mkNode(x_6, x_10, x_5); +return x_11; } else { -lean_object* x_11; lean_object* x_12; -lean_dec(x_7); -lean_dec(x_2); -lean_dec(x_1); -x_11 = l_Lean_nullKind; -x_12 = l_Lean_Parser_ParserState_mkNode(x_6, x_11, x_5); -return x_12; +lean_object* x_12; lean_object* x_13; lean_object* x_14; +x_12 = l_Lean_Parser_manyAux(x_1, x_2, x_6); +x_13 = l_Lean_nullKind; +x_14 = l_Lean_Parser_ParserState_mkNode(x_12, x_13, x_5); +return x_14; } } } @@ -2239,6 +2242,7 @@ if (x_5 == 0) lean_object* x_6; lean_dec(x_4); x_6 = l_Lean_Parser_rawIdentFn(x_1, x_2); +lean_dec(x_1); return x_6; } else diff --git a/stage0/stdlib/Lean/Parser/Level.c b/stage0/stdlib/Lean/Parser/Level.c index a12f0332b0..cb63fabded 100644 --- a/stage0/stdlib/Lean/Parser/Level.c +++ b/stage0/stdlib/Lean/Parser/Level.c @@ -192,6 +192,7 @@ lean_object* l_Lean_Parser_Level_paren___elambda__1___closed__10; lean_object* l___regBuiltin_Lean_Parser_Level_ident_formatter___closed__1; lean_object* l_Lean_Parser_Level_paren_parenthesizer___closed__5; lean_object* l_Lean_Parser_symbolInfo(lean_object*); +uint8_t l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_orelseFnCore(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_epsilonInfo; lean_object* l_Lean_Parser_Level_max___elambda__1___closed__10; @@ -1787,22 +1788,24 @@ return x_5; lean_object* l_Lean_Parser_Level_num___elambda__1(lean_object* x_1, lean_object* x_2) { _start: { -lean_object* x_3; lean_object* x_4; lean_object* x_5; +lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; uint8_t x_7; x_3 = l_Lean_Parser_maxPrec; x_4 = l_Lean_Parser_checkPrecFn(x_3, x_1, x_2); x_5 = lean_ctor_get(x_4, 3); lean_inc(x_5); -if (lean_obj_tag(x_5) == 0) +x_6 = lean_box(0); +x_7 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_5, x_6); +lean_dec(x_5); +if (x_7 == 0) { -lean_object* x_6; -x_6 = l_Lean_Parser_numLit___elambda__1(x_1, x_4); -return x_6; +lean_dec(x_1); +return x_4; } else { -lean_dec(x_5); -lean_dec(x_1); -return x_4; +lean_object* x_8; +x_8 = l_Lean_Parser_numLit___elambda__1(x_1, x_4); +return x_8; } } } @@ -1940,22 +1943,24 @@ return x_5; lean_object* l_Lean_Parser_Level_ident___elambda__1(lean_object* x_1, lean_object* x_2) { _start: { -lean_object* x_3; lean_object* x_4; lean_object* x_5; +lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; uint8_t x_7; x_3 = l_Lean_Parser_maxPrec; x_4 = l_Lean_Parser_checkPrecFn(x_3, x_1, x_2); x_5 = lean_ctor_get(x_4, 3); lean_inc(x_5); -if (lean_obj_tag(x_5) == 0) +x_6 = lean_box(0); +x_7 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_5, x_6); +lean_dec(x_5); +if (x_7 == 0) { -lean_object* x_6; -x_6 = l_Lean_Parser_ident___elambda__1(x_1, x_4); -return x_6; +lean_dec(x_1); +return x_4; } else { -lean_dec(x_5); -lean_dec(x_1); -return x_4; +lean_object* x_8; +x_8 = l_Lean_Parser_ident___elambda__1(x_1, x_4); +return x_8; } } } @@ -2130,50 +2135,53 @@ return x_3; lean_object* l_Lean_Parser_Level_addLit___elambda__1(lean_object* x_1, lean_object* x_2) { _start: { -lean_object* x_3; lean_object* x_4; lean_object* x_5; +lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; uint8_t x_7; x_3 = lean_unsigned_to_nat(65u); x_4 = l_Lean_Parser_checkPrecFn(x_3, x_1, x_2); x_5 = lean_ctor_get(x_4, 3); lean_inc(x_5); -if (lean_obj_tag(x_5) == 0) -{ -lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; -x_6 = lean_ctor_get(x_4, 0); -lean_inc(x_6); -x_7 = lean_array_get_size(x_6); -lean_dec(x_6); -x_8 = l_Lean_Parser_Level_addLit___elambda__1___closed__3; -x_9 = l_Lean_Parser_Level_addLit___elambda__1___closed__5; -lean_inc(x_1); -x_10 = l_Lean_Parser_symbolFnAux(x_8, x_9, x_1, x_4); -x_11 = lean_ctor_get(x_10, 3); -lean_inc(x_11); -if (lean_obj_tag(x_11) == 0) -{ -lean_object* x_12; lean_object* x_13; lean_object* x_14; -x_12 = l_Lean_Parser_numLit___elambda__1(x_1, x_10); -x_13 = l_Lean_Parser_Level_addLit___elambda__1___closed__2; -x_14 = l_Lean_Parser_ParserState_mkTrailingNode(x_12, x_13, x_7); -lean_dec(x_7); -return x_14; -} -else -{ -lean_object* x_15; lean_object* x_16; -lean_dec(x_11); -lean_dec(x_1); -x_15 = l_Lean_Parser_Level_addLit___elambda__1___closed__2; -x_16 = l_Lean_Parser_ParserState_mkTrailingNode(x_10, x_15, x_7); -lean_dec(x_7); -return x_16; -} -} -else -{ +x_6 = lean_box(0); +x_7 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_5, x_6); lean_dec(x_5); +if (x_7 == 0) +{ lean_dec(x_1); return x_4; } +else +{ +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; +x_8 = lean_ctor_get(x_4, 0); +lean_inc(x_8); +x_9 = lean_array_get_size(x_8); +lean_dec(x_8); +x_10 = l_Lean_Parser_Level_addLit___elambda__1___closed__3; +x_11 = l_Lean_Parser_Level_addLit___elambda__1___closed__5; +lean_inc(x_1); +x_12 = l_Lean_Parser_symbolFnAux(x_10, x_11, x_1, x_4); +x_13 = lean_ctor_get(x_12, 3); +lean_inc(x_13); +x_14 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_13, x_6); +lean_dec(x_13); +if (x_14 == 0) +{ +lean_object* x_15; lean_object* x_16; +lean_dec(x_1); +x_15 = l_Lean_Parser_Level_addLit___elambda__1___closed__2; +x_16 = l_Lean_Parser_ParserState_mkTrailingNode(x_12, x_15, x_9); +lean_dec(x_9); +return x_16; +} +else +{ +lean_object* x_17; lean_object* x_18; lean_object* x_19; +x_17 = l_Lean_Parser_numLit___elambda__1(x_1, x_12); +x_18 = l_Lean_Parser_Level_addLit___elambda__1___closed__2; +x_19 = l_Lean_Parser_ParserState_mkTrailingNode(x_17, x_18, x_9); +lean_dec(x_9); +return x_19; +} +} } } static lean_object* _init_l_Lean_Parser_Level_addLit___closed__1() { diff --git a/stage0/stdlib/Lean/Parser/StrInterpolation.c b/stage0/stdlib/Lean/Parser/StrInterpolation.c index ef00678ce7..149c57aa7d 100644 --- a/stage0/stdlib/Lean/Parser/StrInterpolation.c +++ b/stage0/stdlib/Lean/Parser/StrInterpolation.c @@ -46,6 +46,7 @@ lean_object* l_Lean_Parser_interpolatedStr___closed__1; uint8_t l_UInt32_decEq(uint32_t, uint32_t); uint8_t l_Lean_Parser_interpolatedStrFn_parse___lambda__1(uint32_t); lean_object* l_Lean_Parser_interpolatedStr___elambda__1(lean_object*, lean_object*, lean_object*); +uint8_t l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_orelseFnCore(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*); lean_object* l_Lean_Parser_interpolatedStrFn_parse(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_mkAntiquot(lean_object*, lean_object*, uint8_t); @@ -151,7 +152,7 @@ goto _start; } else { -lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; +lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; uint8_t x_24; x_19 = l_Lean_interpolatedStrLitKind; x_20 = l_Lean_Parser_mkNodeToken(x_19, x_4, x_5, x_11); lean_inc(x_1); @@ -159,88 +160,93 @@ lean_inc(x_5); x_21 = lean_apply_2(x_1, x_5, x_20); x_22 = lean_ctor_get(x_21, 3); lean_inc(x_22); -if (lean_obj_tag(x_22) == 0) -{ -lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; -x_23 = lean_ctor_get(x_21, 1); -lean_inc(x_23); -x_24 = l_Lean_Parser_interpolatedStrFn_parse___closed__1; -x_25 = l_Lean_Parser_interpolatedStrFn_parse___closed__2; -x_26 = l_Lean_Parser_satisfyFn(x_24, x_25, x_5, x_21); -x_27 = lean_ctor_get(x_26, 3); -lean_inc(x_27); -if (lean_obj_tag(x_27) == 0) -{ -x_4 = x_23; -x_6 = x_26; -goto _start; -} -else -{ -lean_dec(x_27); -lean_dec(x_23); -lean_dec(x_5); -lean_dec(x_3); -lean_dec(x_1); -return x_26; -} -} -else -{ +x_23 = lean_box(0); +x_24 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_22, x_23); lean_dec(x_22); +if (x_24 == 0) +{ lean_dec(x_5); lean_dec(x_3); lean_dec(x_1); return x_21; } -} +else +{ +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_21, 1); +lean_inc(x_25); +x_26 = l_Lean_Parser_interpolatedStrFn_parse___closed__1; +x_27 = l_Lean_Parser_interpolatedStrFn_parse___closed__2; +x_28 = l_Lean_Parser_satisfyFn(x_26, x_27, x_5, x_21); +x_29 = lean_ctor_get(x_28, 3); +lean_inc(x_29); +x_30 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_29, x_23); +lean_dec(x_29); +if (x_30 == 0) +{ +lean_dec(x_25); +lean_dec(x_5); +lean_dec(x_3); +lean_dec(x_1); +return x_28; } else { -lean_object* x_29; lean_object* x_30; lean_object* x_31; -x_29 = l_Lean_Parser_interpolatedStrFn_parse___closed__3; -x_30 = l_Lean_Parser_quotedCharCoreFn(x_29, x_5, x_11); -x_31 = lean_ctor_get(x_30, 3); -lean_inc(x_31); -if (lean_obj_tag(x_31) == 0) -{ -x_6 = x_30; +x_4 = x_25; +x_6 = x_28; goto _start; } +} +} +} else { -lean_dec(x_31); +lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; uint8_t x_36; +x_32 = l_Lean_Parser_interpolatedStrFn_parse___closed__3; +x_33 = l_Lean_Parser_quotedCharCoreFn(x_32, x_5, x_11); +x_34 = lean_ctor_get(x_33, 3); +lean_inc(x_34); +x_35 = lean_box(0); +x_36 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_34, x_35); +lean_dec(x_34); +if (x_36 == 0) +{ lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_1); -return x_30; +return x_33; +} +else +{ +x_6 = x_33; +goto _start; } } } else { -lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; +lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_dec(x_1); -x_33 = l_Lean_interpolatedStrLitKind; -x_34 = l_Lean_Parser_mkNodeToken(x_33, x_4, x_5, x_11); +x_38 = l_Lean_interpolatedStrLitKind; +x_39 = l_Lean_Parser_mkNodeToken(x_38, x_4, x_5, x_11); lean_dec(x_5); -x_35 = l_Lean_interpolatedStrKind; -x_36 = l_Lean_Parser_ParserState_mkNode(x_34, x_35, x_3); -return x_36; +x_40 = l_Lean_interpolatedStrKind; +x_41 = l_Lean_Parser_ParserState_mkNode(x_39, x_40, x_3); +return x_41; } } else { -lean_object* x_37; lean_object* x_38; +lean_object* x_42; lean_object* x_43; lean_dec(x_7); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_1); -x_37 = l_Lean_Parser_ParserState_mkEOIError___closed__1; -x_38 = l_Lean_Parser_ParserState_mkUnexpectedError(x_6, x_37); -return x_38; +x_42 = l_Lean_Parser_ParserState_mkEOIError___closed__1; +x_43 = l_Lean_Parser_ParserState_mkUnexpectedError(x_6, x_42); +return x_43; } } } diff --git a/stage0/stdlib/Lean/Parser/Syntax.c b/stage0/stdlib/Lean/Parser/Syntax.c index 5c175369d9..9eb8cce4bb 100644 --- a/stage0/stdlib/Lean/Parser/Syntax.c +++ b/stage0/stdlib/Lean/Parser/Syntax.c @@ -1161,6 +1161,7 @@ lean_object* l_Lean_Parser_Syntax_sepBy_formatter___closed__9; lean_object* l_Lean_Parser_Command_syntaxAbbrev___closed__5; lean_object* l_Lean_Parser_Command_syntaxAbbrev___elambda__1___closed__9; lean_object* l_Lean_Parser_Command_optKind___closed__2; +uint8_t l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_notationItem_formatter___closed__4; lean_object* l_Lean_Parser_Command_elabArg_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_orelseFnCore(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*); @@ -1992,22 +1993,24 @@ return x_1; lean_object* l_Lean_Parser_Syntax_numPrec___elambda__1(lean_object* x_1, lean_object* x_2) { _start: { -lean_object* x_3; lean_object* x_4; lean_object* x_5; +lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; uint8_t x_7; x_3 = l_Lean_Parser_maxPrec; x_4 = l_Lean_Parser_checkPrecFn(x_3, x_1, x_2); x_5 = lean_ctor_get(x_4, 3); lean_inc(x_5); -if (lean_obj_tag(x_5) == 0) +x_6 = lean_box(0); +x_7 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_5, x_6); +lean_dec(x_5); +if (x_7 == 0) { -lean_object* x_6; -x_6 = l_Lean_Parser_numLit___elambda__1(x_1, x_4); -return x_6; +lean_dec(x_1); +return x_4; } else { -lean_dec(x_5); -lean_dec(x_1); -return x_4; +lean_object* x_8; +x_8 = l_Lean_Parser_numLit___elambda__1(x_1, x_4); +return x_8; } } } @@ -9503,43 +9506,46 @@ return x_3; lean_object* l_Lean_Parser_Command_notationItem___elambda__1(lean_object* x_1, lean_object* x_2) { _start: { -lean_object* x_3; -x_3 = lean_ctor_get(x_2, 3); -lean_inc(x_3); -if (lean_obj_tag(x_3) == 0) -{ -lean_object* x_4; lean_object* x_5; uint8_t x_6; -x_4 = l_Lean_Parser_Command_notationItem___elambda__1___closed__4; -x_5 = lean_ctor_get(x_4, 1); +lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; uint8_t x_7; +x_3 = l_Lean_Parser_Command_notationItem___elambda__1___closed__4; +x_4 = lean_ctor_get(x_3, 1); +lean_inc(x_4); +x_5 = lean_ctor_get(x_2, 3); lean_inc(x_5); -lean_inc(x_2); -lean_inc(x_1); -x_6 = l_Lean_Parser_tryAnti(x_1, x_2); -if (x_6 == 0) -{ -lean_object* x_7; lean_object* x_8; uint8_t x_9; lean_object* x_10; +x_6 = lean_box(0); +x_7 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_5, x_6); lean_dec(x_5); -x_7 = l_Lean_Parser_strLit___closed__2; -x_8 = l_Lean_Parser_Command_identPrec___closed__4; -x_9 = 1; -x_10 = l_Lean_Parser_orelseFnCore(x_7, x_8, x_9, x_1, x_2); -return x_10; -} -else +if (x_7 == 0) { -lean_object* x_11; uint8_t x_12; lean_object* x_13; -x_11 = l_Lean_Parser_Command_notationItem___elambda__1___closed__5; -x_12 = 1; -x_13 = l_Lean_Parser_orelseFnCore(x_5, x_11, x_12, x_1, x_2); -return x_13; -} -} -else -{ -lean_dec(x_3); +lean_dec(x_4); lean_dec(x_1); return x_2; } +else +{ +uint8_t x_8; +lean_inc(x_2); +lean_inc(x_1); +x_8 = l_Lean_Parser_tryAnti(x_1, x_2); +if (x_8 == 0) +{ +lean_object* x_9; lean_object* x_10; uint8_t x_11; lean_object* x_12; +lean_dec(x_4); +x_9 = l_Lean_Parser_strLit___closed__2; +x_10 = l_Lean_Parser_Command_identPrec___closed__4; +x_11 = 1; +x_12 = l_Lean_Parser_orelseFnCore(x_9, x_10, x_11, x_1, x_2); +return x_12; +} +else +{ +lean_object* x_13; uint8_t x_14; lean_object* x_15; +x_13 = l_Lean_Parser_Command_notationItem___elambda__1___closed__5; +x_14 = 1; +x_15 = l_Lean_Parser_orelseFnCore(x_4, x_13, x_14, x_1, x_2); +return x_15; +} +} } } static lean_object* _init_l_Lean_Parser_Command_notationItem___closed__1() { @@ -13567,41 +13573,44 @@ return x_3; lean_object* l_Lean_Parser_Command_macroTailTactic___elambda__1(lean_object* x_1, lean_object* x_2) { _start: { -lean_object* x_3; lean_object* x_4; lean_object* x_5; +lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; uint8_t x_7; x_3 = l_Lean_Parser_Command_macroTailTactic___elambda__1___closed__2; lean_inc(x_1); x_4 = l_Lean_Parser_atomicFn(x_3, x_1, x_2); x_5 = lean_ctor_get(x_4, 3); lean_inc(x_5); -if (lean_obj_tag(x_5) == 0) -{ -lean_object* x_6; lean_object* x_7; -lean_inc(x_1); -x_6 = l_Lean_Parser_darrow___elambda__1(x_1, x_4); -x_7 = lean_ctor_get(x_6, 3); -lean_inc(x_7); -if (lean_obj_tag(x_7) == 0) -{ -lean_object* x_8; lean_object* x_9; uint8_t x_10; lean_object* x_11; -x_8 = l_Lean_Parser_Command_macroTailTactic___elambda__1___closed__3; -x_9 = l_Lean_Parser_antiquotNestedExpr___elambda__1___closed__2; -x_10 = 1; -x_11 = l_Lean_Parser_orelseFnCore(x_8, x_9, x_10, x_1, x_6); -return x_11; -} -else -{ -lean_dec(x_7); -lean_dec(x_1); -return x_6; -} -} -else -{ +x_6 = lean_box(0); +x_7 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_5, x_6); lean_dec(x_5); +if (x_7 == 0) +{ lean_dec(x_1); return x_4; } +else +{ +lean_object* x_8; lean_object* x_9; uint8_t x_10; +lean_inc(x_1); +x_8 = l_Lean_Parser_darrow___elambda__1(x_1, x_4); +x_9 = lean_ctor_get(x_8, 3); +lean_inc(x_9); +x_10 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_9, x_6); +lean_dec(x_9); +if (x_10 == 0) +{ +lean_dec(x_1); +return x_8; +} +else +{ +lean_object* x_11; lean_object* x_12; uint8_t x_13; lean_object* x_14; +x_11 = l_Lean_Parser_Command_macroTailTactic___elambda__1___closed__3; +x_12 = l_Lean_Parser_antiquotNestedExpr___elambda__1___closed__2; +x_13 = 1; +x_14 = l_Lean_Parser_orelseFnCore(x_11, x_12, x_13, x_1, x_8); +return x_14; +} +} } } static lean_object* _init_l_Lean_Parser_Command_macroTailTactic___closed__1() { @@ -13745,41 +13754,44 @@ return x_3; lean_object* l_Lean_Parser_Command_macroTailCommand___elambda__1(lean_object* x_1, lean_object* x_2) { _start: { -lean_object* x_3; lean_object* x_4; lean_object* x_5; +lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; uint8_t x_7; x_3 = l_Lean_Parser_Command_macroTailCommand___elambda__1___closed__2; lean_inc(x_1); x_4 = l_Lean_Parser_atomicFn(x_3, x_1, x_2); x_5 = lean_ctor_get(x_4, 3); lean_inc(x_5); -if (lean_obj_tag(x_5) == 0) -{ -lean_object* x_6; lean_object* x_7; -lean_inc(x_1); -x_6 = l_Lean_Parser_darrow___elambda__1(x_1, x_4); -x_7 = lean_ctor_get(x_6, 3); -lean_inc(x_7); -if (lean_obj_tag(x_7) == 0) -{ -lean_object* x_8; lean_object* x_9; uint8_t x_10; lean_object* x_11; -x_8 = l_Lean_Parser_Command_macroTailCommand___elambda__1___closed__5; -x_9 = l_Lean_Parser_antiquotNestedExpr___elambda__1___closed__2; -x_10 = 1; -x_11 = l_Lean_Parser_orelseFnCore(x_8, x_9, x_10, x_1, x_6); -return x_11; -} -else -{ -lean_dec(x_7); -lean_dec(x_1); -return x_6; -} -} -else -{ +x_6 = lean_box(0); +x_7 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_5, x_6); lean_dec(x_5); +if (x_7 == 0) +{ lean_dec(x_1); return x_4; } +else +{ +lean_object* x_8; lean_object* x_9; uint8_t x_10; +lean_inc(x_1); +x_8 = l_Lean_Parser_darrow___elambda__1(x_1, x_4); +x_9 = lean_ctor_get(x_8, 3); +lean_inc(x_9); +x_10 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_9, x_6); +lean_dec(x_9); +if (x_10 == 0) +{ +lean_dec(x_1); +return x_8; +} +else +{ +lean_object* x_11; lean_object* x_12; uint8_t x_13; lean_object* x_14; +x_11 = l_Lean_Parser_Command_macroTailCommand___elambda__1___closed__5; +x_12 = l_Lean_Parser_antiquotNestedExpr___elambda__1___closed__2; +x_13 = 1; +x_14 = l_Lean_Parser_orelseFnCore(x_11, x_12, x_13, x_1, x_8); +return x_14; +} +} } } static lean_object* _init_l_Lean_Parser_Command_macroTailCommand___closed__1() { @@ -13913,41 +13925,44 @@ return x_3; lean_object* l_Lean_Parser_Command_macroTailDefault___elambda__1(lean_object* x_1, lean_object* x_2) { _start: { -lean_object* x_3; lean_object* x_4; lean_object* x_5; +lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; uint8_t x_7; x_3 = l_Lean_Parser_Command_syntax___elambda__1___closed__4; lean_inc(x_1); x_4 = l_Lean_Parser_atomicFn(x_3, x_1, x_2); x_5 = lean_ctor_get(x_4, 3); lean_inc(x_5); -if (lean_obj_tag(x_5) == 0) -{ -lean_object* x_6; lean_object* x_7; -lean_inc(x_1); -x_6 = l_Lean_Parser_darrow___elambda__1(x_1, x_4); -x_7 = lean_ctor_get(x_6, 3); -lean_inc(x_7); -if (lean_obj_tag(x_7) == 0) -{ -lean_object* x_8; lean_object* x_9; uint8_t x_10; lean_object* x_11; -x_8 = l_Lean_Parser_Command_macroTailDefault___elambda__1___closed__4; -x_9 = l_Lean_Parser_antiquotNestedExpr___elambda__1___closed__2; -x_10 = 1; -x_11 = l_Lean_Parser_orelseFnCore(x_8, x_9, x_10, x_1, x_6); -return x_11; -} -else -{ -lean_dec(x_7); -lean_dec(x_1); -return x_6; -} -} -else -{ +x_6 = lean_box(0); +x_7 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_5, x_6); lean_dec(x_5); +if (x_7 == 0) +{ lean_dec(x_1); return x_4; } +else +{ +lean_object* x_8; lean_object* x_9; uint8_t x_10; +lean_inc(x_1); +x_8 = l_Lean_Parser_darrow___elambda__1(x_1, x_4); +x_9 = lean_ctor_get(x_8, 3); +lean_inc(x_9); +x_10 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_9, x_6); +lean_dec(x_9); +if (x_10 == 0) +{ +lean_dec(x_1); +return x_8; +} +else +{ +lean_object* x_11; lean_object* x_12; uint8_t x_13; lean_object* x_14; +x_11 = l_Lean_Parser_Command_macroTailDefault___elambda__1___closed__4; +x_12 = l_Lean_Parser_antiquotNestedExpr___elambda__1___closed__2; +x_13 = 1; +x_14 = l_Lean_Parser_orelseFnCore(x_11, x_12, x_13, x_1, x_8); +return x_14; +} +} } } static lean_object* _init_l_Lean_Parser_Command_macroTailDefault___closed__1() { @@ -16147,40 +16162,43 @@ return x_3; lean_object* l_Lean_Parser_Command_elabTail___elambda__1(lean_object* x_1, lean_object* x_2) { _start: { -lean_object* x_3; lean_object* x_4; lean_object* x_5; +lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; uint8_t x_7; x_3 = l_Lean_Parser_Command_elabTail___elambda__1___closed__9; lean_inc(x_1); x_4 = l_Lean_Parser_atomicFn(x_3, x_1, x_2); x_5 = lean_ctor_get(x_4, 3); lean_inc(x_5); -if (lean_obj_tag(x_5) == 0) -{ -lean_object* x_6; lean_object* x_7; -lean_inc(x_1); -x_6 = l_Lean_Parser_darrow___elambda__1(x_1, x_4); -x_7 = lean_ctor_get(x_6, 3); -lean_inc(x_7); -if (lean_obj_tag(x_7) == 0) -{ -lean_object* x_8; lean_object* x_9; lean_object* x_10; -x_8 = l_term___u2218_____closed__6; -x_9 = lean_unsigned_to_nat(0u); -x_10 = l_Lean_Parser_categoryParser___elambda__1(x_8, x_9, x_1, x_6); -return x_10; -} -else -{ -lean_dec(x_7); -lean_dec(x_1); -return x_6; -} -} -else -{ +x_6 = lean_box(0); +x_7 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_5, x_6); lean_dec(x_5); +if (x_7 == 0) +{ lean_dec(x_1); return x_4; } +else +{ +lean_object* x_8; lean_object* x_9; uint8_t x_10; +lean_inc(x_1); +x_8 = l_Lean_Parser_darrow___elambda__1(x_1, x_4); +x_9 = lean_ctor_get(x_8, 3); +lean_inc(x_9); +x_10 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_9, x_6); +lean_dec(x_9); +if (x_10 == 0) +{ +lean_dec(x_1); +return x_8; +} +else +{ +lean_object* x_11; lean_object* x_12; lean_object* x_13; +x_11 = l_term___u2218_____closed__6; +x_12 = lean_unsigned_to_nat(0u); +x_13 = l_Lean_Parser_categoryParser___elambda__1(x_11, x_12, x_1, x_8); +return x_13; +} +} } } static lean_object* _init_l_Lean_Parser_Command_elabTail___closed__1() { diff --git a/stage0/stdlib/Lean/Parser/Tactic.c b/stage0/stdlib/Lean/Parser/Tactic.c index 9b08e4edcd..8491710b8e 100644 --- a/stage0/stdlib/Lean/Parser/Tactic.c +++ b/stage0/stdlib/Lean/Parser/Tactic.c @@ -80,6 +80,7 @@ extern lean_object* l_Lean_PrettyPrinter_Formatter_formatterAliasesRef; lean_object* l___regBuiltin_Lean_Parser_Tactic_nestedTactic_parenthesizer___closed__1; lean_object* l___regBuiltin_Lean_Parser_Tactic_unknown_parenthesizer___closed__1; extern lean_object* l_Lean_Parser_Tactic_tacticSeq; +uint8_t l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_orelseFnCore(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_epsilonInfo; lean_object* l_Lean_Parser_Tactic_unknown_parenthesizer___closed__2; @@ -238,7 +239,7 @@ 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; lean_object* x_12; +lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; uint8_t x_14; x_9 = lean_ctor_get(x_2, 1); lean_inc(x_9); x_10 = lean_alloc_ctor(1, 1, 0); @@ -248,228 +249,236 @@ lean_inc(x_1); x_11 = l_Lean_Parser_ident___elambda__1(x_1, x_2); x_12 = lean_ctor_get(x_11, 3); lean_inc(x_12); -if (lean_obj_tag(x_12) == 0) -{ -lean_object* x_13; uint8_t x_14; lean_object* x_15; -x_13 = l_Lean_Parser_Tactic_unknown___elambda__1___lambda__1___closed__1; -x_14 = 1; -x_15 = l_Lean_Parser_errorAtSavedPosFn(x_13, x_14, x_1, x_11); -return x_15; -} -else -{ +x_13 = lean_box(0); +x_14 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_12, x_13); lean_dec(x_12); +if (x_14 == 0) +{ lean_dec(x_1); return x_11; } +else +{ +lean_object* x_15; uint8_t x_16; lean_object* x_17; +x_15 = l_Lean_Parser_Tactic_unknown___elambda__1___lambda__1___closed__1; +x_16 = 1; +x_17 = l_Lean_Parser_errorAtSavedPosFn(x_15, x_16, x_1, x_11); +return x_17; +} } 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; -x_16 = lean_ctor_get(x_5, 0); -x_17 = lean_ctor_get(x_5, 1); -x_18 = lean_ctor_get(x_5, 2); -x_19 = lean_ctor_get(x_5, 3); +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; uint8_t x_28; +x_18 = lean_ctor_get(x_5, 0); +x_19 = lean_ctor_get(x_5, 1); +x_20 = lean_ctor_get(x_5, 2); +x_21 = lean_ctor_get(x_5, 3); +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_5); -x_20 = lean_alloc_ctor(0, 4, 0); -lean_ctor_set(x_20, 0, x_16); -lean_ctor_set(x_20, 1, x_17); -lean_ctor_set(x_20, 2, x_18); -lean_ctor_set(x_20, 3, x_19); -x_21 = lean_ctor_get(x_2, 1); -lean_inc(x_21); -x_22 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_22, 0, x_21); -lean_ctor_set(x_1, 4, x_22); -lean_ctor_set(x_1, 1, x_20); +x_22 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_22, 0, x_18); +lean_ctor_set(x_22, 1, x_19); +lean_ctor_set(x_22, 2, x_20); +lean_ctor_set(x_22, 3, x_21); +x_23 = lean_ctor_get(x_2, 1); +lean_inc(x_23); +x_24 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_24, 0, x_23); +lean_ctor_set(x_1, 4, x_24); +lean_ctor_set(x_1, 1, x_22); lean_inc(x_1); -x_23 = l_Lean_Parser_ident___elambda__1(x_1, x_2); -x_24 = lean_ctor_get(x_23, 3); -lean_inc(x_24); -if (lean_obj_tag(x_24) == 0) +x_25 = l_Lean_Parser_ident___elambda__1(x_1, x_2); +x_26 = lean_ctor_get(x_25, 3); +lean_inc(x_26); +x_27 = lean_box(0); +x_28 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_26, x_27); +lean_dec(x_26); +if (x_28 == 0) { -lean_object* x_25; uint8_t x_26; lean_object* x_27; -x_25 = l_Lean_Parser_Tactic_unknown___elambda__1___lambda__1___closed__1; -x_26 = 1; -x_27 = l_Lean_Parser_errorAtSavedPosFn(x_25, x_26, x_1, x_23); -return x_27; -} -else -{ -lean_dec(x_24); lean_dec(x_1); -return x_23; +return x_25; +} +else +{ +lean_object* x_29; uint8_t x_30; lean_object* x_31; +x_29 = l_Lean_Parser_Tactic_unknown___elambda__1___lambda__1___closed__1; +x_30 = 1; +x_31 = l_Lean_Parser_errorAtSavedPosFn(x_29, x_30, x_1, x_25); +return x_31; } } } 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; 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_28 = lean_ctor_get(x_4, 0); -x_29 = lean_ctor_get(x_4, 1); -x_30 = lean_ctor_get(x_4, 2); -lean_inc(x_30); -lean_inc(x_29); -lean_inc(x_28); -lean_dec(x_4); -x_31 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_31, 0, x_28); -lean_ctor_set(x_31, 1, x_29); -lean_ctor_set(x_31, 2, x_30); -x_32 = lean_ctor_get(x_5, 0); -lean_inc(x_32); -x_33 = lean_ctor_get(x_5, 1); -lean_inc(x_33); -x_34 = lean_ctor_get(x_5, 2); +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; +x_32 = lean_ctor_get(x_4, 0); +x_33 = lean_ctor_get(x_4, 1); +x_34 = lean_ctor_get(x_4, 2); lean_inc(x_34); -x_35 = lean_ctor_get(x_5, 3); -lean_inc(x_35); +lean_inc(x_33); +lean_inc(x_32); +lean_dec(x_4); +x_35 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_35, 0, x_32); +lean_ctor_set(x_35, 1, x_33); +lean_ctor_set(x_35, 2, x_34); +x_36 = lean_ctor_get(x_5, 0); +lean_inc(x_36); +x_37 = lean_ctor_get(x_5, 1); +lean_inc(x_37); +x_38 = lean_ctor_get(x_5, 2); +lean_inc(x_38); +x_39 = lean_ctor_get(x_5, 3); +lean_inc(x_39); 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); - x_36 = x_5; + x_40 = x_5; } else { lean_dec_ref(x_5); - x_36 = lean_box(0); + x_40 = lean_box(0); } -if (lean_is_scalar(x_36)) { - x_37 = lean_alloc_ctor(0, 4, 0); +if (lean_is_scalar(x_40)) { + x_41 = lean_alloc_ctor(0, 4, 0); } else { - x_37 = x_36; + x_41 = x_40; } -lean_ctor_set(x_37, 0, x_32); -lean_ctor_set(x_37, 1, x_33); -lean_ctor_set(x_37, 2, x_34); -lean_ctor_set(x_37, 3, x_35); -x_38 = lean_ctor_get(x_2, 1); -lean_inc(x_38); -x_39 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_39, 0, x_38); -lean_ctor_set(x_1, 4, x_39); -lean_ctor_set(x_1, 1, x_37); -lean_ctor_set(x_1, 0, x_31); +lean_ctor_set(x_41, 0, x_36); +lean_ctor_set(x_41, 1, x_37); +lean_ctor_set(x_41, 2, x_38); +lean_ctor_set(x_41, 3, x_39); +x_42 = lean_ctor_get(x_2, 1); +lean_inc(x_42); +x_43 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_43, 0, x_42); +lean_ctor_set(x_1, 4, x_43); +lean_ctor_set(x_1, 1, x_41); +lean_ctor_set(x_1, 0, x_35); lean_inc(x_1); -x_40 = l_Lean_Parser_ident___elambda__1(x_1, x_2); -x_41 = lean_ctor_get(x_40, 3); -lean_inc(x_41); -if (lean_obj_tag(x_41) == 0) +x_44 = l_Lean_Parser_ident___elambda__1(x_1, x_2); +x_45 = lean_ctor_get(x_44, 3); +lean_inc(x_45); +x_46 = lean_box(0); +x_47 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_45, x_46); +lean_dec(x_45); +if (x_47 == 0) { -lean_object* x_42; uint8_t x_43; lean_object* x_44; -x_42 = l_Lean_Parser_Tactic_unknown___elambda__1___lambda__1___closed__1; -x_43 = 1; -x_44 = l_Lean_Parser_errorAtSavedPosFn(x_42, x_43, x_1, x_40); +lean_dec(x_1); return x_44; } else { -lean_dec(x_41); -lean_dec(x_1); -return x_40; +lean_object* x_48; uint8_t x_49; lean_object* x_50; +x_48 = l_Lean_Parser_Tactic_unknown___elambda__1___lambda__1___closed__1; +x_49 = 1; +x_50 = l_Lean_Parser_errorAtSavedPosFn(x_48, x_49, x_1, x_44); +return x_50; } } } else { -lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; uint8_t 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_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; -x_45 = lean_ctor_get(x_1, 0); -x_46 = lean_ctor_get(x_1, 1); -x_47 = lean_ctor_get(x_1, 2); -x_48 = lean_ctor_get(x_1, 3); -x_49 = lean_ctor_get_uint8(x_1, sizeof(void*)*6); -x_50 = lean_ctor_get_uint8(x_1, sizeof(void*)*6 + 1); -x_51 = lean_ctor_get(x_1, 5); -lean_inc(x_51); -lean_inc(x_48); -lean_inc(x_47); -lean_inc(x_46); -lean_inc(x_45); -lean_dec(x_1); -x_52 = lean_ctor_get(x_45, 0); -lean_inc(x_52); -x_53 = lean_ctor_get(x_45, 1); -lean_inc(x_53); -x_54 = lean_ctor_get(x_45, 2); -lean_inc(x_54); -if (lean_is_exclusive(x_45)) { - lean_ctor_release(x_45, 0); - lean_ctor_release(x_45, 1); - lean_ctor_release(x_45, 2); - x_55 = x_45; -} else { - lean_dec_ref(x_45); - x_55 = lean_box(0); -} -if (lean_is_scalar(x_55)) { - x_56 = lean_alloc_ctor(0, 3, 0); -} else { - x_56 = x_55; -} -lean_ctor_set(x_56, 0, x_52); -lean_ctor_set(x_56, 1, x_53); -lean_ctor_set(x_56, 2, x_54); -x_57 = lean_ctor_get(x_46, 0); +lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; uint8_t 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; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; uint8_t x_75; +x_51 = lean_ctor_get(x_1, 0); +x_52 = lean_ctor_get(x_1, 1); +x_53 = lean_ctor_get(x_1, 2); +x_54 = lean_ctor_get(x_1, 3); +x_55 = lean_ctor_get_uint8(x_1, sizeof(void*)*6); +x_56 = lean_ctor_get_uint8(x_1, sizeof(void*)*6 + 1); +x_57 = lean_ctor_get(x_1, 5); lean_inc(x_57); -x_58 = lean_ctor_get(x_46, 1); +lean_inc(x_54); +lean_inc(x_53); +lean_inc(x_52); +lean_inc(x_51); +lean_dec(x_1); +x_58 = lean_ctor_get(x_51, 0); lean_inc(x_58); -x_59 = lean_ctor_get(x_46, 2); +x_59 = lean_ctor_get(x_51, 1); lean_inc(x_59); -x_60 = lean_ctor_get(x_46, 3); +x_60 = lean_ctor_get(x_51, 2); lean_inc(x_60); -if (lean_is_exclusive(x_46)) { - lean_ctor_release(x_46, 0); - lean_ctor_release(x_46, 1); - lean_ctor_release(x_46, 2); - lean_ctor_release(x_46, 3); - x_61 = x_46; +if (lean_is_exclusive(x_51)) { + lean_ctor_release(x_51, 0); + lean_ctor_release(x_51, 1); + lean_ctor_release(x_51, 2); + x_61 = x_51; } else { - lean_dec_ref(x_46); + lean_dec_ref(x_51); x_61 = lean_box(0); } if (lean_is_scalar(x_61)) { - x_62 = lean_alloc_ctor(0, 4, 0); + x_62 = lean_alloc_ctor(0, 3, 0); } else { x_62 = x_61; } -lean_ctor_set(x_62, 0, x_57); -lean_ctor_set(x_62, 1, x_58); -lean_ctor_set(x_62, 2, x_59); -lean_ctor_set(x_62, 3, x_60); -x_63 = lean_ctor_get(x_2, 1); +lean_ctor_set(x_62, 0, x_58); +lean_ctor_set(x_62, 1, x_59); +lean_ctor_set(x_62, 2, x_60); +x_63 = lean_ctor_get(x_52, 0); lean_inc(x_63); -x_64 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_64, 0, x_63); -x_65 = lean_alloc_ctor(0, 6, 2); -lean_ctor_set(x_65, 0, x_56); -lean_ctor_set(x_65, 1, x_62); -lean_ctor_set(x_65, 2, x_47); -lean_ctor_set(x_65, 3, x_48); -lean_ctor_set(x_65, 4, x_64); -lean_ctor_set(x_65, 5, x_51); -lean_ctor_set_uint8(x_65, sizeof(void*)*6, x_49); -lean_ctor_set_uint8(x_65, sizeof(void*)*6 + 1, x_50); +x_64 = lean_ctor_get(x_52, 1); +lean_inc(x_64); +x_65 = lean_ctor_get(x_52, 2); lean_inc(x_65); -x_66 = l_Lean_Parser_ident___elambda__1(x_65, x_2); -x_67 = lean_ctor_get(x_66, 3); -lean_inc(x_67); -if (lean_obj_tag(x_67) == 0) +x_66 = lean_ctor_get(x_52, 3); +lean_inc(x_66); +if (lean_is_exclusive(x_52)) { + lean_ctor_release(x_52, 0); + lean_ctor_release(x_52, 1); + lean_ctor_release(x_52, 2); + lean_ctor_release(x_52, 3); + x_67 = x_52; +} else { + lean_dec_ref(x_52); + x_67 = lean_box(0); +} +if (lean_is_scalar(x_67)) { + x_68 = lean_alloc_ctor(0, 4, 0); +} else { + x_68 = x_67; +} +lean_ctor_set(x_68, 0, x_63); +lean_ctor_set(x_68, 1, x_64); +lean_ctor_set(x_68, 2, x_65); +lean_ctor_set(x_68, 3, x_66); +x_69 = lean_ctor_get(x_2, 1); +lean_inc(x_69); +x_70 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_70, 0, x_69); +x_71 = lean_alloc_ctor(0, 6, 2); +lean_ctor_set(x_71, 0, x_62); +lean_ctor_set(x_71, 1, x_68); +lean_ctor_set(x_71, 2, x_53); +lean_ctor_set(x_71, 3, x_54); +lean_ctor_set(x_71, 4, x_70); +lean_ctor_set(x_71, 5, x_57); +lean_ctor_set_uint8(x_71, sizeof(void*)*6, x_55); +lean_ctor_set_uint8(x_71, sizeof(void*)*6 + 1, x_56); +lean_inc(x_71); +x_72 = l_Lean_Parser_ident___elambda__1(x_71, x_2); +x_73 = lean_ctor_get(x_72, 3); +lean_inc(x_73); +x_74 = lean_box(0); +x_75 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_73, x_74); +lean_dec(x_73); +if (x_75 == 0) { -lean_object* x_68; uint8_t x_69; lean_object* x_70; -x_68 = l_Lean_Parser_Tactic_unknown___elambda__1___lambda__1___closed__1; -x_69 = 1; -x_70 = l_Lean_Parser_errorAtSavedPosFn(x_68, x_69, x_65, x_66); -return x_70; +lean_dec(x_71); +return x_72; } else { -lean_dec(x_67); -lean_dec(x_65); -return x_66; +lean_object* x_76; uint8_t x_77; lean_object* x_78; +x_76 = l_Lean_Parser_Tactic_unknown___elambda__1___lambda__1___closed__1; +x_77 = 1; +x_78 = l_Lean_Parser_errorAtSavedPosFn(x_76, x_77, x_71, x_72); +return x_78; } } } diff --git a/stage0/stdlib/Lean/Parser/Term.c b/stage0/stdlib/Lean/Parser/Term.c index d03d80e5b5..e077c2c997 100644 --- a/stage0/stdlib/Lean/Parser/Term.c +++ b/stage0/stdlib/Lean/Parser/Term.c @@ -2831,6 +2831,7 @@ lean_object* l_Lean_Parser_Term_fromTerm_formatter___closed__4; lean_object* l_Lean_Parser_Term_dynamicQuot___elambda__1___closed__15; lean_object* l_Lean_Parser_Term_let_x2a___closed__3; lean_object* l_Lean_Parser_Term_typeOf_formatter___closed__4; +uint8_t l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_quot_formatter___closed__2; lean_object* l_Lean_Parser_Term_dynamicQuot_formatter___closed__8; lean_object* l_Lean_Parser_Term_pipeProj___elambda__1___closed__3; @@ -5718,7 +5719,7 @@ return x_5; lean_object* l_Lean_Parser_Term_optSemicolon___elambda__1(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_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; uint8_t x_9; x_4 = l_Lean_Parser_Tactic_tacticSeq1Indented___elambda__1___closed__8; x_5 = lean_ctor_get(x_4, 1); lean_inc(x_5); @@ -5726,19 +5727,21 @@ lean_inc(x_2); x_6 = lean_apply_2(x_5, x_2, x_3); x_7 = lean_ctor_get(x_6, 3); lean_inc(x_7); -if (lean_obj_tag(x_7) == 0) -{ -lean_object* x_8; -x_8 = lean_apply_2(x_1, x_2, x_6); -return x_8; -} -else -{ +x_8 = lean_box(0); +x_9 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_7, x_8); lean_dec(x_7); +if (x_9 == 0) +{ lean_dec(x_2); lean_dec(x_1); return x_6; } +else +{ +lean_object* x_10; +x_10 = lean_apply_2(x_1, x_2, x_6); +return x_10; +} } } lean_object* l_Lean_Parser_Term_optSemicolon(lean_object* x_1) { @@ -5771,22 +5774,24 @@ return x_12; lean_object* l_Lean_Parser_Term_ident___elambda__1(lean_object* x_1, lean_object* x_2) { _start: { -lean_object* x_3; lean_object* x_4; lean_object* x_5; +lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; uint8_t x_7; x_3 = l_Lean_Parser_maxPrec; x_4 = l_Lean_Parser_checkPrecFn(x_3, x_1, x_2); x_5 = lean_ctor_get(x_4, 3); lean_inc(x_5); -if (lean_obj_tag(x_5) == 0) +x_6 = lean_box(0); +x_7 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_5, x_6); +lean_dec(x_5); +if (x_7 == 0) { -lean_object* x_6; -x_6 = l_Lean_Parser_ident___elambda__1(x_1, x_4); -return x_6; +lean_dec(x_1); +return x_4; } else { -lean_dec(x_5); -lean_dec(x_1); -return x_4; +lean_object* x_8; +x_8 = l_Lean_Parser_ident___elambda__1(x_1, x_4); +return x_8; } } } @@ -5902,22 +5907,24 @@ return x_5; lean_object* l_Lean_Parser_Term_num___elambda__1(lean_object* x_1, lean_object* x_2) { _start: { -lean_object* x_3; lean_object* x_4; lean_object* x_5; +lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; uint8_t x_7; x_3 = l_Lean_Parser_maxPrec; x_4 = l_Lean_Parser_checkPrecFn(x_3, x_1, x_2); x_5 = lean_ctor_get(x_4, 3); lean_inc(x_5); -if (lean_obj_tag(x_5) == 0) +x_6 = lean_box(0); +x_7 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_5, x_6); +lean_dec(x_5); +if (x_7 == 0) { -lean_object* x_6; -x_6 = l_Lean_Parser_numLit___elambda__1(x_1, x_4); -return x_6; +lean_dec(x_1); +return x_4; } else { -lean_dec(x_5); -lean_dec(x_1); -return x_4; +lean_object* x_8; +x_8 = l_Lean_Parser_numLit___elambda__1(x_1, x_4); +return x_8; } } } @@ -6033,22 +6040,24 @@ return x_5; lean_object* l_Lean_Parser_Term_scientific___elambda__1(lean_object* x_1, lean_object* x_2) { _start: { -lean_object* x_3; lean_object* x_4; lean_object* x_5; +lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; uint8_t x_7; x_3 = l_Lean_Parser_maxPrec; x_4 = l_Lean_Parser_checkPrecFn(x_3, x_1, x_2); x_5 = lean_ctor_get(x_4, 3); lean_inc(x_5); -if (lean_obj_tag(x_5) == 0) +x_6 = lean_box(0); +x_7 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_5, x_6); +lean_dec(x_5); +if (x_7 == 0) { -lean_object* x_6; -x_6 = l_Lean_Parser_scientificLit___elambda__1(x_1, x_4); -return x_6; +lean_dec(x_1); +return x_4; } else { -lean_dec(x_5); -lean_dec(x_1); -return x_4; +lean_object* x_8; +x_8 = l_Lean_Parser_scientificLit___elambda__1(x_1, x_4); +return x_8; } } } @@ -6176,22 +6185,24 @@ return x_5; lean_object* l_Lean_Parser_Term_str___elambda__1(lean_object* x_1, lean_object* x_2) { _start: { -lean_object* x_3; lean_object* x_4; lean_object* x_5; +lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; uint8_t x_7; x_3 = l_Lean_Parser_maxPrec; x_4 = l_Lean_Parser_checkPrecFn(x_3, x_1, x_2); x_5 = lean_ctor_get(x_4, 3); lean_inc(x_5); -if (lean_obj_tag(x_5) == 0) +x_6 = lean_box(0); +x_7 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_5, x_6); +lean_dec(x_5); +if (x_7 == 0) { -lean_object* x_6; -x_6 = l_Lean_Parser_strLit___elambda__1(x_1, x_4); -return x_6; +lean_dec(x_1); +return x_4; } else { -lean_dec(x_5); -lean_dec(x_1); -return x_4; +lean_object* x_8; +x_8 = l_Lean_Parser_strLit___elambda__1(x_1, x_4); +return x_8; } } } @@ -6319,22 +6330,24 @@ return x_5; lean_object* l_Lean_Parser_Term_char___elambda__1(lean_object* x_1, lean_object* x_2) { _start: { -lean_object* x_3; lean_object* x_4; lean_object* x_5; +lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; uint8_t x_7; x_3 = l_Lean_Parser_maxPrec; x_4 = l_Lean_Parser_checkPrecFn(x_3, x_1, x_2); x_5 = lean_ctor_get(x_4, 3); lean_inc(x_5); -if (lean_obj_tag(x_5) == 0) +x_6 = lean_box(0); +x_7 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_5, x_6); +lean_dec(x_5); +if (x_7 == 0) { -lean_object* x_6; -x_6 = l_Lean_Parser_charLit___elambda__1(x_1, x_4); -return x_6; +lean_dec(x_1); +return x_4; } else { -lean_dec(x_5); -lean_dec(x_1); -return x_4; +lean_object* x_8; +x_8 = l_Lean_Parser_charLit___elambda__1(x_1, x_4); +return x_8; } } } @@ -11754,7 +11767,7 @@ return x_3; lean_object* l_Lean_Parser_Term_haveDecl___elambda__1(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_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; uint8_t x_8; x_3 = l_Lean_Parser_Term_optIdent; x_4 = lean_ctor_get(x_3, 1); lean_inc(x_4); @@ -11762,37 +11775,40 @@ lean_inc(x_1); x_5 = lean_apply_2(x_4, x_1, x_2); x_6 = lean_ctor_get(x_5, 3); lean_inc(x_6); -if (lean_obj_tag(x_6) == 0) -{ -lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; -x_7 = l_term___u2218_____closed__6; -x_8 = lean_unsigned_to_nat(0u); -lean_inc(x_1); -x_9 = l_Lean_Parser_categoryParser___elambda__1(x_7, x_8, x_1, x_5); -x_10 = lean_ctor_get(x_9, 3); -lean_inc(x_10); -if (lean_obj_tag(x_10) == 0) -{ -lean_object* x_11; lean_object* x_12; uint8_t x_13; lean_object* x_14; -x_11 = l_Lean_Parser_Term_haveAssign___closed__6; -x_12 = l_Lean_Parser_Term_haveDecl___elambda__1___closed__1; -x_13 = 1; -x_14 = l_Lean_Parser_orelseFnCore(x_11, x_12, x_13, x_1, x_9); -return x_14; -} -else -{ -lean_dec(x_10); -lean_dec(x_1); -return x_9; -} -} -else -{ +x_7 = lean_box(0); +x_8 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_6, x_7); lean_dec(x_6); +if (x_8 == 0) +{ lean_dec(x_1); return x_5; } +else +{ +lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; uint8_t x_13; +x_9 = l_term___u2218_____closed__6; +x_10 = lean_unsigned_to_nat(0u); +lean_inc(x_1); +x_11 = l_Lean_Parser_categoryParser___elambda__1(x_9, x_10, x_1, x_5); +x_12 = lean_ctor_get(x_11, 3); +lean_inc(x_12); +x_13 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_12, x_7); +lean_dec(x_12); +if (x_13 == 0) +{ +lean_dec(x_1); +return x_11; +} +else +{ +lean_object* x_14; lean_object* x_15; uint8_t x_16; lean_object* x_17; +x_14 = l_Lean_Parser_Term_haveAssign___closed__6; +x_15 = l_Lean_Parser_Term_haveDecl___elambda__1___closed__1; +x_16 = 1; +x_17 = l_Lean_Parser_orelseFnCore(x_14, x_15, x_16, x_1, x_11); +return x_17; +} +} } } static lean_object* _init_l_Lean_Parser_Term_haveDecl___closed__1() { @@ -11892,7 +11908,7 @@ uint8_t x_9; x_9 = !lean_is_exclusive(x_6); if (x_9 == 0) { -lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; +lean_object* x_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; x_10 = lean_ctor_get(x_3, 1); lean_inc(x_10); x_11 = lean_alloc_ctor(1, 1, 0); @@ -11905,229 +11921,237 @@ lean_inc(x_2); x_15 = l_Lean_Parser_symbolFnAux(x_1, x_14, x_2, x_3); x_16 = lean_ctor_get(x_15, 3); lean_inc(x_16); -if (lean_obj_tag(x_16) == 0) -{ -lean_object* x_17; -x_17 = l_Lean_Parser_Term_haveDecl___elambda__1(x_2, x_15); -return x_17; -} -else -{ +x_17 = lean_box(0); +x_18 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_16, x_17); lean_dec(x_16); +if (x_18 == 0) +{ lean_dec(x_2); return x_15; } +else +{ +lean_object* x_19; +x_19 = l_Lean_Parser_Term_haveDecl___elambda__1(x_2, x_15); +return x_19; +} } 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_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; -x_18 = lean_ctor_get(x_6, 0); -x_19 = lean_ctor_get(x_6, 1); -x_20 = lean_ctor_get(x_6, 2); -x_21 = lean_ctor_get(x_6, 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_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; uint8_t x_33; +x_20 = lean_ctor_get(x_6, 0); +x_21 = lean_ctor_get(x_6, 1); +x_22 = lean_ctor_get(x_6, 2); +x_23 = lean_ctor_get(x_6, 3); +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_dec(x_6); -x_22 = lean_alloc_ctor(0, 4, 0); -lean_ctor_set(x_22, 0, x_18); -lean_ctor_set(x_22, 1, x_19); -lean_ctor_set(x_22, 2, x_20); -lean_ctor_set(x_22, 3, x_21); -x_23 = lean_ctor_get(x_3, 1); -lean_inc(x_23); -x_24 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_24, 0, x_23); -lean_ctor_set(x_2, 4, x_24); -lean_ctor_set(x_2, 1, x_22); -x_25 = l_instReprChar___closed__1; -x_26 = lean_string_append(x_25, x_1); -x_27 = lean_string_append(x_26, x_25); +x_24 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_24, 0, x_20); +lean_ctor_set(x_24, 1, x_21); +lean_ctor_set(x_24, 2, x_22); +lean_ctor_set(x_24, 3, x_23); +x_25 = lean_ctor_get(x_3, 1); +lean_inc(x_25); +x_26 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_26, 0, x_25); +lean_ctor_set(x_2, 4, x_26); +lean_ctor_set(x_2, 1, x_24); +x_27 = l_instReprChar___closed__1; +x_28 = lean_string_append(x_27, x_1); +x_29 = lean_string_append(x_28, x_27); lean_inc(x_2); -x_28 = l_Lean_Parser_symbolFnAux(x_1, x_27, x_2, x_3); -x_29 = lean_ctor_get(x_28, 3); -lean_inc(x_29); -if (lean_obj_tag(x_29) == 0) +x_30 = l_Lean_Parser_symbolFnAux(x_1, x_29, x_2, x_3); +x_31 = lean_ctor_get(x_30, 3); +lean_inc(x_31); +x_32 = lean_box(0); +x_33 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_31, x_32); +lean_dec(x_31); +if (x_33 == 0) { -lean_object* x_30; -x_30 = l_Lean_Parser_Term_haveDecl___elambda__1(x_2, x_28); +lean_dec(x_2); return x_30; } else { -lean_dec(x_29); -lean_dec(x_2); -return x_28; +lean_object* x_34; +x_34 = l_Lean_Parser_Term_haveDecl___elambda__1(x_2, x_30); +return x_34; } } } 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; 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_5, 0); -x_32 = lean_ctor_get(x_5, 1); -x_33 = lean_ctor_get(x_5, 2); -lean_inc(x_33); -lean_inc(x_32); -lean_inc(x_31); -lean_dec(x_5); -x_34 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_34, 0, x_31); -lean_ctor_set(x_34, 1, x_32); -lean_ctor_set(x_34, 2, x_33); -x_35 = lean_ctor_get(x_6, 0); -lean_inc(x_35); -x_36 = lean_ctor_get(x_6, 1); -lean_inc(x_36); -x_37 = lean_ctor_get(x_6, 2); +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; uint8_t x_53; +x_35 = lean_ctor_get(x_5, 0); +x_36 = lean_ctor_get(x_5, 1); +x_37 = lean_ctor_get(x_5, 2); lean_inc(x_37); -x_38 = lean_ctor_get(x_6, 3); -lean_inc(x_38); +lean_inc(x_36); +lean_inc(x_35); +lean_dec(x_5); +x_38 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_38, 0, x_35); +lean_ctor_set(x_38, 1, x_36); +lean_ctor_set(x_38, 2, x_37); +x_39 = lean_ctor_get(x_6, 0); +lean_inc(x_39); +x_40 = lean_ctor_get(x_6, 1); +lean_inc(x_40); +x_41 = lean_ctor_get(x_6, 2); +lean_inc(x_41); +x_42 = lean_ctor_get(x_6, 3); +lean_inc(x_42); 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); - x_39 = x_6; + x_43 = x_6; } else { lean_dec_ref(x_6); - x_39 = lean_box(0); + x_43 = lean_box(0); } -if (lean_is_scalar(x_39)) { - x_40 = lean_alloc_ctor(0, 4, 0); +if (lean_is_scalar(x_43)) { + x_44 = lean_alloc_ctor(0, 4, 0); } else { - x_40 = x_39; + x_44 = x_43; } -lean_ctor_set(x_40, 0, x_35); -lean_ctor_set(x_40, 1, x_36); -lean_ctor_set(x_40, 2, x_37); -lean_ctor_set(x_40, 3, x_38); -x_41 = lean_ctor_get(x_3, 1); -lean_inc(x_41); -x_42 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_42, 0, x_41); -lean_ctor_set(x_2, 4, x_42); -lean_ctor_set(x_2, 1, x_40); -lean_ctor_set(x_2, 0, x_34); -x_43 = l_instReprChar___closed__1; -x_44 = lean_string_append(x_43, x_1); -x_45 = lean_string_append(x_44, x_43); +lean_ctor_set(x_44, 0, x_39); +lean_ctor_set(x_44, 1, x_40); +lean_ctor_set(x_44, 2, x_41); +lean_ctor_set(x_44, 3, x_42); +x_45 = lean_ctor_get(x_3, 1); +lean_inc(x_45); +x_46 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_46, 0, x_45); +lean_ctor_set(x_2, 4, x_46); +lean_ctor_set(x_2, 1, x_44); +lean_ctor_set(x_2, 0, x_38); +x_47 = l_instReprChar___closed__1; +x_48 = lean_string_append(x_47, x_1); +x_49 = lean_string_append(x_48, x_47); lean_inc(x_2); -x_46 = l_Lean_Parser_symbolFnAux(x_1, x_45, x_2, x_3); -x_47 = lean_ctor_get(x_46, 3); -lean_inc(x_47); -if (lean_obj_tag(x_47) == 0) -{ -lean_object* x_48; -x_48 = l_Lean_Parser_Term_haveDecl___elambda__1(x_2, x_46); -return x_48; -} -else -{ -lean_dec(x_47); -lean_dec(x_2); -return x_46; -} -} -} -else -{ -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; 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; -x_49 = lean_ctor_get(x_2, 0); -x_50 = lean_ctor_get(x_2, 1); -x_51 = lean_ctor_get(x_2, 2); -x_52 = lean_ctor_get(x_2, 3); -x_53 = lean_ctor_get_uint8(x_2, sizeof(void*)*6); -x_54 = lean_ctor_get_uint8(x_2, sizeof(void*)*6 + 1); -x_55 = lean_ctor_get(x_2, 5); -lean_inc(x_55); -lean_inc(x_52); +x_50 = l_Lean_Parser_symbolFnAux(x_1, x_49, x_2, x_3); +x_51 = lean_ctor_get(x_50, 3); lean_inc(x_51); -lean_inc(x_50); -lean_inc(x_49); +x_52 = lean_box(0); +x_53 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_51, x_52); +lean_dec(x_51); +if (x_53 == 0) +{ lean_dec(x_2); -x_56 = lean_ctor_get(x_49, 0); -lean_inc(x_56); -x_57 = lean_ctor_get(x_49, 1); -lean_inc(x_57); -x_58 = lean_ctor_get(x_49, 2); -lean_inc(x_58); -if (lean_is_exclusive(x_49)) { - lean_ctor_release(x_49, 0); - lean_ctor_release(x_49, 1); - lean_ctor_release(x_49, 2); - x_59 = x_49; -} else { - lean_dec_ref(x_49); - x_59 = lean_box(0); +return x_50; } -if (lean_is_scalar(x_59)) { - x_60 = lean_alloc_ctor(0, 3, 0); -} else { - x_60 = x_59; +else +{ +lean_object* x_54; +x_54 = l_Lean_Parser_Term_haveDecl___elambda__1(x_2, x_50); +return x_54; } -lean_ctor_set(x_60, 0, x_56); -lean_ctor_set(x_60, 1, x_57); -lean_ctor_set(x_60, 2, x_58); -x_61 = lean_ctor_get(x_50, 0); +} +} +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; 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; uint8_t x_82; +x_55 = lean_ctor_get(x_2, 0); +x_56 = lean_ctor_get(x_2, 1); +x_57 = lean_ctor_get(x_2, 2); +x_58 = lean_ctor_get(x_2, 3); +x_59 = lean_ctor_get_uint8(x_2, sizeof(void*)*6); +x_60 = lean_ctor_get_uint8(x_2, sizeof(void*)*6 + 1); +x_61 = lean_ctor_get(x_2, 5); lean_inc(x_61); -x_62 = lean_ctor_get(x_50, 1); +lean_inc(x_58); +lean_inc(x_57); +lean_inc(x_56); +lean_inc(x_55); +lean_dec(x_2); +x_62 = lean_ctor_get(x_55, 0); lean_inc(x_62); -x_63 = lean_ctor_get(x_50, 2); +x_63 = lean_ctor_get(x_55, 1); lean_inc(x_63); -x_64 = lean_ctor_get(x_50, 3); +x_64 = lean_ctor_get(x_55, 2); lean_inc(x_64); -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); - x_65 = x_50; +if (lean_is_exclusive(x_55)) { + lean_ctor_release(x_55, 0); + lean_ctor_release(x_55, 1); + lean_ctor_release(x_55, 2); + x_65 = x_55; } else { - lean_dec_ref(x_50); + lean_dec_ref(x_55); x_65 = lean_box(0); } if (lean_is_scalar(x_65)) { - x_66 = lean_alloc_ctor(0, 4, 0); + x_66 = lean_alloc_ctor(0, 3, 0); } else { x_66 = x_65; } -lean_ctor_set(x_66, 0, x_61); -lean_ctor_set(x_66, 1, x_62); -lean_ctor_set(x_66, 2, x_63); -lean_ctor_set(x_66, 3, x_64); -x_67 = lean_ctor_get(x_3, 1); +lean_ctor_set(x_66, 0, x_62); +lean_ctor_set(x_66, 1, x_63); +lean_ctor_set(x_66, 2, x_64); +x_67 = lean_ctor_get(x_56, 0); lean_inc(x_67); -x_68 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_68, 0, x_67); -x_69 = lean_alloc_ctor(0, 6, 2); -lean_ctor_set(x_69, 0, x_60); -lean_ctor_set(x_69, 1, x_66); -lean_ctor_set(x_69, 2, x_51); -lean_ctor_set(x_69, 3, x_52); -lean_ctor_set(x_69, 4, x_68); -lean_ctor_set(x_69, 5, x_55); -lean_ctor_set_uint8(x_69, sizeof(void*)*6, x_53); -lean_ctor_set_uint8(x_69, sizeof(void*)*6 + 1, x_54); -x_70 = l_instReprChar___closed__1; -x_71 = lean_string_append(x_70, x_1); -x_72 = lean_string_append(x_71, x_70); +x_68 = lean_ctor_get(x_56, 1); +lean_inc(x_68); +x_69 = lean_ctor_get(x_56, 2); lean_inc(x_69); -x_73 = l_Lean_Parser_symbolFnAux(x_1, x_72, x_69, x_3); -x_74 = lean_ctor_get(x_73, 3); -lean_inc(x_74); -if (lean_obj_tag(x_74) == 0) +x_70 = lean_ctor_get(x_56, 3); +lean_inc(x_70); +if (lean_is_exclusive(x_56)) { + lean_ctor_release(x_56, 0); + lean_ctor_release(x_56, 1); + lean_ctor_release(x_56, 2); + lean_ctor_release(x_56, 3); + x_71 = x_56; +} else { + lean_dec_ref(x_56); + x_71 = lean_box(0); +} +if (lean_is_scalar(x_71)) { + x_72 = lean_alloc_ctor(0, 4, 0); +} else { + x_72 = x_71; +} +lean_ctor_set(x_72, 0, x_67); +lean_ctor_set(x_72, 1, x_68); +lean_ctor_set(x_72, 2, x_69); +lean_ctor_set(x_72, 3, x_70); +x_73 = lean_ctor_get(x_3, 1); +lean_inc(x_73); +x_74 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_74, 0, x_73); +x_75 = lean_alloc_ctor(0, 6, 2); +lean_ctor_set(x_75, 0, x_66); +lean_ctor_set(x_75, 1, x_72); +lean_ctor_set(x_75, 2, x_57); +lean_ctor_set(x_75, 3, x_58); +lean_ctor_set(x_75, 4, x_74); +lean_ctor_set(x_75, 5, x_61); +lean_ctor_set_uint8(x_75, sizeof(void*)*6, x_59); +lean_ctor_set_uint8(x_75, sizeof(void*)*6 + 1, x_60); +x_76 = l_instReprChar___closed__1; +x_77 = lean_string_append(x_76, x_1); +x_78 = lean_string_append(x_77, x_76); +lean_inc(x_75); +x_79 = l_Lean_Parser_symbolFnAux(x_1, x_78, x_75, x_3); +x_80 = lean_ctor_get(x_79, 3); +lean_inc(x_80); +x_81 = lean_box(0); +x_82 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_80, x_81); +lean_dec(x_80); +if (x_82 == 0) { -lean_object* x_75; -x_75 = l_Lean_Parser_Term_haveDecl___elambda__1(x_69, x_73); -return x_75; +lean_dec(x_75); +return x_79; } else { -lean_dec(x_74); -lean_dec(x_69); -return x_73; +lean_object* x_83; +x_83 = l_Lean_Parser_Term_haveDecl___elambda__1(x_75, x_79); +return x_83; } } } @@ -13015,7 +13039,7 @@ return x_5; lean_object* l_Lean_Parser_Term_sufficesDecl___elambda__1(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_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; uint8_t x_8; x_3 = l_Lean_Parser_Term_optIdent; x_4 = lean_ctor_get(x_3, 1); lean_inc(x_4); @@ -13023,37 +13047,40 @@ lean_inc(x_1); x_5 = lean_apply_2(x_4, x_1, x_2); x_6 = lean_ctor_get(x_5, 3); lean_inc(x_6); -if (lean_obj_tag(x_6) == 0) -{ -lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; -x_7 = l_term___u2218_____closed__6; -x_8 = lean_unsigned_to_nat(0u); -lean_inc(x_1); -x_9 = l_Lean_Parser_categoryParser___elambda__1(x_7, x_8, x_1, x_5); -x_10 = lean_ctor_get(x_9, 3); -lean_inc(x_10); -if (lean_obj_tag(x_10) == 0) -{ -lean_object* x_11; lean_object* x_12; uint8_t x_13; lean_object* x_14; -x_11 = l_Lean_Parser_Term_fromTerm___closed__6; -x_12 = l_Lean_Parser_Term_byTactic___closed__6; -x_13 = 1; -x_14 = l_Lean_Parser_orelseFnCore(x_11, x_12, x_13, x_1, x_9); -return x_14; -} -else -{ -lean_dec(x_10); -lean_dec(x_1); -return x_9; -} -} -else -{ +x_7 = lean_box(0); +x_8 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_6, x_7); lean_dec(x_6); +if (x_8 == 0) +{ lean_dec(x_1); return x_5; } +else +{ +lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; uint8_t x_13; +x_9 = l_term___u2218_____closed__6; +x_10 = lean_unsigned_to_nat(0u); +lean_inc(x_1); +x_11 = l_Lean_Parser_categoryParser___elambda__1(x_9, x_10, x_1, x_5); +x_12 = lean_ctor_get(x_11, 3); +lean_inc(x_12); +x_13 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_12, x_7); +lean_dec(x_12); +if (x_13 == 0) +{ +lean_dec(x_1); +return x_11; +} +else +{ +lean_object* x_14; lean_object* x_15; uint8_t x_16; lean_object* x_17; +x_14 = l_Lean_Parser_Term_fromTerm___closed__6; +x_15 = l_Lean_Parser_Term_byTactic___closed__6; +x_16 = 1; +x_17 = l_Lean_Parser_orelseFnCore(x_14, x_15, x_16, x_1, x_11); +return x_17; +} +} } } static lean_object* _init_l_Lean_Parser_Term_sufficesDecl___closed__1() { @@ -13127,7 +13154,7 @@ uint8_t x_9; x_9 = !lean_is_exclusive(x_6); if (x_9 == 0) { -lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; +lean_object* x_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; x_10 = lean_ctor_get(x_3, 1); lean_inc(x_10); x_11 = lean_alloc_ctor(1, 1, 0); @@ -13140,229 +13167,237 @@ lean_inc(x_2); x_15 = l_Lean_Parser_symbolFnAux(x_1, x_14, x_2, x_3); x_16 = lean_ctor_get(x_15, 3); lean_inc(x_16); -if (lean_obj_tag(x_16) == 0) -{ -lean_object* x_17; -x_17 = l_Lean_Parser_Term_sufficesDecl___elambda__1(x_2, x_15); -return x_17; -} -else -{ +x_17 = lean_box(0); +x_18 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_16, x_17); lean_dec(x_16); +if (x_18 == 0) +{ lean_dec(x_2); return x_15; } +else +{ +lean_object* x_19; +x_19 = l_Lean_Parser_Term_sufficesDecl___elambda__1(x_2, x_15); +return x_19; +} } 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_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; -x_18 = lean_ctor_get(x_6, 0); -x_19 = lean_ctor_get(x_6, 1); -x_20 = lean_ctor_get(x_6, 2); -x_21 = lean_ctor_get(x_6, 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_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; uint8_t x_33; +x_20 = lean_ctor_get(x_6, 0); +x_21 = lean_ctor_get(x_6, 1); +x_22 = lean_ctor_get(x_6, 2); +x_23 = lean_ctor_get(x_6, 3); +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_dec(x_6); -x_22 = lean_alloc_ctor(0, 4, 0); -lean_ctor_set(x_22, 0, x_18); -lean_ctor_set(x_22, 1, x_19); -lean_ctor_set(x_22, 2, x_20); -lean_ctor_set(x_22, 3, x_21); -x_23 = lean_ctor_get(x_3, 1); -lean_inc(x_23); -x_24 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_24, 0, x_23); -lean_ctor_set(x_2, 4, x_24); -lean_ctor_set(x_2, 1, x_22); -x_25 = l_instReprChar___closed__1; -x_26 = lean_string_append(x_25, x_1); -x_27 = lean_string_append(x_26, x_25); +x_24 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_24, 0, x_20); +lean_ctor_set(x_24, 1, x_21); +lean_ctor_set(x_24, 2, x_22); +lean_ctor_set(x_24, 3, x_23); +x_25 = lean_ctor_get(x_3, 1); +lean_inc(x_25); +x_26 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_26, 0, x_25); +lean_ctor_set(x_2, 4, x_26); +lean_ctor_set(x_2, 1, x_24); +x_27 = l_instReprChar___closed__1; +x_28 = lean_string_append(x_27, x_1); +x_29 = lean_string_append(x_28, x_27); lean_inc(x_2); -x_28 = l_Lean_Parser_symbolFnAux(x_1, x_27, x_2, x_3); -x_29 = lean_ctor_get(x_28, 3); -lean_inc(x_29); -if (lean_obj_tag(x_29) == 0) +x_30 = l_Lean_Parser_symbolFnAux(x_1, x_29, x_2, x_3); +x_31 = lean_ctor_get(x_30, 3); +lean_inc(x_31); +x_32 = lean_box(0); +x_33 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_31, x_32); +lean_dec(x_31); +if (x_33 == 0) { -lean_object* x_30; -x_30 = l_Lean_Parser_Term_sufficesDecl___elambda__1(x_2, x_28); +lean_dec(x_2); return x_30; } else { -lean_dec(x_29); -lean_dec(x_2); -return x_28; +lean_object* x_34; +x_34 = l_Lean_Parser_Term_sufficesDecl___elambda__1(x_2, x_30); +return x_34; } } } 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; 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_5, 0); -x_32 = lean_ctor_get(x_5, 1); -x_33 = lean_ctor_get(x_5, 2); -lean_inc(x_33); -lean_inc(x_32); -lean_inc(x_31); -lean_dec(x_5); -x_34 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_34, 0, x_31); -lean_ctor_set(x_34, 1, x_32); -lean_ctor_set(x_34, 2, x_33); -x_35 = lean_ctor_get(x_6, 0); -lean_inc(x_35); -x_36 = lean_ctor_get(x_6, 1); -lean_inc(x_36); -x_37 = lean_ctor_get(x_6, 2); +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; uint8_t x_53; +x_35 = lean_ctor_get(x_5, 0); +x_36 = lean_ctor_get(x_5, 1); +x_37 = lean_ctor_get(x_5, 2); lean_inc(x_37); -x_38 = lean_ctor_get(x_6, 3); -lean_inc(x_38); +lean_inc(x_36); +lean_inc(x_35); +lean_dec(x_5); +x_38 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_38, 0, x_35); +lean_ctor_set(x_38, 1, x_36); +lean_ctor_set(x_38, 2, x_37); +x_39 = lean_ctor_get(x_6, 0); +lean_inc(x_39); +x_40 = lean_ctor_get(x_6, 1); +lean_inc(x_40); +x_41 = lean_ctor_get(x_6, 2); +lean_inc(x_41); +x_42 = lean_ctor_get(x_6, 3); +lean_inc(x_42); 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); - x_39 = x_6; + x_43 = x_6; } else { lean_dec_ref(x_6); - x_39 = lean_box(0); + x_43 = lean_box(0); } -if (lean_is_scalar(x_39)) { - x_40 = lean_alloc_ctor(0, 4, 0); +if (lean_is_scalar(x_43)) { + x_44 = lean_alloc_ctor(0, 4, 0); } else { - x_40 = x_39; + x_44 = x_43; } -lean_ctor_set(x_40, 0, x_35); -lean_ctor_set(x_40, 1, x_36); -lean_ctor_set(x_40, 2, x_37); -lean_ctor_set(x_40, 3, x_38); -x_41 = lean_ctor_get(x_3, 1); -lean_inc(x_41); -x_42 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_42, 0, x_41); -lean_ctor_set(x_2, 4, x_42); -lean_ctor_set(x_2, 1, x_40); -lean_ctor_set(x_2, 0, x_34); -x_43 = l_instReprChar___closed__1; -x_44 = lean_string_append(x_43, x_1); -x_45 = lean_string_append(x_44, x_43); +lean_ctor_set(x_44, 0, x_39); +lean_ctor_set(x_44, 1, x_40); +lean_ctor_set(x_44, 2, x_41); +lean_ctor_set(x_44, 3, x_42); +x_45 = lean_ctor_get(x_3, 1); +lean_inc(x_45); +x_46 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_46, 0, x_45); +lean_ctor_set(x_2, 4, x_46); +lean_ctor_set(x_2, 1, x_44); +lean_ctor_set(x_2, 0, x_38); +x_47 = l_instReprChar___closed__1; +x_48 = lean_string_append(x_47, x_1); +x_49 = lean_string_append(x_48, x_47); lean_inc(x_2); -x_46 = l_Lean_Parser_symbolFnAux(x_1, x_45, x_2, x_3); -x_47 = lean_ctor_get(x_46, 3); -lean_inc(x_47); -if (lean_obj_tag(x_47) == 0) -{ -lean_object* x_48; -x_48 = l_Lean_Parser_Term_sufficesDecl___elambda__1(x_2, x_46); -return x_48; -} -else -{ -lean_dec(x_47); -lean_dec(x_2); -return x_46; -} -} -} -else -{ -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; 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; -x_49 = lean_ctor_get(x_2, 0); -x_50 = lean_ctor_get(x_2, 1); -x_51 = lean_ctor_get(x_2, 2); -x_52 = lean_ctor_get(x_2, 3); -x_53 = lean_ctor_get_uint8(x_2, sizeof(void*)*6); -x_54 = lean_ctor_get_uint8(x_2, sizeof(void*)*6 + 1); -x_55 = lean_ctor_get(x_2, 5); -lean_inc(x_55); -lean_inc(x_52); +x_50 = l_Lean_Parser_symbolFnAux(x_1, x_49, x_2, x_3); +x_51 = lean_ctor_get(x_50, 3); lean_inc(x_51); -lean_inc(x_50); -lean_inc(x_49); +x_52 = lean_box(0); +x_53 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_51, x_52); +lean_dec(x_51); +if (x_53 == 0) +{ lean_dec(x_2); -x_56 = lean_ctor_get(x_49, 0); -lean_inc(x_56); -x_57 = lean_ctor_get(x_49, 1); -lean_inc(x_57); -x_58 = lean_ctor_get(x_49, 2); -lean_inc(x_58); -if (lean_is_exclusive(x_49)) { - lean_ctor_release(x_49, 0); - lean_ctor_release(x_49, 1); - lean_ctor_release(x_49, 2); - x_59 = x_49; -} else { - lean_dec_ref(x_49); - x_59 = lean_box(0); +return x_50; } -if (lean_is_scalar(x_59)) { - x_60 = lean_alloc_ctor(0, 3, 0); -} else { - x_60 = x_59; +else +{ +lean_object* x_54; +x_54 = l_Lean_Parser_Term_sufficesDecl___elambda__1(x_2, x_50); +return x_54; } -lean_ctor_set(x_60, 0, x_56); -lean_ctor_set(x_60, 1, x_57); -lean_ctor_set(x_60, 2, x_58); -x_61 = lean_ctor_get(x_50, 0); +} +} +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; 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; uint8_t x_82; +x_55 = lean_ctor_get(x_2, 0); +x_56 = lean_ctor_get(x_2, 1); +x_57 = lean_ctor_get(x_2, 2); +x_58 = lean_ctor_get(x_2, 3); +x_59 = lean_ctor_get_uint8(x_2, sizeof(void*)*6); +x_60 = lean_ctor_get_uint8(x_2, sizeof(void*)*6 + 1); +x_61 = lean_ctor_get(x_2, 5); lean_inc(x_61); -x_62 = lean_ctor_get(x_50, 1); +lean_inc(x_58); +lean_inc(x_57); +lean_inc(x_56); +lean_inc(x_55); +lean_dec(x_2); +x_62 = lean_ctor_get(x_55, 0); lean_inc(x_62); -x_63 = lean_ctor_get(x_50, 2); +x_63 = lean_ctor_get(x_55, 1); lean_inc(x_63); -x_64 = lean_ctor_get(x_50, 3); +x_64 = lean_ctor_get(x_55, 2); lean_inc(x_64); -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); - x_65 = x_50; +if (lean_is_exclusive(x_55)) { + lean_ctor_release(x_55, 0); + lean_ctor_release(x_55, 1); + lean_ctor_release(x_55, 2); + x_65 = x_55; } else { - lean_dec_ref(x_50); + lean_dec_ref(x_55); x_65 = lean_box(0); } if (lean_is_scalar(x_65)) { - x_66 = lean_alloc_ctor(0, 4, 0); + x_66 = lean_alloc_ctor(0, 3, 0); } else { x_66 = x_65; } -lean_ctor_set(x_66, 0, x_61); -lean_ctor_set(x_66, 1, x_62); -lean_ctor_set(x_66, 2, x_63); -lean_ctor_set(x_66, 3, x_64); -x_67 = lean_ctor_get(x_3, 1); +lean_ctor_set(x_66, 0, x_62); +lean_ctor_set(x_66, 1, x_63); +lean_ctor_set(x_66, 2, x_64); +x_67 = lean_ctor_get(x_56, 0); lean_inc(x_67); -x_68 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_68, 0, x_67); -x_69 = lean_alloc_ctor(0, 6, 2); -lean_ctor_set(x_69, 0, x_60); -lean_ctor_set(x_69, 1, x_66); -lean_ctor_set(x_69, 2, x_51); -lean_ctor_set(x_69, 3, x_52); -lean_ctor_set(x_69, 4, x_68); -lean_ctor_set(x_69, 5, x_55); -lean_ctor_set_uint8(x_69, sizeof(void*)*6, x_53); -lean_ctor_set_uint8(x_69, sizeof(void*)*6 + 1, x_54); -x_70 = l_instReprChar___closed__1; -x_71 = lean_string_append(x_70, x_1); -x_72 = lean_string_append(x_71, x_70); +x_68 = lean_ctor_get(x_56, 1); +lean_inc(x_68); +x_69 = lean_ctor_get(x_56, 2); lean_inc(x_69); -x_73 = l_Lean_Parser_symbolFnAux(x_1, x_72, x_69, x_3); -x_74 = lean_ctor_get(x_73, 3); -lean_inc(x_74); -if (lean_obj_tag(x_74) == 0) +x_70 = lean_ctor_get(x_56, 3); +lean_inc(x_70); +if (lean_is_exclusive(x_56)) { + lean_ctor_release(x_56, 0); + lean_ctor_release(x_56, 1); + lean_ctor_release(x_56, 2); + lean_ctor_release(x_56, 3); + x_71 = x_56; +} else { + lean_dec_ref(x_56); + x_71 = lean_box(0); +} +if (lean_is_scalar(x_71)) { + x_72 = lean_alloc_ctor(0, 4, 0); +} else { + x_72 = x_71; +} +lean_ctor_set(x_72, 0, x_67); +lean_ctor_set(x_72, 1, x_68); +lean_ctor_set(x_72, 2, x_69); +lean_ctor_set(x_72, 3, x_70); +x_73 = lean_ctor_get(x_3, 1); +lean_inc(x_73); +x_74 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_74, 0, x_73); +x_75 = lean_alloc_ctor(0, 6, 2); +lean_ctor_set(x_75, 0, x_66); +lean_ctor_set(x_75, 1, x_72); +lean_ctor_set(x_75, 2, x_57); +lean_ctor_set(x_75, 3, x_58); +lean_ctor_set(x_75, 4, x_74); +lean_ctor_set(x_75, 5, x_61); +lean_ctor_set_uint8(x_75, sizeof(void*)*6, x_59); +lean_ctor_set_uint8(x_75, sizeof(void*)*6 + 1, x_60); +x_76 = l_instReprChar___closed__1; +x_77 = lean_string_append(x_76, x_1); +x_78 = lean_string_append(x_77, x_76); +lean_inc(x_75); +x_79 = l_Lean_Parser_symbolFnAux(x_1, x_78, x_75, x_3); +x_80 = lean_ctor_get(x_79, 3); +lean_inc(x_80); +x_81 = lean_box(0); +x_82 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_80, x_81); +lean_dec(x_80); +if (x_82 == 0) { -lean_object* x_75; -x_75 = l_Lean_Parser_Term_sufficesDecl___elambda__1(x_69, x_73); -return x_75; +lean_dec(x_75); +return x_79; } else { -lean_dec(x_74); -lean_dec(x_69); -return x_73; +lean_object* x_83; +x_83 = l_Lean_Parser_Term_sufficesDecl___elambda__1(x_75, x_79); +return x_83; } } } @@ -17563,7 +17598,7 @@ return x_3; lean_object* l_Lean_Parser_Term_binderType___elambda__1(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; +lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; uint8_t x_10; x_3 = lean_ctor_get(x_2, 0); lean_inc(x_3); x_4 = lean_array_get_size(x_3); @@ -17574,24 +17609,26 @@ lean_inc(x_1); x_7 = l_Lean_Parser_symbolFnAux(x_5, x_6, x_1, x_2); x_8 = lean_ctor_get(x_7, 3); lean_inc(x_8); -if (lean_obj_tag(x_8) == 0) +x_9 = lean_box(0); +x_10 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_8, x_9); +lean_dec(x_8); +if (x_10 == 0) { -lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; -x_9 = l_term___u2218_____closed__6; -x_10 = lean_unsigned_to_nat(0u); -x_11 = l_Lean_Parser_categoryParser___elambda__1(x_9, x_10, x_1, x_7); -x_12 = l_Lean_nullKind; -x_13 = l_Lean_Parser_ParserState_mkNode(x_11, x_12, x_4); -return x_13; +lean_object* x_11; lean_object* x_12; +lean_dec(x_1); +x_11 = l_Lean_nullKind; +x_12 = l_Lean_Parser_ParserState_mkNode(x_7, x_11, x_4); +return x_12; } else { -lean_object* x_14; lean_object* x_15; -lean_dec(x_8); -lean_dec(x_1); -x_14 = l_Lean_nullKind; -x_15 = l_Lean_Parser_ParserState_mkNode(x_7, x_14, x_4); -return x_15; +lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; +x_13 = l_term___u2218_____closed__6; +x_14 = lean_unsigned_to_nat(0u); +x_15 = l_Lean_Parser_categoryParser___elambda__1(x_13, x_14, x_1, x_7); +x_16 = l_Lean_nullKind; +x_17 = l_Lean_Parser_ParserState_mkNode(x_15, x_16, x_4); +return x_17; } } } @@ -22904,7 +22941,7 @@ return x_2; lean_object* l_Lean_Parser_Term_funImplicitBinder___elambda__1(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_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; x_3 = l_Lean_Parser_Term_funImplicitBinder___elambda__1___closed__5; x_4 = lean_ctor_get(x_3, 1); lean_inc(x_4); @@ -22913,19 +22950,21 @@ lean_inc(x_1); x_6 = l_Lean_Parser_atomicFn(x_5, x_1, x_2); x_7 = lean_ctor_get(x_6, 3); lean_inc(x_7); -if (lean_obj_tag(x_7) == 0) -{ -lean_object* x_8; -x_8 = lean_apply_2(x_4, x_1, x_6); -return x_8; -} -else -{ +x_8 = lean_box(0); +x_9 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_7, x_8); lean_dec(x_7); +if (x_9 == 0) +{ lean_dec(x_4); lean_dec(x_1); return x_6; } +else +{ +lean_object* x_10; +x_10 = lean_apply_2(x_4, x_1, x_6); +return x_10; +} } } static lean_object* _init_l_Lean_Parser_Term_funImplicitBinder___closed__1() { @@ -23027,23 +23066,25 @@ return x_2; lean_object* l_Lean_Parser_Term_funSimpleBinder___elambda__1(lean_object* x_1, lean_object* x_2) { _start: { -lean_object* x_3; lean_object* x_4; lean_object* x_5; +lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; uint8_t x_7; x_3 = l_Lean_Parser_Term_funSimpleBinder___elambda__1___closed__2; lean_inc(x_1); x_4 = l_Lean_Parser_atomicFn(x_3, x_1, x_2); x_5 = lean_ctor_get(x_4, 3); lean_inc(x_5); -if (lean_obj_tag(x_5) == 0) +x_6 = lean_box(0); +x_7 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_5, x_6); +lean_dec(x_5); +if (x_7 == 0) { -lean_object* x_6; -x_6 = l_Lean_Parser_Term_simpleBinder___elambda__1(x_1, x_4); -return x_6; +lean_dec(x_1); +return x_4; } else { -lean_dec(x_5); -lean_dec(x_1); -return x_4; +lean_object* x_8; +x_8 = l_Lean_Parser_Term_simpleBinder___elambda__1(x_1, x_4); +return x_8; } } } @@ -26178,7 +26219,7 @@ return x_5; lean_object* l_Lean_Parser_Term_simpleBinderWithoutType___elambda__1(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; +lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; uint8_t x_10; x_3 = l_Lean_Parser_Term_explicitBinder___closed__1; x_4 = lean_ctor_get(x_3, 1); lean_inc(x_4); @@ -26189,21 +26230,23 @@ lean_dec(x_5); x_7 = lean_apply_2(x_4, x_1, x_2); x_8 = lean_ctor_get(x_7, 3); lean_inc(x_8); -if (lean_obj_tag(x_8) == 0) +x_9 = lean_box(0); +x_10 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_8, x_9); +lean_dec(x_8); +if (x_10 == 0) { -lean_object* x_9; lean_object* x_10; lean_object* x_11; -x_9 = l_Lean_Parser_pushNone___elambda__1___rarg(x_7); -x_10 = l_Lean_expandExplicitBindersAux_loop___closed__6; -x_11 = l_Lean_Parser_ParserState_mkNode(x_9, x_10, x_6); -return x_11; +lean_object* x_11; lean_object* x_12; +x_11 = l_Lean_expandExplicitBindersAux_loop___closed__6; +x_12 = l_Lean_Parser_ParserState_mkNode(x_7, x_11, x_6); +return x_12; } else { -lean_object* x_12; lean_object* x_13; -lean_dec(x_8); -x_12 = l_Lean_expandExplicitBindersAux_loop___closed__6; -x_13 = l_Lean_Parser_ParserState_mkNode(x_7, x_12, x_6); -return x_13; +lean_object* x_13; lean_object* x_14; lean_object* x_15; +x_13 = l_Lean_Parser_pushNone___elambda__1___rarg(x_7); +x_14 = l_Lean_expandExplicitBindersAux_loop___closed__6; +x_15 = l_Lean_Parser_ParserState_mkNode(x_13, x_14, x_6); +return x_15; } } } @@ -26341,7 +26384,7 @@ return x_1; lean_object* l_Lean_Parser_Term_letIdLhs___elambda__1(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; +lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; uint8_t x_10; x_3 = l_Lean_Parser_Term_letIdLhs___elambda__1___closed__6; x_4 = lean_ctor_get(x_3, 1); lean_inc(x_4); @@ -26352,51 +26395,55 @@ lean_inc(x_1); x_7 = l_Lean_Parser_Term_ident___elambda__1(x_1, x_2); x_8 = lean_ctor_get(x_7, 3); lean_inc(x_8); -if (lean_obj_tag(x_8) == 0) -{ -lean_object* x_9; lean_object* x_10; lean_object* x_11; -x_9 = l_Lean_Parser_Term_letIdLhs___elambda__1___closed__7; -x_10 = l_Lean_Parser_checkWsBeforeFn(x_9, x_1, x_7); -x_11 = lean_ctor_get(x_10, 3); -lean_inc(x_11); -if (lean_obj_tag(x_11) == 0) -{ -lean_object* x_12; lean_object* x_13; -lean_inc(x_1); -x_12 = lean_apply_2(x_4, x_1, x_10); -x_13 = lean_ctor_get(x_12, 3); -lean_inc(x_13); -if (lean_obj_tag(x_13) == 0) -{ -lean_object* x_14; -x_14 = lean_apply_2(x_6, x_1, x_12); -return x_14; -} -else -{ -lean_dec(x_13); -lean_dec(x_6); -lean_dec(x_1); -return x_12; -} -} -else -{ -lean_dec(x_11); -lean_dec(x_6); -lean_dec(x_4); -lean_dec(x_1); -return x_10; -} -} -else -{ +x_9 = lean_box(0); +x_10 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_8, x_9); lean_dec(x_8); +if (x_10 == 0) +{ lean_dec(x_6); lean_dec(x_4); lean_dec(x_1); return x_7; } +else +{ +lean_object* x_11; lean_object* x_12; lean_object* x_13; uint8_t x_14; +x_11 = l_Lean_Parser_Term_letIdLhs___elambda__1___closed__7; +x_12 = l_Lean_Parser_checkWsBeforeFn(x_11, x_1, x_7); +x_13 = lean_ctor_get(x_12, 3); +lean_inc(x_13); +x_14 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_13, x_9); +lean_dec(x_13); +if (x_14 == 0) +{ +lean_dec(x_6); +lean_dec(x_4); +lean_dec(x_1); +return x_12; +} +else +{ +lean_object* x_15; lean_object* x_16; uint8_t x_17; +lean_inc(x_1); +x_15 = lean_apply_2(x_4, x_1, x_12); +x_16 = lean_ctor_get(x_15, 3); +lean_inc(x_16); +x_17 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_16, x_9); +lean_dec(x_16); +if (x_17 == 0) +{ +lean_dec(x_6); +lean_dec(x_1); +return x_15; +} +else +{ +lean_object* x_18; +x_18 = lean_apply_2(x_6, x_1, x_15); +return x_18; +} +} +} } } static lean_object* _init_l_Lean_Parser_Term_letIdLhs___closed__1() { @@ -26478,7 +26525,7 @@ return x_3; lean_object* l_Lean_Parser_Term_letIdDecl___elambda__1(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_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; x_3 = lean_ctor_get(x_2, 0); lean_inc(x_3); x_4 = lean_array_get_size(x_3); @@ -26488,24 +26535,26 @@ lean_inc(x_1); x_6 = l_Lean_Parser_atomicFn(x_5, x_1, x_2); x_7 = lean_ctor_get(x_6, 3); lean_inc(x_7); -if (lean_obj_tag(x_7) == 0) +x_8 = lean_box(0); +x_9 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_7, x_8); +lean_dec(x_7); +if (x_9 == 0) { -lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; -x_8 = l_term___u2218_____closed__6; -x_9 = lean_unsigned_to_nat(0u); -x_10 = l_Lean_Parser_categoryParser___elambda__1(x_8, x_9, x_1, x_6); -x_11 = l_myMacro____x40_Init_Notation___hyg_12942____closed__8; -x_12 = l_Lean_Parser_ParserState_mkNode(x_10, x_11, x_4); -return x_12; +lean_object* x_10; lean_object* x_11; +lean_dec(x_1); +x_10 = l_myMacro____x40_Init_Notation___hyg_12942____closed__8; +x_11 = l_Lean_Parser_ParserState_mkNode(x_6, x_10, x_4); +return x_11; } else { -lean_object* x_13; lean_object* x_14; -lean_dec(x_7); -lean_dec(x_1); -x_13 = l_myMacro____x40_Init_Notation___hyg_12942____closed__8; -x_14 = l_Lean_Parser_ParserState_mkNode(x_6, x_13, x_4); -return x_14; +lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; +x_12 = l_term___u2218_____closed__6; +x_13 = lean_unsigned_to_nat(0u); +x_14 = l_Lean_Parser_categoryParser___elambda__1(x_12, x_13, x_1, x_6); +x_15 = l_myMacro____x40_Init_Notation___hyg_12942____closed__8; +x_16 = l_Lean_Parser_ParserState_mkNode(x_14, x_15, x_4); +return x_16; } } } @@ -26630,7 +26679,7 @@ return x_3; lean_object* l_Lean_Parser_Term_letPatDecl___elambda__1(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_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; x_3 = lean_ctor_get(x_2, 0); lean_inc(x_3); x_4 = lean_array_get_size(x_3); @@ -26640,24 +26689,26 @@ lean_inc(x_1); x_6 = l_Lean_Parser_atomicFn(x_5, x_1, x_2); x_7 = lean_ctor_get(x_6, 3); lean_inc(x_7); -if (lean_obj_tag(x_7) == 0) +x_8 = lean_box(0); +x_9 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_7, x_8); +lean_dec(x_7); +if (x_9 == 0) { -lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; -x_8 = l_term___u2218_____closed__6; -x_9 = lean_unsigned_to_nat(0u); -x_10 = l_Lean_Parser_categoryParser___elambda__1(x_8, x_9, x_1, x_6); -x_11 = l_Lean_Parser_Term_letPatDecl___elambda__1___closed__2; -x_12 = l_Lean_Parser_ParserState_mkNode(x_10, x_11, x_4); -return x_12; +lean_object* x_10; lean_object* x_11; +lean_dec(x_1); +x_10 = l_Lean_Parser_Term_letPatDecl___elambda__1___closed__2; +x_11 = l_Lean_Parser_ParserState_mkNode(x_6, x_10, x_4); +return x_11; } else { -lean_object* x_13; lean_object* x_14; -lean_dec(x_7); -lean_dec(x_1); -x_13 = l_Lean_Parser_Term_letPatDecl___elambda__1___closed__2; -x_14 = l_Lean_Parser_ParserState_mkNode(x_6, x_13, x_4); -return x_14; +lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; +x_12 = l_term___u2218_____closed__6; +x_13 = lean_unsigned_to_nat(0u); +x_14 = l_Lean_Parser_categoryParser___elambda__1(x_12, x_13, x_1, x_6); +x_15 = l_Lean_Parser_Term_letPatDecl___elambda__1___closed__2; +x_16 = l_Lean_Parser_ParserState_mkNode(x_14, x_15, x_4); +return x_16; } } } @@ -26768,7 +26819,7 @@ return x_3; lean_object* l_Lean_Parser_Term_letEqnsDecl___elambda__1(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; +lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; uint8_t x_10; x_3 = l_Lean_Parser_Term_match___elambda__1___closed__5; x_4 = lean_ctor_get(x_3, 1); lean_inc(x_4); @@ -26780,23 +26831,25 @@ lean_inc(x_1); x_7 = l_Lean_Parser_Term_letIdLhs___elambda__1(x_1, x_2); x_8 = lean_ctor_get(x_7, 3); lean_inc(x_8); -if (lean_obj_tag(x_8) == 0) +x_9 = lean_box(0); +x_10 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_8, x_9); +lean_dec(x_8); +if (x_10 == 0) { -lean_object* x_9; lean_object* x_10; lean_object* x_11; -x_9 = lean_apply_2(x_4, x_1, x_7); -x_10 = l_Lean_Parser_Term_letEqnsDecl___elambda__1___closed__2; -x_11 = l_Lean_Parser_ParserState_mkNode(x_9, x_10, x_6); -return x_11; +lean_object* x_11; lean_object* x_12; +lean_dec(x_4); +lean_dec(x_1); +x_11 = l_Lean_Parser_Term_letEqnsDecl___elambda__1___closed__2; +x_12 = l_Lean_Parser_ParserState_mkNode(x_7, x_11, x_6); +return x_12; } else { -lean_object* x_12; lean_object* x_13; -lean_dec(x_8); -lean_dec(x_4); -lean_dec(x_1); -x_12 = l_Lean_Parser_Term_letEqnsDecl___elambda__1___closed__2; -x_13 = l_Lean_Parser_ParserState_mkNode(x_7, x_12, x_6); -return x_13; +lean_object* x_13; lean_object* x_14; lean_object* x_15; +x_13 = lean_apply_2(x_4, x_1, x_7); +x_14 = l_Lean_Parser_Term_letEqnsDecl___elambda__1___closed__2; +x_15 = l_Lean_Parser_ParserState_mkNode(x_13, x_14, x_6); +return x_15; } } } @@ -27006,7 +27059,7 @@ uint8_t x_10; x_10 = !lean_is_exclusive(x_7); 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; lean_object* x_17; +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; uint8_t x_19; x_11 = lean_ctor_get(x_4, 1); lean_inc(x_11); x_12 = lean_alloc_ctor(1, 1, 0); @@ -27019,233 +27072,241 @@ lean_inc(x_3); x_16 = l_Lean_Parser_symbolFnAux(x_1, x_15, x_3, x_4); x_17 = lean_ctor_get(x_16, 3); lean_inc(x_17); -if (lean_obj_tag(x_17) == 0) -{ -lean_object* x_18; -x_18 = lean_apply_2(x_2, x_3, x_16); -return x_18; -} -else -{ +x_18 = lean_box(0); +x_19 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_17, x_18); lean_dec(x_17); +if (x_19 == 0) +{ lean_dec(x_3); lean_dec(x_2); return x_16; } +else +{ +lean_object* x_20; +x_20 = lean_apply_2(x_2, x_3, x_16); +return x_20; +} } else { -lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; -x_19 = lean_ctor_get(x_7, 0); -x_20 = lean_ctor_get(x_7, 1); -x_21 = lean_ctor_get(x_7, 2); -x_22 = lean_ctor_get(x_7, 3); +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; uint8_t x_34; +x_21 = lean_ctor_get(x_7, 0); +x_22 = lean_ctor_get(x_7, 1); +x_23 = lean_ctor_get(x_7, 2); +x_24 = lean_ctor_get(x_7, 3); +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_dec(x_7); -x_23 = lean_alloc_ctor(0, 4, 0); -lean_ctor_set(x_23, 0, x_19); -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 = lean_ctor_get(x_4, 1); -lean_inc(x_24); -x_25 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_25, 0, x_24); -lean_ctor_set(x_3, 4, x_25); -lean_ctor_set(x_3, 1, x_23); -x_26 = l_instReprChar___closed__1; -x_27 = lean_string_append(x_26, x_1); -x_28 = lean_string_append(x_27, x_26); +x_25 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_25, 0, x_21); +lean_ctor_set(x_25, 1, x_22); +lean_ctor_set(x_25, 2, x_23); +lean_ctor_set(x_25, 3, x_24); +x_26 = lean_ctor_get(x_4, 1); +lean_inc(x_26); +x_27 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_27, 0, x_26); +lean_ctor_set(x_3, 4, x_27); +lean_ctor_set(x_3, 1, x_25); +x_28 = l_instReprChar___closed__1; +x_29 = lean_string_append(x_28, x_1); +x_30 = lean_string_append(x_29, x_28); lean_inc(x_3); -x_29 = l_Lean_Parser_symbolFnAux(x_1, x_28, x_3, x_4); -x_30 = lean_ctor_get(x_29, 3); -lean_inc(x_30); -if (lean_obj_tag(x_30) == 0) +x_31 = l_Lean_Parser_symbolFnAux(x_1, x_30, x_3, x_4); +x_32 = lean_ctor_get(x_31, 3); +lean_inc(x_32); +x_33 = lean_box(0); +x_34 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_32, x_33); +lean_dec(x_32); +if (x_34 == 0) { -lean_object* x_31; -x_31 = lean_apply_2(x_2, x_3, x_29); +lean_dec(x_3); +lean_dec(x_2); return x_31; } else { -lean_dec(x_30); -lean_dec(x_3); -lean_dec(x_2); -return x_29; +lean_object* x_35; +x_35 = lean_apply_2(x_2, x_3, x_31); +return x_35; } } } 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_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; -x_32 = lean_ctor_get(x_6, 0); -x_33 = lean_ctor_get(x_6, 1); -x_34 = lean_ctor_get(x_6, 2); -lean_inc(x_34); -lean_inc(x_33); -lean_inc(x_32); -lean_dec(x_6); -x_35 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_35, 0, x_32); -lean_ctor_set(x_35, 1, x_33); -lean_ctor_set(x_35, 2, x_34); -x_36 = lean_ctor_get(x_7, 0); -lean_inc(x_36); -x_37 = lean_ctor_get(x_7, 1); -lean_inc(x_37); -x_38 = lean_ctor_get(x_7, 2); +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; uint8_t x_54; +x_36 = lean_ctor_get(x_6, 0); +x_37 = lean_ctor_get(x_6, 1); +x_38 = lean_ctor_get(x_6, 2); lean_inc(x_38); -x_39 = lean_ctor_get(x_7, 3); -lean_inc(x_39); +lean_inc(x_37); +lean_inc(x_36); +lean_dec(x_6); +x_39 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_39, 0, x_36); +lean_ctor_set(x_39, 1, x_37); +lean_ctor_set(x_39, 2, x_38); +x_40 = lean_ctor_get(x_7, 0); +lean_inc(x_40); +x_41 = lean_ctor_get(x_7, 1); +lean_inc(x_41); +x_42 = lean_ctor_get(x_7, 2); +lean_inc(x_42); +x_43 = lean_ctor_get(x_7, 3); +lean_inc(x_43); 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); - x_40 = x_7; + x_44 = x_7; } else { lean_dec_ref(x_7); - x_40 = lean_box(0); + x_44 = lean_box(0); } -if (lean_is_scalar(x_40)) { - x_41 = lean_alloc_ctor(0, 4, 0); +if (lean_is_scalar(x_44)) { + x_45 = lean_alloc_ctor(0, 4, 0); } else { - x_41 = x_40; + x_45 = x_44; } -lean_ctor_set(x_41, 0, x_36); -lean_ctor_set(x_41, 1, x_37); -lean_ctor_set(x_41, 2, x_38); -lean_ctor_set(x_41, 3, x_39); -x_42 = lean_ctor_get(x_4, 1); -lean_inc(x_42); -x_43 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_43, 0, x_42); -lean_ctor_set(x_3, 4, x_43); -lean_ctor_set(x_3, 1, x_41); -lean_ctor_set(x_3, 0, x_35); -x_44 = l_instReprChar___closed__1; -x_45 = lean_string_append(x_44, x_1); -x_46 = lean_string_append(x_45, x_44); +lean_ctor_set(x_45, 0, x_40); +lean_ctor_set(x_45, 1, x_41); +lean_ctor_set(x_45, 2, x_42); +lean_ctor_set(x_45, 3, x_43); +x_46 = lean_ctor_get(x_4, 1); +lean_inc(x_46); +x_47 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_47, 0, x_46); +lean_ctor_set(x_3, 4, x_47); +lean_ctor_set(x_3, 1, x_45); +lean_ctor_set(x_3, 0, x_39); +x_48 = l_instReprChar___closed__1; +x_49 = lean_string_append(x_48, x_1); +x_50 = lean_string_append(x_49, x_48); lean_inc(x_3); -x_47 = l_Lean_Parser_symbolFnAux(x_1, x_46, x_3, x_4); -x_48 = lean_ctor_get(x_47, 3); -lean_inc(x_48); -if (lean_obj_tag(x_48) == 0) +x_51 = l_Lean_Parser_symbolFnAux(x_1, x_50, x_3, x_4); +x_52 = lean_ctor_get(x_51, 3); +lean_inc(x_52); +x_53 = lean_box(0); +x_54 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_52, x_53); +lean_dec(x_52); +if (x_54 == 0) { -lean_object* x_49; -x_49 = lean_apply_2(x_2, x_3, x_47); -return x_49; -} -else -{ -lean_dec(x_48); lean_dec(x_3); lean_dec(x_2); -return x_47; +return x_51; +} +else +{ +lean_object* x_55; +x_55 = lean_apply_2(x_2, x_3, x_51); +return x_55; } } } else { -lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; uint8_t 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; 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_50 = lean_ctor_get(x_3, 0); -x_51 = lean_ctor_get(x_3, 1); -x_52 = lean_ctor_get(x_3, 2); -x_53 = lean_ctor_get(x_3, 3); -x_54 = lean_ctor_get_uint8(x_3, sizeof(void*)*6); -x_55 = lean_ctor_get_uint8(x_3, sizeof(void*)*6 + 1); -x_56 = lean_ctor_get(x_3, 5); -lean_inc(x_56); -lean_inc(x_53); -lean_inc(x_52); -lean_inc(x_51); -lean_inc(x_50); -lean_dec(x_3); -x_57 = lean_ctor_get(x_50, 0); -lean_inc(x_57); -x_58 = lean_ctor_get(x_50, 1); -lean_inc(x_58); -x_59 = lean_ctor_get(x_50, 2); -lean_inc(x_59); -if (lean_is_exclusive(x_50)) { - lean_ctor_release(x_50, 0); - lean_ctor_release(x_50, 1); - lean_ctor_release(x_50, 2); - x_60 = x_50; -} else { - lean_dec_ref(x_50); - x_60 = lean_box(0); -} -if (lean_is_scalar(x_60)) { - x_61 = lean_alloc_ctor(0, 3, 0); -} else { - x_61 = x_60; -} -lean_ctor_set(x_61, 0, x_57); -lean_ctor_set(x_61, 1, x_58); -lean_ctor_set(x_61, 2, x_59); -x_62 = lean_ctor_get(x_51, 0); +lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; uint8_t 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; 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; uint8_t x_83; +x_56 = lean_ctor_get(x_3, 0); +x_57 = lean_ctor_get(x_3, 1); +x_58 = lean_ctor_get(x_3, 2); +x_59 = lean_ctor_get(x_3, 3); +x_60 = lean_ctor_get_uint8(x_3, sizeof(void*)*6); +x_61 = lean_ctor_get_uint8(x_3, sizeof(void*)*6 + 1); +x_62 = lean_ctor_get(x_3, 5); lean_inc(x_62); -x_63 = lean_ctor_get(x_51, 1); +lean_inc(x_59); +lean_inc(x_58); +lean_inc(x_57); +lean_inc(x_56); +lean_dec(x_3); +x_63 = lean_ctor_get(x_56, 0); lean_inc(x_63); -x_64 = lean_ctor_get(x_51, 2); +x_64 = lean_ctor_get(x_56, 1); lean_inc(x_64); -x_65 = lean_ctor_get(x_51, 3); +x_65 = lean_ctor_get(x_56, 2); lean_inc(x_65); -if (lean_is_exclusive(x_51)) { - lean_ctor_release(x_51, 0); - lean_ctor_release(x_51, 1); - lean_ctor_release(x_51, 2); - lean_ctor_release(x_51, 3); - x_66 = x_51; +if (lean_is_exclusive(x_56)) { + lean_ctor_release(x_56, 0); + lean_ctor_release(x_56, 1); + lean_ctor_release(x_56, 2); + x_66 = x_56; } else { - lean_dec_ref(x_51); + lean_dec_ref(x_56); x_66 = lean_box(0); } if (lean_is_scalar(x_66)) { - x_67 = lean_alloc_ctor(0, 4, 0); + x_67 = lean_alloc_ctor(0, 3, 0); } else { x_67 = x_66; } -lean_ctor_set(x_67, 0, x_62); -lean_ctor_set(x_67, 1, x_63); -lean_ctor_set(x_67, 2, x_64); -lean_ctor_set(x_67, 3, x_65); -x_68 = lean_ctor_get(x_4, 1); +lean_ctor_set(x_67, 0, x_63); +lean_ctor_set(x_67, 1, x_64); +lean_ctor_set(x_67, 2, x_65); +x_68 = lean_ctor_get(x_57, 0); lean_inc(x_68); -x_69 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_69, 0, x_68); -x_70 = lean_alloc_ctor(0, 6, 2); -lean_ctor_set(x_70, 0, x_61); -lean_ctor_set(x_70, 1, x_67); -lean_ctor_set(x_70, 2, x_52); -lean_ctor_set(x_70, 3, x_53); -lean_ctor_set(x_70, 4, x_69); -lean_ctor_set(x_70, 5, x_56); -lean_ctor_set_uint8(x_70, sizeof(void*)*6, x_54); -lean_ctor_set_uint8(x_70, sizeof(void*)*6 + 1, x_55); -x_71 = l_instReprChar___closed__1; -x_72 = lean_string_append(x_71, x_1); -x_73 = lean_string_append(x_72, x_71); +x_69 = lean_ctor_get(x_57, 1); +lean_inc(x_69); +x_70 = lean_ctor_get(x_57, 2); lean_inc(x_70); -x_74 = l_Lean_Parser_symbolFnAux(x_1, x_73, x_70, x_4); -x_75 = lean_ctor_get(x_74, 3); -lean_inc(x_75); -if (lean_obj_tag(x_75) == 0) +x_71 = lean_ctor_get(x_57, 3); +lean_inc(x_71); +if (lean_is_exclusive(x_57)) { + lean_ctor_release(x_57, 0); + lean_ctor_release(x_57, 1); + lean_ctor_release(x_57, 2); + lean_ctor_release(x_57, 3); + x_72 = x_57; +} else { + lean_dec_ref(x_57); + x_72 = lean_box(0); +} +if (lean_is_scalar(x_72)) { + x_73 = lean_alloc_ctor(0, 4, 0); +} else { + x_73 = x_72; +} +lean_ctor_set(x_73, 0, x_68); +lean_ctor_set(x_73, 1, x_69); +lean_ctor_set(x_73, 2, x_70); +lean_ctor_set(x_73, 3, x_71); +x_74 = lean_ctor_get(x_4, 1); +lean_inc(x_74); +x_75 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_75, 0, x_74); +x_76 = lean_alloc_ctor(0, 6, 2); +lean_ctor_set(x_76, 0, x_67); +lean_ctor_set(x_76, 1, x_73); +lean_ctor_set(x_76, 2, x_58); +lean_ctor_set(x_76, 3, x_59); +lean_ctor_set(x_76, 4, x_75); +lean_ctor_set(x_76, 5, x_62); +lean_ctor_set_uint8(x_76, sizeof(void*)*6, x_60); +lean_ctor_set_uint8(x_76, sizeof(void*)*6 + 1, x_61); +x_77 = l_instReprChar___closed__1; +x_78 = lean_string_append(x_77, x_1); +x_79 = lean_string_append(x_78, x_77); +lean_inc(x_76); +x_80 = l_Lean_Parser_symbolFnAux(x_1, x_79, x_76, x_4); +x_81 = lean_ctor_get(x_80, 3); +lean_inc(x_81); +x_82 = lean_box(0); +x_83 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_81, x_82); +lean_dec(x_81); +if (x_83 == 0) { -lean_object* x_76; -x_76 = lean_apply_2(x_2, x_70, x_74); -return x_76; +lean_dec(x_76); +lean_dec(x_2); +return x_80; } else { -lean_dec(x_75); -lean_dec(x_70); -lean_dec(x_2); -return x_74; +lean_object* x_84; +x_84 = lean_apply_2(x_2, x_76, x_80); +return x_84; } } } @@ -30056,7 +30117,7 @@ uint8_t x_11; x_11 = !lean_is_exclusive(x_8); if (x_11 == 0) { -lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; +lean_object* x_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; uint8_t x_22; x_12 = lean_ctor_get(x_5, 1); lean_inc(x_12); x_13 = lean_alloc_ctor(1, 1, 0); @@ -30073,384 +30134,400 @@ lean_inc(x_4); x_19 = l_Lean_Parser_symbolFnAux(x_1, x_18, x_4, x_5); x_20 = lean_ctor_get(x_19, 3); lean_inc(x_20); -if (lean_obj_tag(x_20) == 0) +x_21 = lean_box(0); +x_22 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_20, x_21); +lean_dec(x_20); +if (x_22 == 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; -x_21 = lean_string_append(x_16, x_2); -x_22 = lean_string_append(x_21, x_16); -lean_inc(x_4); -x_23 = l_Lean_Parser_nonReservedSymbolFnAux(x_2, x_22, x_4, x_19); -x_24 = l_Lean_nullKind; -x_25 = l_Lean_Parser_ParserState_mkNode(x_23, x_24, x_15); -x_26 = lean_ctor_get(x_25, 3); -lean_inc(x_26); -if (lean_obj_tag(x_26) == 0) +lean_object* x_23; lean_object* x_24; lean_object* x_25; uint8_t x_26; +lean_dec(x_3); +x_23 = l_Lean_nullKind; +x_24 = l_Lean_Parser_ParserState_mkNode(x_19, x_23, x_15); +x_25 = lean_ctor_get(x_24, 3); +lean_inc(x_25); +x_26 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_25, x_21); +lean_dec(x_25); +if (x_26 == 0) +{ +lean_dec(x_4); +lean_dec(x_2); +return x_24; +} +else { lean_object* x_27; -x_27 = lean_apply_2(x_3, x_4, x_25); +x_27 = lean_apply_2(x_2, x_4, x_24); return x_27; } -else -{ -lean_dec(x_26); -lean_dec(x_4); -lean_dec(x_3); -return x_25; -} } else { -lean_object* x_28; lean_object* x_29; lean_object* x_30; -lean_dec(x_20); -lean_dec(x_2); -x_28 = l_Lean_nullKind; -x_29 = l_Lean_Parser_ParserState_mkNode(x_19, x_28, x_15); -x_30 = lean_ctor_get(x_29, 3); -lean_inc(x_30); -if (lean_obj_tag(x_30) == 0) -{ -lean_object* x_31; -x_31 = lean_apply_2(x_3, x_4, x_29); -return x_31; -} -else -{ -lean_dec(x_30); -lean_dec(x_4); -lean_dec(x_3); -return x_29; -} -} -} -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_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; -x_32 = lean_ctor_get(x_8, 0); -x_33 = lean_ctor_get(x_8, 1); -x_34 = lean_ctor_get(x_8, 2); -x_35 = lean_ctor_get(x_8, 3); -lean_inc(x_35); -lean_inc(x_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; uint8_t x_34; +x_28 = lean_string_append(x_16, x_3); +x_29 = lean_string_append(x_28, x_16); +lean_inc(x_4); +x_30 = l_Lean_Parser_nonReservedSymbolFnAux(x_3, x_29, x_4, x_19); +x_31 = l_Lean_nullKind; +x_32 = l_Lean_Parser_ParserState_mkNode(x_30, x_31, x_15); +x_33 = lean_ctor_get(x_32, 3); lean_inc(x_33); -lean_inc(x_32); -lean_dec(x_8); -x_36 = lean_alloc_ctor(0, 4, 0); -lean_ctor_set(x_36, 0, x_32); -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_ctor_get(x_5, 1); -lean_inc(x_37); -x_38 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_38, 0, x_37); -lean_ctor_set(x_4, 4, x_38); -lean_ctor_set(x_4, 1, x_36); -x_39 = lean_ctor_get(x_5, 0); -lean_inc(x_39); -x_40 = lean_array_get_size(x_39); -lean_dec(x_39); -x_41 = l_instReprChar___closed__1; -x_42 = lean_string_append(x_41, x_1); -x_43 = lean_string_append(x_42, x_41); -lean_inc(x_4); -x_44 = l_Lean_Parser_symbolFnAux(x_1, x_43, x_4, x_5); -x_45 = lean_ctor_get(x_44, 3); -lean_inc(x_45); -if (lean_obj_tag(x_45) == 0) +x_34 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_33, x_21); +lean_dec(x_33); +if (x_34 == 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; -x_46 = lean_string_append(x_41, x_2); -x_47 = lean_string_append(x_46, x_41); -lean_inc(x_4); -x_48 = l_Lean_Parser_nonReservedSymbolFnAux(x_2, x_47, x_4, x_44); -x_49 = l_Lean_nullKind; -x_50 = l_Lean_Parser_ParserState_mkNode(x_48, x_49, x_40); -x_51 = lean_ctor_get(x_50, 3); -lean_inc(x_51); -if (lean_obj_tag(x_51) == 0) -{ -lean_object* x_52; -x_52 = lean_apply_2(x_3, x_4, x_50); -return x_52; -} -else -{ -lean_dec(x_51); lean_dec(x_4); -lean_dec(x_3); -return x_50; +lean_dec(x_2); +return x_32; +} +else +{ +lean_object* x_35; +x_35 = lean_apply_2(x_2, x_4, x_32); +return x_35; +} } } else { -lean_object* x_53; lean_object* x_54; lean_object* x_55; -lean_dec(x_45); +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_36 = lean_ctor_get(x_8, 0); +x_37 = lean_ctor_get(x_8, 1); +x_38 = lean_ctor_get(x_8, 2); +x_39 = lean_ctor_get(x_8, 3); +lean_inc(x_39); +lean_inc(x_38); +lean_inc(x_37); +lean_inc(x_36); +lean_dec(x_8); +x_40 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_40, 0, x_36); +lean_ctor_set(x_40, 1, x_37); +lean_ctor_set(x_40, 2, x_38); +lean_ctor_set(x_40, 3, x_39); +x_41 = lean_ctor_get(x_5, 1); +lean_inc(x_41); +x_42 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_42, 0, x_41); +lean_ctor_set(x_4, 4, x_42); +lean_ctor_set(x_4, 1, x_40); +x_43 = lean_ctor_get(x_5, 0); +lean_inc(x_43); +x_44 = lean_array_get_size(x_43); +lean_dec(x_43); +x_45 = l_instReprChar___closed__1; +x_46 = lean_string_append(x_45, x_1); +x_47 = lean_string_append(x_46, x_45); +lean_inc(x_4); +x_48 = l_Lean_Parser_symbolFnAux(x_1, x_47, x_4, x_5); +x_49 = lean_ctor_get(x_48, 3); +lean_inc(x_49); +x_50 = lean_box(0); +x_51 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_49, x_50); +lean_dec(x_49); +if (x_51 == 0) +{ +lean_object* x_52; lean_object* x_53; lean_object* x_54; uint8_t x_55; +lean_dec(x_3); +x_52 = l_Lean_nullKind; +x_53 = l_Lean_Parser_ParserState_mkNode(x_48, x_52, x_44); +x_54 = lean_ctor_get(x_53, 3); +lean_inc(x_54); +x_55 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_54, x_50); +lean_dec(x_54); +if (x_55 == 0) +{ +lean_dec(x_4); lean_dec(x_2); -x_53 = l_Lean_nullKind; -x_54 = l_Lean_Parser_ParserState_mkNode(x_44, x_53, x_40); -x_55 = lean_ctor_get(x_54, 3); -lean_inc(x_55); -if (lean_obj_tag(x_55) == 0) +return x_53; +} +else { lean_object* x_56; -x_56 = lean_apply_2(x_3, x_4, x_54); +x_56 = lean_apply_2(x_2, x_4, x_53); return x_56; } -else -{ -lean_dec(x_55); -lean_dec(x_4); -lean_dec(x_3); -return x_54; -} -} -} } else { -lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; 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_57 = lean_ctor_get(x_7, 0); -x_58 = lean_ctor_get(x_7, 1); -x_59 = lean_ctor_get(x_7, 2); -lean_inc(x_59); -lean_inc(x_58); -lean_inc(x_57); -lean_dec(x_7); -x_60 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_60, 0, x_57); -lean_ctor_set(x_60, 1, x_58); -lean_ctor_set(x_60, 2, x_59); -x_61 = lean_ctor_get(x_8, 0); -lean_inc(x_61); -x_62 = lean_ctor_get(x_8, 1); +lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; uint8_t x_63; +x_57 = lean_string_append(x_45, x_3); +x_58 = lean_string_append(x_57, x_45); +lean_inc(x_4); +x_59 = l_Lean_Parser_nonReservedSymbolFnAux(x_3, x_58, x_4, x_48); +x_60 = l_Lean_nullKind; +x_61 = l_Lean_Parser_ParserState_mkNode(x_59, x_60, x_44); +x_62 = lean_ctor_get(x_61, 3); lean_inc(x_62); -x_63 = lean_ctor_get(x_8, 2); -lean_inc(x_63); -x_64 = lean_ctor_get(x_8, 3); -lean_inc(x_64); +x_63 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_62, x_50); +lean_dec(x_62); +if (x_63 == 0) +{ +lean_dec(x_4); +lean_dec(x_2); +return x_61; +} +else +{ +lean_object* x_64; +x_64 = lean_apply_2(x_2, x_4, x_61); +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; uint8_t x_85; +x_65 = lean_ctor_get(x_7, 0); +x_66 = lean_ctor_get(x_7, 1); +x_67 = lean_ctor_get(x_7, 2); +lean_inc(x_67); +lean_inc(x_66); +lean_inc(x_65); +lean_dec(x_7); +x_68 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_68, 0, x_65); +lean_ctor_set(x_68, 1, x_66); +lean_ctor_set(x_68, 2, x_67); +x_69 = lean_ctor_get(x_8, 0); +lean_inc(x_69); +x_70 = lean_ctor_get(x_8, 1); +lean_inc(x_70); +x_71 = lean_ctor_get(x_8, 2); +lean_inc(x_71); +x_72 = lean_ctor_get(x_8, 3); +lean_inc(x_72); if (lean_is_exclusive(x_8)) { lean_ctor_release(x_8, 0); lean_ctor_release(x_8, 1); lean_ctor_release(x_8, 2); lean_ctor_release(x_8, 3); - x_65 = x_8; + x_73 = x_8; } else { lean_dec_ref(x_8); - x_65 = lean_box(0); + x_73 = lean_box(0); } -if (lean_is_scalar(x_65)) { - x_66 = lean_alloc_ctor(0, 4, 0); +if (lean_is_scalar(x_73)) { + x_74 = lean_alloc_ctor(0, 4, 0); } else { - x_66 = x_65; + x_74 = x_73; } -lean_ctor_set(x_66, 0, x_61); -lean_ctor_set(x_66, 1, x_62); -lean_ctor_set(x_66, 2, x_63); -lean_ctor_set(x_66, 3, x_64); -x_67 = lean_ctor_get(x_5, 1); -lean_inc(x_67); -x_68 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_68, 0, x_67); -lean_ctor_set(x_4, 4, x_68); -lean_ctor_set(x_4, 1, x_66); -lean_ctor_set(x_4, 0, x_60); -x_69 = lean_ctor_get(x_5, 0); -lean_inc(x_69); -x_70 = lean_array_get_size(x_69); -lean_dec(x_69); -x_71 = l_instReprChar___closed__1; -x_72 = lean_string_append(x_71, x_1); -x_73 = lean_string_append(x_72, x_71); -lean_inc(x_4); -x_74 = l_Lean_Parser_symbolFnAux(x_1, x_73, x_4, x_5); -x_75 = lean_ctor_get(x_74, 3); +lean_ctor_set(x_74, 0, x_69); +lean_ctor_set(x_74, 1, x_70); +lean_ctor_set(x_74, 2, x_71); +lean_ctor_set(x_74, 3, x_72); +x_75 = lean_ctor_get(x_5, 1); lean_inc(x_75); -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; -x_76 = lean_string_append(x_71, x_2); -x_77 = lean_string_append(x_76, x_71); +x_76 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_76, 0, x_75); +lean_ctor_set(x_4, 4, x_76); +lean_ctor_set(x_4, 1, x_74); +lean_ctor_set(x_4, 0, x_68); +x_77 = lean_ctor_get(x_5, 0); +lean_inc(x_77); +x_78 = lean_array_get_size(x_77); +lean_dec(x_77); +x_79 = l_instReprChar___closed__1; +x_80 = lean_string_append(x_79, x_1); +x_81 = lean_string_append(x_80, x_79); lean_inc(x_4); -x_78 = l_Lean_Parser_nonReservedSymbolFnAux(x_2, x_77, x_4, x_74); -x_79 = l_Lean_nullKind; -x_80 = l_Lean_Parser_ParserState_mkNode(x_78, x_79, x_70); -x_81 = lean_ctor_get(x_80, 3); -lean_inc(x_81); -if (lean_obj_tag(x_81) == 0) +x_82 = l_Lean_Parser_symbolFnAux(x_1, x_81, x_4, x_5); +x_83 = lean_ctor_get(x_82, 3); +lean_inc(x_83); +x_84 = lean_box(0); +x_85 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_83, x_84); +lean_dec(x_83); +if (x_85 == 0) { -lean_object* x_82; -x_82 = lean_apply_2(x_3, x_4, x_80); -return x_82; -} -else -{ -lean_dec(x_81); -lean_dec(x_4); +lean_object* x_86; lean_object* x_87; lean_object* x_88; uint8_t x_89; lean_dec(x_3); -return x_80; -} -} -else -{ -lean_object* x_83; lean_object* x_84; lean_object* x_85; -lean_dec(x_75); -lean_dec(x_2); -x_83 = l_Lean_nullKind; -x_84 = l_Lean_Parser_ParserState_mkNode(x_74, x_83, x_70); -x_85 = lean_ctor_get(x_84, 3); -lean_inc(x_85); -if (lean_obj_tag(x_85) == 0) -{ -lean_object* x_86; -x_86 = lean_apply_2(x_3, x_4, x_84); -return x_86; -} -else -{ -lean_dec(x_85); -lean_dec(x_4); -lean_dec(x_3); -return x_84; -} -} -} -} -else -{ -lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; uint8_t x_91; uint8_t 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; -x_87 = lean_ctor_get(x_4, 0); -x_88 = lean_ctor_get(x_4, 1); -x_89 = lean_ctor_get(x_4, 2); -x_90 = lean_ctor_get(x_4, 3); -x_91 = lean_ctor_get_uint8(x_4, sizeof(void*)*6); -x_92 = lean_ctor_get_uint8(x_4, sizeof(void*)*6 + 1); -x_93 = lean_ctor_get(x_4, 5); -lean_inc(x_93); -lean_inc(x_90); -lean_inc(x_89); +x_86 = l_Lean_nullKind; +x_87 = l_Lean_Parser_ParserState_mkNode(x_82, x_86, x_78); +x_88 = lean_ctor_get(x_87, 3); lean_inc(x_88); -lean_inc(x_87); +x_89 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_88, x_84); +lean_dec(x_88); +if (x_89 == 0) +{ lean_dec(x_4); -x_94 = lean_ctor_get(x_87, 0); -lean_inc(x_94); -x_95 = lean_ctor_get(x_87, 1); -lean_inc(x_95); -x_96 = lean_ctor_get(x_87, 2); -lean_inc(x_96); -if (lean_is_exclusive(x_87)) { - lean_ctor_release(x_87, 0); - lean_ctor_release(x_87, 1); - lean_ctor_release(x_87, 2); - x_97 = x_87; -} else { - lean_dec_ref(x_87); - x_97 = lean_box(0); -} -if (lean_is_scalar(x_97)) { - x_98 = lean_alloc_ctor(0, 3, 0); -} else { - x_98 = x_97; -} -lean_ctor_set(x_98, 0, x_94); -lean_ctor_set(x_98, 1, x_95); -lean_ctor_set(x_98, 2, x_96); -x_99 = lean_ctor_get(x_88, 0); -lean_inc(x_99); -x_100 = lean_ctor_get(x_88, 1); -lean_inc(x_100); -x_101 = lean_ctor_get(x_88, 2); -lean_inc(x_101); -x_102 = lean_ctor_get(x_88, 3); -lean_inc(x_102); -if (lean_is_exclusive(x_88)) { - lean_ctor_release(x_88, 0); - lean_ctor_release(x_88, 1); - lean_ctor_release(x_88, 2); - lean_ctor_release(x_88, 3); - x_103 = x_88; -} else { - lean_dec_ref(x_88); - x_103 = lean_box(0); -} -if (lean_is_scalar(x_103)) { - x_104 = lean_alloc_ctor(0, 4, 0); -} else { - x_104 = x_103; -} -lean_ctor_set(x_104, 0, x_99); -lean_ctor_set(x_104, 1, x_100); -lean_ctor_set(x_104, 2, x_101); -lean_ctor_set(x_104, 3, x_102); -x_105 = lean_ctor_get(x_5, 1); -lean_inc(x_105); -x_106 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_106, 0, x_105); -x_107 = lean_alloc_ctor(0, 6, 2); -lean_ctor_set(x_107, 0, x_98); -lean_ctor_set(x_107, 1, x_104); -lean_ctor_set(x_107, 2, x_89); -lean_ctor_set(x_107, 3, x_90); -lean_ctor_set(x_107, 4, x_106); -lean_ctor_set(x_107, 5, x_93); -lean_ctor_set_uint8(x_107, sizeof(void*)*6, x_91); -lean_ctor_set_uint8(x_107, sizeof(void*)*6 + 1, x_92); -x_108 = lean_ctor_get(x_5, 0); -lean_inc(x_108); -x_109 = lean_array_get_size(x_108); -lean_dec(x_108); -x_110 = l_instReprChar___closed__1; -x_111 = lean_string_append(x_110, x_1); -x_112 = lean_string_append(x_111, x_110); -lean_inc(x_107); -x_113 = l_Lean_Parser_symbolFnAux(x_1, x_112, x_107, x_5); -x_114 = lean_ctor_get(x_113, 3); -lean_inc(x_114); -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; -x_115 = lean_string_append(x_110, x_2); -x_116 = lean_string_append(x_115, x_110); -lean_inc(x_107); -x_117 = l_Lean_Parser_nonReservedSymbolFnAux(x_2, x_116, x_107, x_113); -x_118 = l_Lean_nullKind; -x_119 = l_Lean_Parser_ParserState_mkNode(x_117, x_118, x_109); -x_120 = lean_ctor_get(x_119, 3); -lean_inc(x_120); -if (lean_obj_tag(x_120) == 0) -{ -lean_object* x_121; -x_121 = lean_apply_2(x_3, x_107, x_119); -return x_121; -} -else -{ -lean_dec(x_120); -lean_dec(x_107); -lean_dec(x_3); -return x_119; -} -} -else -{ -lean_object* x_122; lean_object* x_123; lean_object* x_124; -lean_dec(x_114); lean_dec(x_2); -x_122 = l_Lean_nullKind; -x_123 = l_Lean_Parser_ParserState_mkNode(x_113, x_122, x_109); -x_124 = lean_ctor_get(x_123, 3); -lean_inc(x_124); -if (lean_obj_tag(x_124) == 0) -{ -lean_object* x_125; -x_125 = lean_apply_2(x_3, x_107, x_123); -return x_125; +return x_87; } else { -lean_dec(x_124); -lean_dec(x_107); +lean_object* x_90; +x_90 = lean_apply_2(x_2, x_4, x_87); +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; uint8_t x_97; +x_91 = lean_string_append(x_79, x_3); +x_92 = lean_string_append(x_91, x_79); +lean_inc(x_4); +x_93 = l_Lean_Parser_nonReservedSymbolFnAux(x_3, x_92, x_4, x_82); +x_94 = l_Lean_nullKind; +x_95 = l_Lean_Parser_ParserState_mkNode(x_93, x_94, x_78); +x_96 = lean_ctor_get(x_95, 3); +lean_inc(x_96); +x_97 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_96, x_84); +lean_dec(x_96); +if (x_97 == 0) +{ +lean_dec(x_4); +lean_dec(x_2); +return x_95; +} +else +{ +lean_object* x_98; +x_98 = lean_apply_2(x_2, x_4, x_95); +return x_98; +} +} +} +} +else +{ +lean_object* x_99; lean_object* x_100; lean_object* x_101; lean_object* x_102; uint8_t 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; 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; uint8_t x_128; +x_99 = lean_ctor_get(x_4, 0); +x_100 = lean_ctor_get(x_4, 1); +x_101 = lean_ctor_get(x_4, 2); +x_102 = lean_ctor_get(x_4, 3); +x_103 = lean_ctor_get_uint8(x_4, sizeof(void*)*6); +x_104 = lean_ctor_get_uint8(x_4, sizeof(void*)*6 + 1); +x_105 = lean_ctor_get(x_4, 5); +lean_inc(x_105); +lean_inc(x_102); +lean_inc(x_101); +lean_inc(x_100); +lean_inc(x_99); +lean_dec(x_4); +x_106 = lean_ctor_get(x_99, 0); +lean_inc(x_106); +x_107 = lean_ctor_get(x_99, 1); +lean_inc(x_107); +x_108 = lean_ctor_get(x_99, 2); +lean_inc(x_108); +if (lean_is_exclusive(x_99)) { + lean_ctor_release(x_99, 0); + lean_ctor_release(x_99, 1); + lean_ctor_release(x_99, 2); + x_109 = x_99; +} else { + lean_dec_ref(x_99); + x_109 = lean_box(0); +} +if (lean_is_scalar(x_109)) { + x_110 = lean_alloc_ctor(0, 3, 0); +} else { + x_110 = x_109; +} +lean_ctor_set(x_110, 0, x_106); +lean_ctor_set(x_110, 1, x_107); +lean_ctor_set(x_110, 2, x_108); +x_111 = lean_ctor_get(x_100, 0); +lean_inc(x_111); +x_112 = lean_ctor_get(x_100, 1); +lean_inc(x_112); +x_113 = lean_ctor_get(x_100, 2); +lean_inc(x_113); +x_114 = lean_ctor_get(x_100, 3); +lean_inc(x_114); +if (lean_is_exclusive(x_100)) { + lean_ctor_release(x_100, 0); + lean_ctor_release(x_100, 1); + lean_ctor_release(x_100, 2); + lean_ctor_release(x_100, 3); + x_115 = x_100; +} else { + lean_dec_ref(x_100); + x_115 = lean_box(0); +} +if (lean_is_scalar(x_115)) { + x_116 = lean_alloc_ctor(0, 4, 0); +} else { + x_116 = x_115; +} +lean_ctor_set(x_116, 0, x_111); +lean_ctor_set(x_116, 1, x_112); +lean_ctor_set(x_116, 2, x_113); +lean_ctor_set(x_116, 3, x_114); +x_117 = lean_ctor_get(x_5, 1); +lean_inc(x_117); +x_118 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_118, 0, x_117); +x_119 = lean_alloc_ctor(0, 6, 2); +lean_ctor_set(x_119, 0, x_110); +lean_ctor_set(x_119, 1, x_116); +lean_ctor_set(x_119, 2, x_101); +lean_ctor_set(x_119, 3, x_102); +lean_ctor_set(x_119, 4, x_118); +lean_ctor_set(x_119, 5, x_105); +lean_ctor_set_uint8(x_119, sizeof(void*)*6, x_103); +lean_ctor_set_uint8(x_119, sizeof(void*)*6 + 1, x_104); +x_120 = lean_ctor_get(x_5, 0); +lean_inc(x_120); +x_121 = lean_array_get_size(x_120); +lean_dec(x_120); +x_122 = l_instReprChar___closed__1; +x_123 = lean_string_append(x_122, x_1); +x_124 = lean_string_append(x_123, x_122); +lean_inc(x_119); +x_125 = l_Lean_Parser_symbolFnAux(x_1, x_124, x_119, x_5); +x_126 = lean_ctor_get(x_125, 3); +lean_inc(x_126); +x_127 = lean_box(0); +x_128 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_126, x_127); +lean_dec(x_126); +if (x_128 == 0) +{ +lean_object* x_129; lean_object* x_130; lean_object* x_131; uint8_t x_132; lean_dec(x_3); -return x_123; +x_129 = l_Lean_nullKind; +x_130 = l_Lean_Parser_ParserState_mkNode(x_125, x_129, x_121); +x_131 = lean_ctor_get(x_130, 3); +lean_inc(x_131); +x_132 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_131, x_127); +lean_dec(x_131); +if (x_132 == 0) +{ +lean_dec(x_119); +lean_dec(x_2); +return x_130; +} +else +{ +lean_object* x_133; +x_133 = lean_apply_2(x_2, x_119, x_130); +return x_133; +} +} +else +{ +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; +x_134 = lean_string_append(x_122, x_3); +x_135 = lean_string_append(x_134, x_122); +lean_inc(x_119); +x_136 = l_Lean_Parser_nonReservedSymbolFnAux(x_3, x_135, x_119, x_125); +x_137 = l_Lean_nullKind; +x_138 = l_Lean_Parser_ParserState_mkNode(x_136, x_137, x_121); +x_139 = lean_ctor_get(x_138, 3); +lean_inc(x_139); +x_140 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_139, x_127); +lean_dec(x_139); +if (x_140 == 0) +{ +lean_dec(x_119); +lean_dec(x_2); +return x_138; +} +else +{ +lean_object* x_141; +x_141 = lean_apply_2(x_2, x_119, x_138); +return x_141; } } } @@ -30507,8 +30584,8 @@ x_3 = l_Lean_Parser_Term_let___elambda__1___closed__3; x_4 = l_Lean_Parser_Term_letrec___elambda__1___closed__4; x_5 = lean_alloc_closure((void*)(l_Lean_Parser_Term_letrec___elambda__1___lambda__1___boxed), 5, 3); lean_closure_set(x_5, 0, x_3); -lean_closure_set(x_5, 1, x_4); -lean_closure_set(x_5, 2, x_2); +lean_closure_set(x_5, 1, x_2); +lean_closure_set(x_5, 2, x_4); return x_5; } } @@ -35164,7 +35241,7 @@ return x_2; lean_object* l_Lean_Parser_Term_app___elambda__1(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_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; x_3 = l_Lean_Parser_Term_app___elambda__1___closed__14; x_4 = lean_ctor_get(x_3, 1); lean_inc(x_4); @@ -35172,26 +35249,28 @@ x_5 = l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer___closed__1; x_6 = l_Lean_Parser_checkPrecFn(x_5, x_1, x_2); x_7 = lean_ctor_get(x_6, 3); lean_inc(x_7); -if (lean_obj_tag(x_7) == 0) -{ -lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; -x_8 = lean_ctor_get(x_6, 0); -lean_inc(x_8); -x_9 = lean_array_get_size(x_8); -lean_dec(x_8); -x_10 = lean_apply_2(x_4, x_1, x_6); -x_11 = l_myMacro____x40_Init_Notation___hyg_2022____closed__4; -x_12 = l_Lean_Parser_ParserState_mkTrailingNode(x_10, x_11, x_9); -lean_dec(x_9); -return x_12; -} -else -{ +x_8 = lean_box(0); +x_9 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_7, x_8); lean_dec(x_7); +if (x_9 == 0) +{ lean_dec(x_4); lean_dec(x_1); return x_6; } +else +{ +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_6, 0); +lean_inc(x_10); +x_11 = lean_array_get_size(x_10); +lean_dec(x_10); +x_12 = lean_apply_2(x_4, x_1, x_6); +x_13 = l_myMacro____x40_Init_Notation___hyg_2022____closed__4; +x_14 = l_Lean_Parser_ParserState_mkTrailingNode(x_12, x_13, x_11); +lean_dec(x_11); +return x_14; +} } } static lean_object* _init_l_Lean_Parser_Term_app___closed__1() { @@ -35730,71 +35809,75 @@ return x_3; lean_object* l_Lean_Parser_Term_proj___elambda__1(lean_object* x_1, lean_object* x_2) { _start: { -lean_object* x_3; lean_object* x_4; lean_object* x_5; +lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; uint8_t x_7; x_3 = lean_unsigned_to_nat(1024u); x_4 = l_Lean_Parser_checkPrecFn(x_3, x_1, x_2); x_5 = lean_ctor_get(x_4, 3); lean_inc(x_5); -if (lean_obj_tag(x_5) == 0) -{ -lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; -x_6 = lean_ctor_get(x_4, 0); -lean_inc(x_6); -x_7 = lean_array_get_size(x_6); -lean_dec(x_6); -x_8 = l_Lean_Parser_Term_doubleQuotedName___elambda__1___closed__5; -x_9 = l_Lean_Parser_checkNoWsBeforeFn(x_8, x_1, x_4); -x_10 = lean_ctor_get(x_9, 3); -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; -x_11 = l_Lean_Parser_Term_cdot___elambda__1___closed__8; -x_12 = l_Lean_Parser_Term_proj___elambda__1___closed__3; -lean_inc(x_1); -x_13 = l_Lean_Parser_symbolFnAux(x_11, x_12, x_1, x_9); -x_14 = lean_ctor_get(x_13, 3); -lean_inc(x_14); -if (lean_obj_tag(x_14) == 0) -{ -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_15 = l_Lean_Parser_fieldIdx___closed__6; -x_16 = l_Lean_Parser_Term_ident___closed__1; -x_17 = 1; -x_18 = l_Lean_Parser_orelseFnCore(x_15, x_16, x_17, x_1, x_13); -x_19 = l_Lean_Parser_Term_proj___elambda__1___closed__1; -x_20 = l_Lean_Parser_ParserState_mkTrailingNode(x_18, x_19, x_7); -lean_dec(x_7); -return x_20; -} -else -{ -lean_object* x_21; lean_object* x_22; -lean_dec(x_14); -lean_dec(x_1); -x_21 = l_Lean_Parser_Term_proj___elambda__1___closed__1; -x_22 = l_Lean_Parser_ParserState_mkTrailingNode(x_13, x_21, x_7); -lean_dec(x_7); -return x_22; -} -} -else -{ -lean_object* x_23; lean_object* x_24; -lean_dec(x_10); -lean_dec(x_1); -x_23 = l_Lean_Parser_Term_proj___elambda__1___closed__1; -x_24 = l_Lean_Parser_ParserState_mkTrailingNode(x_9, x_23, x_7); -lean_dec(x_7); -return x_24; -} -} -else -{ +x_6 = lean_box(0); +x_7 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_5, x_6); lean_dec(x_5); +if (x_7 == 0) +{ lean_dec(x_1); return x_4; } +else +{ +lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; uint8_t x_13; +x_8 = lean_ctor_get(x_4, 0); +lean_inc(x_8); +x_9 = lean_array_get_size(x_8); +lean_dec(x_8); +x_10 = l_Lean_Parser_Term_doubleQuotedName___elambda__1___closed__5; +x_11 = l_Lean_Parser_checkNoWsBeforeFn(x_10, x_1, x_4); +x_12 = lean_ctor_get(x_11, 3); +lean_inc(x_12); +x_13 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_12, x_6); +lean_dec(x_12); +if (x_13 == 0) +{ +lean_object* x_14; lean_object* x_15; +lean_dec(x_1); +x_14 = l_Lean_Parser_Term_proj___elambda__1___closed__1; +x_15 = l_Lean_Parser_ParserState_mkTrailingNode(x_11, x_14, x_9); +lean_dec(x_9); +return x_15; +} +else +{ +lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; uint8_t x_20; +x_16 = l_Lean_Parser_Term_cdot___elambda__1___closed__8; +x_17 = l_Lean_Parser_Term_proj___elambda__1___closed__3; +lean_inc(x_1); +x_18 = l_Lean_Parser_symbolFnAux(x_16, x_17, x_1, x_11); +x_19 = lean_ctor_get(x_18, 3); +lean_inc(x_19); +x_20 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_19, x_6); +lean_dec(x_19); +if (x_20 == 0) +{ +lean_object* x_21; lean_object* x_22; +lean_dec(x_1); +x_21 = l_Lean_Parser_Term_proj___elambda__1___closed__1; +x_22 = l_Lean_Parser_ParserState_mkTrailingNode(x_18, x_21, x_9); +lean_dec(x_9); +return x_22; +} +else +{ +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_23 = l_Lean_Parser_fieldIdx___closed__6; +x_24 = l_Lean_Parser_Term_ident___closed__1; +x_25 = 1; +x_26 = l_Lean_Parser_orelseFnCore(x_23, x_24, x_25, x_1, x_18); +x_27 = l_Lean_Parser_Term_proj___elambda__1___closed__1; +x_28 = l_Lean_Parser_ParserState_mkTrailingNode(x_26, x_27, x_9); +lean_dec(x_9); +return x_28; +} +} +} } } static lean_object* _init_l_Lean_Parser_Term_proj___closed__1() { @@ -36083,90 +36166,95 @@ return x_3; lean_object* l_Lean_Parser_Term_arrayRef___elambda__1(lean_object* x_1, lean_object* x_2) { _start: { -lean_object* x_3; lean_object* x_4; lean_object* x_5; +lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; uint8_t x_7; x_3 = lean_unsigned_to_nat(1024u); x_4 = l_Lean_Parser_checkPrecFn(x_3, x_1, x_2); x_5 = lean_ctor_get(x_4, 3); lean_inc(x_5); -if (lean_obj_tag(x_5) == 0) -{ -lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; -x_6 = lean_ctor_get(x_4, 0); -lean_inc(x_6); -x_7 = lean_array_get_size(x_6); -lean_dec(x_6); -x_8 = l_Lean_Parser_Term_doubleQuotedName___elambda__1___closed__5; -x_9 = l_Lean_Parser_checkNoWsBeforeFn(x_8, x_1, x_4); -x_10 = lean_ctor_get(x_9, 3); -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; -x_11 = l_Lean_Parser_mkAntiquotSplice___closed__2; -x_12 = l_Lean_Parser_Term_arrayRef___elambda__1___closed__4; -lean_inc(x_1); -x_13 = l_Lean_Parser_symbolFnAux(x_11, x_12, x_1, x_9); -x_14 = lean_ctor_get(x_13, 3); -lean_inc(x_14); -if (lean_obj_tag(x_14) == 0) -{ -lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; -x_15 = l_term___u2218_____closed__6; -x_16 = lean_unsigned_to_nat(0u); -lean_inc(x_1); -x_17 = l_Lean_Parser_categoryParser___elambda__1(x_15, x_16, x_1, x_13); -x_18 = lean_ctor_get(x_17, 3); -lean_inc(x_18); -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 = l_Lean_Parser_mkAntiquotSplice___closed__5; -x_20 = l_Lean_Parser_Term_arrayRef___elambda__1___closed__6; -x_21 = l_Lean_Parser_symbolFnAux(x_19, x_20, x_1, x_17); -x_22 = l_Lean_Parser_Term_arrayRef___elambda__1___closed__2; -x_23 = l_Lean_Parser_ParserState_mkTrailingNode(x_21, x_22, x_7); -lean_dec(x_7); -return x_23; -} -else -{ -lean_object* x_24; lean_object* x_25; -lean_dec(x_18); -lean_dec(x_1); -x_24 = l_Lean_Parser_Term_arrayRef___elambda__1___closed__2; -x_25 = l_Lean_Parser_ParserState_mkTrailingNode(x_17, x_24, x_7); -lean_dec(x_7); -return x_25; -} -} -else -{ -lean_object* x_26; lean_object* x_27; -lean_dec(x_14); -lean_dec(x_1); -x_26 = l_Lean_Parser_Term_arrayRef___elambda__1___closed__2; -x_27 = l_Lean_Parser_ParserState_mkTrailingNode(x_13, x_26, x_7); -lean_dec(x_7); -return x_27; -} -} -else -{ -lean_object* x_28; lean_object* x_29; -lean_dec(x_10); -lean_dec(x_1); -x_28 = l_Lean_Parser_Term_arrayRef___elambda__1___closed__2; -x_29 = l_Lean_Parser_ParserState_mkTrailingNode(x_9, x_28, x_7); -lean_dec(x_7); -return x_29; -} -} -else -{ +x_6 = lean_box(0); +x_7 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_5, x_6); lean_dec(x_5); +if (x_7 == 0) +{ lean_dec(x_1); return x_4; } +else +{ +lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; uint8_t x_13; +x_8 = lean_ctor_get(x_4, 0); +lean_inc(x_8); +x_9 = lean_array_get_size(x_8); +lean_dec(x_8); +x_10 = l_Lean_Parser_Term_doubleQuotedName___elambda__1___closed__5; +x_11 = l_Lean_Parser_checkNoWsBeforeFn(x_10, x_1, x_4); +x_12 = lean_ctor_get(x_11, 3); +lean_inc(x_12); +x_13 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_12, x_6); +lean_dec(x_12); +if (x_13 == 0) +{ +lean_object* x_14; lean_object* x_15; +lean_dec(x_1); +x_14 = l_Lean_Parser_Term_arrayRef___elambda__1___closed__2; +x_15 = l_Lean_Parser_ParserState_mkTrailingNode(x_11, x_14, x_9); +lean_dec(x_9); +return x_15; +} +else +{ +lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; uint8_t x_20; +x_16 = l_Lean_Parser_mkAntiquotSplice___closed__2; +x_17 = l_Lean_Parser_Term_arrayRef___elambda__1___closed__4; +lean_inc(x_1); +x_18 = l_Lean_Parser_symbolFnAux(x_16, x_17, x_1, x_11); +x_19 = lean_ctor_get(x_18, 3); +lean_inc(x_19); +x_20 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_19, x_6); +lean_dec(x_19); +if (x_20 == 0) +{ +lean_object* x_21; lean_object* x_22; +lean_dec(x_1); +x_21 = l_Lean_Parser_Term_arrayRef___elambda__1___closed__2; +x_22 = l_Lean_Parser_ParserState_mkTrailingNode(x_18, x_21, x_9); +lean_dec(x_9); +return x_22; +} +else +{ +lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; uint8_t x_27; +x_23 = l_term___u2218_____closed__6; +x_24 = lean_unsigned_to_nat(0u); +lean_inc(x_1); +x_25 = l_Lean_Parser_categoryParser___elambda__1(x_23, x_24, x_1, x_18); +x_26 = lean_ctor_get(x_25, 3); +lean_inc(x_26); +x_27 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_26, x_6); +lean_dec(x_26); +if (x_27 == 0) +{ +lean_object* x_28; lean_object* x_29; +lean_dec(x_1); +x_28 = l_Lean_Parser_Term_arrayRef___elambda__1___closed__2; +x_29 = l_Lean_Parser_ParserState_mkTrailingNode(x_25, x_28, x_9); +lean_dec(x_9); +return x_29; +} +else +{ +lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; +x_30 = l_Lean_Parser_mkAntiquotSplice___closed__5; +x_31 = l_Lean_Parser_Term_arrayRef___elambda__1___closed__6; +x_32 = l_Lean_Parser_symbolFnAux(x_30, x_31, x_1, x_25); +x_33 = l_Lean_Parser_Term_arrayRef___elambda__1___closed__2; +x_34 = l_Lean_Parser_ParserState_mkTrailingNode(x_32, x_33, x_9); +lean_dec(x_9); +return x_34; +} +} +} +} } } static lean_object* _init_l_Lean_Parser_Term_arrayRef___closed__1() { @@ -36379,70 +36467,74 @@ return x_3; lean_object* l_Lean_Parser_Term_arrow___elambda__1(lean_object* x_1, lean_object* x_2) { _start: { -lean_object* x_3; lean_object* x_4; lean_object* x_5; +lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; uint8_t x_7; x_3 = lean_unsigned_to_nat(1024u); x_4 = l_Lean_Parser_checkPrecFn(x_3, x_1, x_2); x_5 = lean_ctor_get(x_4, 3); lean_inc(x_5); -if (lean_obj_tag(x_5) == 0) -{ -lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; -x_6 = lean_ctor_get(x_4, 0); -lean_inc(x_6); -x_7 = lean_array_get_size(x_6); -lean_dec(x_6); -x_8 = lean_unsigned_to_nat(25u); -x_9 = l_Lean_Parser_checkPrecFn(x_8, x_1, x_4); -x_10 = lean_ctor_get(x_9, 3); -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; -x_11 = l_Lean_Parser_Term_depArrow___elambda__1___closed__6; -x_12 = l_Lean_Parser_Term_depArrow___elambda__1___closed__8; -x_13 = l_Lean_Parser_Term_arrow___elambda__1___closed__5; -lean_inc(x_1); -x_14 = l_Lean_Parser_unicodeSymbolFnAux(x_11, x_12, x_13, x_1, x_9); -x_15 = lean_ctor_get(x_14, 3); -lean_inc(x_15); -if (lean_obj_tag(x_15) == 0) -{ -lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; -x_16 = l_term___u2218_____closed__6; -x_17 = l_Lean_Parser_categoryParser___elambda__1(x_16, x_8, x_1, x_14); -x_18 = l_Array_forInUnsafe_loop___at___private_Init_NotationExtra_0__Lean_mkHintBody___spec__1___closed__2; -x_19 = l_Lean_Parser_ParserState_mkTrailingNode(x_17, x_18, x_7); -lean_dec(x_7); -return x_19; -} -else -{ -lean_object* x_20; lean_object* x_21; -lean_dec(x_15); -lean_dec(x_1); -x_20 = l_Array_forInUnsafe_loop___at___private_Init_NotationExtra_0__Lean_mkHintBody___spec__1___closed__2; -x_21 = l_Lean_Parser_ParserState_mkTrailingNode(x_14, x_20, x_7); -lean_dec(x_7); -return x_21; -} -} -else -{ -lean_object* x_22; lean_object* x_23; -lean_dec(x_10); -lean_dec(x_1); -x_22 = l_Array_forInUnsafe_loop___at___private_Init_NotationExtra_0__Lean_mkHintBody___spec__1___closed__2; -x_23 = l_Lean_Parser_ParserState_mkTrailingNode(x_9, x_22, x_7); -lean_dec(x_7); -return x_23; -} -} -else -{ +x_6 = lean_box(0); +x_7 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_5, x_6); lean_dec(x_5); +if (x_7 == 0) +{ lean_dec(x_1); return x_4; } +else +{ +lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; uint8_t x_13; +x_8 = lean_ctor_get(x_4, 0); +lean_inc(x_8); +x_9 = lean_array_get_size(x_8); +lean_dec(x_8); +x_10 = lean_unsigned_to_nat(25u); +x_11 = l_Lean_Parser_checkPrecFn(x_10, x_1, x_4); +x_12 = lean_ctor_get(x_11, 3); +lean_inc(x_12); +x_13 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_12, x_6); +lean_dec(x_12); +if (x_13 == 0) +{ +lean_object* x_14; lean_object* x_15; +lean_dec(x_1); +x_14 = l_Array_forInUnsafe_loop___at___private_Init_NotationExtra_0__Lean_mkHintBody___spec__1___closed__2; +x_15 = l_Lean_Parser_ParserState_mkTrailingNode(x_11, x_14, x_9); +lean_dec(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; uint8_t x_21; +x_16 = l_Lean_Parser_Term_depArrow___elambda__1___closed__6; +x_17 = l_Lean_Parser_Term_depArrow___elambda__1___closed__8; +x_18 = l_Lean_Parser_Term_arrow___elambda__1___closed__5; +lean_inc(x_1); +x_19 = l_Lean_Parser_unicodeSymbolFnAux(x_16, x_17, x_18, x_1, x_11); +x_20 = lean_ctor_get(x_19, 3); +lean_inc(x_20); +x_21 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_20, x_6); +lean_dec(x_20); +if (x_21 == 0) +{ +lean_object* x_22; lean_object* x_23; +lean_dec(x_1); +x_22 = l_Array_forInUnsafe_loop___at___private_Init_NotationExtra_0__Lean_mkHintBody___spec__1___closed__2; +x_23 = l_Lean_Parser_ParserState_mkTrailingNode(x_19, x_22, x_9); +lean_dec(x_9); +return x_23; +} +else +{ +lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; +x_24 = l_term___u2218_____closed__6; +x_25 = l_Lean_Parser_categoryParser___elambda__1(x_24, x_10, x_1, x_19); +x_26 = l_Array_forInUnsafe_loop___at___private_Init_NotationExtra_0__Lean_mkHintBody___spec__1___closed__2; +x_27 = l_Lean_Parser_ParserState_mkTrailingNode(x_25, x_26, x_9); +lean_dec(x_9); +return x_27; +} +} +} } } static lean_object* _init_l_Lean_Parser_Term_arrow___closed__1() { @@ -36789,7 +36881,7 @@ return x_1; lean_object* l_Lean_Parser_Term_explicitUniv___elambda__1(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_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; x_3 = l_Lean_Parser_Term_explicitUniv___elambda__1___closed__3; x_4 = lean_ctor_get(x_3, 1); lean_inc(x_4); @@ -36797,123 +36889,129 @@ x_5 = lean_unsigned_to_nat(1024u); x_6 = l_Lean_Parser_checkPrecFn(x_5, x_1, x_2); x_7 = lean_ctor_get(x_6, 3); lean_inc(x_7); -if (lean_obj_tag(x_7) == 0) -{ -lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_35; uint8_t x_36; -x_8 = lean_ctor_get(x_6, 0); -lean_inc(x_8); -x_9 = lean_array_get_size(x_8); -x_35 = l_Array_back___at_Lean_Syntax_Traverser_up___spec__2(x_8); -lean_dec(x_8); -x_36 = l_Lean_Parser_Term_isIdent(x_35); -lean_dec(x_35); -if (x_36 == 0) -{ -lean_object* x_37; lean_object* x_38; -x_37 = l_Lean_Parser_Term_explicitUniv___elambda__1___closed__11; -x_38 = l_Lean_Parser_ParserState_mkUnexpectedError(x_6, x_37); -x_10 = x_38; -goto block_34; -} -else -{ -x_10 = x_6; -goto block_34; -} -block_34: -{ -lean_object* x_11; -x_11 = lean_ctor_get(x_10, 3); -lean_inc(x_11); -if (lean_obj_tag(x_11) == 0) -{ -lean_object* x_12; lean_object* x_13; lean_object* x_14; -x_12 = l_Lean_Parser_Term_explicitUniv___elambda__1___closed__6; -x_13 = l_Lean_Parser_checkNoWsBeforeFn(x_12, x_1, x_10); -x_14 = lean_ctor_get(x_13, 3); -lean_inc(x_14); -if (lean_obj_tag(x_14) == 0) -{ -lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; -x_15 = l_Lean_Parser_Term_explicitUniv___elambda__1___closed__5; -x_16 = l_Lean_Parser_Term_explicitUniv___elambda__1___closed__8; -lean_inc(x_1); -x_17 = l_Lean_Parser_symbolFnAux(x_15, x_16, x_1, x_13); -x_18 = lean_ctor_get(x_17, 3); -lean_inc(x_18); -if (lean_obj_tag(x_18) == 0) -{ -lean_object* x_19; lean_object* x_20; -lean_inc(x_1); -x_19 = lean_apply_2(x_4, x_1, x_17); -x_20 = lean_ctor_get(x_19, 3); -lean_inc(x_20); -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; -x_21 = l_Lean_Parser_Tactic_tacticSeqBracketed___elambda__1___closed__7; -x_22 = l_Lean_Parser_Term_explicitUniv___elambda__1___closed__10; -x_23 = l_Lean_Parser_symbolFnAux(x_21, x_22, x_1, x_19); -x_24 = l_Lean_Parser_Term_explicitUniv___elambda__1___closed__2; -x_25 = l_Lean_Parser_ParserState_mkTrailingNode(x_23, x_24, x_9); -lean_dec(x_9); -return x_25; -} -else -{ -lean_object* x_26; lean_object* x_27; -lean_dec(x_20); -lean_dec(x_1); -x_26 = l_Lean_Parser_Term_explicitUniv___elambda__1___closed__2; -x_27 = l_Lean_Parser_ParserState_mkTrailingNode(x_19, x_26, x_9); -lean_dec(x_9); -return x_27; -} -} -else -{ -lean_object* x_28; lean_object* x_29; -lean_dec(x_18); -lean_dec(x_4); -lean_dec(x_1); -x_28 = l_Lean_Parser_Term_explicitUniv___elambda__1___closed__2; -x_29 = l_Lean_Parser_ParserState_mkTrailingNode(x_17, x_28, x_9); -lean_dec(x_9); -return x_29; -} -} -else -{ -lean_object* x_30; lean_object* x_31; -lean_dec(x_14); -lean_dec(x_4); -lean_dec(x_1); -x_30 = l_Lean_Parser_Term_explicitUniv___elambda__1___closed__2; -x_31 = l_Lean_Parser_ParserState_mkTrailingNode(x_13, x_30, x_9); -lean_dec(x_9); -return x_31; -} -} -else -{ -lean_object* x_32; lean_object* x_33; -lean_dec(x_11); -lean_dec(x_4); -lean_dec(x_1); -x_32 = l_Lean_Parser_Term_explicitUniv___elambda__1___closed__2; -x_33 = l_Lean_Parser_ParserState_mkTrailingNode(x_10, x_32, x_9); -lean_dec(x_9); -return x_33; -} -} -} -else -{ +x_8 = lean_box(0); +x_9 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_7, x_8); lean_dec(x_7); +if (x_9 == 0) +{ lean_dec(x_4); lean_dec(x_1); return x_6; } +else +{ +lean_object* x_10; lean_object* x_11; lean_object* x_12; uint8_t x_13; lean_object* x_14; +x_10 = lean_ctor_get(x_6, 0); +lean_inc(x_10); +x_11 = lean_array_get_size(x_10); +x_12 = l_Array_back___at_Lean_Syntax_Traverser_up___spec__2(x_10); +lean_dec(x_10); +x_13 = l_Lean_Parser_Term_isIdent(x_12); +lean_dec(x_12); +if (x_13 == 0) +{ +lean_object* x_43; lean_object* x_44; +x_43 = l_Lean_Parser_Term_explicitUniv___elambda__1___closed__11; +x_44 = l_Lean_Parser_ParserState_mkUnexpectedError(x_6, x_43); +x_14 = x_44; +goto block_42; +} +else +{ +x_14 = x_6; +goto block_42; +} +block_42: +{ +lean_object* x_15; uint8_t x_16; +x_15 = lean_ctor_get(x_14, 3); +lean_inc(x_15); +x_16 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_15, x_8); +lean_dec(x_15); +if (x_16 == 0) +{ +lean_object* x_17; lean_object* x_18; +lean_dec(x_4); +lean_dec(x_1); +x_17 = l_Lean_Parser_Term_explicitUniv___elambda__1___closed__2; +x_18 = l_Lean_Parser_ParserState_mkTrailingNode(x_14, x_17, x_11); +lean_dec(x_11); +return x_18; +} +else +{ +lean_object* x_19; lean_object* x_20; lean_object* x_21; uint8_t x_22; +x_19 = l_Lean_Parser_Term_explicitUniv___elambda__1___closed__6; +x_20 = l_Lean_Parser_checkNoWsBeforeFn(x_19, x_1, x_14); +x_21 = lean_ctor_get(x_20, 3); +lean_inc(x_21); +x_22 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_21, x_8); +lean_dec(x_21); +if (x_22 == 0) +{ +lean_object* x_23; lean_object* x_24; +lean_dec(x_4); +lean_dec(x_1); +x_23 = l_Lean_Parser_Term_explicitUniv___elambda__1___closed__2; +x_24 = l_Lean_Parser_ParserState_mkTrailingNode(x_20, x_23, x_11); +lean_dec(x_11); +return x_24; +} +else +{ +lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; uint8_t x_29; +x_25 = l_Lean_Parser_Term_explicitUniv___elambda__1___closed__5; +x_26 = l_Lean_Parser_Term_explicitUniv___elambda__1___closed__8; +lean_inc(x_1); +x_27 = l_Lean_Parser_symbolFnAux(x_25, x_26, x_1, x_20); +x_28 = lean_ctor_get(x_27, 3); +lean_inc(x_28); +x_29 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_28, x_8); +lean_dec(x_28); +if (x_29 == 0) +{ +lean_object* x_30; lean_object* x_31; +lean_dec(x_4); +lean_dec(x_1); +x_30 = l_Lean_Parser_Term_explicitUniv___elambda__1___closed__2; +x_31 = l_Lean_Parser_ParserState_mkTrailingNode(x_27, x_30, x_11); +lean_dec(x_11); +return x_31; +} +else +{ +lean_object* x_32; lean_object* x_33; uint8_t x_34; +lean_inc(x_1); +x_32 = lean_apply_2(x_4, x_1, x_27); +x_33 = lean_ctor_get(x_32, 3); +lean_inc(x_33); +x_34 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_33, x_8); +lean_dec(x_33); +if (x_34 == 0) +{ +lean_object* x_35; lean_object* x_36; +lean_dec(x_1); +x_35 = l_Lean_Parser_Term_explicitUniv___elambda__1___closed__2; +x_36 = l_Lean_Parser_ParserState_mkTrailingNode(x_32, x_35, x_11); +lean_dec(x_11); +return x_36; +} +else +{ +lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; +x_37 = l_Lean_Parser_Tactic_tacticSeqBracketed___elambda__1___closed__7; +x_38 = l_Lean_Parser_Term_explicitUniv___elambda__1___closed__10; +x_39 = l_Lean_Parser_symbolFnAux(x_37, x_38, x_1, x_32); +x_40 = l_Lean_Parser_Term_explicitUniv___elambda__1___closed__2; +x_41 = l_Lean_Parser_ParserState_mkTrailingNode(x_39, x_40, x_11); +lean_dec(x_11); +return x_41; +} +} +} +} +} +} } } static lean_object* _init_l_Lean_Parser_Term_explicitUniv___closed__1() { @@ -37293,88 +37391,151 @@ return x_3; lean_object* l_Lean_Parser_Term_namedPattern___elambda__1(lean_object* x_1, lean_object* x_2) { _start: { -lean_object* x_3; lean_object* x_4; lean_object* x_5; +lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; uint8_t x_7; x_3 = lean_unsigned_to_nat(1024u); x_4 = l_Lean_Parser_checkPrecFn(x_3, x_1, x_2); x_5 = lean_ctor_get(x_4, 3); lean_inc(x_5); -if (lean_obj_tag(x_5) == 0) -{ -lean_object* x_6; lean_object* x_7; lean_object* x_8; uint8_t x_9; -x_6 = lean_ctor_get(x_4, 0); -lean_inc(x_6); -x_7 = lean_array_get_size(x_6); -x_8 = l_Array_back___at_Lean_Syntax_Traverser_up___spec__2(x_6); -lean_dec(x_6); -x_9 = l_Lean_Parser_Term_isIdent(x_8); -lean_dec(x_8); -if (x_9 == 0) -{ -lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; -lean_dec(x_1); -x_10 = l_Lean_Parser_Term_explicitUniv___elambda__1___closed__11; -x_11 = l_Lean_Parser_ParserState_mkUnexpectedError(x_4, x_10); -x_12 = l_Lean_Parser_Term_namedPattern___elambda__1___closed__2; -x_13 = l_Lean_Parser_ParserState_mkTrailingNode(x_11, x_12, x_7); -lean_dec(x_7); -return x_13; -} -else -{ -lean_object* x_14; lean_object* x_15; lean_object* x_16; -x_14 = l_Lean_Parser_Term_namedPattern___elambda__1___closed__3; -x_15 = l_Lean_Parser_checkNoWsBeforeFn(x_14, x_1, x_4); -x_16 = lean_ctor_get(x_15, 3); -lean_inc(x_16); -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 = l_Lean_Parser_Term_explicit___elambda__1___closed__3; -x_18 = l_Lean_Parser_Term_namedPattern___elambda__1___closed__5; -lean_inc(x_1); -x_19 = l_Lean_Parser_symbolFnAux(x_17, x_18, x_1, x_15); -x_20 = lean_ctor_get(x_19, 3); -lean_inc(x_20); -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; -x_21 = l_term___u2218_____closed__6; -x_22 = l_Lean_Parser_maxPrec; -x_23 = l_Lean_Parser_categoryParser___elambda__1(x_21, x_22, x_1, x_19); -x_24 = l_Lean_Parser_Term_namedPattern___elambda__1___closed__2; -x_25 = l_Lean_Parser_ParserState_mkTrailingNode(x_23, x_24, x_7); -lean_dec(x_7); -return x_25; -} -else -{ -lean_object* x_26; lean_object* x_27; -lean_dec(x_20); -lean_dec(x_1); -x_26 = l_Lean_Parser_Term_namedPattern___elambda__1___closed__2; -x_27 = l_Lean_Parser_ParserState_mkTrailingNode(x_19, x_26, x_7); -lean_dec(x_7); -return x_27; -} -} -else -{ -lean_object* x_28; lean_object* x_29; -lean_dec(x_16); -lean_dec(x_1); -x_28 = l_Lean_Parser_Term_namedPattern___elambda__1___closed__2; -x_29 = l_Lean_Parser_ParserState_mkTrailingNode(x_15, x_28, x_7); -lean_dec(x_7); -return x_29; -} -} -} -else -{ +x_6 = lean_box(0); +x_7 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_5, x_6); lean_dec(x_5); +if (x_7 == 0) +{ lean_dec(x_1); return x_4; } +else +{ +lean_object* x_8; lean_object* x_9; lean_object* x_10; uint8_t x_11; +x_8 = lean_ctor_get(x_4, 0); +lean_inc(x_8); +x_9 = lean_array_get_size(x_8); +x_10 = l_Array_back___at_Lean_Syntax_Traverser_up___spec__2(x_8); +lean_dec(x_8); +x_11 = l_Lean_Parser_Term_isIdent(x_10); +lean_dec(x_10); +if (x_11 == 0) +{ +lean_object* x_12; lean_object* x_13; lean_object* x_14; uint8_t x_15; +x_12 = l_Lean_Parser_Term_explicitUniv___elambda__1___closed__11; +x_13 = l_Lean_Parser_ParserState_mkUnexpectedError(x_4, x_12); +x_14 = lean_ctor_get(x_13, 3); +lean_inc(x_14); +x_15 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_14, x_6); +lean_dec(x_14); +if (x_15 == 0) +{ +lean_object* x_16; lean_object* x_17; +lean_dec(x_1); +x_16 = l_Lean_Parser_Term_namedPattern___elambda__1___closed__2; +x_17 = l_Lean_Parser_ParserState_mkTrailingNode(x_13, x_16, x_9); +lean_dec(x_9); +return x_17; +} +else +{ +lean_object* x_18; lean_object* x_19; lean_object* x_20; uint8_t x_21; +x_18 = l_Lean_Parser_Term_namedPattern___elambda__1___closed__3; +x_19 = l_Lean_Parser_checkNoWsBeforeFn(x_18, x_1, x_13); +x_20 = lean_ctor_get(x_19, 3); +lean_inc(x_20); +x_21 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_20, x_6); +lean_dec(x_20); +if (x_21 == 0) +{ +lean_object* x_22; lean_object* x_23; +lean_dec(x_1); +x_22 = l_Lean_Parser_Term_namedPattern___elambda__1___closed__2; +x_23 = l_Lean_Parser_ParserState_mkTrailingNode(x_19, x_22, x_9); +lean_dec(x_9); +return x_23; +} +else +{ +lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; uint8_t x_28; +x_24 = l_Lean_Parser_Term_explicit___elambda__1___closed__3; +x_25 = l_Lean_Parser_Term_namedPattern___elambda__1___closed__5; +lean_inc(x_1); +x_26 = l_Lean_Parser_symbolFnAux(x_24, x_25, x_1, x_19); +x_27 = lean_ctor_get(x_26, 3); +lean_inc(x_27); +x_28 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_27, x_6); +lean_dec(x_27); +if (x_28 == 0) +{ +lean_object* x_29; lean_object* x_30; +lean_dec(x_1); +x_29 = l_Lean_Parser_Term_namedPattern___elambda__1___closed__2; +x_30 = l_Lean_Parser_ParserState_mkTrailingNode(x_26, x_29, x_9); +lean_dec(x_9); +return x_30; +} +else +{ +lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; +x_31 = l_term___u2218_____closed__6; +x_32 = l_Lean_Parser_maxPrec; +x_33 = l_Lean_Parser_categoryParser___elambda__1(x_31, x_32, x_1, x_26); +x_34 = l_Lean_Parser_Term_namedPattern___elambda__1___closed__2; +x_35 = l_Lean_Parser_ParserState_mkTrailingNode(x_33, x_34, x_9); +lean_dec(x_9); +return x_35; +} +} +} +} +else +{ +lean_object* x_36; lean_object* x_37; lean_object* x_38; uint8_t x_39; +x_36 = l_Lean_Parser_Term_namedPattern___elambda__1___closed__3; +x_37 = l_Lean_Parser_checkNoWsBeforeFn(x_36, x_1, x_4); +x_38 = lean_ctor_get(x_37, 3); +lean_inc(x_38); +x_39 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_38, x_6); +lean_dec(x_38); +if (x_39 == 0) +{ +lean_object* x_40; lean_object* x_41; +lean_dec(x_1); +x_40 = l_Lean_Parser_Term_namedPattern___elambda__1___closed__2; +x_41 = l_Lean_Parser_ParserState_mkTrailingNode(x_37, x_40, x_9); +lean_dec(x_9); +return x_41; +} +else +{ +lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; uint8_t x_46; +x_42 = l_Lean_Parser_Term_explicit___elambda__1___closed__3; +x_43 = l_Lean_Parser_Term_namedPattern___elambda__1___closed__5; +lean_inc(x_1); +x_44 = l_Lean_Parser_symbolFnAux(x_42, x_43, x_1, x_37); +x_45 = lean_ctor_get(x_44, 3); +lean_inc(x_45); +x_46 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_45, x_6); +lean_dec(x_45); +if (x_46 == 0) +{ +lean_object* x_47; lean_object* x_48; +lean_dec(x_1); +x_47 = l_Lean_Parser_Term_namedPattern___elambda__1___closed__2; +x_48 = l_Lean_Parser_ParserState_mkTrailingNode(x_44, x_47, x_9); +lean_dec(x_9); +return x_48; +} +else +{ +lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; +x_49 = l_term___u2218_____closed__6; +x_50 = l_Lean_Parser_maxPrec; +x_51 = l_Lean_Parser_categoryParser___elambda__1(x_49, x_50, x_1, x_44); +x_52 = l_Lean_Parser_Term_namedPattern___elambda__1___closed__2; +x_53 = l_Lean_Parser_ParserState_mkTrailingNode(x_51, x_52, x_9); +lean_dec(x_9); +return x_53; +} +} +} +} } } static lean_object* _init_l_Lean_Parser_Term_namedPattern___closed__1() { @@ -37624,53 +37785,56 @@ return x_3; lean_object* l_Lean_Parser_Term_pipeProj___elambda__1(lean_object* x_1, lean_object* x_2) { _start: { -lean_object* x_3; lean_object* x_4; lean_object* x_5; +lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; uint8_t x_7; x_3 = lean_unsigned_to_nat(0u); x_4 = l_Lean_Parser_checkPrecFn(x_3, x_1, x_2); x_5 = lean_ctor_get(x_4, 3); lean_inc(x_5); -if (lean_obj_tag(x_5) == 0) -{ -lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; -x_6 = lean_ctor_get(x_4, 0); -lean_inc(x_6); -x_7 = lean_array_get_size(x_6); -lean_dec(x_6); -x_8 = l_Lean_Parser_Term_pipeProj___elambda__1___closed__4; -x_9 = l_Lean_Parser_Term_pipeProj___elambda__1___closed__6; -lean_inc(x_1); -x_10 = l_Lean_Parser_symbolFnAux(x_8, x_9, x_1, x_4); -x_11 = lean_ctor_get(x_10, 3); -lean_inc(x_11); -if (lean_obj_tag(x_11) == 0) -{ -lean_object* x_12; lean_object* x_13; uint8_t x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; -x_12 = l_Lean_Parser_fieldIdx___closed__6; -x_13 = l_Lean_Parser_Term_ident___closed__1; -x_14 = 1; -x_15 = l_Lean_Parser_orelseFnCore(x_12, x_13, x_14, x_1, x_10); -x_16 = l_Lean_Parser_Term_pipeProj___elambda__1___closed__2; -x_17 = l_Lean_Parser_ParserState_mkTrailingNode(x_15, x_16, x_7); -lean_dec(x_7); -return x_17; -} -else -{ -lean_object* x_18; lean_object* x_19; -lean_dec(x_11); -lean_dec(x_1); -x_18 = l_Lean_Parser_Term_pipeProj___elambda__1___closed__2; -x_19 = l_Lean_Parser_ParserState_mkTrailingNode(x_10, x_18, x_7); -lean_dec(x_7); -return x_19; -} -} -else -{ +x_6 = lean_box(0); +x_7 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_5, x_6); lean_dec(x_5); +if (x_7 == 0) +{ lean_dec(x_1); return x_4; } +else +{ +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; +x_8 = lean_ctor_get(x_4, 0); +lean_inc(x_8); +x_9 = lean_array_get_size(x_8); +lean_dec(x_8); +x_10 = l_Lean_Parser_Term_pipeProj___elambda__1___closed__4; +x_11 = l_Lean_Parser_Term_pipeProj___elambda__1___closed__6; +lean_inc(x_1); +x_12 = l_Lean_Parser_symbolFnAux(x_10, x_11, x_1, x_4); +x_13 = lean_ctor_get(x_12, 3); +lean_inc(x_13); +x_14 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_13, x_6); +lean_dec(x_13); +if (x_14 == 0) +{ +lean_object* x_15; lean_object* x_16; +lean_dec(x_1); +x_15 = l_Lean_Parser_Term_pipeProj___elambda__1___closed__2; +x_16 = l_Lean_Parser_ParserState_mkTrailingNode(x_12, x_15, x_9); +lean_dec(x_9); +return x_16; +} +else +{ +lean_object* x_17; lean_object* x_18; uint8_t x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; +x_17 = l_Lean_Parser_fieldIdx___closed__6; +x_18 = l_Lean_Parser_Term_ident___closed__1; +x_19 = 1; +x_20 = l_Lean_Parser_orelseFnCore(x_17, x_18, x_19, x_1, x_12); +x_21 = l_Lean_Parser_Term_pipeProj___elambda__1___closed__2; +x_22 = l_Lean_Parser_ParserState_mkTrailingNode(x_20, x_21, x_9); +lean_dec(x_9); +return x_22; +} +} } } static lean_object* _init_l_Lean_Parser_Term_pipeProj___closed__1() { @@ -37938,7 +38102,7 @@ return x_3; lean_object* l_Lean_Parser_Term_subst___elambda__1(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_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; x_3 = l_Lean_Parser_Term_subst___elambda__1___closed__8; x_4 = lean_ctor_get(x_3, 1); lean_inc(x_4); @@ -37946,47 +38110,50 @@ x_5 = lean_unsigned_to_nat(75u); x_6 = l_Lean_Parser_checkPrecFn(x_5, x_1, x_2); x_7 = lean_ctor_get(x_6, 3); lean_inc(x_7); -if (lean_obj_tag(x_7) == 0) -{ -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 = lean_ctor_get(x_6, 0); -lean_inc(x_8); -x_9 = lean_array_get_size(x_8); -lean_dec(x_8); -x_10 = l_Lean_Parser_Term_subst___elambda__1___closed__4; -x_11 = l_Lean_Parser_Term_subst___elambda__1___closed__10; -lean_inc(x_1); -x_12 = l_Lean_Parser_symbolFnAux(x_10, x_11, x_1, x_6); -x_13 = lean_ctor_get(x_12, 3); -lean_inc(x_13); -if (lean_obj_tag(x_13) == 0) -{ -lean_object* x_14; lean_object* x_15; lean_object* x_16; -x_14 = lean_apply_2(x_4, x_1, x_12); -x_15 = l_Lean_Parser_Term_subst___elambda__1___closed__1; -x_16 = l_Lean_Parser_ParserState_mkTrailingNode(x_14, x_15, x_9); -lean_dec(x_9); -return x_16; -} -else -{ -lean_object* x_17; lean_object* x_18; -lean_dec(x_13); -lean_dec(x_4); -lean_dec(x_1); -x_17 = l_Lean_Parser_Term_subst___elambda__1___closed__1; -x_18 = l_Lean_Parser_ParserState_mkTrailingNode(x_12, x_17, x_9); -lean_dec(x_9); -return x_18; -} -} -else -{ +x_8 = lean_box(0); +x_9 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_7, x_8); lean_dec(x_7); +if (x_9 == 0) +{ lean_dec(x_4); lean_dec(x_1); return x_6; } +else +{ +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_6, 0); +lean_inc(x_10); +x_11 = lean_array_get_size(x_10); +lean_dec(x_10); +x_12 = l_Lean_Parser_Term_subst___elambda__1___closed__4; +x_13 = l_Lean_Parser_Term_subst___elambda__1___closed__10; +lean_inc(x_1); +x_14 = l_Lean_Parser_symbolFnAux(x_12, x_13, x_1, x_6); +x_15 = lean_ctor_get(x_14, 3); +lean_inc(x_15); +x_16 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_15, x_8); +lean_dec(x_15); +if (x_16 == 0) +{ +lean_object* x_17; lean_object* x_18; +lean_dec(x_4); +lean_dec(x_1); +x_17 = l_Lean_Parser_Term_subst___elambda__1___closed__1; +x_18 = l_Lean_Parser_ParserState_mkTrailingNode(x_14, x_17, x_11); +lean_dec(x_11); +return x_18; +} +else +{ +lean_object* x_19; lean_object* x_20; lean_object* x_21; +x_19 = lean_apply_2(x_4, x_1, x_14); +x_20 = l_Lean_Parser_Term_subst___elambda__1___closed__1; +x_21 = l_Lean_Parser_ParserState_mkTrailingNode(x_19, x_20, x_11); +lean_dec(x_11); +return x_21; +} +} } } static lean_object* _init_l_Lean_Parser_Term_subst___closed__1() { @@ -40707,7 +40874,7 @@ uint8_t x_11; x_11 = !lean_is_exclusive(x_8); 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_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; x_12 = lean_ctor_get(x_5, 1); lean_inc(x_12); x_13 = lean_alloc_ctor(1, 1, 0); @@ -40720,241 +40887,249 @@ lean_inc(x_4); x_17 = l_Lean_Parser_symbolFnAux(x_1, x_16, x_4, x_5); x_18 = lean_ctor_get(x_17, 3); lean_inc(x_18); -if (lean_obj_tag(x_18) == 0) -{ -uint8_t x_19; lean_object* x_20; -x_19 = 1; -x_20 = l_Lean_Parser_orelseFnCore(x_2, x_3, x_19, x_4, x_17); -return x_20; -} -else -{ +x_19 = lean_box(0); +x_20 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_18, x_19); lean_dec(x_18); +if (x_20 == 0) +{ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); return x_17; } +else +{ +uint8_t x_21; lean_object* x_22; +x_21 = 1; +x_22 = l_Lean_Parser_orelseFnCore(x_2, x_3, x_21, x_4, x_17); +return x_22; +} } 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; -x_21 = lean_ctor_get(x_8, 0); -x_22 = lean_ctor_get(x_8, 1); -x_23 = lean_ctor_get(x_8, 2); -x_24 = lean_ctor_get(x_8, 3); +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; uint8_t x_36; +x_23 = lean_ctor_get(x_8, 0); +x_24 = lean_ctor_get(x_8, 1); +x_25 = lean_ctor_get(x_8, 2); +x_26 = lean_ctor_get(x_8, 3); +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_dec(x_8); -x_25 = lean_alloc_ctor(0, 4, 0); -lean_ctor_set(x_25, 0, x_21); -lean_ctor_set(x_25, 1, x_22); -lean_ctor_set(x_25, 2, x_23); -lean_ctor_set(x_25, 3, x_24); -x_26 = lean_ctor_get(x_5, 1); -lean_inc(x_26); -x_27 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_27, 0, x_26); -lean_ctor_set(x_4, 4, x_27); -lean_ctor_set(x_4, 1, x_25); -x_28 = l_instReprChar___closed__1; -x_29 = lean_string_append(x_28, x_1); -x_30 = lean_string_append(x_29, x_28); +x_27 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_27, 0, x_23); +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 = lean_ctor_get(x_5, 1); +lean_inc(x_28); +x_29 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_29, 0, x_28); +lean_ctor_set(x_4, 4, x_29); +lean_ctor_set(x_4, 1, x_27); +x_30 = l_instReprChar___closed__1; +x_31 = lean_string_append(x_30, x_1); +x_32 = lean_string_append(x_31, x_30); lean_inc(x_4); -x_31 = l_Lean_Parser_symbolFnAux(x_1, x_30, x_4, x_5); -x_32 = lean_ctor_get(x_31, 3); -lean_inc(x_32); -if (lean_obj_tag(x_32) == 0) +x_33 = l_Lean_Parser_symbolFnAux(x_1, x_32, x_4, x_5); +x_34 = lean_ctor_get(x_33, 3); +lean_inc(x_34); +x_35 = lean_box(0); +x_36 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_34, x_35); +lean_dec(x_34); +if (x_36 == 0) { -uint8_t x_33; lean_object* x_34; -x_33 = 1; -x_34 = l_Lean_Parser_orelseFnCore(x_2, x_3, x_33, x_4, x_31); -return x_34; -} -else -{ -lean_dec(x_32); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); -return x_31; +return x_33; +} +else +{ +uint8_t x_37; lean_object* x_38; +x_37 = 1; +x_38 = l_Lean_Parser_orelseFnCore(x_2, x_3, x_37, x_4, x_33); +return x_38; } } } 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_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_35 = lean_ctor_get(x_7, 0); -x_36 = lean_ctor_get(x_7, 1); -x_37 = lean_ctor_get(x_7, 2); -lean_inc(x_37); -lean_inc(x_36); -lean_inc(x_35); -lean_dec(x_7); -x_38 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_38, 0, x_35); -lean_ctor_set(x_38, 1, x_36); -lean_ctor_set(x_38, 2, x_37); -x_39 = lean_ctor_get(x_8, 0); -lean_inc(x_39); -x_40 = lean_ctor_get(x_8, 1); -lean_inc(x_40); -x_41 = lean_ctor_get(x_8, 2); +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; uint8_t x_57; +x_39 = lean_ctor_get(x_7, 0); +x_40 = lean_ctor_get(x_7, 1); +x_41 = lean_ctor_get(x_7, 2); lean_inc(x_41); -x_42 = lean_ctor_get(x_8, 3); -lean_inc(x_42); +lean_inc(x_40); +lean_inc(x_39); +lean_dec(x_7); +x_42 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_42, 0, x_39); +lean_ctor_set(x_42, 1, x_40); +lean_ctor_set(x_42, 2, x_41); +x_43 = lean_ctor_get(x_8, 0); +lean_inc(x_43); +x_44 = lean_ctor_get(x_8, 1); +lean_inc(x_44); +x_45 = lean_ctor_get(x_8, 2); +lean_inc(x_45); +x_46 = lean_ctor_get(x_8, 3); +lean_inc(x_46); if (lean_is_exclusive(x_8)) { lean_ctor_release(x_8, 0); lean_ctor_release(x_8, 1); lean_ctor_release(x_8, 2); lean_ctor_release(x_8, 3); - x_43 = x_8; + x_47 = x_8; } else { lean_dec_ref(x_8); - x_43 = lean_box(0); + x_47 = lean_box(0); } -if (lean_is_scalar(x_43)) { - x_44 = lean_alloc_ctor(0, 4, 0); +if (lean_is_scalar(x_47)) { + x_48 = lean_alloc_ctor(0, 4, 0); } else { - x_44 = x_43; + x_48 = x_47; } -lean_ctor_set(x_44, 0, x_39); -lean_ctor_set(x_44, 1, x_40); -lean_ctor_set(x_44, 2, x_41); -lean_ctor_set(x_44, 3, x_42); -x_45 = lean_ctor_get(x_5, 1); -lean_inc(x_45); -x_46 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_46, 0, x_45); -lean_ctor_set(x_4, 4, x_46); -lean_ctor_set(x_4, 1, x_44); -lean_ctor_set(x_4, 0, x_38); -x_47 = l_instReprChar___closed__1; -x_48 = lean_string_append(x_47, x_1); -x_49 = lean_string_append(x_48, x_47); +lean_ctor_set(x_48, 0, x_43); +lean_ctor_set(x_48, 1, x_44); +lean_ctor_set(x_48, 2, x_45); +lean_ctor_set(x_48, 3, x_46); +x_49 = lean_ctor_get(x_5, 1); +lean_inc(x_49); +x_50 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_50, 0, x_49); +lean_ctor_set(x_4, 4, x_50); +lean_ctor_set(x_4, 1, x_48); +lean_ctor_set(x_4, 0, x_42); +x_51 = l_instReprChar___closed__1; +x_52 = lean_string_append(x_51, x_1); +x_53 = lean_string_append(x_52, x_51); lean_inc(x_4); -x_50 = l_Lean_Parser_symbolFnAux(x_1, x_49, x_4, x_5); -x_51 = lean_ctor_get(x_50, 3); -lean_inc(x_51); -if (lean_obj_tag(x_51) == 0) +x_54 = l_Lean_Parser_symbolFnAux(x_1, x_53, x_4, x_5); +x_55 = lean_ctor_get(x_54, 3); +lean_inc(x_55); +x_56 = lean_box(0); +x_57 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_55, x_56); +lean_dec(x_55); +if (x_57 == 0) { -uint8_t x_52; lean_object* x_53; -x_52 = 1; -x_53 = l_Lean_Parser_orelseFnCore(x_2, x_3, x_52, x_4, x_50); -return x_53; -} -else -{ -lean_dec(x_51); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); -return x_50; +return x_54; +} +else +{ +uint8_t x_58; lean_object* x_59; +x_58 = 1; +x_59 = l_Lean_Parser_orelseFnCore(x_2, x_3, x_58, x_4, x_54); +return x_59; } } } else { -lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; uint8_t 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_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; -x_54 = lean_ctor_get(x_4, 0); -x_55 = lean_ctor_get(x_4, 1); -x_56 = lean_ctor_get(x_4, 2); -x_57 = lean_ctor_get(x_4, 3); -x_58 = lean_ctor_get_uint8(x_4, sizeof(void*)*6); -x_59 = lean_ctor_get_uint8(x_4, sizeof(void*)*6 + 1); -x_60 = lean_ctor_get(x_4, 5); -lean_inc(x_60); -lean_inc(x_57); -lean_inc(x_56); -lean_inc(x_55); -lean_inc(x_54); -lean_dec(x_4); -x_61 = lean_ctor_get(x_54, 0); -lean_inc(x_61); -x_62 = lean_ctor_get(x_54, 1); -lean_inc(x_62); -x_63 = lean_ctor_get(x_54, 2); -lean_inc(x_63); -if (lean_is_exclusive(x_54)) { - lean_ctor_release(x_54, 0); - lean_ctor_release(x_54, 1); - lean_ctor_release(x_54, 2); - x_64 = x_54; -} else { - lean_dec_ref(x_54); - x_64 = lean_box(0); -} -if (lean_is_scalar(x_64)) { - x_65 = lean_alloc_ctor(0, 3, 0); -} else { - x_65 = x_64; -} -lean_ctor_set(x_65, 0, x_61); -lean_ctor_set(x_65, 1, x_62); -lean_ctor_set(x_65, 2, x_63); -x_66 = lean_ctor_get(x_55, 0); +lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; uint8_t x_64; uint8_t x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_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; uint8_t x_87; +x_60 = lean_ctor_get(x_4, 0); +x_61 = lean_ctor_get(x_4, 1); +x_62 = lean_ctor_get(x_4, 2); +x_63 = lean_ctor_get(x_4, 3); +x_64 = lean_ctor_get_uint8(x_4, sizeof(void*)*6); +x_65 = lean_ctor_get_uint8(x_4, sizeof(void*)*6 + 1); +x_66 = lean_ctor_get(x_4, 5); lean_inc(x_66); -x_67 = lean_ctor_get(x_55, 1); +lean_inc(x_63); +lean_inc(x_62); +lean_inc(x_61); +lean_inc(x_60); +lean_dec(x_4); +x_67 = lean_ctor_get(x_60, 0); lean_inc(x_67); -x_68 = lean_ctor_get(x_55, 2); +x_68 = lean_ctor_get(x_60, 1); lean_inc(x_68); -x_69 = lean_ctor_get(x_55, 3); +x_69 = lean_ctor_get(x_60, 2); lean_inc(x_69); -if (lean_is_exclusive(x_55)) { - lean_ctor_release(x_55, 0); - lean_ctor_release(x_55, 1); - lean_ctor_release(x_55, 2); - lean_ctor_release(x_55, 3); - x_70 = x_55; +if (lean_is_exclusive(x_60)) { + lean_ctor_release(x_60, 0); + lean_ctor_release(x_60, 1); + lean_ctor_release(x_60, 2); + x_70 = x_60; } else { - lean_dec_ref(x_55); + lean_dec_ref(x_60); x_70 = lean_box(0); } if (lean_is_scalar(x_70)) { - x_71 = lean_alloc_ctor(0, 4, 0); + x_71 = lean_alloc_ctor(0, 3, 0); } else { x_71 = x_70; } -lean_ctor_set(x_71, 0, x_66); -lean_ctor_set(x_71, 1, x_67); -lean_ctor_set(x_71, 2, x_68); -lean_ctor_set(x_71, 3, x_69); -x_72 = lean_ctor_get(x_5, 1); +lean_ctor_set(x_71, 0, x_67); +lean_ctor_set(x_71, 1, x_68); +lean_ctor_set(x_71, 2, x_69); +x_72 = lean_ctor_get(x_61, 0); lean_inc(x_72); -x_73 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_73, 0, x_72); -x_74 = lean_alloc_ctor(0, 6, 2); -lean_ctor_set(x_74, 0, x_65); -lean_ctor_set(x_74, 1, x_71); -lean_ctor_set(x_74, 2, x_56); -lean_ctor_set(x_74, 3, x_57); -lean_ctor_set(x_74, 4, x_73); -lean_ctor_set(x_74, 5, x_60); -lean_ctor_set_uint8(x_74, sizeof(void*)*6, x_58); -lean_ctor_set_uint8(x_74, sizeof(void*)*6 + 1, x_59); -x_75 = l_instReprChar___closed__1; -x_76 = lean_string_append(x_75, x_1); -x_77 = lean_string_append(x_76, x_75); +x_73 = lean_ctor_get(x_61, 1); +lean_inc(x_73); +x_74 = lean_ctor_get(x_61, 2); lean_inc(x_74); -x_78 = l_Lean_Parser_symbolFnAux(x_1, x_77, x_74, x_5); -x_79 = lean_ctor_get(x_78, 3); -lean_inc(x_79); -if (lean_obj_tag(x_79) == 0) +x_75 = lean_ctor_get(x_61, 3); +lean_inc(x_75); +if (lean_is_exclusive(x_61)) { + lean_ctor_release(x_61, 0); + lean_ctor_release(x_61, 1); + lean_ctor_release(x_61, 2); + lean_ctor_release(x_61, 3); + x_76 = x_61; +} else { + lean_dec_ref(x_61); + x_76 = lean_box(0); +} +if (lean_is_scalar(x_76)) { + x_77 = lean_alloc_ctor(0, 4, 0); +} else { + x_77 = x_76; +} +lean_ctor_set(x_77, 0, x_72); +lean_ctor_set(x_77, 1, x_73); +lean_ctor_set(x_77, 2, x_74); +lean_ctor_set(x_77, 3, x_75); +x_78 = lean_ctor_get(x_5, 1); +lean_inc(x_78); +x_79 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_79, 0, x_78); +x_80 = lean_alloc_ctor(0, 6, 2); +lean_ctor_set(x_80, 0, x_71); +lean_ctor_set(x_80, 1, x_77); +lean_ctor_set(x_80, 2, x_62); +lean_ctor_set(x_80, 3, x_63); +lean_ctor_set(x_80, 4, x_79); +lean_ctor_set(x_80, 5, x_66); +lean_ctor_set_uint8(x_80, sizeof(void*)*6, x_64); +lean_ctor_set_uint8(x_80, sizeof(void*)*6 + 1, x_65); +x_81 = l_instReprChar___closed__1; +x_82 = lean_string_append(x_81, x_1); +x_83 = lean_string_append(x_82, x_81); +lean_inc(x_80); +x_84 = l_Lean_Parser_symbolFnAux(x_1, x_83, x_80, x_5); +x_85 = lean_ctor_get(x_84, 3); +lean_inc(x_85); +x_86 = lean_box(0); +x_87 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_85, x_86); +lean_dec(x_85); +if (x_87 == 0) { -uint8_t x_80; lean_object* x_81; -x_80 = 1; -x_81 = l_Lean_Parser_orelseFnCore(x_2, x_3, x_80, x_74, x_78); -return x_81; +lean_dec(x_80); +lean_dec(x_3); +lean_dec(x_2); +return x_84; } else { -lean_dec(x_79); -lean_dec(x_74); -lean_dec(x_3); -lean_dec(x_2); -return x_78; +uint8_t x_88; lean_object* x_89; +x_88 = 1; +x_89 = l_Lean_Parser_orelseFnCore(x_2, x_3, x_88, x_80, x_84); +return x_89; } } } @@ -41473,7 +41648,7 @@ uint8_t x_10; x_10 = !lean_is_exclusive(x_7); 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; lean_object* x_17; +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; uint8_t x_19; x_11 = lean_ctor_get(x_4, 1); lean_inc(x_11); x_12 = lean_alloc_ctor(1, 1, 0); @@ -41486,237 +41661,245 @@ lean_inc(x_3); x_16 = l_Lean_Parser_symbolFnAux(x_1, x_15, x_3, x_4); x_17 = lean_ctor_get(x_16, 3); lean_inc(x_17); -if (lean_obj_tag(x_17) == 0) -{ -lean_object* x_18; lean_object* x_19; -x_18 = lean_unsigned_to_nat(0u); -x_19 = l_Lean_Parser_categoryParser___elambda__1(x_2, x_18, x_3, x_16); -return x_19; -} -else -{ +x_18 = lean_box(0); +x_19 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_17, x_18); lean_dec(x_17); +if (x_19 == 0) +{ lean_dec(x_3); lean_dec(x_2); return x_16; } +else +{ +lean_object* x_20; lean_object* x_21; +x_20 = lean_unsigned_to_nat(0u); +x_21 = l_Lean_Parser_categoryParser___elambda__1(x_2, x_20, x_3, x_16); +return x_21; +} } 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; -x_20 = lean_ctor_get(x_7, 0); -x_21 = lean_ctor_get(x_7, 1); -x_22 = lean_ctor_get(x_7, 2); -x_23 = lean_ctor_get(x_7, 3); +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; uint8_t x_35; +x_22 = lean_ctor_get(x_7, 0); +x_23 = lean_ctor_get(x_7, 1); +x_24 = lean_ctor_get(x_7, 2); +x_25 = lean_ctor_get(x_7, 3); +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_dec(x_7); -x_24 = lean_alloc_ctor(0, 4, 0); -lean_ctor_set(x_24, 0, x_20); -lean_ctor_set(x_24, 1, x_21); -lean_ctor_set(x_24, 2, x_22); -lean_ctor_set(x_24, 3, x_23); -x_25 = lean_ctor_get(x_4, 1); -lean_inc(x_25); -x_26 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_26, 0, x_25); -lean_ctor_set(x_3, 4, x_26); -lean_ctor_set(x_3, 1, x_24); -x_27 = l_instReprChar___closed__1; -x_28 = lean_string_append(x_27, x_1); -x_29 = lean_string_append(x_28, x_27); +x_26 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_26, 0, x_22); +lean_ctor_set(x_26, 1, x_23); +lean_ctor_set(x_26, 2, x_24); +lean_ctor_set(x_26, 3, x_25); +x_27 = lean_ctor_get(x_4, 1); +lean_inc(x_27); +x_28 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_28, 0, x_27); +lean_ctor_set(x_3, 4, x_28); +lean_ctor_set(x_3, 1, x_26); +x_29 = l_instReprChar___closed__1; +x_30 = lean_string_append(x_29, x_1); +x_31 = lean_string_append(x_30, x_29); lean_inc(x_3); -x_30 = l_Lean_Parser_symbolFnAux(x_1, x_29, x_3, x_4); -x_31 = lean_ctor_get(x_30, 3); -lean_inc(x_31); -if (lean_obj_tag(x_31) == 0) +x_32 = l_Lean_Parser_symbolFnAux(x_1, x_31, x_3, x_4); +x_33 = lean_ctor_get(x_32, 3); +lean_inc(x_33); +x_34 = lean_box(0); +x_35 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_33, x_34); +lean_dec(x_33); +if (x_35 == 0) { -lean_object* x_32; lean_object* x_33; -x_32 = lean_unsigned_to_nat(0u); -x_33 = l_Lean_Parser_categoryParser___elambda__1(x_2, x_32, x_3, x_30); -return x_33; -} -else -{ -lean_dec(x_31); lean_dec(x_3); lean_dec(x_2); -return x_30; +return x_32; +} +else +{ +lean_object* x_36; lean_object* x_37; +x_36 = lean_unsigned_to_nat(0u); +x_37 = l_Lean_Parser_categoryParser___elambda__1(x_2, x_36, x_3, x_32); +return x_37; } } } 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; 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_34 = lean_ctor_get(x_6, 0); -x_35 = lean_ctor_get(x_6, 1); -x_36 = lean_ctor_get(x_6, 2); -lean_inc(x_36); -lean_inc(x_35); -lean_inc(x_34); -lean_dec(x_6); -x_37 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_37, 0, x_34); -lean_ctor_set(x_37, 1, x_35); -lean_ctor_set(x_37, 2, x_36); -x_38 = lean_ctor_get(x_7, 0); -lean_inc(x_38); -x_39 = lean_ctor_get(x_7, 1); -lean_inc(x_39); -x_40 = lean_ctor_get(x_7, 2); +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; uint8_t x_56; +x_38 = lean_ctor_get(x_6, 0); +x_39 = lean_ctor_get(x_6, 1); +x_40 = lean_ctor_get(x_6, 2); lean_inc(x_40); -x_41 = lean_ctor_get(x_7, 3); -lean_inc(x_41); +lean_inc(x_39); +lean_inc(x_38); +lean_dec(x_6); +x_41 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_41, 0, x_38); +lean_ctor_set(x_41, 1, x_39); +lean_ctor_set(x_41, 2, x_40); +x_42 = lean_ctor_get(x_7, 0); +lean_inc(x_42); +x_43 = lean_ctor_get(x_7, 1); +lean_inc(x_43); +x_44 = lean_ctor_get(x_7, 2); +lean_inc(x_44); +x_45 = lean_ctor_get(x_7, 3); +lean_inc(x_45); 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); - x_42 = x_7; + x_46 = x_7; } else { lean_dec_ref(x_7); - x_42 = lean_box(0); + x_46 = lean_box(0); } -if (lean_is_scalar(x_42)) { - x_43 = lean_alloc_ctor(0, 4, 0); +if (lean_is_scalar(x_46)) { + x_47 = lean_alloc_ctor(0, 4, 0); } else { - x_43 = x_42; + x_47 = x_46; } -lean_ctor_set(x_43, 0, x_38); -lean_ctor_set(x_43, 1, x_39); -lean_ctor_set(x_43, 2, x_40); -lean_ctor_set(x_43, 3, x_41); -x_44 = lean_ctor_get(x_4, 1); -lean_inc(x_44); -x_45 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_45, 0, x_44); -lean_ctor_set(x_3, 4, x_45); -lean_ctor_set(x_3, 1, x_43); -lean_ctor_set(x_3, 0, x_37); -x_46 = l_instReprChar___closed__1; -x_47 = lean_string_append(x_46, x_1); -x_48 = lean_string_append(x_47, x_46); +lean_ctor_set(x_47, 0, x_42); +lean_ctor_set(x_47, 1, x_43); +lean_ctor_set(x_47, 2, x_44); +lean_ctor_set(x_47, 3, x_45); +x_48 = lean_ctor_get(x_4, 1); +lean_inc(x_48); +x_49 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_49, 0, x_48); +lean_ctor_set(x_3, 4, x_49); +lean_ctor_set(x_3, 1, x_47); +lean_ctor_set(x_3, 0, x_41); +x_50 = l_instReprChar___closed__1; +x_51 = lean_string_append(x_50, x_1); +x_52 = lean_string_append(x_51, x_50); lean_inc(x_3); -x_49 = l_Lean_Parser_symbolFnAux(x_1, x_48, x_3, x_4); -x_50 = lean_ctor_get(x_49, 3); -lean_inc(x_50); -if (lean_obj_tag(x_50) == 0) +x_53 = l_Lean_Parser_symbolFnAux(x_1, x_52, x_3, x_4); +x_54 = lean_ctor_get(x_53, 3); +lean_inc(x_54); +x_55 = lean_box(0); +x_56 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_54, x_55); +lean_dec(x_54); +if (x_56 == 0) { -lean_object* x_51; lean_object* x_52; -x_51 = lean_unsigned_to_nat(0u); -x_52 = l_Lean_Parser_categoryParser___elambda__1(x_2, x_51, x_3, x_49); -return x_52; -} -else -{ -lean_dec(x_50); lean_dec(x_3); lean_dec(x_2); -return x_49; +return x_53; +} +else +{ +lean_object* x_57; lean_object* x_58; +x_57 = lean_unsigned_to_nat(0u); +x_58 = l_Lean_Parser_categoryParser___elambda__1(x_2, x_57, x_3, x_53); +return x_58; } } } else { -lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; uint8_t x_57; uint8_t 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; -x_53 = lean_ctor_get(x_3, 0); -x_54 = lean_ctor_get(x_3, 1); -x_55 = lean_ctor_get(x_3, 2); -x_56 = lean_ctor_get(x_3, 3); -x_57 = lean_ctor_get_uint8(x_3, sizeof(void*)*6); -x_58 = lean_ctor_get_uint8(x_3, sizeof(void*)*6 + 1); -x_59 = lean_ctor_get(x_3, 5); -lean_inc(x_59); -lean_inc(x_56); -lean_inc(x_55); -lean_inc(x_54); -lean_inc(x_53); -lean_dec(x_3); -x_60 = lean_ctor_get(x_53, 0); -lean_inc(x_60); -x_61 = lean_ctor_get(x_53, 1); -lean_inc(x_61); -x_62 = lean_ctor_get(x_53, 2); -lean_inc(x_62); -if (lean_is_exclusive(x_53)) { - lean_ctor_release(x_53, 0); - lean_ctor_release(x_53, 1); - lean_ctor_release(x_53, 2); - x_63 = x_53; -} else { - lean_dec_ref(x_53); - x_63 = lean_box(0); -} -if (lean_is_scalar(x_63)) { - x_64 = lean_alloc_ctor(0, 3, 0); -} else { - x_64 = x_63; -} -lean_ctor_set(x_64, 0, x_60); -lean_ctor_set(x_64, 1, x_61); -lean_ctor_set(x_64, 2, x_62); -x_65 = lean_ctor_get(x_54, 0); +lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; uint8_t x_63; uint8_t 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; uint8_t x_86; +x_59 = lean_ctor_get(x_3, 0); +x_60 = lean_ctor_get(x_3, 1); +x_61 = lean_ctor_get(x_3, 2); +x_62 = lean_ctor_get(x_3, 3); +x_63 = lean_ctor_get_uint8(x_3, sizeof(void*)*6); +x_64 = lean_ctor_get_uint8(x_3, sizeof(void*)*6 + 1); +x_65 = lean_ctor_get(x_3, 5); lean_inc(x_65); -x_66 = lean_ctor_get(x_54, 1); +lean_inc(x_62); +lean_inc(x_61); +lean_inc(x_60); +lean_inc(x_59); +lean_dec(x_3); +x_66 = lean_ctor_get(x_59, 0); lean_inc(x_66); -x_67 = lean_ctor_get(x_54, 2); +x_67 = lean_ctor_get(x_59, 1); lean_inc(x_67); -x_68 = lean_ctor_get(x_54, 3); +x_68 = lean_ctor_get(x_59, 2); lean_inc(x_68); -if (lean_is_exclusive(x_54)) { - lean_ctor_release(x_54, 0); - lean_ctor_release(x_54, 1); - lean_ctor_release(x_54, 2); - lean_ctor_release(x_54, 3); - x_69 = x_54; +if (lean_is_exclusive(x_59)) { + lean_ctor_release(x_59, 0); + lean_ctor_release(x_59, 1); + lean_ctor_release(x_59, 2); + x_69 = x_59; } else { - lean_dec_ref(x_54); + lean_dec_ref(x_59); x_69 = lean_box(0); } if (lean_is_scalar(x_69)) { - x_70 = lean_alloc_ctor(0, 4, 0); + x_70 = lean_alloc_ctor(0, 3, 0); } else { x_70 = x_69; } -lean_ctor_set(x_70, 0, x_65); -lean_ctor_set(x_70, 1, x_66); -lean_ctor_set(x_70, 2, x_67); -lean_ctor_set(x_70, 3, x_68); -x_71 = lean_ctor_get(x_4, 1); +lean_ctor_set(x_70, 0, x_66); +lean_ctor_set(x_70, 1, x_67); +lean_ctor_set(x_70, 2, x_68); +x_71 = lean_ctor_get(x_60, 0); lean_inc(x_71); -x_72 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_72, 0, x_71); -x_73 = lean_alloc_ctor(0, 6, 2); -lean_ctor_set(x_73, 0, x_64); -lean_ctor_set(x_73, 1, x_70); -lean_ctor_set(x_73, 2, x_55); -lean_ctor_set(x_73, 3, x_56); -lean_ctor_set(x_73, 4, x_72); -lean_ctor_set(x_73, 5, x_59); -lean_ctor_set_uint8(x_73, sizeof(void*)*6, x_57); -lean_ctor_set_uint8(x_73, sizeof(void*)*6 + 1, x_58); -x_74 = l_instReprChar___closed__1; -x_75 = lean_string_append(x_74, x_1); -x_76 = lean_string_append(x_75, x_74); +x_72 = lean_ctor_get(x_60, 1); +lean_inc(x_72); +x_73 = lean_ctor_get(x_60, 2); lean_inc(x_73); -x_77 = l_Lean_Parser_symbolFnAux(x_1, x_76, x_73, x_4); -x_78 = lean_ctor_get(x_77, 3); -lean_inc(x_78); -if (lean_obj_tag(x_78) == 0) +x_74 = lean_ctor_get(x_60, 3); +lean_inc(x_74); +if (lean_is_exclusive(x_60)) { + lean_ctor_release(x_60, 0); + lean_ctor_release(x_60, 1); + lean_ctor_release(x_60, 2); + lean_ctor_release(x_60, 3); + x_75 = x_60; +} else { + lean_dec_ref(x_60); + x_75 = lean_box(0); +} +if (lean_is_scalar(x_75)) { + x_76 = lean_alloc_ctor(0, 4, 0); +} else { + x_76 = x_75; +} +lean_ctor_set(x_76, 0, x_71); +lean_ctor_set(x_76, 1, x_72); +lean_ctor_set(x_76, 2, x_73); +lean_ctor_set(x_76, 3, x_74); +x_77 = lean_ctor_get(x_4, 1); +lean_inc(x_77); +x_78 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_78, 0, x_77); +x_79 = lean_alloc_ctor(0, 6, 2); +lean_ctor_set(x_79, 0, x_70); +lean_ctor_set(x_79, 1, x_76); +lean_ctor_set(x_79, 2, x_61); +lean_ctor_set(x_79, 3, x_62); +lean_ctor_set(x_79, 4, x_78); +lean_ctor_set(x_79, 5, x_65); +lean_ctor_set_uint8(x_79, sizeof(void*)*6, x_63); +lean_ctor_set_uint8(x_79, sizeof(void*)*6 + 1, x_64); +x_80 = l_instReprChar___closed__1; +x_81 = lean_string_append(x_80, x_1); +x_82 = lean_string_append(x_81, x_80); +lean_inc(x_79); +x_83 = l_Lean_Parser_symbolFnAux(x_1, x_82, x_79, x_4); +x_84 = lean_ctor_get(x_83, 3); +lean_inc(x_84); +x_85 = lean_box(0); +x_86 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____at_Lean_Parser_ParserState_hasError___spec__1(x_84, x_85); +lean_dec(x_84); +if (x_86 == 0) { -lean_object* x_79; lean_object* x_80; -x_79 = lean_unsigned_to_nat(0u); -x_80 = l_Lean_Parser_categoryParser___elambda__1(x_2, x_79, x_73, x_77); -return x_80; +lean_dec(x_79); +lean_dec(x_2); +return x_83; } else { -lean_dec(x_78); -lean_dec(x_73); -lean_dec(x_2); -return x_77; +lean_object* x_87; lean_object* x_88; +x_87 = lean_unsigned_to_nat(0u); +x_88 = l_Lean_Parser_categoryParser___elambda__1(x_2, x_87, x_79, x_83); +return x_88; } } } diff --git a/stage0/stdlib/Lean/Parser/Transform.c b/stage0/stdlib/Lean/Parser/Transform.c deleted file mode 100644 index 1f8ef18c68..0000000000 --- a/stage0/stdlib/Lean/Parser/Transform.c +++ /dev/null @@ -1,1586 +0,0 @@ -// Lean compiler output -// Module: Lean.Parser.Transform -// Imports: Init Lean.Parser.Basic -#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_object* lean_array_set(lean_object*, lean_object*, lean_object*); -lean_object* l_Std_Range_forIn_loop___at_Lean_Syntax_manyToSepBy___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -uint8_t lean_name_eq(lean_object*, lean_object*); -lean_object* lean_array_push(lean_object*, lean_object*); -lean_object* lean_array_get_size(lean_object*); -lean_object* lean_string_append(lean_object*, lean_object*); -lean_object* l_Lean_Syntax_setTailInfo(lean_object*, lean_object*); -lean_object* lean_string_utf8_extract(lean_object*, lean_object*, lean_object*); -lean_object* lean_string_utf8_byte_size(lean_object*); -lean_object* lean_nat_add(lean_object*, lean_object*); -lean_object* l_Lean_Syntax_removeParen_match__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Syntax_manyToSepBy_match__1(lean_object*); -uint8_t lean_nat_dec_eq(lean_object*, lean_object*); -lean_object* lean_nat_sub(lean_object*, lean_object*); -lean_object* lean_array_get(lean_object*, lean_object*, lean_object*); -extern lean_object* l_Lean_instInhabitedSourceInfo___closed__1; -lean_object* l_Std_Range_forIn_loop___at_Lean_Syntax_manyToSepBy___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l_Lean_instInhabitedSyntax; -lean_object* l_Lean_Syntax_manyToSepBy(lean_object*, lean_object*); -lean_object* l_Lean_Syntax_getNumArgs(lean_object*); -uint8_t lean_nat_dec_le(lean_object*, lean_object*); -lean_object* l_Lean_Syntax_manyToSepBy_match__2(lean_object*); -extern lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Environment_displayStats___spec__8___closed__3; -lean_object* l_Lean_Syntax_removeParen(lean_object*); -extern lean_object* l_myMacro____x40_Init_Notation___hyg_11187____closed__8; -uint8_t l_Lean_Syntax_isNone(lean_object*); -lean_object* l_Lean_Syntax_getTailInfo(lean_object*); -extern lean_object* l_prec_x28___x29___closed__7; -lean_object* l_Lean_Syntax_manyToSepBy_match__1___rarg(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Syntax_getArg(lean_object*, lean_object*); -extern lean_object* l_Lean_mkOptionalNode___closed__2; -lean_object* l_Lean_Syntax_removeParen_match__1(lean_object*); -lean_object* l_Array_back___at_Lean_Syntax_Traverser_up___spec__2(lean_object*); -lean_object* l_Lean_Syntax_manyToSepBy_match__2___rarg(lean_object*, lean_object*, lean_object*); -uint8_t lean_string_dec_eq(lean_object*, lean_object*); -lean_object* l_Lean_Syntax_manyToSepBy_match__1___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { -_start: -{ -if (lean_obj_tag(x_1) == 0) -{ -lean_object* x_4; lean_object* x_5; -lean_dec(x_2); -x_4 = lean_box(0); -x_5 = lean_apply_1(x_3, x_4); -return x_5; -} -else -{ -lean_object* x_6; lean_object* x_7; -lean_dec(x_3); -x_6 = lean_ctor_get(x_1, 0); -lean_inc(x_6); -lean_dec(x_1); -x_7 = lean_apply_1(x_2, x_6); -return x_7; -} -} -} -lean_object* l_Lean_Syntax_manyToSepBy_match__1(lean_object* x_1) { -_start: -{ -lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Lean_Syntax_manyToSepBy_match__1___rarg), 3, 0); -return x_2; -} -} -lean_object* l_Lean_Syntax_manyToSepBy_match__2___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { -_start: -{ -if (lean_obj_tag(x_1) == 1) -{ -lean_object* x_4; lean_object* x_5; lean_object* x_6; -lean_dec(x_3); -x_4 = lean_ctor_get(x_1, 0); -lean_inc(x_4); -x_5 = lean_ctor_get(x_1, 1); -lean_inc(x_5); -lean_dec(x_1); -x_6 = lean_apply_2(x_2, x_4, x_5); -return x_6; -} -else -{ -lean_object* x_7; -lean_dec(x_2); -x_7 = lean_apply_1(x_3, x_1); -return x_7; -} -} -} -lean_object* l_Lean_Syntax_manyToSepBy_match__2(lean_object* x_1) { -_start: -{ -lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Lean_Syntax_manyToSepBy_match__2___rarg), 3, 0); -return x_2; -} -} -lean_object* l_Std_Range_forIn_loop___at_Lean_Syntax_manyToSepBy___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_ctor_get(x_3, 1); -x_8 = lean_nat_dec_le(x_7, x_5); -if (x_8 == 0) -{ -lean_object* x_9; uint8_t x_10; -x_9 = lean_unsigned_to_nat(0u); -x_10 = lean_nat_dec_eq(x_4, x_9); -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 = lean_unsigned_to_nat(1u); -x_12 = lean_nat_sub(x_4, x_11); -lean_dec(x_4); -x_13 = l_Lean_instInhabitedSyntax; -x_14 = lean_array_get(x_13, x_2, x_5); -x_15 = l_Array_back___at_Lean_Syntax_Traverser_up___spec__2(x_6); -x_16 = l_Lean_Syntax_getTailInfo(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; lean_object* x_21; lean_object* x_22; -lean_dec(x_15); -x_17 = l_Lean_instInhabitedSourceInfo___closed__1; -lean_inc(x_1); -x_18 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_18, 0, x_17); -lean_ctor_set(x_18, 1, x_1); -x_19 = lean_array_push(x_6, x_18); -x_20 = lean_array_push(x_19, x_14); -x_21 = lean_ctor_get(x_3, 2); -x_22 = lean_nat_add(x_5, x_21); -lean_dec(x_5); -x_4 = x_12; -x_5 = x_22; -x_6 = x_20; -goto _start; -} -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_16, 0); -lean_inc(x_24); -lean_dec(x_16); -x_25 = lean_array_get_size(x_6); -x_26 = lean_nat_sub(x_25, x_11); -lean_dec(x_25); -x_27 = lean_array_set(x_6, x_26, x_15); -lean_dec(x_26); -lean_inc(x_1); -x_28 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_28, 0, x_24); -lean_ctor_set(x_28, 1, x_1); -x_29 = lean_array_push(x_27, x_28); -x_30 = lean_array_push(x_29, x_14); -x_31 = lean_ctor_get(x_3, 2); -x_32 = lean_nat_add(x_5, x_31); -lean_dec(x_5); -x_4 = x_12; -x_5 = x_32; -x_6 = x_30; -goto _start; -} -} -else -{ -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_1); -return x_6; -} -} -else -{ -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_1); -return x_6; -} -} -} -lean_object* l_Lean_Syntax_manyToSepBy(lean_object* x_1, lean_object* x_2) { -_start: -{ -if (lean_obj_tag(x_1) == 1) -{ -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, 0); -lean_inc(x_3); -x_4 = lean_ctor_get(x_1, 1); -lean_inc(x_4); -x_5 = lean_array_get_size(x_4); -x_6 = lean_unsigned_to_nat(0u); -x_7 = lean_nat_dec_eq(x_5, x_6); -if (x_7 == 0) -{ -uint8_t x_8; -x_8 = !lean_is_exclusive(x_1); -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; lean_object* x_17; -x_9 = lean_ctor_get(x_1, 1); -lean_dec(x_9); -x_10 = lean_ctor_get(x_1, 0); -lean_dec(x_10); -x_11 = l_Lean_instInhabitedSyntax; -x_12 = lean_array_get(x_11, x_4, x_6); -x_13 = l_Lean_mkOptionalNode___closed__2; -x_14 = lean_array_push(x_13, x_12); -x_15 = lean_unsigned_to_nat(1u); -lean_inc(x_5); -x_16 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_16, 0, x_15); -lean_ctor_set(x_16, 1, x_5); -lean_ctor_set(x_16, 2, x_15); -x_17 = l_Std_Range_forIn_loop___at_Lean_Syntax_manyToSepBy___spec__1(x_2, x_4, x_16, x_5, x_15, x_14); -lean_dec(x_16); -lean_dec(x_4); -lean_ctor_set(x_1, 1, x_17); -return x_1; -} -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_object* x_24; lean_object* x_25; -lean_dec(x_1); -x_18 = l_Lean_instInhabitedSyntax; -x_19 = lean_array_get(x_18, x_4, x_6); -x_20 = l_Lean_mkOptionalNode___closed__2; -x_21 = lean_array_push(x_20, x_19); -x_22 = lean_unsigned_to_nat(1u); -lean_inc(x_5); -x_23 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_23, 0, x_22); -lean_ctor_set(x_23, 1, x_5); -lean_ctor_set(x_23, 2, x_22); -x_24 = l_Std_Range_forIn_loop___at_Lean_Syntax_manyToSepBy___spec__1(x_2, x_4, x_23, x_5, x_22, x_21); -lean_dec(x_23); -lean_dec(x_4); -x_25 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_25, 0, x_3); -lean_ctor_set(x_25, 1, x_24); -return x_25; -} -} -else -{ -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -return x_1; -} -} -else -{ -lean_dec(x_2); -return x_1; -} -} -} -lean_object* l_Std_Range_forIn_loop___at_Lean_Syntax_manyToSepBy___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_Std_Range_forIn_loop___at_Lean_Syntax_manyToSepBy___spec__1(x_1, x_2, x_3, x_4, x_5, x_6); -lean_dec(x_3); -lean_dec(x_2); -return x_7; -} -} -lean_object* l_Lean_Syntax_removeParen_match__1___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { -_start: -{ -if (lean_obj_tag(x_1) == 2) -{ -lean_object* x_5; lean_object* x_6; -x_5 = lean_ctor_get(x_1, 0); -lean_inc(x_5); -x_6 = lean_ctor_get(x_5, 0); -lean_inc(x_6); -if (lean_obj_tag(x_6) == 0) -{ -lean_object* x_7; -x_7 = lean_ctor_get(x_5, 1); -lean_inc(x_7); -if (lean_obj_tag(x_7) == 0) -{ -lean_object* x_8; -x_8 = lean_ctor_get(x_5, 2); -lean_inc(x_8); -if (lean_obj_tag(x_8) == 0) -{ -uint8_t x_9; -lean_dec(x_3); -x_9 = !lean_is_exclusive(x_5); -if (x_9 == 0) -{ -lean_object* x_10; lean_object* x_11; lean_object* x_12; uint8_t x_13; -x_10 = lean_ctor_get(x_5, 2); -lean_dec(x_10); -x_11 = lean_ctor_get(x_5, 1); -lean_dec(x_11); -x_12 = lean_ctor_get(x_5, 0); -lean_dec(x_12); -x_13 = !lean_is_exclusive(x_1); -if (x_13 == 0) -{ -lean_object* x_14; lean_object* x_15; -x_14 = lean_ctor_get(x_1, 0); -lean_dec(x_14); -lean_ctor_set(x_5, 0, x_8); -x_15 = lean_apply_2(x_4, x_1, x_2); -return x_15; -} -else -{ -lean_object* x_16; lean_object* x_17; lean_object* x_18; -x_16 = lean_ctor_get(x_1, 1); -lean_inc(x_16); -lean_dec(x_1); -lean_ctor_set(x_5, 0, x_8); -x_17 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_17, 0, x_5); -lean_ctor_set(x_17, 1, x_16); -x_18 = lean_apply_2(x_4, x_17, x_2); -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_dec(x_5); -x_19 = lean_ctor_get(x_1, 1); -lean_inc(x_19); -if (lean_is_exclusive(x_1)) { - lean_ctor_release(x_1, 0); - lean_ctor_release(x_1, 1); - x_20 = x_1; -} else { - lean_dec_ref(x_1); - x_20 = lean_box(0); -} -x_21 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_21, 0, x_8); -lean_ctor_set(x_21, 1, x_7); -lean_ctor_set(x_21, 2, x_8); -if (lean_is_scalar(x_20)) { - x_22 = lean_alloc_ctor(2, 2, 0); -} else { - x_22 = x_20; -} -lean_ctor_set(x_22, 0, x_21); -lean_ctor_set(x_22, 1, x_19); -x_23 = lean_apply_2(x_4, x_22, x_2); -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_1, 1); -lean_inc(x_24); -x_25 = lean_ctor_get(x_8, 0); -lean_inc(x_25); -x_26 = l_prec_x28___x29___closed__7; -x_27 = lean_string_dec_eq(x_24, x_26); -lean_dec(x_24); -if (x_27 == 0) -{ -lean_object* x_28; -lean_dec(x_25); -lean_dec(x_8); -lean_dec(x_5); -lean_dec(x_3); -x_28 = lean_apply_2(x_4, x_1, x_2); -return x_28; -} -else -{ -uint8_t x_29; -x_29 = !lean_is_exclusive(x_1); -if (x_29 == 0) -{ -lean_object* x_30; lean_object* x_31; -x_30 = lean_ctor_get(x_1, 1); -lean_dec(x_30); -x_31 = lean_ctor_get(x_1, 0); -lean_dec(x_31); -if (lean_obj_tag(x_2) == 0) -{ -lean_object* x_32; -lean_dec(x_25); -lean_dec(x_8); -lean_dec(x_3); -lean_ctor_set(x_1, 1, x_26); -x_32 = lean_apply_2(x_4, x_1, x_2); -return x_32; -} -else -{ -lean_object* x_33; lean_object* x_34; -x_33 = lean_ctor_get(x_2, 0); -lean_inc(x_33); -x_34 = lean_ctor_get(x_33, 0); -lean_inc(x_34); -if (lean_obj_tag(x_34) == 0) -{ -uint8_t x_35; -x_35 = !lean_is_exclusive(x_5); -if (x_35 == 0) -{ -lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; -x_36 = lean_ctor_get(x_5, 2); -lean_dec(x_36); -x_37 = lean_ctor_get(x_5, 1); -lean_dec(x_37); -x_38 = lean_ctor_get(x_5, 0); -lean_dec(x_38); -x_39 = lean_ctor_get(x_33, 1); -lean_inc(x_39); -if (lean_obj_tag(x_39) == 0) -{ -uint8_t x_40; -x_40 = !lean_is_exclusive(x_2); -if (x_40 == 0) -{ -lean_object* x_41; lean_object* x_42; -x_41 = lean_ctor_get(x_2, 0); -lean_dec(x_41); -x_42 = lean_ctor_get(x_33, 2); -lean_inc(x_42); -if (lean_obj_tag(x_42) == 0) -{ -uint8_t x_43; -lean_dec(x_25); -lean_dec(x_3); -x_43 = !lean_is_exclusive(x_33); -if (x_43 == 0) -{ -lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; -x_44 = lean_ctor_get(x_33, 2); -lean_dec(x_44); -x_45 = lean_ctor_get(x_33, 1); -lean_dec(x_45); -x_46 = lean_ctor_get(x_33, 0); -lean_dec(x_46); -lean_ctor_set(x_33, 2, x_8); -lean_ctor_set(x_33, 0, x_42); -lean_ctor_set(x_1, 1, x_26); -lean_ctor_set(x_1, 0, x_33); -lean_ctor_set(x_5, 2, x_42); -lean_ctor_set(x_5, 1, x_39); -lean_ctor_set(x_5, 0, x_42); -lean_ctor_set(x_2, 0, x_5); -x_47 = lean_apply_2(x_4, x_1, x_2); -return x_47; -} -else -{ -lean_object* x_48; lean_object* x_49; -lean_dec(x_33); -x_48 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_48, 0, x_42); -lean_ctor_set(x_48, 1, x_39); -lean_ctor_set(x_48, 2, x_8); -lean_ctor_set(x_1, 1, x_26); -lean_ctor_set(x_1, 0, x_48); -lean_ctor_set(x_5, 2, x_42); -lean_ctor_set(x_5, 1, x_39); -lean_ctor_set(x_5, 0, x_42); -lean_ctor_set(x_2, 0, x_5); -x_49 = lean_apply_2(x_4, x_1, x_2); -return x_49; -} -} -else -{ -lean_object* x_50; lean_object* x_51; -lean_free_object(x_2); -lean_free_object(x_5); -lean_free_object(x_1); -lean_dec(x_8); -lean_dec(x_4); -x_50 = lean_ctor_get(x_42, 0); -lean_inc(x_50); -lean_dec(x_42); -x_51 = lean_apply_3(x_3, x_25, x_33, x_50); -return x_51; -} -} -else -{ -lean_object* x_52; -lean_dec(x_2); -x_52 = lean_ctor_get(x_33, 2); -lean_inc(x_52); -if (lean_obj_tag(x_52) == 0) -{ -lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; -lean_dec(x_25); -lean_dec(x_3); -if (lean_is_exclusive(x_33)) { - lean_ctor_release(x_33, 0); - lean_ctor_release(x_33, 1); - lean_ctor_release(x_33, 2); - x_53 = x_33; -} else { - lean_dec_ref(x_33); - x_53 = lean_box(0); -} -if (lean_is_scalar(x_53)) { - x_54 = lean_alloc_ctor(0, 3, 0); -} else { - x_54 = x_53; -} -lean_ctor_set(x_54, 0, x_52); -lean_ctor_set(x_54, 1, x_39); -lean_ctor_set(x_54, 2, x_8); -lean_ctor_set(x_1, 1, x_26); -lean_ctor_set(x_1, 0, x_54); -lean_ctor_set(x_5, 2, x_52); -lean_ctor_set(x_5, 1, x_39); -lean_ctor_set(x_5, 0, x_52); -x_55 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_55, 0, x_5); -x_56 = lean_apply_2(x_4, x_1, x_55); -return x_56; -} -else -{ -lean_object* x_57; lean_object* x_58; -lean_free_object(x_5); -lean_free_object(x_1); -lean_dec(x_8); -lean_dec(x_4); -x_57 = lean_ctor_get(x_52, 0); -lean_inc(x_57); -lean_dec(x_52); -x_58 = lean_apply_3(x_3, x_25, x_33, x_57); -return x_58; -} -} -} -else -{ -uint8_t x_59; -lean_dec(x_39); -lean_free_object(x_5); -lean_dec(x_25); -lean_dec(x_3); -x_59 = !lean_is_exclusive(x_33); -if (x_59 == 0) -{ -lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; -x_60 = lean_ctor_get(x_33, 2); -lean_dec(x_60); -x_61 = lean_ctor_get(x_33, 1); -lean_dec(x_61); -x_62 = lean_ctor_get(x_33, 0); -lean_dec(x_62); -lean_ctor_set(x_33, 2, x_8); -lean_ctor_set(x_33, 1, x_7); -lean_ctor_set(x_1, 1, x_26); -lean_ctor_set(x_1, 0, x_33); -x_63 = lean_apply_2(x_4, x_1, x_2); -return x_63; -} -else -{ -lean_object* x_64; lean_object* x_65; -lean_dec(x_33); -x_64 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_64, 0, x_34); -lean_ctor_set(x_64, 1, x_7); -lean_ctor_set(x_64, 2, x_8); -lean_ctor_set(x_1, 1, x_26); -lean_ctor_set(x_1, 0, x_64); -x_65 = lean_apply_2(x_4, x_1, x_2); -return x_65; -} -} -} -else -{ -lean_object* x_66; -lean_dec(x_5); -x_66 = lean_ctor_get(x_33, 1); -lean_inc(x_66); -if (lean_obj_tag(x_66) == 0) -{ -lean_object* x_67; lean_object* x_68; -if (lean_is_exclusive(x_2)) { - lean_ctor_release(x_2, 0); - x_67 = x_2; -} else { - lean_dec_ref(x_2); - x_67 = lean_box(0); -} -x_68 = lean_ctor_get(x_33, 2); -lean_inc(x_68); -if (lean_obj_tag(x_68) == 0) -{ -lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; -lean_dec(x_25); -lean_dec(x_3); -if (lean_is_exclusive(x_33)) { - lean_ctor_release(x_33, 0); - lean_ctor_release(x_33, 1); - lean_ctor_release(x_33, 2); - x_69 = x_33; -} else { - lean_dec_ref(x_33); - x_69 = lean_box(0); -} -if (lean_is_scalar(x_69)) { - x_70 = lean_alloc_ctor(0, 3, 0); -} else { - x_70 = x_69; -} -lean_ctor_set(x_70, 0, x_68); -lean_ctor_set(x_70, 1, x_66); -lean_ctor_set(x_70, 2, x_8); -lean_ctor_set(x_1, 1, x_26); -lean_ctor_set(x_1, 0, x_70); -x_71 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_71, 0, x_68); -lean_ctor_set(x_71, 1, x_66); -lean_ctor_set(x_71, 2, x_68); -if (lean_is_scalar(x_67)) { - x_72 = lean_alloc_ctor(1, 1, 0); -} else { - x_72 = x_67; -} -lean_ctor_set(x_72, 0, x_71); -x_73 = lean_apply_2(x_4, x_1, x_72); -return x_73; -} -else -{ -lean_object* x_74; lean_object* x_75; -lean_dec(x_67); -lean_free_object(x_1); -lean_dec(x_8); -lean_dec(x_4); -x_74 = lean_ctor_get(x_68, 0); -lean_inc(x_74); -lean_dec(x_68); -x_75 = lean_apply_3(x_3, x_25, x_33, x_74); -return x_75; -} -} -else -{ -lean_object* x_76; lean_object* x_77; lean_object* x_78; -lean_dec(x_66); -lean_dec(x_25); -lean_dec(x_3); -if (lean_is_exclusive(x_33)) { - lean_ctor_release(x_33, 0); - lean_ctor_release(x_33, 1); - lean_ctor_release(x_33, 2); - x_76 = x_33; -} else { - lean_dec_ref(x_33); - x_76 = lean_box(0); -} -if (lean_is_scalar(x_76)) { - x_77 = lean_alloc_ctor(0, 3, 0); -} else { - x_77 = x_76; -} -lean_ctor_set(x_77, 0, x_34); -lean_ctor_set(x_77, 1, x_7); -lean_ctor_set(x_77, 2, x_8); -lean_ctor_set(x_1, 1, x_26); -lean_ctor_set(x_1, 0, x_77); -x_78 = lean_apply_2(x_4, x_1, x_2); -return x_78; -} -} -} -else -{ -lean_object* x_79; -lean_dec(x_34); -lean_dec(x_33); -lean_dec(x_25); -lean_dec(x_8); -lean_dec(x_3); -lean_ctor_set(x_1, 1, x_26); -x_79 = lean_apply_2(x_4, x_1, x_2); -return x_79; -} -} -} -else -{ -lean_dec(x_1); -if (lean_obj_tag(x_2) == 0) -{ -lean_object* x_80; lean_object* x_81; -lean_dec(x_25); -lean_dec(x_8); -lean_dec(x_3); -x_80 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_80, 0, x_5); -lean_ctor_set(x_80, 1, x_26); -x_81 = lean_apply_2(x_4, x_80, x_2); -return x_81; -} -else -{ -lean_object* x_82; lean_object* x_83; -x_82 = lean_ctor_get(x_2, 0); -lean_inc(x_82); -x_83 = lean_ctor_get(x_82, 0); -lean_inc(x_83); -if (lean_obj_tag(x_83) == 0) -{ -lean_object* x_84; lean_object* x_85; -if (lean_is_exclusive(x_5)) { - lean_ctor_release(x_5, 0); - lean_ctor_release(x_5, 1); - lean_ctor_release(x_5, 2); - x_84 = x_5; -} else { - lean_dec_ref(x_5); - x_84 = lean_box(0); -} -x_85 = lean_ctor_get(x_82, 1); -lean_inc(x_85); -if (lean_obj_tag(x_85) == 0) -{ -lean_object* x_86; lean_object* x_87; -if (lean_is_exclusive(x_2)) { - lean_ctor_release(x_2, 0); - x_86 = x_2; -} else { - lean_dec_ref(x_2); - x_86 = lean_box(0); -} -x_87 = lean_ctor_get(x_82, 2); -lean_inc(x_87); -if (lean_obj_tag(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; -lean_dec(x_25); -lean_dec(x_3); -if (lean_is_exclusive(x_82)) { - lean_ctor_release(x_82, 0); - lean_ctor_release(x_82, 1); - lean_ctor_release(x_82, 2); - x_88 = x_82; -} else { - lean_dec_ref(x_82); - x_88 = lean_box(0); -} -if (lean_is_scalar(x_88)) { - x_89 = lean_alloc_ctor(0, 3, 0); -} else { - x_89 = x_88; -} -lean_ctor_set(x_89, 0, x_87); -lean_ctor_set(x_89, 1, x_85); -lean_ctor_set(x_89, 2, x_8); -x_90 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_90, 0, x_89); -lean_ctor_set(x_90, 1, x_26); -if (lean_is_scalar(x_84)) { - x_91 = lean_alloc_ctor(0, 3, 0); -} else { - x_91 = x_84; -} -lean_ctor_set(x_91, 0, x_87); -lean_ctor_set(x_91, 1, x_85); -lean_ctor_set(x_91, 2, x_87); -if (lean_is_scalar(x_86)) { - x_92 = lean_alloc_ctor(1, 1, 0); -} else { - x_92 = x_86; -} -lean_ctor_set(x_92, 0, x_91); -x_93 = lean_apply_2(x_4, x_90, x_92); -return x_93; -} -else -{ -lean_object* x_94; lean_object* x_95; -lean_dec(x_86); -lean_dec(x_84); -lean_dec(x_8); -lean_dec(x_4); -x_94 = lean_ctor_get(x_87, 0); -lean_inc(x_94); -lean_dec(x_87); -x_95 = lean_apply_3(x_3, x_25, x_82, x_94); -return x_95; -} -} -else -{ -lean_object* x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; -lean_dec(x_85); -lean_dec(x_84); -lean_dec(x_25); -lean_dec(x_3); -if (lean_is_exclusive(x_82)) { - lean_ctor_release(x_82, 0); - lean_ctor_release(x_82, 1); - lean_ctor_release(x_82, 2); - x_96 = x_82; -} else { - lean_dec_ref(x_82); - x_96 = lean_box(0); -} -if (lean_is_scalar(x_96)) { - x_97 = lean_alloc_ctor(0, 3, 0); -} else { - x_97 = x_96; -} -lean_ctor_set(x_97, 0, x_83); -lean_ctor_set(x_97, 1, x_7); -lean_ctor_set(x_97, 2, x_8); -x_98 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_98, 0, x_97); -lean_ctor_set(x_98, 1, x_26); -x_99 = lean_apply_2(x_4, x_98, x_2); -return x_99; -} -} -else -{ -lean_object* x_100; lean_object* x_101; -lean_dec(x_83); -lean_dec(x_82); -lean_dec(x_25); -lean_dec(x_8); -lean_dec(x_3); -x_100 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_100, 0, x_5); -lean_ctor_set(x_100, 1, x_26); -x_101 = lean_apply_2(x_4, x_100, x_2); -return x_101; -} -} -} -} -} -} -else -{ -lean_object* x_102; -lean_dec(x_7); -lean_dec(x_5); -lean_dec(x_3); -x_102 = lean_apply_2(x_4, x_1, x_2); -return x_102; -} -} -else -{ -lean_object* x_103; -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_3); -x_103 = lean_apply_2(x_4, x_1, x_2); -return x_103; -} -} -else -{ -lean_object* x_104; -lean_dec(x_3); -x_104 = lean_apply_2(x_4, x_1, x_2); -return x_104; -} -} -} -lean_object* l_Lean_Syntax_removeParen_match__1(lean_object* x_1) { -_start: -{ -lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Lean_Syntax_removeParen_match__1___rarg), 4, 0); -return x_2; -} -} -lean_object* l_Lean_Syntax_removeParen(lean_object* x_1) { -_start: -{ -if (lean_obj_tag(x_1) == 1) -{ -lean_object* x_2; lean_object* x_3; lean_object* x_4; uint8_t x_5; -x_2 = lean_ctor_get(x_1, 0); -lean_inc(x_2); -x_3 = lean_ctor_get(x_1, 1); -lean_inc(x_3); -x_4 = l_myMacro____x40_Init_Notation___hyg_11187____closed__8; -x_5 = lean_name_eq(x_2, x_4); -if (x_5 == 0) -{ -lean_dec(x_3); -lean_dec(x_2); -return x_1; -} -else -{ -uint8_t x_6; -x_6 = !lean_is_exclusive(x_1); -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; uint8_t x_14; -x_7 = lean_ctor_get(x_1, 1); -lean_dec(x_7); -x_8 = lean_ctor_get(x_1, 0); -lean_dec(x_8); -lean_inc(x_3); -x_9 = l_Lean_instInhabitedSyntax; -x_10 = lean_unsigned_to_nat(1u); -x_11 = lean_array_get(x_9, x_3, x_10); -x_12 = l_Lean_Syntax_getNumArgs(x_11); -x_13 = lean_unsigned_to_nat(2u); -x_14 = lean_nat_dec_eq(x_12, x_13); -lean_dec(x_12); -if (x_14 == 0) -{ -lean_dec(x_11); -lean_dec(x_3); -return x_1; -} -else -{ -lean_object* x_15; uint8_t x_16; -x_15 = l_Lean_Syntax_getArg(x_11, x_10); -x_16 = l_Lean_Syntax_isNone(x_15); -lean_dec(x_15); -if (x_16 == 0) -{ -lean_dec(x_11); -lean_dec(x_3); -return x_1; -} -else -{ -lean_object* x_17; lean_object* x_18; lean_object* x_19; -x_17 = lean_unsigned_to_nat(0u); -x_18 = l_Lean_Syntax_getArg(x_11, x_17); -lean_dec(x_11); -x_19 = lean_array_get(x_9, x_3, x_13); -lean_dec(x_3); -if (lean_obj_tag(x_19) == 2) -{ -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(x_19); -x_22 = l_Lean_Syntax_getTailInfo(x_18); -x_23 = lean_ctor_get(x_20, 0); -lean_inc(x_23); -if (lean_obj_tag(x_23) == 0) -{ -lean_object* x_24; -x_24 = lean_ctor_get(x_20, 1); -lean_inc(x_24); -if (lean_obj_tag(x_24) == 0) -{ -lean_object* x_25; -x_25 = lean_ctor_get(x_20, 2); -lean_inc(x_25); -lean_dec(x_20); -if (lean_obj_tag(x_25) == 0) -{ -lean_dec(x_22); -lean_dec(x_21); -lean_dec(x_18); -return x_1; -} -else -{ -lean_object* x_26; lean_object* x_27; uint8_t x_28; -x_26 = lean_ctor_get(x_25, 0); -lean_inc(x_26); -lean_dec(x_25); -x_27 = l_prec_x28___x29___closed__7; -x_28 = lean_string_dec_eq(x_21, x_27); -lean_dec(x_21); -if (x_28 == 0) -{ -lean_dec(x_26); -lean_dec(x_22); -lean_dec(x_18); -return x_1; -} -else -{ -if (lean_obj_tag(x_22) == 0) -{ -lean_dec(x_26); -lean_dec(x_18); -return x_1; -} -else -{ -lean_object* x_29; lean_object* x_30; -x_29 = lean_ctor_get(x_22, 0); -lean_inc(x_29); -lean_dec(x_22); -x_30 = lean_ctor_get(x_29, 0); -lean_inc(x_30); -if (lean_obj_tag(x_30) == 0) -{ -lean_object* x_31; -x_31 = lean_ctor_get(x_29, 1); -lean_inc(x_31); -if (lean_obj_tag(x_31) == 0) -{ -uint8_t x_32; -x_32 = !lean_is_exclusive(x_29); -if (x_32 == 0) -{ -lean_object* x_33; lean_object* x_34; lean_object* x_35; -x_33 = lean_ctor_get(x_29, 2); -x_34 = lean_ctor_get(x_29, 1); -lean_dec(x_34); -x_35 = lean_ctor_get(x_29, 0); -lean_dec(x_35); -if (lean_obj_tag(x_33) == 0) -{ -lean_free_object(x_29); -lean_dec(x_26); -lean_dec(x_18); -return x_1; -} -else -{ -uint8_t x_36; -lean_dec(x_1); -x_36 = !lean_is_exclusive(x_33); -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; uint8_t x_44; -x_37 = lean_ctor_get(x_33, 0); -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_40 = lean_ctor_get(x_37, 2); -lean_inc(x_40); -lean_dec(x_37); -x_41 = lean_string_utf8_extract(x_38, x_39, x_40); -lean_dec(x_40); -lean_dec(x_39); -lean_dec(x_38); -x_42 = l_Array_foldlMUnsafe_fold___at_Lean_Environment_displayStats___spec__8___closed__3; -x_43 = lean_string_append(x_41, x_42); -x_44 = !lean_is_exclusive(x_26); -if (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; -x_45 = lean_ctor_get(x_26, 0); -x_46 = lean_ctor_get(x_26, 1); -x_47 = lean_ctor_get(x_26, 2); -x_48 = lean_string_utf8_extract(x_45, x_46, x_47); -lean_dec(x_47); -lean_dec(x_46); -lean_dec(x_45); -x_49 = lean_string_append(x_43, x_48); -lean_dec(x_48); -x_50 = lean_string_utf8_byte_size(x_49); -lean_ctor_set(x_26, 2, x_50); -lean_ctor_set(x_26, 1, x_17); -lean_ctor_set(x_26, 0, x_49); -lean_ctor_set(x_33, 0, x_26); -x_51 = l_Lean_Syntax_setTailInfo(x_18, x_29); -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; -x_52 = lean_ctor_get(x_26, 0); -x_53 = lean_ctor_get(x_26, 1); -x_54 = lean_ctor_get(x_26, 2); -lean_inc(x_54); -lean_inc(x_53); -lean_inc(x_52); -lean_dec(x_26); -x_55 = lean_string_utf8_extract(x_52, x_53, x_54); -lean_dec(x_54); -lean_dec(x_53); -lean_dec(x_52); -x_56 = lean_string_append(x_43, x_55); -lean_dec(x_55); -x_57 = lean_string_utf8_byte_size(x_56); -x_58 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_58, 0, x_56); -lean_ctor_set(x_58, 1, x_17); -lean_ctor_set(x_58, 2, x_57); -lean_ctor_set(x_33, 0, x_58); -x_59 = l_Lean_Syntax_setTailInfo(x_18, x_29); -return x_59; -} -} -else -{ -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; -x_60 = lean_ctor_get(x_33, 0); -lean_inc(x_60); -lean_dec(x_33); -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_60, 2); -lean_inc(x_63); -lean_dec(x_60); -x_64 = lean_string_utf8_extract(x_61, x_62, x_63); -lean_dec(x_63); -lean_dec(x_62); -lean_dec(x_61); -x_65 = l_Array_foldlMUnsafe_fold___at_Lean_Environment_displayStats___spec__8___closed__3; -x_66 = lean_string_append(x_64, x_65); -x_67 = lean_ctor_get(x_26, 0); -lean_inc(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); -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_70 = x_26; -} else { - lean_dec_ref(x_26); - x_70 = lean_box(0); -} -x_71 = lean_string_utf8_extract(x_67, x_68, x_69); -lean_dec(x_69); -lean_dec(x_68); -lean_dec(x_67); -x_72 = lean_string_append(x_66, x_71); -lean_dec(x_71); -x_73 = lean_string_utf8_byte_size(x_72); -if (lean_is_scalar(x_70)) { - x_74 = lean_alloc_ctor(0, 3, 0); -} else { - x_74 = x_70; -} -lean_ctor_set(x_74, 0, x_72); -lean_ctor_set(x_74, 1, x_17); -lean_ctor_set(x_74, 2, x_73); -x_75 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_75, 0, x_74); -lean_ctor_set(x_29, 2, x_75); -x_76 = l_Lean_Syntax_setTailInfo(x_18, x_29); -return x_76; -} -} -} -else -{ -lean_object* x_77; -x_77 = lean_ctor_get(x_29, 2); -lean_inc(x_77); -lean_dec(x_29); -if (lean_obj_tag(x_77) == 0) -{ -lean_dec(x_26); -lean_dec(x_18); -return x_1; -} -else -{ -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_dec(x_1); -x_78 = lean_ctor_get(x_77, 0); -lean_inc(x_78); -if (lean_is_exclusive(x_77)) { - lean_ctor_release(x_77, 0); - x_79 = x_77; -} else { - lean_dec_ref(x_77); - x_79 = lean_box(0); -} -x_80 = lean_ctor_get(x_78, 0); -lean_inc(x_80); -x_81 = lean_ctor_get(x_78, 1); -lean_inc(x_81); -x_82 = lean_ctor_get(x_78, 2); -lean_inc(x_82); -lean_dec(x_78); -x_83 = lean_string_utf8_extract(x_80, x_81, x_82); -lean_dec(x_82); -lean_dec(x_81); -lean_dec(x_80); -x_84 = l_Array_foldlMUnsafe_fold___at_Lean_Environment_displayStats___spec__8___closed__3; -x_85 = lean_string_append(x_83, x_84); -x_86 = lean_ctor_get(x_26, 0); -lean_inc(x_86); -x_87 = lean_ctor_get(x_26, 1); -lean_inc(x_87); -x_88 = lean_ctor_get(x_26, 2); -lean_inc(x_88); -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_89 = x_26; -} else { - lean_dec_ref(x_26); - x_89 = lean_box(0); -} -x_90 = lean_string_utf8_extract(x_86, x_87, x_88); -lean_dec(x_88); -lean_dec(x_87); -lean_dec(x_86); -x_91 = lean_string_append(x_85, x_90); -lean_dec(x_90); -x_92 = lean_string_utf8_byte_size(x_91); -if (lean_is_scalar(x_89)) { - x_93 = lean_alloc_ctor(0, 3, 0); -} else { - x_93 = x_89; -} -lean_ctor_set(x_93, 0, x_91); -lean_ctor_set(x_93, 1, x_17); -lean_ctor_set(x_93, 2, x_92); -if (lean_is_scalar(x_79)) { - x_94 = lean_alloc_ctor(1, 1, 0); -} else { - x_94 = x_79; -} -lean_ctor_set(x_94, 0, x_93); -x_95 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_95, 0, x_30); -lean_ctor_set(x_95, 1, x_31); -lean_ctor_set(x_95, 2, x_94); -x_96 = l_Lean_Syntax_setTailInfo(x_18, x_95); -return x_96; -} -} -} -else -{ -lean_dec(x_31); -lean_dec(x_29); -lean_dec(x_26); -lean_dec(x_18); -return x_1; -} -} -else -{ -lean_dec(x_30); -lean_dec(x_29); -lean_dec(x_26); -lean_dec(x_18); -return x_1; -} -} -} -} -} -else -{ -lean_dec(x_24); -lean_dec(x_22); -lean_dec(x_21); -lean_dec(x_20); -lean_dec(x_18); -return x_1; -} -} -else -{ -lean_dec(x_23); -lean_dec(x_22); -lean_dec(x_21); -lean_dec(x_20); -lean_dec(x_18); -return x_1; -} -} -else -{ -lean_dec(x_19); -lean_dec(x_18); -return x_1; -} -} -} -} -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; uint8_t x_103; -lean_dec(x_1); -lean_inc(x_3); -x_97 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_97, 0, x_2); -lean_ctor_set(x_97, 1, x_3); -x_98 = l_Lean_instInhabitedSyntax; -x_99 = lean_unsigned_to_nat(1u); -x_100 = lean_array_get(x_98, x_3, x_99); -x_101 = l_Lean_Syntax_getNumArgs(x_100); -x_102 = lean_unsigned_to_nat(2u); -x_103 = lean_nat_dec_eq(x_101, x_102); -lean_dec(x_101); -if (x_103 == 0) -{ -lean_dec(x_100); -lean_dec(x_3); -return x_97; -} -else -{ -lean_object* x_104; uint8_t x_105; -x_104 = l_Lean_Syntax_getArg(x_100, x_99); -x_105 = l_Lean_Syntax_isNone(x_104); -lean_dec(x_104); -if (x_105 == 0) -{ -lean_dec(x_100); -lean_dec(x_3); -return x_97; -} -else -{ -lean_object* x_106; lean_object* x_107; lean_object* x_108; -x_106 = lean_unsigned_to_nat(0u); -x_107 = l_Lean_Syntax_getArg(x_100, x_106); -lean_dec(x_100); -x_108 = lean_array_get(x_98, x_3, x_102); -lean_dec(x_3); -if (lean_obj_tag(x_108) == 2) -{ -lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; -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(x_108); -x_111 = l_Lean_Syntax_getTailInfo(x_107); -x_112 = lean_ctor_get(x_109, 0); -lean_inc(x_112); -if (lean_obj_tag(x_112) == 0) -{ -lean_object* x_113; -x_113 = lean_ctor_get(x_109, 1); -lean_inc(x_113); -if (lean_obj_tag(x_113) == 0) -{ -lean_object* x_114; -x_114 = lean_ctor_get(x_109, 2); -lean_inc(x_114); -lean_dec(x_109); -if (lean_obj_tag(x_114) == 0) -{ -lean_dec(x_111); -lean_dec(x_110); -lean_dec(x_107); -return x_97; -} -else -{ -lean_object* x_115; lean_object* x_116; uint8_t x_117; -x_115 = lean_ctor_get(x_114, 0); -lean_inc(x_115); -lean_dec(x_114); -x_116 = l_prec_x28___x29___closed__7; -x_117 = lean_string_dec_eq(x_110, x_116); -lean_dec(x_110); -if (x_117 == 0) -{ -lean_dec(x_115); -lean_dec(x_111); -lean_dec(x_107); -return x_97; -} -else -{ -if (lean_obj_tag(x_111) == 0) -{ -lean_dec(x_115); -lean_dec(x_107); -return x_97; -} -else -{ -lean_object* x_118; lean_object* x_119; -x_118 = lean_ctor_get(x_111, 0); -lean_inc(x_118); -lean_dec(x_111); -x_119 = lean_ctor_get(x_118, 0); -lean_inc(x_119); -if (lean_obj_tag(x_119) == 0) -{ -lean_object* x_120; -x_120 = lean_ctor_get(x_118, 1); -lean_inc(x_120); -if (lean_obj_tag(x_120) == 0) -{ -lean_object* x_121; lean_object* x_122; -x_121 = lean_ctor_get(x_118, 2); -lean_inc(x_121); -if (lean_is_exclusive(x_118)) { - lean_ctor_release(x_118, 0); - lean_ctor_release(x_118, 1); - lean_ctor_release(x_118, 2); - x_122 = x_118; -} else { - lean_dec_ref(x_118); - x_122 = lean_box(0); -} -if (lean_obj_tag(x_121) == 0) -{ -lean_dec(x_122); -lean_dec(x_115); -lean_dec(x_107); -return x_97; -} -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; 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_dec(x_97); -x_123 = lean_ctor_get(x_121, 0); -lean_inc(x_123); -if (lean_is_exclusive(x_121)) { - lean_ctor_release(x_121, 0); - x_124 = x_121; -} else { - lean_dec_ref(x_121); - x_124 = lean_box(0); -} -x_125 = lean_ctor_get(x_123, 0); -lean_inc(x_125); -x_126 = lean_ctor_get(x_123, 1); -lean_inc(x_126); -x_127 = lean_ctor_get(x_123, 2); -lean_inc(x_127); -lean_dec(x_123); -x_128 = lean_string_utf8_extract(x_125, x_126, x_127); -lean_dec(x_127); -lean_dec(x_126); -lean_dec(x_125); -x_129 = l_Array_foldlMUnsafe_fold___at_Lean_Environment_displayStats___spec__8___closed__3; -x_130 = lean_string_append(x_128, x_129); -x_131 = lean_ctor_get(x_115, 0); -lean_inc(x_131); -x_132 = lean_ctor_get(x_115, 1); -lean_inc(x_132); -x_133 = lean_ctor_get(x_115, 2); -lean_inc(x_133); -if (lean_is_exclusive(x_115)) { - lean_ctor_release(x_115, 0); - lean_ctor_release(x_115, 1); - lean_ctor_release(x_115, 2); - x_134 = x_115; -} else { - lean_dec_ref(x_115); - x_134 = lean_box(0); -} -x_135 = lean_string_utf8_extract(x_131, x_132, x_133); -lean_dec(x_133); -lean_dec(x_132); -lean_dec(x_131); -x_136 = lean_string_append(x_130, x_135); -lean_dec(x_135); -x_137 = lean_string_utf8_byte_size(x_136); -if (lean_is_scalar(x_134)) { - x_138 = lean_alloc_ctor(0, 3, 0); -} else { - x_138 = x_134; -} -lean_ctor_set(x_138, 0, x_136); -lean_ctor_set(x_138, 1, x_106); -lean_ctor_set(x_138, 2, x_137); -if (lean_is_scalar(x_124)) { - x_139 = lean_alloc_ctor(1, 1, 0); -} else { - x_139 = x_124; -} -lean_ctor_set(x_139, 0, x_138); -if (lean_is_scalar(x_122)) { - x_140 = lean_alloc_ctor(0, 3, 0); -} else { - x_140 = x_122; -} -lean_ctor_set(x_140, 0, x_119); -lean_ctor_set(x_140, 1, x_120); -lean_ctor_set(x_140, 2, x_139); -x_141 = l_Lean_Syntax_setTailInfo(x_107, x_140); -return x_141; -} -} -else -{ -lean_dec(x_120); -lean_dec(x_118); -lean_dec(x_115); -lean_dec(x_107); -return x_97; -} -} -else -{ -lean_dec(x_119); -lean_dec(x_118); -lean_dec(x_115); -lean_dec(x_107); -return x_97; -} -} -} -} -} -else -{ -lean_dec(x_113); -lean_dec(x_111); -lean_dec(x_110); -lean_dec(x_109); -lean_dec(x_107); -return x_97; -} -} -else -{ -lean_dec(x_112); -lean_dec(x_111); -lean_dec(x_110); -lean_dec(x_109); -lean_dec(x_107); -return x_97; -} -} -else -{ -lean_dec(x_108); -lean_dec(x_107); -return x_97; -} -} -} -} -} -} -else -{ -return x_1; -} -} -} -lean_object* initialize_Init(lean_object*); -lean_object* initialize_Lean_Parser_Basic(lean_object*); -static bool _G_initialized = false; -lean_object* initialize_Lean_Parser_Transform(lean_object* w) { -lean_object * res; -if (_G_initialized) return lean_io_result_mk_ok(lean_box(0)); -_G_initialized = true; -res = initialize_Init(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -res = initialize_Lean_Parser_Basic(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -return lean_io_result_mk_ok(lean_box(0)); -} -#ifdef __cplusplus -} -#endif diff --git a/stage0/stdlib/Lean/Server/ServerBin.c b/stage0/stdlib/Lean/Server/ServerBin.c deleted file mode 100644 index edda8e79fa..0000000000 --- a/stage0/stdlib/Lean/Server/ServerBin.c +++ /dev/null @@ -1,330 +0,0 @@ -// Lean compiler output -// Module: Lean.Server.ServerBin -// Imports: Init Init.System.IO Lean.Server -#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_object* lean_get_stdin(lean_object*); -lean_object* lean_io_error_to_string(lean_object*); -lean_object* _lean_main(lean_object*, lean_object*); -lean_object* lean_get_stderr(lean_object*); -lean_object* l_main___boxed__const__1; -lean_object* l_IO_getStdin___at_main___spec__1(lean_object*); -lean_object* lean_init_search_path(lean_object*, lean_object*); -lean_object* lean_get_stdout(lean_object*); -lean_object* l_IO_FS_Stream_putStrLn___at_Lean_Server_Test_runWithInputFile___spec__1(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Server_initAndRunServer(lean_object*, lean_object*, lean_object*); -lean_object* l_IO_getStdin___at_main___spec__1(lean_object* x_1) { -_start: -{ -lean_object* x_2; -x_2 = lean_get_stdin(x_1); -return x_2; -} -} -static lean_object* _init_l_main___boxed__const__1() { -_start: -{ -uint32_t x_1; lean_object* x_2; -x_1 = 0; -x_2 = lean_box_uint32(x_1); -return x_2; -} -} -lean_object* _lean_main(lean_object* x_1, lean_object* x_2) { -_start: -{ -lean_object* x_3; -lean_dec(x_1); -x_3 = lean_get_stdin(x_2); -if (lean_obj_tag(x_3) == 0) -{ -lean_object* x_4; lean_object* x_5; lean_object* x_6; -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(x_3); -x_6 = lean_get_stdout(x_5); -if (lean_obj_tag(x_6) == 0) -{ -lean_object* x_7; lean_object* x_8; lean_object* x_9; -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(x_6); -x_9 = lean_get_stderr(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; -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(x_9); -x_12 = lean_box(0); -x_13 = lean_init_search_path(x_12, x_11); -if (lean_obj_tag(x_13) == 0) -{ -lean_object* x_14; lean_object* x_15; -x_14 = lean_ctor_get(x_13, 1); -lean_inc(x_14); -lean_dec(x_13); -x_15 = l_Lean_Server_initAndRunServer(x_4, x_7, x_14); -if (lean_obj_tag(x_15) == 0) -{ -uint8_t x_16; -lean_dec(x_10); -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); -lean_dec(x_17); -x_18 = l_main___boxed__const__1; -lean_ctor_set(x_15, 0, x_18); -return x_15; -} -else -{ -lean_object* x_19; lean_object* x_20; lean_object* x_21; -x_19 = lean_ctor_get(x_15, 1); -lean_inc(x_19); -lean_dec(x_15); -x_20 = l_main___boxed__const__1; -x_21 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_21, 0, x_20); -lean_ctor_set(x_21, 1, x_19); -return x_21; -} -} -else -{ -lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; -x_22 = lean_ctor_get(x_15, 0); -lean_inc(x_22); -x_23 = lean_ctor_get(x_15, 1); -lean_inc(x_23); -lean_dec(x_15); -x_24 = lean_io_error_to_string(x_22); -x_25 = l_IO_FS_Stream_putStrLn___at_Lean_Server_Test_runWithInputFile___spec__1(x_10, x_24, x_23); -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; -x_27 = lean_ctor_get(x_25, 0); -lean_dec(x_27); -x_28 = l_main___boxed__const__1; -lean_ctor_set(x_25, 0, x_28); -return x_25; -} -else -{ -lean_object* x_29; lean_object* x_30; lean_object* x_31; -x_29 = lean_ctor_get(x_25, 1); -lean_inc(x_29); -lean_dec(x_25); -x_30 = l_main___boxed__const__1; -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_25); -if (x_32 == 0) -{ -return x_25; -} -else -{ -lean_object* x_33; lean_object* x_34; lean_object* x_35; -x_33 = lean_ctor_get(x_25, 0); -x_34 = lean_ctor_get(x_25, 1); -lean_inc(x_34); -lean_inc(x_33); -lean_dec(x_25); -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_36; -lean_dec(x_10); -lean_dec(x_7); -lean_dec(x_4); -x_36 = !lean_is_exclusive(x_13); -if (x_36 == 0) -{ -return x_13; -} -else -{ -lean_object* x_37; lean_object* x_38; lean_object* x_39; -x_37 = lean_ctor_get(x_13, 0); -x_38 = lean_ctor_get(x_13, 1); -lean_inc(x_38); -lean_inc(x_37); -lean_dec(x_13); -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; -} -} -} -else -{ -uint8_t x_40; -lean_dec(x_7); -lean_dec(x_4); -x_40 = !lean_is_exclusive(x_9); -if (x_40 == 0) -{ -return x_9; -} -else -{ -lean_object* x_41; lean_object* x_42; lean_object* x_43; -x_41 = lean_ctor_get(x_9, 0); -x_42 = lean_ctor_get(x_9, 1); -lean_inc(x_42); -lean_inc(x_41); -lean_dec(x_9); -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 -{ -uint8_t x_44; -lean_dec(x_4); -x_44 = !lean_is_exclusive(x_6); -if (x_44 == 0) -{ -return x_6; -} -else -{ -lean_object* x_45; lean_object* x_46; lean_object* x_47; -x_45 = lean_ctor_get(x_6, 0); -x_46 = lean_ctor_get(x_6, 1); -lean_inc(x_46); -lean_inc(x_45); -lean_dec(x_6); -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; -x_48 = !lean_is_exclusive(x_3); -if (x_48 == 0) -{ -return x_3; -} -else -{ -lean_object* x_49; lean_object* x_50; lean_object* x_51; -x_49 = lean_ctor_get(x_3, 0); -x_50 = lean_ctor_get(x_3, 1); -lean_inc(x_50); -lean_inc(x_49); -lean_dec(x_3); -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; -} -} -} -} -lean_object* initialize_Init(lean_object*); -lean_object* initialize_Init_System_IO(lean_object*); -lean_object* initialize_Lean_Server(lean_object*); -static bool _G_initialized = false; -lean_object* initialize_Lean_Server_ServerBin(lean_object* w) { -lean_object * res; -if (_G_initialized) return lean_io_result_mk_ok(lean_box(0)); -_G_initialized = true; -res = initialize_Init(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -res = initialize_Init_System_IO(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -res = initialize_Lean_Server(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -l_main___boxed__const__1 = _init_l_main___boxed__const__1(); -lean_mark_persistent(l_main___boxed__const__1); -return lean_io_result_mk_ok(lean_box(0)); -} -void lean_initialize(); - - #if defined(WIN32) || defined(_WIN32) - #include - #endif - - int main(int argc, char ** argv) { - #if defined(WIN32) || defined(_WIN32) - SetErrorMode(SEM_FAILCRITICALERRORS); - #endif - lean_object* in; lean_object* res; -lean_initialize(); -res = initialize_Lean_Server_ServerBin(lean_io_mk_world()); -lean_io_mark_end_initialization(); -if (lean_io_result_is_ok(res)) { -lean_dec_ref(res); -lean_init_task_manager(); -in = lean_box(0); -int i = argc; -while (i > 1) { - lean_object* n; - i--; - n = lean_alloc_ctor(1,2,0); lean_ctor_set(n, 0, lean_mk_string(argv[i])); lean_ctor_set(n, 1, in); - in = n; -} -res = _lean_main(in, lean_io_mk_world()); -} -if (lean_io_result_is_ok(res)) { - int ret = lean_unbox(lean_io_result_get_value(res)); - lean_dec_ref(res); - return ret; -} else { - lean_io_result_show_error(res); - lean_dec_ref(res); - return 1; -} -} -#ifdef __cplusplus -} -#endif diff --git a/stage0/stdlib/Lean/Util/SCC.c b/stage0/stdlib/Lean/Util/SCC.c index 93a31e5f75..25bbb257b1 100644 --- a/stage0/stdlib/Lean/Util/SCC.c +++ b/stage0/stdlib/Lean/Util/SCC.c @@ -28,12 +28,13 @@ lean_object* l___private_Lean_Util_SCC_0__Lean_SCC_modifyDataOf(lean_object*); lean_object* l___private_Lean_Util_SCC_0__Lean_SCC_resetOnStack(lean_object*); lean_object* l___private_Lean_Util_SCC_0__Lean_SCC_addSCC_add_match__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_nat_add(lean_object*, lean_object*); +lean_object* l___private_Lean_Util_SCC_0__Lean_SCC_sccAux___rarg___closed__2; lean_object* l___private_Lean_Util_SCC_0__Lean_SCC_sccAux___rarg___closed__1; lean_object* l___private_Lean_Util_SCC_0__Lean_SCC_getDataOf_match__1(lean_object*); -uint8_t lean_nat_dec_eq(lean_object*, lean_object*); lean_object* l_Lean_SCC_scc_match__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_SCC_scc_match__1___rarg(lean_object*, lean_object*); lean_object* l___private_Lean_Util_SCC_0__Lean_SCC_addSCC___rarg(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Util_SCC_0__Lean_SCC_sccAux___rarg___closed__3; lean_object* l___private_Lean_Util_SCC_0__Lean_SCC_addSCC(lean_object*); lean_object* l_Std_HashMapImp_find_x3f___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Util_SCC_0__Lean_SCC_addSCC_add(lean_object*); @@ -45,6 +46,7 @@ lean_object* l___private_Lean_Util_SCC_0__Lean_SCC_updateLowLinkOf___rarg(lean_o lean_object* l___private_Lean_Util_SCC_0__Lean_SCC_getDataOf___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Util_SCC_0__Lean_SCC_updateLowLinkOf_match__1(lean_object*); uint8_t l_Lean_SCC_Data_onStack___default; +lean_object* l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_SCC_State_stack___default(lean_object*); lean_object* l___private_Lean_Util_SCC_0__Lean_SCC_modifyDataOf___at___private_Lean_Util_SCC_0__Lean_SCC_resetOnStack___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Util_SCC_0__Lean_SCC_sccAux(lean_object*); @@ -57,6 +59,7 @@ lean_object* l___private_Lean_Util_SCC_0__Lean_SCC_addSCC_add_match__1(lean_obje lean_object* l___private_Lean_Util_SCC_0__Lean_SCC_updateLowLinkOf_match__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Util_SCC_0__Lean_SCC_updateLowLinkOf___rarg___lambda__1(lean_object*, lean_object*); lean_object* l___private_Lean_Util_SCC_0__Lean_SCC_modifyDataOf_match__1(lean_object*); +lean_object* l_instBEq___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_StateT_instMonadStateT___rarg(lean_object*); lean_object* l___private_Lean_Util_SCC_0__Lean_SCC_resetOnStack___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_List_forM___rarg(lean_object*, lean_object*, lean_object*, lean_object*); @@ -69,6 +72,7 @@ lean_object* l_Lean_SCC_scc___rarg___lambda__1(lean_object*, lean_object*, lean_ lean_object* l_Std_HashMapImp_insert___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_SCC_scc_match__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Util_SCC_0__Lean_SCC_modifyDataOf___at___private_Lean_Util_SCC_0__Lean_SCC_updateLowLinkOf___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Nat_decEq___boxed(lean_object*, lean_object*); uint8_t lean_nat_dec_lt(lean_object*, lean_object*); lean_object* l_Lean_SCC_State_nextIndex___default; static lean_object* _init_l_Lean_SCC_Data_index_x3f___default() { @@ -1406,10 +1410,28 @@ x_2 = l_StateT_instMonadStateT___rarg(x_1); return x_2; } } +static lean_object* _init_l___private_Lean_Util_SCC_0__Lean_SCC_sccAux___rarg___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Nat_decEq___boxed), 2, 0); +return x_1; +} +} +static lean_object* _init_l___private_Lean_Util_SCC_0__Lean_SCC_sccAux___rarg___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___private_Lean_Util_SCC_0__Lean_SCC_sccAux___rarg___closed__2; +x_2 = lean_alloc_closure((void*)(l_instBEq___rarg), 3, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} lean_object* l___private_Lean_Util_SCC_0__Lean_SCC_sccAux___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { -lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_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_6; lean_object* x_7; lean_object* x_8; 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_inc(x_4); lean_inc(x_2); lean_inc(x_1); @@ -1438,163 +1460,73 @@ lean_inc(x_4); lean_inc(x_2); lean_inc(x_1); x_14 = l___private_Lean_Util_SCC_0__Lean_SCC_getDataOf___rarg(x_1, x_2, x_4, x_13); -x_15 = lean_ctor_get(x_14, 0); -lean_inc(x_15); -x_16 = lean_ctor_get(x_15, 1); -lean_inc(x_16); -if (lean_obj_tag(x_16) == 0) +x_15 = !lean_is_exclusive(x_14); +if (x_15 == 0) { -lean_object* x_17; -x_17 = lean_ctor_get(x_15, 0); -lean_inc(x_17); -lean_dec(x_15); -if (lean_obj_tag(x_17) == 0) -{ -lean_object* x_18; lean_object* x_19; -x_18 = lean_ctor_get(x_14, 1); +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; +x_16 = lean_ctor_get(x_14, 0); +x_17 = lean_ctor_get(x_14, 1); +x_18 = lean_ctor_get(x_16, 1); lean_inc(x_18); -lean_dec(x_14); -x_19 = l___private_Lean_Util_SCC_0__Lean_SCC_addSCC___rarg(x_1, x_2, x_4, x_18); -return x_19; -} -else -{ -uint8_t x_20; -lean_dec(x_17); -lean_dec(x_4); -lean_dec(x_2); -lean_dec(x_1); -x_20 = !lean_is_exclusive(x_14); -if (x_20 == 0) -{ -lean_object* x_21; lean_object* x_22; -x_21 = lean_ctor_get(x_14, 0); +x_19 = lean_ctor_get(x_16, 0); +lean_inc(x_19); +lean_dec(x_16); +x_20 = l___private_Lean_Util_SCC_0__Lean_SCC_sccAux___rarg___closed__3; +x_21 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____rarg(x_20, x_18, x_19); +x_22 = lean_unbox(x_21); lean_dec(x_21); -x_22 = lean_box(0); -lean_ctor_set(x_14, 0, x_22); -return x_14; -} -else +if (x_22 == 0) { -lean_object* x_23; lean_object* x_24; lean_object* x_25; -x_23 = lean_ctor_get(x_14, 1); -lean_inc(x_23); -lean_dec(x_14); -x_24 = lean_box(0); -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 -{ -lean_object* x_26; -x_26 = lean_ctor_get(x_15, 0); -lean_inc(x_26); -lean_dec(x_15); -if (lean_obj_tag(x_26) == 0) -{ -uint8_t x_27; -lean_dec(x_16); +lean_object* x_23; lean_dec(x_4); lean_dec(x_2); lean_dec(x_1); -x_27 = !lean_is_exclusive(x_14); -if (x_27 == 0) -{ -lean_object* x_28; lean_object* x_29; -x_28 = lean_ctor_get(x_14, 0); -lean_dec(x_28); -x_29 = lean_box(0); -lean_ctor_set(x_14, 0, x_29); +x_23 = lean_box(0); +lean_ctor_set(x_14, 0, x_23); return x_14; } else { -lean_object* x_30; lean_object* x_31; lean_object* x_32; -x_30 = lean_ctor_get(x_14, 1); -lean_inc(x_30); -lean_dec(x_14); -x_31 = lean_box(0); -x_32 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_32, 0, x_31); -lean_ctor_set(x_32, 1, x_30); -return x_32; -} -} -else -{ -uint8_t x_33; -x_33 = !lean_is_exclusive(x_14); -if (x_33 == 0) -{ -lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; uint8_t x_38; -x_34 = lean_ctor_get(x_14, 1); -x_35 = lean_ctor_get(x_14, 0); -lean_dec(x_35); -x_36 = lean_ctor_get(x_16, 0); -lean_inc(x_36); -lean_dec(x_16); -x_37 = lean_ctor_get(x_26, 0); -lean_inc(x_37); -lean_dec(x_26); -x_38 = lean_nat_dec_eq(x_36, x_37); -lean_dec(x_37); -lean_dec(x_36); -if (x_38 == 0) -{ -lean_object* x_39; -lean_dec(x_4); -lean_dec(x_2); -lean_dec(x_1); -x_39 = lean_box(0); -lean_ctor_set(x_14, 0, x_39); -return x_14; -} -else -{ -lean_object* x_40; +lean_object* x_24; lean_free_object(x_14); -x_40 = l___private_Lean_Util_SCC_0__Lean_SCC_addSCC___rarg(x_1, x_2, x_4, x_34); -return x_40; +x_24 = l___private_Lean_Util_SCC_0__Lean_SCC_addSCC___rarg(x_1, x_2, x_4, x_17); +return x_24; } } else { -lean_object* x_41; lean_object* x_42; lean_object* x_43; uint8_t x_44; -x_41 = lean_ctor_get(x_14, 1); -lean_inc(x_41); +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_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_42 = lean_ctor_get(x_16, 0); -lean_inc(x_42); -lean_dec(x_16); -x_43 = lean_ctor_get(x_26, 0); -lean_inc(x_43); -lean_dec(x_26); -x_44 = lean_nat_dec_eq(x_42, x_43); -lean_dec(x_43); -lean_dec(x_42); -if (x_44 == 0) +x_27 = lean_ctor_get(x_25, 1); +lean_inc(x_27); +x_28 = lean_ctor_get(x_25, 0); +lean_inc(x_28); +lean_dec(x_25); +x_29 = l___private_Lean_Util_SCC_0__Lean_SCC_sccAux___rarg___closed__3; +x_30 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_649____rarg(x_29, x_27, x_28); +x_31 = lean_unbox(x_30); +lean_dec(x_30); +if (x_31 == 0) { -lean_object* x_45; lean_object* x_46; +lean_object* x_32; lean_object* x_33; lean_dec(x_4); lean_dec(x_2); lean_dec(x_1); -x_45 = lean_box(0); -x_46 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_46, 0, x_45); -lean_ctor_set(x_46, 1, x_41); -return x_46; +x_32 = lean_box(0); +x_33 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_33, 0, x_32); +lean_ctor_set(x_33, 1, x_26); +return x_33; } else { -lean_object* x_47; -x_47 = l___private_Lean_Util_SCC_0__Lean_SCC_addSCC___rarg(x_1, x_2, x_4, x_41); -return x_47; -} -} +lean_object* x_34; +x_34 = l___private_Lean_Util_SCC_0__Lean_SCC_addSCC___rarg(x_1, x_2, x_4, x_26); +return x_34; } } } @@ -1756,6 +1688,10 @@ l___private_Lean_Util_SCC_0__Lean_SCC_resetOnStack___rarg___closed__1 = _init_l_ lean_mark_persistent(l___private_Lean_Util_SCC_0__Lean_SCC_resetOnStack___rarg___closed__1); l___private_Lean_Util_SCC_0__Lean_SCC_sccAux___rarg___closed__1 = _init_l___private_Lean_Util_SCC_0__Lean_SCC_sccAux___rarg___closed__1(); lean_mark_persistent(l___private_Lean_Util_SCC_0__Lean_SCC_sccAux___rarg___closed__1); +l___private_Lean_Util_SCC_0__Lean_SCC_sccAux___rarg___closed__2 = _init_l___private_Lean_Util_SCC_0__Lean_SCC_sccAux___rarg___closed__2(); +lean_mark_persistent(l___private_Lean_Util_SCC_0__Lean_SCC_sccAux___rarg___closed__2); +l___private_Lean_Util_SCC_0__Lean_SCC_sccAux___rarg___closed__3 = _init_l___private_Lean_Util_SCC_0__Lean_SCC_sccAux___rarg___closed__3(); +lean_mark_persistent(l___private_Lean_Util_SCC_0__Lean_SCC_sccAux___rarg___closed__3); return lean_io_result_mk_ok(lean_box(0)); } #ifdef __cplusplus