From 03aea90981bfa8d11a5695073cdde8fc70f6fd01 Mon Sep 17 00:00:00 2001 From: Sebastian Ullrich Date: Sat, 13 Mar 2021 12:41:13 +0100 Subject: [PATCH] chore: update stage0 --- stage0/src/Lean/Elab/Syntax.lean | 11 +- stage0/src/Lean/KeyedDeclsAttribute.lean | 40 +- .../PrettyPrinter/Delaborator/Builtins.lean | 7 +- stage0/stdlib/Lean/Elab/Command.c | 238 +- stage0/stdlib/Lean/Elab/DefView.c | 8 +- stage0/stdlib/Lean/Elab/MutualDef.c | 8 +- stage0/stdlib/Lean/Elab/Syntax.c | 9879 +++++++++-------- stage0/stdlib/Lean/Elab/Tactic/Basic.c | 252 +- stage0/stdlib/Lean/Elab/Tactic/Induction.c | 18 +- stage0/stdlib/Lean/Elab/Term.c | 122 +- stage0/stdlib/Lean/Elab/Util.c | 123 +- stage0/stdlib/Lean/KeyedDeclsAttribute.c | 1523 +-- stage0/stdlib/Lean/Parser/Do.c | 4 +- stage0/stdlib/Lean/Parser/Extension.c | 20 +- stage0/stdlib/Lean/Parser/Term.c | 4 +- stage0/stdlib/Lean/ParserCompiler.c | 10 +- .../Lean/PrettyPrinter/Delaborator/Basic.c | 128 +- .../Lean/PrettyPrinter/Delaborator/Builtins.c | 984 +- stage0/stdlib/Lean/PrettyPrinter/Formatter.c | 2 +- .../stdlib/Lean/PrettyPrinter/Parenthesizer.c | 2 +- 20 files changed, 7010 insertions(+), 6373 deletions(-) diff --git a/stage0/src/Lean/Elab/Syntax.lean b/stage0/src/Lean/Elab/Syntax.lean index f7b97e13c9..70ddf2bc33 100644 --- a/stage0/src/Lean/Elab/Syntax.lean +++ b/stage0/src/Lean/Elab/Syntax.lean @@ -458,12 +458,9 @@ def expandNotationItemIntoPattern (stx : Syntax) : CommandElabM Syntax := /-- Try to derive a `SimpleDelab` from a notation. The notation must be of the form `notation ... => c var_1 ... var_n` where `c` is a declaration in the current scope and the `var_i` are a permutation of the LHS vars. -/ -def mkSimpleDelab (vars : Array Syntax) (pat qrhs : Syntax) : OptionT CommandElabM Syntax := +def mkSimpleDelab (vars : Array Syntax) (pat qrhs : Syntax) : OptionT CommandElabM Syntax := do match qrhs with - | `($c:ident $args*) => go c args - | `($c:ident) => go c #[] - | _ => failure - where go c args := do + | `($c:ident $args*) => let [(c, [])] ← resolveGlobalName c.getId | failure guard <| args.all (Syntax.isIdent ∘ getAntiquotTerm) guard <| args.allDiff @@ -472,6 +469,10 @@ def mkSimpleDelab (vars : Array Syntax) (pat qrhs : Syntax) : OptionT CommandEla `(@[appUnexpander $(mkIdent c):ident] def unexpand : Lean.PrettyPrinter.Unexpander := fun | `($qrhs) => `($pat) | _ => throw ()) + | `($c:ident) => + let [(c, [])] ← resolveGlobalName c.getId | failure + `(@[appUnexpander $(mkIdent c):ident] def unexpand : Lean.PrettyPrinter.Unexpander := fun _ => `($pat)) + | _ => failure private def expandNotationAux (ref : Syntax) (currNamespace : Name) (attrKind : AttributeKind) (prec? : Option Syntax) (name? : Option Syntax) (prio? : Option Syntax) (items : Array Syntax) (rhs : Syntax) : CommandElabM Syntax := do diff --git a/stage0/src/Lean/KeyedDeclsAttribute.lean b/stage0/src/Lean/KeyedDeclsAttribute.lean index 2fcbf850b6..9e31ba9263 100644 --- a/stage0/src/Lean/KeyedDeclsAttribute.lean +++ b/stage0/src/Lean/KeyedDeclsAttribute.lean @@ -6,6 +6,7 @@ Authors: Leonardo de Moura, Sebastian Ullrich import Lean.Attributes import Lean.Compiler.InitAttr import Lean.ToExpr +import Lean.ScopedEnvExtension /-! A builder for attributes that are applied to declarations of a common type and @@ -38,6 +39,7 @@ structure Def (γ : Type) where structure OLeanEntry where key : Key decl : Name -- Name of a declaration stored in the environment which has type `mkConst Def.valueTypeName`. + deriving Inhabited structure AttributeEntry (γ : Type) extends OLeanEntry where /- Recall that we cannot store `γ` into .olean files because it is a closure. @@ -51,7 +53,7 @@ structure ExtensionState (γ : Type) where table : Table γ := {} deriving Inhabited -abbrev Extension (γ : Type) := PersistentEnvExtension OLeanEntry (AttributeEntry γ) (ExtensionState γ) +abbrev Extension (γ : Type) := ScopedEnvExtension OLeanEntry (AttributeEntry γ) (ExtensionState γ) end KeyedDeclsAttribute @@ -70,23 +72,6 @@ def Table.insert {γ : Type} (table : Table γ) (k : Key) (v : γ) : Table γ := | some vs => SMap.insert table k (v::vs) | none => SMap.insert table k [v] -private def mkInitial {γ} (tableRef : IO.Ref (Table γ)) : IO (ExtensionState γ) := do - let table ← tableRef.get - pure { table := table } - -private unsafe def addImported {γ} (df : Def γ) (tableRef : IO.Ref (Table γ)) (es : Array (Array OLeanEntry)) : ImportM (ExtensionState γ) := do - let ctx ← read - let mut table ← tableRef.get - for entries in es do - for entry in entries do - match ctx.env.evalConstCheck γ ctx.opts df.valueTypeName entry.decl with - | Except.ok f => table := table.insert entry.key f - | Except.error ex => throw (IO.userError ex) - return { table := table } - -private def addExtensionEntry {γ} (s : ExtensionState γ) (e : AttributeEntry γ) : ExtensionState γ := - { table := s.table.insert e.key e.value, newEntries := e.toOLeanEntry :: s.newEntries } - def addBuiltin {γ} (attr : KeyedDeclsAttribute γ) (key : Key) (val : γ) : IO Unit := attr.tableRef.modify fun m => m.insert key val @@ -107,16 +92,19 @@ def declareBuiltin {γ} (df : Def γ) (attrDeclName : Name) (env : Environment) throw (IO.userError s!"failed to emit registration code for builtin '{declName}': {msg}") | Except.ok env => IO.ofExcept (setBuiltinInitAttr env name) -/- TODO: add support for scoped attributes -/ protected unsafe def init {γ} (df : Def γ) (attrDeclName : Name) : IO (KeyedDeclsAttribute γ) := do let tableRef ← IO.mkRef ({} : Table γ) - let ext : Extension γ ← registerPersistentEnvExtension { - name := df.name, - mkInitial := mkInitial tableRef, - addImportedFn := addImported df tableRef, - addEntryFn := addExtensionEntry, - exportEntriesFn := fun s => s.newEntries.reverse.toArray, - statsFn := fun s => f!"number of local entries: {s.newEntries.length}" + let ext : Extension γ ← registerScopedEnvExtension { + name := df.name + mkInitial := do return { table := (← tableRef.get) } + ofOLeanEntry := fun s entry => do + let ctx ← read + match ctx.env.evalConstCheck γ ctx.opts df.valueTypeName entry.decl with + | Except.ok f => return { toOLeanEntry := entry, value := f } + | Except.error ex => throw (IO.userError ex) + addEntry := fun s e => + { table := s.table.insert e.key e.value, newEntries := e.toOLeanEntry :: s.newEntries } + toOLeanEntry := (·.toOLeanEntry) } unless df.builtinName.isAnonymous do registerBuiltinAttribute { diff --git a/stage0/src/Lean/PrettyPrinter/Delaborator/Builtins.lean b/stage0/src/Lean/PrettyPrinter/Delaborator/Builtins.lean index 07fe65c6ce..34001968c9 100644 --- a/stage0/src/Lean/PrettyPrinter/Delaborator/Builtins.lean +++ b/stage0/src/Lean/PrettyPrinter/Delaborator/Builtins.lean @@ -141,13 +141,16 @@ def delabAppWithUnexpander : Delab := whenPPOption getPPNotation do let Expr.const c _ _ ← pure (← getExpr).getAppFn | failure let stx ← delabAppImplicit match stx with - | `($cPP:ident $args*) => do + | `($cPP:ident $args*) => do go c stx + | `($cPP:ident) => do go c stx + | _ => pure stx +where + go c stx := do let some (f::_) ← pure <| (appUnexpanderAttribute.ext.getState (← getEnv)).table.find? c | pure stx let EStateM.Result.ok stx _ ← f stx |>.run () | pure stx pure stx - | _ => pure stx /-- State for `delabAppMatch` and helpers. -/ structure AppMatchState where diff --git a/stage0/stdlib/Lean/Elab/Command.c b/stage0/stdlib/Lean/Elab/Command.c index 2fe2ffe976..357417d2bb 100644 --- a/stage0/stdlib/Lean/Elab/Command.c +++ b/stage0/stdlib/Lean/Elab/Command.c @@ -27,7 +27,6 @@ lean_object* l_Lean_Elab_Command_elabEnd_match__1(lean_object*); lean_object* l_Lean_Elab_Command_withLogging___closed__1; lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Command_0__Lean_Elab_Command_popScopes___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Command_0__Lean_Elab_Command_getVarDecls___boxed(lean_object*); -lean_object* l_Lean_throwErrorAt___at_Lean_Elab_Command_elabCommand___spec__7(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_KVMap_setBool(lean_object*, lean_object*, uint8_t); lean_object* l_Lean_Elab_Command_elabSection(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_elabInitQuot_match__1___rarg(lean_object*, lean_object*, lean_object*); @@ -56,7 +55,6 @@ lean_object* l_ReaderT_read___at_Lean_Elab_Command_instMonadLogCommandElabM___sp lean_object* l_List_head_x21___at_Lean_Elab_Command_instMonadOptionsCommandElabM___spec__1(lean_object*); lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Command_elabOpen___spec__13___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_setEnv___at_Lean_Elab_Term_evalExpr___spec__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Elab_logTrace___at_Lean_Elab_Command_elabCommand___spec__10___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Command_0__Lean_Elab_Command_elabCommandUsing_match__1___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_instMonadInfoTreeCommandElabM___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Std_PersistentArray_mapM___at_Lean_Elab_Command_liftTermElabM___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -87,10 +85,10 @@ uint8_t l_Lean_Expr_isSyntheticSorry(lean_object*); uint8_t l_Lean_Elab_isAbortExceptionId(lean_object*); lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Elab_Command_elabUniverses___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_elabEvalUnsafe___lambda__7___closed__2; -lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_elabCommand___spec__9___boxed(lean_object*, lean_object*); extern lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_1090____closed__1; lean_object* l_Lean_Elab_Command_instMonadInfoTreeCommandElabM___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Command_elabNamespace___closed__1; +lean_object* l_Lean_throwError___at_Lean_Elab_Command_elabCommand___spec__13___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_append___rarg(lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_instMonadMacroAdapterCommandElabM___closed__4; lean_object* l_Lean_Elab_logException___at_Lean_Elab_Command_runLinters___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); @@ -111,9 +109,11 @@ lean_object* l_Lean_Elab_Command_liftIO(lean_object*); lean_object* l_Lean_Elab_Command_elabEnd___lambda__1___closed__4; lean_object* l_Lean_Elab_Command_instMonadOptionsCommandElabM___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_SourceInfo_fromRef(lean_object*); +lean_object* l_Lean_throwErrorAt___at_Lean_Elab_Command_elabCommand___spec__8___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_logUnknownDecl___at_Lean_Elab_Command_elabOpen___spec__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_mkAppM(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_commandElabAttribute; +extern lean_object* l_Lean_instInhabitedKeyedDeclsAttribute___closed__4; lean_object* lean_array_uset(lean_object*, size_t, lean_object*); lean_object* l_Lean_Elab_Command_getScope___boxed(lean_object*); lean_object* l_Lean_addDecl___at_Lean_Elab_Command_elabEvalUnsafe___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -135,7 +135,6 @@ lean_object* l_Lean_Elab_Command_elabCheck___lambda__1___boxed(lean_object*, lea lean_object* l_Lean_Elab_logAt___at_Lean_Elab_Command_runLinters___spec__2(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); lean_object* l___private_Std_Data_PersistentArray_0__Std_PersistentArray_foldlFromMAux___at___private_Lean_Elab_Command_0__Lean_Elab_Command_addTraceAsMessages___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Std_PersistentArray_mapM___at_Lean_MessageLog_errorsToWarnings___spec__1(lean_object*); -lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_elabCommand___spec__9(lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_runTermElabM___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Command_0__Lean_Elab_Command_addNamespace___boxed(lean_object*, lean_object*, lean_object*, lean_object*); size_t l_USize_sub(size_t, size_t); @@ -157,11 +156,11 @@ lean_object* l_Lean_compileDecl___at_Lean_Elab_Command_elabEvalUnsafe___spec__4( lean_object* l_Lean_Elab_Command_instMonadEnvCommandElabM___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_instMonadMacroAdapterCommandElabM; lean_object* l_Lean_Elab_Command_elabEvalUnsafe___lambda__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Std_HashMapImp_find_x3f___at_Lean_Elab_Command_elabCommand___spec__6(lean_object*, lean_object*); lean_object* lean_st_ref_get(lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_failIfSucceeds___lambda__1___closed__1; extern lean_object* l_Lean_instInhabitedParserDescr___closed__1; extern lean_object* l_Lean_Elab_logUnknownDecl___rarg___closed__1; -lean_object* l_Lean_SMap_find_x3f___at_Lean_Elab_Command_elabCommand___spec__1___boxed(lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_elabSetOption(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at_Lean_Elab_Command_expandDeclId___spec__4___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_elabEvalUnsafe___lambda__7___closed__1; @@ -187,7 +186,6 @@ lean_object* l_Lean_Elab_Command_Context_cmdPos___default; lean_object* l___regBuiltin_Lean_Elab_Command_elabVariable(lean_object*); lean_object* l_Lean_Elab_Command_liftTermElabM(lean_object*); lean_object* l___regBuiltin_Lean_Elab_Command_elabSection(lean_object*); -lean_object* l_Std_PersistentHashMap_findAux___at_Lean_Elab_Command_elabCommand___spec__3(lean_object*, size_t, lean_object*); lean_object* l_Lean_Elab_Command_getCurrMacroScope___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_Scope_currNamespace___default; lean_object* l_Lean_Elab_Command_elabEvalUnsafe___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*); @@ -212,10 +210,10 @@ extern lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_4002 lean_object* l_Lean_Elab_Command_elabCheck(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_get_size(lean_object*); extern lean_object* l_Lean_Parser_Command_in___elambda__1___closed__2; +extern lean_object* l_Lean_ScopedEnvExtension_getState___at_Lean_KeyedDeclsAttribute_getValues___spec__1___rarg___closed__1; lean_object* lean_string_append(lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_elabEvalUnsafe___lambda__2___closed__1; lean_object* l_Lean_Elab_Command_elabUniverse___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_elabCommand___spec__9___rarg(lean_object*); lean_object* l_Lean_Elab_Command_elabSynth___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_List_foldl___at_Lean_Elab_addMacroStack___spec__2(lean_object*, lean_object*, lean_object*); extern lean_object* l_Array_getEvenElems___rarg___closed__1; @@ -238,15 +236,18 @@ lean_object* l_Lean_Elab_Command_instMonadRecDepthCommandElabM___lambda__2(lean_ lean_object* l___private_Lean_Elab_Command_0__Lean_Elab_Command_mkTermContext_match__2(lean_object*); lean_object* l_Lean_Elab_Command_instMonadResolveNameCommandElabM___closed__1; lean_object* l_Lean_Elab_Command_withLogging_match__1___rarg(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_throwError___at_Lean_Elab_Command_elabCommand___spec__9(lean_object*, lean_object*, lean_object*, lean_object*); size_t l_USize_shiftRight(size_t, size_t); lean_object* l_Lean_Elab_Command_elabCommand_match__2(lean_object*); lean_object* l_Std_PersistentArray_mapM___at_Lean_Elab_Command_liftTermElabM___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_log___at_Lean_Elab_Command_runLinters___spec__3(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_getLevelNames___rarg(lean_object*, lean_object*); +lean_object* l_Std_PersistentHashMap_findAtAux___at_Lean_Elab_Command_elabCommand___spec__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_elabEvalUnsafe___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* l_Lean_Elab_Command_instMonadRefCommandElabM___closed__2; lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Command_0__Lean_Elab_Command_mkTermContext___spec__1(lean_object*, size_t, size_t, lean_object*); lean_object* l_Lean_Elab_Command_getScopes___rarg___boxed(lean_object*, lean_object*); +lean_object* l_Lean_SMap_find_x3f___at_Lean_Elab_Command_elabCommand___spec__2___boxed(lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Open_0__Lean_Elab_OpenDecl_elabOpenHiding___at_Lean_Elab_Command_elabOpen___spec__10___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_State_messages___default; uint8_t l___private_Lean_Message_0__Lean_beqMessageSeverity____x40_Lean_Message___hyg_99_(uint8_t, uint8_t); @@ -288,14 +289,15 @@ lean_object* l_Lean_Elab_Command_elabCheck___closed__3; lean_object* l___private_Std_Data_PersistentArray_0__Std_PersistentArray_foldlMAux___at___private_Lean_Elab_Command_0__Lean_Elab_Command_addTraceAsMessages___spec__10___boxed(lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Command_0__Lean_Elab_Command_getVarDecls(lean_object*); lean_object* l_Lean_Elab_Command_getLevelNames___rarg___boxed(lean_object*, lean_object*); +lean_object* l_Lean_Elab_logTrace___at_Lean_Elab_Command_elabCommand___spec__11___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Name_toStringWithSep(lean_object*, lean_object*); lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Command_0__Lean_Elab_Command_popScopes___spec__2(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Command_elabUniverses(lean_object*); lean_object* l___private_Lean_Elab_Command_0__Lean_Elab_Command_mkTermContext_match__1___rarg(lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Command_elabCheckFailure___closed__1; lean_object* l_ReaderT_bind___at_Lean_Elab_Command_instMonadInfoTreeCommandElabM___spec__1___at_Lean_Elab_Command_instMonadInfoTreeCommandElabM___spec__2___boxed(lean_object*); +lean_object* l_Lean_throwError___at_Lean_Elab_Command_elabCommand___spec__13(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_throwError___at_Lean_Elab_Term_throwErrorIfErrors___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Elab_Command_elabCommand___spec__11(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_instMonadInfoTreeCommandElabM___closed__1; lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Command_elabOpen___spec__16___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_Command_0__Lean_Elab_Command_addTraceAsMessages___spec__9___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -308,7 +310,6 @@ lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Command_runLinters___spec__ lean_object* l___private_Lean_Elab_Command_0__Lean_Elab_Command_addTraceAsMessages___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_log___at_Lean_Elab_Command_runLinters___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_elabCommand_match__2___rarg(lean_object*, lean_object*, lean_object*); -lean_object* l_Std_PersistentHashMap_find_x3f___at_Lean_Elab_Command_elabCommand___spec__2(lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_elabSynth(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Open_0__Lean_Elab_OpenDecl_addOpenDecl___at_Lean_Elab_Command_elabOpen___spec__8(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_elabCheckFailure___closed__1; @@ -329,7 +330,6 @@ lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Command_0__Lean_ lean_object* lean_array_fget(lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_modifyScope___at_Lean_Elab_Command_elabSetOption___spec__4(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MapDeclarationExtension_insert___rarg(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Std_PersistentHashMap_findAtAux___at_Lean_Elab_Command_elabCommand___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Std_Data_PersistentArray_0__Std_PersistentArray_foldlMAux___at___private_Lean_Elab_Command_0__Lean_Elab_Command_addTraceAsMessages___spec__3___boxed(lean_object*, lean_object*, lean_object*); uint8_t lean_nat_dec_eq(lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_instInhabitedCommandElabM(lean_object*); @@ -352,14 +352,12 @@ extern lean_object* l_Lean_numLitKind; lean_object* l_Lean_Elab_Command_elabEvalUnsafe___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* l_Lean_Elab_Command_instMonadEnvCommandElabM___closed__2; lean_object* l_Lean_addMessageContextPartial___at_Lean_Elab_Command_instAddMessageContextCommandElabM___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Std_AssocList_find_x3f___at_Lean_Elab_Command_elabCommand___spec__6(lean_object*, lean_object*); lean_object* lean_nat_sub(lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_instMonadResolveNameCommandElabM___closed__2; lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Command_0__Lean_Elab_Command_addTraceAsMessages___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_instInhabitedState___closed__1; extern lean_object* l_Lean_Parser_Term_implicitBinder___elambda__1___closed__1; lean_object* l_Lean_Elab_Command_elabEvalUnsafe(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_throwError___at_Lean_Elab_Command_elabCommand___spec__8(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_instMonadOptionsCommandElabM___closed__2; extern lean_object* l_Lean_choiceKind___closed__2; lean_object* l_Lean_Elab_Command_elabCheck___closed__2; @@ -383,6 +381,7 @@ lean_object* l_Lean_Elab_Command_elabCommand_match__1___rarg(lean_object*, lean_ lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Command_0__Lean_Elab_Command_mkTermContext___spec__2(lean_object*, size_t, size_t, lean_object*); lean_object* l_Lean_Elab_Command_instMonadOptionsCommandElabM___closed__1; lean_object* l_Lean_Elab_mkDeclName___at_Lean_Elab_Command_expandDeclId___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_throwErrorAt___at_Lean_Elab_Command_elabCommand___spec__8(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_Scope_varDecls___default; lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Command_0__Lean_Elab_Command_addTraceAsMessages___spec__11___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_Scope_openDecls___default; @@ -398,13 +397,11 @@ lean_object* l_Lean_replaceRef(lean_object*, lean_object*); lean_object* lean_array_get(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_Elab_Command_elabCheckFailure___spec__1(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_instMonadRecDepthCommandElabM___closed__6; -lean_object* l_Std_HashMapImp_find_x3f___at_Lean_Elab_Command_elabCommand___spec__5(lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_instAddErrorMessageContextCommandElabM___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Util_0__Lean_Elab_expandMacro_x3f___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Std_Range_forIn_loop___at___private_Lean_Elab_Command_0__Lean_Elab_Command_popScopes___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_mkLambdaFVars(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Command_0__Lean_Elab_Command_addScopes_match__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_throwErrorAt___at_Lean_Elab_Command_elabCommand___spec__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_elabEval___boxed(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Command_reduce___elambda__1___closed__2; lean_object* l_Lean_Elab_Command_expandDeclId___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -415,8 +412,8 @@ lean_object* l_Lean_Elab_elabSetOption___at_Lean_Elab_Command_elabSetOption___sp lean_object* l___private_Lean_MonadEnv_0__Lean_checkUnsupported___at_Lean_Elab_Command_elabEvalUnsafe___spec__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_MetavarContext_instInhabitedMetavarContext___closed__1; lean_object* l_Lean_Elab_Command_liftCoreM_match__1(lean_object*, lean_object*); +lean_object* l_Lean_throwError___at_Lean_Elab_Command_elabCommand___spec__9___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_modifyScope___at_Lean_Elab_Command_elabVariable___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Std_HashMapImp_find_x3f___at_Lean_Elab_Command_elabCommand___spec__5___boxed(lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Command_0__Lean_Elab_Command_mkMetaContext___closed__1; lean_object* l_Lean_Elab_Command_instMonadEnvCommandElabM___closed__3; lean_object* l_Lean_Elab_Command_instMonadResolveNameCommandElabM___closed__3; @@ -465,12 +462,11 @@ extern lean_object* l_Lean_Parser_Term_instBinder___elambda__1___closed__1; lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Command_0__Lean_Elab_Command_addTraceAsMessages___spec__12(lean_object*, lean_object*, size_t, size_t, lean_object*); lean_object* l_Lean_Elab_expandDeclId___at_Lean_Elab_Command_expandDeclId___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_synthesizeSyntheticMVars_loop(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_throwError___at_Lean_Elab_Command_elabCommand___spec__12(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_mkCommandElabAttributeUnsafe___closed__5; lean_object* l_Lean_Elab_Command_liftTermElabM___rarg___closed__3; +lean_object* l_Std_PersistentHashMap_findAux___at_Lean_Elab_Command_elabCommand___spec__4___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_elabEvalUnsafe___lambda__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* l_Lean_Elab_Command_runTermElabM___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Std_AssocList_find_x3f___at_Lean_Elab_Command_elabCommand___spec__6___boxed(lean_object*, lean_object*); lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Command_0__Lean_Elab_Command_addTraceAsMessages___spec__13(lean_object*, lean_object*, size_t, size_t, lean_object*); lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_elabNamespace___spec__1___boxed(lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Open_0__Lean_Elab_OpenDecl_elabOpenRenaming___at_Lean_Elab_Command_elabOpen___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -500,7 +496,6 @@ lean_object* l_Lean_Elab_Command_runTermElabM_match__2___rarg(lean_object*, lean lean_object* l_Lean_Name_getNumParts(lean_object*); lean_object* l_Lean_Elab_Command_hasNoErrorMessages(lean_object*); lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Command_elabOpen___spec__9___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_SMap_find_x3f___at_Lean_Elab_Command_elabCommand___spec__1(lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Command_elabEnd___closed__1; lean_object* l___private_Lean_Elab_Command_0__Lean_Elab_Command_liftAttrM___rarg(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Command_variable___elambda__1___closed__2; @@ -526,7 +521,6 @@ lean_object* l_Lean_FileMap_toPosition(lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Command_elabSynth___closed__1; lean_object* l_Lean_Elab_Command_elabSynth___closed__1; lean_object* l___private_Init_Util_0__mkPanicMessageWithDecl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l_Lean_instInhabitedKeyedDeclsAttribute___closed__1; lean_object* l_Lean_Elab_Command_getBracketedBinderIds___closed__2; extern lean_object* l_Lean_KernelException_toMessageData___closed__15; uint8_t l_Array_isEmpty___rarg(lean_object*); @@ -544,6 +538,7 @@ lean_object* l_Lean_Elab_Command_instMonadRecDepthCommandElabM___lambda__1(lean_ lean_object* l_Lean_Elab_mkElabAttribute___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_elabEnd___closed__2; lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Command_runLinters___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Std_PersistentHashMap_findAux___at_Lean_Elab_Command_elabCommand___spec__4(lean_object*, size_t, lean_object*); uint8_t l_Lean_MessageData_hasSyntheticSorry(lean_object*); lean_object* l_Lean_Elab_Command_elabCommand(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_modifyScope___closed__2; @@ -614,7 +609,6 @@ lean_object* l_Lean_Elab_Command_instMonadRecDepthCommandElabM___closed__4; extern lean_object* l_Lean_Parser_Command_universe___elambda__1___closed__2; lean_object* l_Lean_popScope___at___private_Lean_Elab_Command_0__Lean_Elab_Command_popScopes___spec__1(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_resetMessageLog(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Std_PersistentHashMap_findAux___at_Lean_Elab_Command_elabCommand___spec__3___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_instMonadEnvCommandElabM___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_failIfSucceeds___closed__1; extern lean_object* l_Lean_Expr_FindImpl_initCache; @@ -708,22 +702,23 @@ lean_object* l_Lean_setEnv___at_Lean_Elab_Command_elabInitQuot___spec__1(lean_ob lean_object* l_Lean_Elab_Command_runTermElabM_match__1(lean_object*); lean_object* l_Lean_Elab_Command_elbChoice___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Command_0__Lean_Elab_Command_mkTermContext___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_throwError___at_Lean_Elab_Command_elabCommand___spec__8___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_elabNamespace(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Command_0__Lean_Elab_Command_addTraceAsMessages___spec__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Elab_Term_State_infoState___default___closed__1; lean_object* l_List_foldlM___at_Lean_Elab_Command_elabEvalUnsafe___spec__8___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_elabCommand___spec__10(lean_object*, lean_object*); extern lean_object* l_Lean_Elab_pp_macroStack; lean_object* l_Lean_Elab_Command_getMainModule___rarg(lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_instMonadLiftTIOCommandElabM(lean_object*); +lean_object* l_Lean_SMap_find_x3f___at_Lean_Elab_Command_elabCommand___spec__2(lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Command_elabOpen(lean_object*); lean_object* l_Lean_throwError___at_Lean_Elab_Command_elabExport___spec__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_pushScope___at___private_Lean_Elab_Command_0__Lean_Elab_Command_addScope___spec__1___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_withNamespace___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_instMonadLogCommandElabM___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Std_Data_PersistentArray_0__Std_PersistentArray_foldlMAux___at___private_Lean_Elab_Command_0__Lean_Elab_Command_addTraceAsMessages___spec__10(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_ScopedEnvExtension_getState___at_Lean_Elab_Command_elabCommand___spec__1(lean_object*, lean_object*); extern lean_object* l_List_head_x21___rarg___closed__3; -lean_object* l_Lean_throwError___at_Lean_Elab_Command_elabCommand___spec__12___boxed(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Elab_throwAlreadyDeclaredUniverseLevel___rarg___closed__2; lean_object* l_Lean_Elab_Command_instInhabitedCommandElabM___closed__1; lean_object* l_Lean_Elab_Command_elabEvalUnsafe___lambda__7___closed__3; @@ -751,8 +746,10 @@ lean_object* l_Lean_Elab_Command_expandInCmd___boxed(lean_object*, lean_object*, lean_object* l___regBuiltin_Lean_Elab_Command_elabNamespace(lean_object*); lean_object* l___private_Lean_Elab_Open_0__Lean_Elab_OpenDecl_elabOpenHiding___at_Lean_Elab_Command_elabOpen___spec__10(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_elabEvalUnsafe___lambda__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_ScopedEnvExtension_getState___rarg___closed__3; lean_object* l_Lean_Elab_Command_elabVariable___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* l_Lean_Elab_Command_instMonadInfoTreeCommandElabM; +lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_elabCommand___spec__10___rarg(lean_object*); lean_object* l_List_foldl___at_Lean_Elab_Command_elabExport___spec__3(lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_getLevelNames(lean_object*); lean_object* l_Lean_Elab_Command_elabVariable___lambda__2___closed__1; @@ -766,6 +763,7 @@ lean_object* l_Lean_evalConst___at_Lean_Elab_Term_evalExpr___spec__13___rarg(lea lean_object* l___regBuiltin_Lean_Elab_Command_elabInitQuot___closed__1; extern lean_object* l_Lean_Parser_Command_openOnly___elambda__1___closed__2; lean_object* l_Lean_Elab_Command_instMonadRecDepthCommandElabM___closed__5; +lean_object* l_Lean_Elab_logTrace___at_Lean_Elab_Command_elabCommand___spec__11(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_getMainModule___boxed(lean_object*); lean_object* l_Lean_Meta_instantiateMVars(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_elabEvalUnsafe___lambda__4___closed__1; @@ -773,6 +771,7 @@ uint8_t l___private_Lean_Elab_Command_0__Lean_Elab_Command_checkEndHeader(lean_o extern size_t l_Std_PersistentHashMap_insertAux___rarg___closed__2; lean_object* l_Lean_throwError___at___private_Lean_Elab_Command_0__Lean_Elab_Command_elabCommandUsing___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_throwError___at_Lean_Elab_Command_elabEnd___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Elab_Command_elabCommand___spec__12(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Syntax_isOfKind(lean_object*, lean_object*); lean_object* l_Lean_PersistentEnvExtension_getState___rarg(lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Command_elabCheckFailure(lean_object*); @@ -810,6 +809,7 @@ lean_object* l_Lean_Elab_Command_elabSynth___lambda__2___boxed(lean_object*, lea lean_object* l_Lean_Elab_Command_elabEvalUnsafe___closed__5; lean_object* l_Lean_Elab_Command_instInhabitedCommandElabM___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_mkOptionalNode___closed__2; +lean_object* l_Std_PersistentHashMap_find_x3f___at_Lean_Elab_Command_elabCommand___spec__3(lean_object*, lean_object*); lean_object* l_Lean_Elab_expandDeclId___at_Lean_Elab_Command_expandDeclId___spec__1___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_elabChoiceAux(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_instMonadEnvCommandElabM___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*); @@ -817,6 +817,7 @@ extern lean_object* l_Lean_Core_State_ngen___default___closed__1; lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Command_liftTermElabM___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_elabVariable___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Command_0__Lean_Elab_Command_mkMetaContext; +lean_object* l_Std_AssocList_find_x3f___at_Lean_Elab_Command_elabCommand___spec__7(lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Command_0__Lean_Elab_Command_addScopes_match__1(lean_object*); lean_object* l_Lean_Elab_Command_mkCommandElabAttributeUnsafe___closed__7; lean_object* l_Lean_Elab_Command_instMonadLogCommandElabM___closed__4; @@ -832,15 +833,14 @@ lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Elab_Command_elabExport___spec_ lean_object* l_Lean_Elab_expandDeclId___at_Lean_Elab_Command_expandDeclId___spec__1___lambda__1___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_Command_0__Lean_Elab_Command_addTraceAsMessages___spec__8(lean_object*, lean_object*, size_t, size_t, lean_object*); uint8_t l_Std_PersistentArray_anyM___at_Lean_MessageLog_hasErrors___spec__1(lean_object*); +lean_object* l_Std_PersistentHashMap_findAtAux___at_Lean_Elab_Command_elabCommand___spec__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_elabEnd___lambda__1___closed__2; -lean_object* l_Std_PersistentHashMap_find_x3f___at_Lean_Elab_Command_elabCommand___spec__2___boxed(lean_object*, lean_object*); lean_object* l_Lean_throwError___at_Lean_Elab_Command_elabSetOption___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Std_PersistentHashMap_findAtAux___at_Lean_Elab_Command_elabCommand___spec__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_unsafeCast(lean_object*, lean_object*, lean_object*); lean_object* l_ReaderT_read___at_Lean_Elab_Command_instMonadLogCommandElabM___spec__1___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Elab_Command_elabCommand___spec__11___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_State_nextMacroScope___default; extern lean_object* l_Lean_scopedEnvExtensionsRef; +lean_object* l_Std_AssocList_find_x3f___at_Lean_Elab_Command_elabCommand___spec__7___boxed(lean_object*, lean_object*); lean_object* l_List_lengthAux___rarg(lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_elabInitQuot(lean_object*); lean_object* l_ReaderT_bind___at_Lean_Elab_Command_instMonadInfoTreeCommandElabM___spec__1___at_Lean_Elab_Command_instMonadInfoTreeCommandElabM___spec__2___rarg___boxed(lean_object*, lean_object*); @@ -848,6 +848,7 @@ lean_object* l___regBuiltin_Lean_Elab_Command_elabUniverse___closed__1; lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_Elab_Command_elabCheckFailure___spec__1___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_OpenDecl_elabOpenDecl___at_Lean_Elab_Command_elabOpen___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_elabCheck_match__1(lean_object*); +lean_object* l_Std_HashMapImp_find_x3f___at_Lean_Elab_Command_elabCommand___spec__6___boxed(lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_getScope___rarg(lean_object*, lean_object*); uint8_t l_Lean_Elab_isFreshInstanceName(lean_object*); lean_object* l_Lean_Elab_Command_instAddErrorMessageContextCommandElabM(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -874,6 +875,7 @@ lean_object* l_List_foldlM___at_Lean_Elab_Command_elabEvalUnsafe___spec__9___box lean_object* l_Lean_Elab_Command_State_infoState___default; extern lean_object* l_Lean_Parser_Command_synth___elambda__1___closed__2; lean_object* l_Lean_Elab_Command_elabInitQuot_match__1(lean_object*); +lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_elabCommand___spec__10___boxed(lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_elabSynth___closed__3; lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Command_0__Lean_Elab_Command_addTraceAsMessages___spec__5(lean_object*, lean_object*, size_t, size_t, lean_object*); lean_object* l_Lean_Elab_Command_mkMessageAux(lean_object*, lean_object*, lean_object*, uint8_t); @@ -883,6 +885,8 @@ lean_object* l___private_Lean_Elab_Command_0__Lean_Elab_Command_addScopes(uint8_ lean_object* l_Lean_Elab_Command_elabNamespace___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_throwError___at_Lean_Elab_Command_elabOpen___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Command_liftTermElabM___spec__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*); +lean_object* l_Std_PersistentHashMap_find_x3f___at_Lean_Elab_Command_elabCommand___spec__3___boxed(lean_object*, lean_object*); +lean_object* l_Lean_ScopedEnvExtension_getState___at_Lean_Elab_Command_elabCommand___spec__1___boxed(lean_object*, lean_object*); lean_object* l___private_Std_Data_PersistentArray_0__Std_PersistentArray_foldlFromMAux___at___private_Lean_Elab_Command_0__Lean_Elab_Command_addTraceAsMessages___spec__2(lean_object*, lean_object*, size_t, size_t, lean_object*); lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at_Lean_Elab_Command_expandDeclId___spec__4(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_getBracketedBinderIds___closed__1; @@ -916,7 +920,6 @@ lean_object* l_Std_PersistentArray_mapMAux___at_Lean_Elab_Command_liftTermElabM_ uint8_t l_Lean_Option_get___at_Lean_Meta_unfoldDefinition_x3f___spec__2(lean_object*, lean_object*); extern lean_object* l_Lean_Elab_checkNotAlreadyDeclared___rarg___lambda__1___closed__2; lean_object* l_Lean_Elab_Command_liftEIO___rarg(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Elab_logTrace___at_Lean_Elab_Command_elabCommand___spec__10(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_getBetterRef(lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_instMonadEnvCommandElabM___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_string_dec_eq(lean_object*, lean_object*); @@ -927,6 +930,7 @@ uint8_t lean_nat_dec_lt(lean_object*, lean_object*); lean_object* l_Lean_addAndCompile___at_Lean_Elab_Command_elabEvalUnsafe___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Elab_instInhabitedInfoState___closed__1; extern lean_object* l_Lean_mkAnnotation___closed__1; +lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Elab_Command_elabCommand___spec__12___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_getRef___boxed(lean_object*, lean_object*, lean_object*); extern lean_object* l_Std_PersistentArray_getAux___rarg___closed__1; lean_object* l_Lean_Elab_Command_instMonadMacroAdapterCommandElabM___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); @@ -8166,7 +8170,37 @@ x_2 = lean_alloc_closure((void*)(l_Lean_Elab_Command_elabCommand_match__3___rarg return x_2; } } -lean_object* l_Std_PersistentHashMap_findAtAux___at_Lean_Elab_Command_elabCommand___spec__4(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l_Lean_ScopedEnvExtension_getState___at_Lean_Elab_Command_elabCommand___spec__1(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_3 = lean_ctor_get(x_1, 1); +x_4 = l_Lean_PersistentEnvExtension_getState___rarg(x_3, x_2); +x_5 = lean_ctor_get(x_4, 0); +lean_inc(x_5); +lean_dec(x_4); +if (lean_obj_tag(x_5) == 0) +{ +lean_object* x_6; lean_object* x_7; lean_object* x_8; +x_6 = l_Lean_ScopedEnvExtension_getState___at_Lean_KeyedDeclsAttribute_getValues___spec__1___rarg___closed__1; +x_7 = l_Lean_ScopedEnvExtension_getState___rarg___closed__3; +x_8 = lean_panic_fn(x_6, x_7); +return x_8; +} +else +{ +lean_object* x_9; lean_object* x_10; +x_9 = lean_ctor_get(x_5, 0); +lean_inc(x_9); +lean_dec(x_5); +x_10 = lean_ctor_get(x_9, 0); +lean_inc(x_10); +lean_dec(x_9); +return x_10; +} +} +} +lean_object* l_Std_PersistentHashMap_findAtAux___at_Lean_Elab_Command_elabCommand___spec__5(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; uint8_t x_7; @@ -8208,7 +8242,7 @@ return x_15; } } } -lean_object* l_Std_PersistentHashMap_findAux___at_Lean_Elab_Command_elabCommand___spec__3(lean_object* x_1, size_t x_2, lean_object* x_3) { +lean_object* l_Std_PersistentHashMap_findAux___at_Lean_Elab_Command_elabCommand___spec__4(lean_object* x_1, size_t x_2, lean_object* x_3) { _start: { if (lean_obj_tag(x_1) == 0) @@ -8279,14 +8313,14 @@ x_21 = lean_ctor_get(x_1, 1); lean_inc(x_21); lean_dec(x_1); x_22 = lean_unsigned_to_nat(0u); -x_23 = l_Std_PersistentHashMap_findAtAux___at_Lean_Elab_Command_elabCommand___spec__4(x_20, x_21, lean_box(0), x_22, x_3); +x_23 = l_Std_PersistentHashMap_findAtAux___at_Lean_Elab_Command_elabCommand___spec__5(x_20, x_21, lean_box(0), x_22, x_3); lean_dec(x_21); lean_dec(x_20); return x_23; } } } -lean_object* l_Std_PersistentHashMap_find_x3f___at_Lean_Elab_Command_elabCommand___spec__2(lean_object* x_1, lean_object* x_2) { +lean_object* l_Std_PersistentHashMap_find_x3f___at_Lean_Elab_Command_elabCommand___spec__3(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; size_t x_4; lean_object* x_5; @@ -8294,11 +8328,11 @@ x_3 = lean_ctor_get(x_1, 0); lean_inc(x_3); lean_dec(x_1); x_4 = l_Lean_Name_hash(x_2); -x_5 = l_Std_PersistentHashMap_findAux___at_Lean_Elab_Command_elabCommand___spec__3(x_3, x_4, x_2); +x_5 = l_Std_PersistentHashMap_findAux___at_Lean_Elab_Command_elabCommand___spec__4(x_3, x_4, x_2); return x_5; } } -lean_object* l_Std_AssocList_find_x3f___at_Lean_Elab_Command_elabCommand___spec__6(lean_object* x_1, lean_object* x_2) { +lean_object* l_Std_AssocList_find_x3f___at_Lean_Elab_Command_elabCommand___spec__7(lean_object* x_1, lean_object* x_2) { _start: { if (lean_obj_tag(x_2) == 0) @@ -8330,7 +8364,7 @@ return x_9; } } } -lean_object* l_Std_HashMapImp_find_x3f___at_Lean_Elab_Command_elabCommand___spec__5(lean_object* x_1, lean_object* x_2) { +lean_object* l_Std_HashMapImp_find_x3f___at_Lean_Elab_Command_elabCommand___spec__6(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; lean_object* x_4; size_t x_5; size_t x_6; lean_object* x_7; lean_object* x_8; @@ -8340,12 +8374,12 @@ x_5 = l_Lean_Name_hash(x_2); x_6 = lean_usize_modn(x_5, x_4); lean_dec(x_4); x_7 = lean_array_uget(x_3, x_6); -x_8 = l_Std_AssocList_find_x3f___at_Lean_Elab_Command_elabCommand___spec__6(x_2, x_7); +x_8 = l_Std_AssocList_find_x3f___at_Lean_Elab_Command_elabCommand___spec__7(x_2, x_7); lean_dec(x_7); return x_8; } } -lean_object* l_Lean_SMap_find_x3f___at_Lean_Elab_Command_elabCommand___spec__1(lean_object* x_1, lean_object* x_2) { +lean_object* l_Lean_SMap_find_x3f___at_Lean_Elab_Command_elabCommand___spec__2(lean_object* x_1, lean_object* x_2) { _start: { uint8_t x_3; @@ -8358,11 +8392,11 @@ lean_inc(x_4); x_5 = lean_ctor_get(x_1, 1); lean_inc(x_5); lean_dec(x_1); -x_6 = l_Std_PersistentHashMap_find_x3f___at_Lean_Elab_Command_elabCommand___spec__2(x_5, x_2); +x_6 = l_Std_PersistentHashMap_find_x3f___at_Lean_Elab_Command_elabCommand___spec__3(x_5, x_2); if (lean_obj_tag(x_6) == 0) { lean_object* x_7; -x_7 = l_Std_HashMapImp_find_x3f___at_Lean_Elab_Command_elabCommand___spec__5(x_4, x_2); +x_7 = l_Std_HashMapImp_find_x3f___at_Lean_Elab_Command_elabCommand___spec__6(x_4, x_2); lean_dec(x_4); return x_7; } @@ -8393,13 +8427,13 @@ lean_object* x_11; lean_object* x_12; x_11 = lean_ctor_get(x_1, 0); lean_inc(x_11); lean_dec(x_1); -x_12 = l_Std_HashMapImp_find_x3f___at_Lean_Elab_Command_elabCommand___spec__5(x_11, x_2); +x_12 = l_Std_HashMapImp_find_x3f___at_Lean_Elab_Command_elabCommand___spec__6(x_11, x_2); lean_dec(x_11); return x_12; } } } -lean_object* l_Lean_throwError___at_Lean_Elab_Command_elabCommand___spec__8(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_Lean_throwError___at_Lean_Elab_Command_elabCommand___spec__9(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; uint8_t x_14; @@ -8453,7 +8487,7 @@ return x_20; } } } -lean_object* l_Lean_throwErrorAt___at_Lean_Elab_Command_elabCommand___spec__7(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l_Lean_throwErrorAt___at_Lean_Elab_Command_elabCommand___spec__8(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; uint8_t x_10; @@ -8472,7 +8506,7 @@ lean_object* x_11; lean_object* x_12; x_11 = lean_ctor_get(x_3, 6); lean_dec(x_11); lean_ctor_set(x_3, 6, x_9); -x_12 = l_Lean_throwError___at_Lean_Elab_Command_elabCommand___spec__8(x_2, x_3, x_4, x_8); +x_12 = l_Lean_throwError___at_Lean_Elab_Command_elabCommand___spec__9(x_2, x_3, x_4, x_8); return x_12; } else @@ -8499,12 +8533,12 @@ lean_ctor_set(x_19, 3, x_16); lean_ctor_set(x_19, 4, x_17); lean_ctor_set(x_19, 5, x_18); lean_ctor_set(x_19, 6, x_9); -x_20 = l_Lean_throwError___at_Lean_Elab_Command_elabCommand___spec__8(x_2, x_19, x_4, x_8); +x_20 = l_Lean_throwError___at_Lean_Elab_Command_elabCommand___spec__9(x_2, x_19, x_4, x_8); return x_20; } } } -lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_elabCommand___spec__9___rarg(lean_object* x_1) { +lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_elabCommand___spec__10___rarg(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; @@ -8515,15 +8549,15 @@ lean_ctor_set(x_3, 1, x_1); return x_3; } } -lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_elabCommand___spec__9(lean_object* x_1, lean_object* x_2) { +lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_elabCommand___spec__10(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = lean_alloc_closure((void*)(l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_elabCommand___spec__9___rarg), 1, 0); +x_3 = lean_alloc_closure((void*)(l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_elabCommand___spec__10___rarg), 1, 0); return x_3; } } -lean_object* l_Lean_Elab_logTrace___at_Lean_Elab_Command_elabCommand___spec__10(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l_Lean_Elab_logTrace___at_Lean_Elab_Command_elabCommand___spec__11(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; uint8_t x_7; lean_object* x_8; @@ -8535,7 +8569,7 @@ x_8 = l_Lean_Elab_log___at_Lean_Elab_Command_runLinters___spec__3(x_6, x_7, x_3, return x_8; } } -lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Elab_Command_elabCommand___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* l_Array_foldlMUnsafe_fold___at_Lean_Elab_Command_elabCommand___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) { _start: { uint8_t x_8; @@ -8597,7 +8631,7 @@ return x_20; } } } -lean_object* l_Lean_throwError___at_Lean_Elab_Command_elabCommand___spec__12(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_Lean_throwError___at_Lean_Elab_Command_elabCommand___spec__13(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; uint8_t x_14; @@ -8752,7 +8786,7 @@ lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_inc(x_2); x_134 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_134, 0, x_2); -x_135 = l_Lean_Elab_logTrace___at_Lean_Elab_Command_elabCommand___spec__10(x_132, x_134, x_4, x_5, x_128); +x_135 = l_Lean_Elab_logTrace___at_Lean_Elab_Command_elabCommand___spec__11(x_132, x_134, x_4, x_5, x_128); x_136 = lean_ctor_get(x_135, 1); lean_inc(x_136); lean_dec(x_135); @@ -8808,7 +8842,7 @@ x_143 = 0; x_144 = lean_usize_of_nat(x_137); lean_dec(x_137); x_145 = lean_box(0); -x_146 = l_Array_foldlMUnsafe_fold___at_Lean_Elab_Command_elabCommand___spec__11(x_123, x_143, x_144, x_145, x_4, x_5, x_120); +x_146 = l_Array_foldlMUnsafe_fold___at_Lean_Elab_Command_elabCommand___spec__12(x_123, x_143, x_144, x_145, x_4, x_5, x_120); lean_dec(x_4); lean_dec(x_123); return x_146; @@ -8861,7 +8895,7 @@ lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_inc(x_2); x_160 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_160, 0, x_2); -x_161 = l_Lean_Elab_logTrace___at_Lean_Elab_Command_elabCommand___spec__10(x_158, x_160, x_4, x_5, x_154); +x_161 = l_Lean_Elab_logTrace___at_Lean_Elab_Command_elabCommand___spec__11(x_158, x_160, x_4, x_5, x_154); x_162 = lean_ctor_get(x_161, 1); lean_inc(x_162); lean_dec(x_161); @@ -8920,7 +8954,7 @@ x_171 = 0; x_172 = lean_usize_of_nat(x_163); lean_dec(x_163); x_173 = lean_box(0); -x_174 = l_Array_foldlMUnsafe_fold___at_Lean_Elab_Command_elabCommand___spec__11(x_149, x_171, x_172, x_173, x_4, x_5, x_147); +x_174 = l_Array_foldlMUnsafe_fold___at_Lean_Elab_Command_elabCommand___spec__12(x_149, x_171, x_172, x_173, x_4, x_5, x_147); lean_dec(x_4); lean_dec(x_149); return x_174; @@ -9142,7 +9176,7 @@ lean_ctor_set(x_109, 0, x_108); x_110 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_110, 0, x_109); lean_inc(x_4); -x_111 = l_Lean_throwErrorAt___at_Lean_Elab_Command_elabCommand___spec__7(x_107, x_110, x_4, x_5, x_78); +x_111 = l_Lean_throwErrorAt___at_Lean_Elab_Command_elabCommand___spec__8(x_107, x_110, x_4, x_5, x_78); lean_dec(x_107); x_112 = lean_ctor_get(x_111, 0); lean_inc(x_112); @@ -9156,7 +9190,7 @@ goto block_61; else { lean_object* x_114; lean_object* x_115; lean_object* x_116; -x_114 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_elabCommand___spec__9___rarg(x_78); +x_114 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_elabCommand___spec__10___rarg(x_78); x_115 = lean_ctor_get(x_114, 0); lean_inc(x_115); x_116 = lean_ctor_get(x_114, 1); @@ -9182,7 +9216,7 @@ lean_dec(x_8); x_33 = l_Lean_Elab_Command_commandElabAttribute; x_34 = lean_ctor_get(x_33, 2); lean_inc(x_34); -x_35 = l_Lean_PersistentEnvExtension_getState___rarg(x_34, x_30); +x_35 = l_Lean_ScopedEnvExtension_getState___at_Lean_Elab_Command_elabCommand___spec__1(x_34, x_30); lean_dec(x_30); lean_dec(x_34); x_36 = lean_ctor_get(x_35, 1); @@ -9190,7 +9224,7 @@ lean_inc(x_36); lean_dec(x_35); lean_inc(x_2); x_37 = l_Lean_Syntax_getKind(x_2); -x_38 = l_Lean_SMap_find_x3f___at_Lean_Elab_Command_elabCommand___spec__1(x_36, x_37); +x_38 = l_Lean_SMap_find_x3f___at_Lean_Elab_Command_elabCommand___spec__2(x_36, x_37); if (lean_obj_tag(x_38) == 0) { lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; @@ -9426,7 +9460,7 @@ lean_object* x_298; lean_object* x_299; lean_object* x_300; lean_inc(x_2); x_298 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_298, 0, x_2); -x_299 = l_Lean_Elab_logTrace___at_Lean_Elab_Command_elabCommand___spec__10(x_296, x_298, x_4, x_5, x_292); +x_299 = l_Lean_Elab_logTrace___at_Lean_Elab_Command_elabCommand___spec__11(x_296, x_298, x_4, x_5, x_292); x_300 = lean_ctor_get(x_299, 1); lean_inc(x_300); lean_dec(x_299); @@ -9494,7 +9528,7 @@ x_309 = 0; x_310 = lean_usize_of_nat(x_301); lean_dec(x_301); x_311 = lean_box(0); -x_312 = l_Array_foldlMUnsafe_fold___at_Lean_Elab_Command_elabCommand___spec__11(x_287, x_309, x_310, x_311, x_4, x_5, x_284); +x_312 = l_Array_foldlMUnsafe_fold___at_Lean_Elab_Command_elabCommand___spec__12(x_287, x_309, x_310, x_311, x_4, x_5, x_284); lean_dec(x_4); lean_dec(x_287); return x_312; @@ -9713,7 +9747,7 @@ lean_ctor_set(x_274, 0, x_273); x_275 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_275, 0, x_274); lean_inc(x_4); -x_276 = l_Lean_throwErrorAt___at_Lean_Elab_Command_elabCommand___spec__7(x_272, x_275, x_4, x_5, x_247); +x_276 = l_Lean_throwErrorAt___at_Lean_Elab_Command_elabCommand___spec__8(x_272, x_275, x_4, x_5, x_247); lean_dec(x_272); x_277 = lean_ctor_get(x_276, 0); lean_inc(x_277); @@ -9727,7 +9761,7 @@ goto block_230; else { lean_object* x_279; lean_object* x_280; lean_object* x_281; -x_279 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_elabCommand___spec__9___rarg(x_247); +x_279 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_elabCommand___spec__10___rarg(x_247); x_280 = lean_ctor_get(x_279, 0); lean_inc(x_280); x_281 = lean_ctor_get(x_279, 1); @@ -9753,7 +9787,7 @@ lean_dec(x_8); x_202 = l_Lean_Elab_Command_commandElabAttribute; x_203 = lean_ctor_get(x_202, 2); lean_inc(x_203); -x_204 = l_Lean_PersistentEnvExtension_getState___rarg(x_203, x_199); +x_204 = l_Lean_ScopedEnvExtension_getState___at_Lean_Elab_Command_elabCommand___spec__1(x_203, x_199); lean_dec(x_199); lean_dec(x_203); x_205 = lean_ctor_get(x_204, 1); @@ -9761,7 +9795,7 @@ lean_inc(x_205); lean_dec(x_204); lean_inc(x_2); x_206 = l_Lean_Syntax_getKind(x_2); -x_207 = l_Lean_SMap_find_x3f___at_Lean_Elab_Command_elabCommand___spec__1(x_205, x_206); +x_207 = l_Lean_SMap_find_x3f___at_Lean_Elab_Command_elabCommand___spec__2(x_205, x_206); if (lean_obj_tag(x_207) == 0) { lean_object* x_208; lean_object* x_209; lean_object* x_210; lean_object* x_211; lean_object* x_212; lean_object* x_213; @@ -10038,7 +10072,7 @@ lean_object* x_446; lean_object* x_447; lean_object* x_448; lean_inc(x_2); x_446 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_446, 0, x_2); -x_447 = l_Lean_Elab_logTrace___at_Lean_Elab_Command_elabCommand___spec__10(x_444, x_446, x_341, x_5, x_440); +x_447 = l_Lean_Elab_logTrace___at_Lean_Elab_Command_elabCommand___spec__11(x_444, x_446, x_341, x_5, x_440); x_448 = lean_ctor_get(x_447, 1); lean_inc(x_448); lean_dec(x_447); @@ -10106,7 +10140,7 @@ x_457 = 0; x_458 = lean_usize_of_nat(x_449); lean_dec(x_449); x_459 = lean_box(0); -x_460 = l_Array_foldlMUnsafe_fold___at_Lean_Elab_Command_elabCommand___spec__11(x_435, x_457, x_458, x_459, x_341, x_5, x_432); +x_460 = l_Array_foldlMUnsafe_fold___at_Lean_Elab_Command_elabCommand___spec__12(x_435, x_457, x_458, x_459, x_341, x_5, x_432); lean_dec(x_341); lean_dec(x_435); return x_460; @@ -10325,7 +10359,7 @@ lean_ctor_set(x_422, 0, x_421); x_423 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_423, 0, x_422); lean_inc(x_341); -x_424 = l_Lean_throwErrorAt___at_Lean_Elab_Command_elabCommand___spec__7(x_420, x_423, x_341, x_5, x_395); +x_424 = l_Lean_throwErrorAt___at_Lean_Elab_Command_elabCommand___spec__8(x_420, x_423, x_341, x_5, x_395); lean_dec(x_420); x_425 = lean_ctor_get(x_424, 0); lean_inc(x_425); @@ -10339,7 +10373,7 @@ goto block_378; else { lean_object* x_427; lean_object* x_428; lean_object* x_429; -x_427 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_elabCommand___spec__9___rarg(x_395); +x_427 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_elabCommand___spec__10___rarg(x_395); x_428 = lean_ctor_get(x_427, 0); lean_inc(x_428); x_429 = lean_ctor_get(x_427, 1); @@ -10365,7 +10399,7 @@ lean_dec(x_8); x_350 = l_Lean_Elab_Command_commandElabAttribute; x_351 = lean_ctor_get(x_350, 2); lean_inc(x_351); -x_352 = l_Lean_PersistentEnvExtension_getState___rarg(x_351, x_347); +x_352 = l_Lean_ScopedEnvExtension_getState___at_Lean_Elab_Command_elabCommand___spec__1(x_351, x_347); lean_dec(x_347); lean_dec(x_351); x_353 = lean_ctor_get(x_352, 1); @@ -10373,7 +10407,7 @@ lean_inc(x_353); lean_dec(x_352); lean_inc(x_2); x_354 = l_Lean_Syntax_getKind(x_2); -x_355 = l_Lean_SMap_find_x3f___at_Lean_Elab_Command_elabCommand___spec__1(x_353, x_354); +x_355 = l_Lean_SMap_find_x3f___at_Lean_Elab_Command_elabCommand___spec__2(x_353, x_354); if (lean_obj_tag(x_355) == 0) { lean_object* x_356; lean_object* x_357; lean_object* x_358; lean_object* x_359; lean_object* x_360; lean_object* x_361; @@ -10581,7 +10615,7 @@ else lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_dec(x_1); x_81 = l_Lean_withIncRecDepth___rarg___lambda__2___closed__2; -x_82 = l_Lean_throwError___at_Lean_Elab_Command_elabCommand___spec__12(x_81, x_71, x_3, x_74); +x_82 = l_Lean_throwError___at_Lean_Elab_Command_elabCommand___spec__13(x_81, x_71, x_3, x_74); x_83 = lean_ctor_get(x_82, 0); lean_inc(x_83); x_84 = lean_ctor_get(x_82, 1); @@ -10787,106 +10821,116 @@ return x_59; } } } -lean_object* l_Std_PersistentHashMap_findAtAux___at_Lean_Elab_Command_elabCommand___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* l_Lean_ScopedEnvExtension_getState___at_Lean_Elab_Command_elabCommand___spec__1___boxed(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; +x_3 = l_Lean_ScopedEnvExtension_getState___at_Lean_Elab_Command_elabCommand___spec__1(x_1, x_2); +lean_dec(x_2); +lean_dec(x_1); +return x_3; +} +} +lean_object* l_Std_PersistentHashMap_findAtAux___at_Lean_Elab_Command_elabCommand___spec__5___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_Std_PersistentHashMap_findAtAux___at_Lean_Elab_Command_elabCommand___spec__4(x_1, x_2, x_3, x_4, x_5); +x_6 = l_Std_PersistentHashMap_findAtAux___at_Lean_Elab_Command_elabCommand___spec__5(x_1, x_2, x_3, x_4, x_5); lean_dec(x_5); lean_dec(x_2); lean_dec(x_1); return x_6; } } -lean_object* l_Std_PersistentHashMap_findAux___at_Lean_Elab_Command_elabCommand___spec__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Std_PersistentHashMap_findAux___at_Lean_Elab_Command_elabCommand___spec__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { size_t x_4; lean_object* x_5; x_4 = lean_unbox_usize(x_2); lean_dec(x_2); -x_5 = l_Std_PersistentHashMap_findAux___at_Lean_Elab_Command_elabCommand___spec__3(x_1, x_4, x_3); +x_5 = l_Std_PersistentHashMap_findAux___at_Lean_Elab_Command_elabCommand___spec__4(x_1, x_4, x_3); lean_dec(x_3); return x_5; } } -lean_object* l_Std_PersistentHashMap_find_x3f___at_Lean_Elab_Command_elabCommand___spec__2___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l_Std_PersistentHashMap_find_x3f___at_Lean_Elab_Command_elabCommand___spec__3___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l_Std_PersistentHashMap_find_x3f___at_Lean_Elab_Command_elabCommand___spec__2(x_1, x_2); +x_3 = l_Std_PersistentHashMap_find_x3f___at_Lean_Elab_Command_elabCommand___spec__3(x_1, x_2); lean_dec(x_2); return x_3; } } -lean_object* l_Std_AssocList_find_x3f___at_Lean_Elab_Command_elabCommand___spec__6___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l_Std_AssocList_find_x3f___at_Lean_Elab_Command_elabCommand___spec__7___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l_Std_AssocList_find_x3f___at_Lean_Elab_Command_elabCommand___spec__6(x_1, x_2); +x_3 = l_Std_AssocList_find_x3f___at_Lean_Elab_Command_elabCommand___spec__7(x_1, x_2); lean_dec(x_2); lean_dec(x_1); return x_3; } } -lean_object* l_Std_HashMapImp_find_x3f___at_Lean_Elab_Command_elabCommand___spec__5___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l_Std_HashMapImp_find_x3f___at_Lean_Elab_Command_elabCommand___spec__6___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l_Std_HashMapImp_find_x3f___at_Lean_Elab_Command_elabCommand___spec__5(x_1, x_2); +x_3 = l_Std_HashMapImp_find_x3f___at_Lean_Elab_Command_elabCommand___spec__6(x_1, x_2); lean_dec(x_2); lean_dec(x_1); return x_3; } } -lean_object* l_Lean_SMap_find_x3f___at_Lean_Elab_Command_elabCommand___spec__1___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l_Lean_SMap_find_x3f___at_Lean_Elab_Command_elabCommand___spec__2___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l_Lean_SMap_find_x3f___at_Lean_Elab_Command_elabCommand___spec__1(x_1, x_2); +x_3 = l_Lean_SMap_find_x3f___at_Lean_Elab_Command_elabCommand___spec__2(x_1, x_2); lean_dec(x_2); return x_3; } } -lean_object* l_Lean_throwError___at_Lean_Elab_Command_elabCommand___spec__8___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_Lean_throwError___at_Lean_Elab_Command_elabCommand___spec__9___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_throwError___at_Lean_Elab_Command_elabCommand___spec__8(x_1, x_2, x_3, x_4); +x_5 = l_Lean_throwError___at_Lean_Elab_Command_elabCommand___spec__9(x_1, x_2, x_3, x_4); lean_dec(x_3); return x_5; } } -lean_object* l_Lean_throwErrorAt___at_Lean_Elab_Command_elabCommand___spec__7___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l_Lean_throwErrorAt___at_Lean_Elab_Command_elabCommand___spec__8___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_throwErrorAt___at_Lean_Elab_Command_elabCommand___spec__7(x_1, x_2, x_3, x_4, x_5); +x_6 = l_Lean_throwErrorAt___at_Lean_Elab_Command_elabCommand___spec__8(x_1, x_2, x_3, x_4, x_5); lean_dec(x_4); lean_dec(x_1); return x_6; } } -lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_elabCommand___spec__9___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_elabCommand___spec__10___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_elabCommand___spec__9(x_1, x_2); +x_3 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_elabCommand___spec__10(x_1, x_2); lean_dec(x_2); lean_dec(x_1); return x_3; } } -lean_object* l_Lean_Elab_logTrace___at_Lean_Elab_Command_elabCommand___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* l_Lean_Elab_logTrace___at_Lean_Elab_Command_elabCommand___spec__11___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; -x_6 = l_Lean_Elab_logTrace___at_Lean_Elab_Command_elabCommand___spec__10(x_1, x_2, x_3, x_4, x_5); +x_6 = l_Lean_Elab_logTrace___at_Lean_Elab_Command_elabCommand___spec__11(x_1, x_2, x_3, x_4, x_5); lean_dec(x_4); lean_dec(x_3); return x_6; } } -lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Elab_Command_elabCommand___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* l_Array_foldlMUnsafe_fold___at_Lean_Elab_Command_elabCommand___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) { _start: { size_t x_8; size_t x_9; lean_object* x_10; @@ -10894,17 +10938,17 @@ x_8 = lean_unbox_usize(x_2); lean_dec(x_2); x_9 = lean_unbox_usize(x_3); lean_dec(x_3); -x_10 = l_Array_foldlMUnsafe_fold___at_Lean_Elab_Command_elabCommand___spec__11(x_1, x_8, x_9, x_4, x_5, x_6, x_7); +x_10 = l_Array_foldlMUnsafe_fold___at_Lean_Elab_Command_elabCommand___spec__12(x_1, x_8, x_9, x_4, x_5, x_6, x_7); lean_dec(x_5); lean_dec(x_1); return x_10; } } -lean_object* l_Lean_throwError___at_Lean_Elab_Command_elabCommand___spec__12___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_Lean_throwError___at_Lean_Elab_Command_elabCommand___spec__13___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_throwError___at_Lean_Elab_Command_elabCommand___spec__12(x_1, x_2, x_3, x_4); +x_5 = l_Lean_throwError___at_Lean_Elab_Command_elabCommand___spec__13(x_1, x_2, x_3, x_4); lean_dec(x_3); return x_5; } @@ -30536,7 +30580,7 @@ x_14 = l_Lean_Elab_throwAlreadyDeclaredUniverseLevel___rarg___closed__3; x_15 = lean_alloc_ctor(10, 2, 0); lean_ctor_set(x_15, 0, x_13); lean_ctor_set(x_15, 1, x_14); -x_16 = l_Lean_throwError___at_Lean_Elab_Command_elabCommand___spec__12(x_15, x_4, x_5, x_6); +x_16 = l_Lean_throwError___at_Lean_Elab_Command_elabCommand___spec__13(x_15, x_4, x_5, x_6); x_17 = !lean_is_exclusive(x_16); if (x_17 == 0) { @@ -30599,7 +30643,7 @@ x_16 = l_Lean_Elab_throwAlreadyDeclaredUniverseLevel___rarg___closed__3; x_17 = lean_alloc_ctor(10, 2, 0); lean_ctor_set(x_17, 0, x_15); lean_ctor_set(x_17, 1, x_16); -x_18 = l_Lean_throwError___at_Lean_Elab_Command_elabCommand___spec__12(x_17, x_2, x_3, x_7); +x_18 = l_Lean_throwError___at_Lean_Elab_Command_elabCommand___spec__13(x_17, x_2, x_3, x_7); x_19 = !lean_is_exclusive(x_18); if (x_19 == 0) { @@ -30636,7 +30680,7 @@ x_27 = l_Lean_Elab_throwAlreadyDeclaredUniverseLevel___rarg___closed__3; x_28 = lean_alloc_ctor(10, 2, 0); lean_ctor_set(x_28, 0, x_26); lean_ctor_set(x_28, 1, x_27); -x_29 = l_Lean_throwError___at_Lean_Elab_Command_elabCommand___spec__12(x_28, x_2, x_3, x_7); +x_29 = l_Lean_throwError___at_Lean_Elab_Command_elabCommand___spec__13(x_28, x_2, x_3, x_7); x_30 = !lean_is_exclusive(x_29); if (x_30 == 0) { @@ -31073,7 +31117,7 @@ x_14 = l_Lean_KernelException_toMessageData___closed__3; x_15 = lean_alloc_ctor(10, 2, 0); lean_ctor_set(x_15, 0, x_13); lean_ctor_set(x_15, 1, x_14); -x_16 = l_Lean_throwError___at_Lean_Elab_Command_elabCommand___spec__12(x_15, x_4, x_5, x_6); +x_16 = l_Lean_throwError___at_Lean_Elab_Command_elabCommand___spec__13(x_15, x_4, x_5, x_6); x_17 = !lean_is_exclusive(x_16); if (x_17 == 0) { diff --git a/stage0/stdlib/Lean/Elab/DefView.c b/stage0/stdlib/Lean/Elab/DefView.c index c52e936194..e153515880 100644 --- a/stage0/stdlib/Lean/Elab/DefView.c +++ b/stage0/stdlib/Lean/Elab/DefView.c @@ -13,7 +13,6 @@ #ifdef __cplusplus extern "C" { #endif -lean_object* l_Lean_throwErrorAt___at_Lean_Elab_Command_elabCommand___spec__7(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_MkInstanceName_collect___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_DefView_0__Lean_Elab_Command_MkInstanceName_kindReplacements___closed__7; size_t l_USize_add(size_t, size_t); @@ -61,7 +60,6 @@ extern lean_object* l_Lean_Parser_Term_depArrow___elambda__1___closed__2; lean_object* l_Lean_throwError___at_Lean_Elab_Command_mkDefViewOfInstance___spec__3(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_DefView_0__Lean_Elab_Command_MkInstanceName_kindReplacements; lean_object* lean_string_append(lean_object*, lean_object*); -lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_elabCommand___spec__9___rarg(lean_object*); lean_object* l___private_Lean_Elab_DefView_0__Lean_Elab_Command_MkInstanceName_kindReplacements___closed__1; extern lean_object* l_Lean_Parser_Term_type___elambda__1___closed__16; lean_object* l_Lean_Elab_Command_mkDefViewOfAbbrev___closed__1; @@ -105,6 +103,7 @@ lean_object* l_Lean_Elab_toAttributeKind___at_Lean_Elab_Command_mkDefViewOfInsta lean_object* l___private_Lean_Elab_DefView_0__Lean_Elab_Command_MkInstanceName_kindReplacements___closed__6; lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_DefView___hyg_1143____closed__2; lean_object* l_Lean_Elab_Command_mkDefViewOfConstant___closed__1; +lean_object* l_Lean_throwErrorAt___at_Lean_Elab_Command_elabCommand___spec__8(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_replaceRef(lean_object*, lean_object*); lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_Elab_Command_elabCheckFailure___spec__1(lean_object*, lean_object*, lean_object*); lean_object* l_String_capitalize(lean_object*); @@ -190,6 +189,7 @@ extern lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____close lean_object* l_Lean_expandMacros(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Modifiers_addAttribute(lean_object*, lean_object*); extern lean_object* l_Lean_mkOptionalNode___closed__1; +lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_elabCommand___spec__10___rarg(lean_object*); extern lean_object* l_Lean_Meta_mkArbitrary___closed__2; lean_object* l_Lean_throwErrorAt___at_Lean_Elab_Command_mkDefViewOfInstance___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_mkDefViewOfAbbrev(lean_object*, lean_object*); @@ -4432,7 +4432,7 @@ x_70 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_70, 0, x_69); x_71 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_71, 0, x_70); -x_72 = l_Lean_throwErrorAt___at_Lean_Elab_Command_elabCommand___spec__7(x_68, x_71, x_2, x_3, x_41); +x_72 = l_Lean_throwErrorAt___at_Lean_Elab_Command_elabCommand___spec__8(x_68, x_71, x_2, x_3, x_41); lean_dec(x_68); x_73 = !lean_is_exclusive(x_72); if (x_73 == 0) @@ -4457,7 +4457,7 @@ else { lean_object* x_77; uint8_t x_78; lean_dec(x_2); -x_77 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_elabCommand___spec__9___rarg(x_41); +x_77 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_elabCommand___spec__10___rarg(x_41); x_78 = !lean_is_exclusive(x_77); if (x_78 == 0) { diff --git a/stage0/stdlib/Lean/Elab/MutualDef.c b/stage0/stdlib/Lean/Elab/MutualDef.c index 3a58aa58d5..63685be736 100644 --- a/stage0/stdlib/Lean/Elab/MutualDef.c +++ b/stage0/stdlib/Lean/Elab/MutualDef.c @@ -17,7 +17,6 @@ lean_object* l_Lean_Elab_elabModifiers___at_Lean_Elab_Command_elabMutualDef___sp lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabFunType_match__1(lean_object*); lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___spec__10___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_expr_update_forall(lean_object*, uint8_t, lean_object*, lean_object*); -lean_object* l_Lean_throwErrorAt___at_Lean_Elab_Command_elabCommand___spec__7(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_expandWhereDeclsAsStructInst___spec__1___lambda__2(size_t, lean_object*, lean_object*, lean_object*, size_t, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_removeUnused(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_levelMVarToParamHeaders_process_match__1___rarg(lean_object*, lean_object*, lean_object*); @@ -146,7 +145,6 @@ lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_check___lambda__2 lean_object* l_Lean_Elab_expandDeclId___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___spec__1___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Command_declValEqns___elambda__1___closed__2; lean_object* l_Lean_Meta_forallTelescope___at___private_Lean_Elab_Term_0__Lean_Elab_Term_tryPureCoe_x3f___spec__1___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_elabCommand___spec__9___rarg(lean_object*); extern lean_object* l_Array_getEvenElems___rarg___closed__1; lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_check___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_MutualDef_0__Lean_Elab_Term_elabFunValues(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -281,6 +279,7 @@ lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_expandWhereDeclsA lean_object* l_Lean_addTrace___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_MutualClosure_mkClosureForAux___spec__4(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_MutualClosure_pushLetRecs___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_lambdaTelescope___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_MutualClosure_mkLetRecClosureFor___spec__2___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_throwErrorAt___at_Lean_Elab_Command_elabCommand___spec__8(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_checkModifiers___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_checkLetRecsToLiftTypes___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_collectMVars(lean_object*, lean_object*); @@ -583,6 +582,7 @@ lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_MutualDef_0__Lean_E lean_object* l_List_forM___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_checkLetRecsToLiftTypes___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_expandMacros(lean_object*, lean_object*, lean_object*); extern lean_object* l_myMacro____x40_Init_Notation___hyg_1398____closed__8; +lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_elabCommand___spec__10___rarg(lean_object*); lean_object* l_Array_erase___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_MutualClosure_mkClosureForAux___spec__1___boxed(lean_object*, lean_object*); lean_object* l_Lean_Elab_elabAttrs___at_Lean_Elab_Command_elabMutualDef___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_myMacro____x40_Init_Notation___hyg_13868____closed__7; @@ -19913,7 +19913,7 @@ x_80 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_80, 0, x_79); x_81 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_81, 0, x_80); -x_82 = l_Lean_throwErrorAt___at_Lean_Elab_Command_elabCommand___spec__7(x_78, x_81, x_2, x_3, x_51); +x_82 = l_Lean_throwErrorAt___at_Lean_Elab_Command_elabCommand___spec__8(x_78, x_81, x_2, x_3, x_51); lean_dec(x_3); lean_dec(x_78); x_83 = !lean_is_exclusive(x_82); @@ -19940,7 +19940,7 @@ else lean_object* x_87; uint8_t x_88; lean_dec(x_3); lean_dec(x_2); -x_87 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_elabCommand___spec__9___rarg(x_51); +x_87 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_elabCommand___spec__10___rarg(x_51); x_88 = !lean_is_exclusive(x_87); if (x_88 == 0) { diff --git a/stage0/stdlib/Lean/Elab/Syntax.c b/stage0/stdlib/Lean/Elab/Syntax.c index 9f1b972aa3..455533a70d 100644 --- a/stage0/stdlib/Lean/Elab/Syntax.c +++ b/stage0/stdlib/Lean/Elab/Syntax.c @@ -22,7 +22,6 @@ lean_object* l_Lean_Elab_mkUnusedBaseName___at_Lean_Elab_Command_mkNameFromParse lean_object* l_Lean_Elab_Term_toParserDescr_processUnary(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_Name_toString___closed__1; lean_object* l_Lean_throwErrorAt___at_Lean_Elab_Term_toParserDescr_process___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_throwErrorAt___at_Lean_Elab_Command_elabCommand___spec__7(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Term_toParserDescr_processNonReserved___spec__1___rarg(lean_object*); lean_object* lean_array_set(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Command_namedPrio___elambda__1___closed__1; @@ -90,13 +89,11 @@ lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Command_elabMacroRulesAux___s lean_object* l_Lean_Elab_Command_elabMacroRulesAux___closed__14; lean_object* lean_array_uget(lean_object*, size_t); lean_object* l_Lean_Elab_Term_toParserDescr_process___closed__1; -lean_object* l_Lean_Elab_Command_mkSimpleDelab_go___closed__3; lean_object* lean_io_error_to_string(lean_object*); lean_object* l___regBuiltin_Lean_Elab_Command_elabDeclareSyntaxCat___closed__1; lean_object* l_Lean_Elab_Command_expandMixfix___lambda__7___closed__8; extern lean_object* l_Lean_Parser_Syntax_addPrec___closed__1; extern lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_1090____closed__1; -lean_object* l_Lean_Elab_Command_mkSimpleDelab_go___closed__15; extern lean_object* l_myMacro____x40_Init_Notation___hyg_14470____closed__4; lean_object* l_Array_append___rarg(lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_mkNameFromParserSyntax_visit_match__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -104,7 +101,6 @@ lean_object* l_Lean_resolveGlobalConst___at_Lean_Elab_Term_toParserDescr_resolve lean_object* l_Lean_Elab_Command_expandElab___lambda__2___closed__39; lean_object* l_Lean_Elab_Term_toParserDescr_processSepBy1___lambda__1___closed__1; lean_object* l_Lean_Elab_Command_expandMixfix___lambda__7___closed__4; -lean_object* l_Lean_Elab_Command_mkSimpleDelab_go___closed__18; lean_object* l_Lean_Elab_Command_elabMacroRulesAux_match__1___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_elabMacroRulesAux___closed__5; lean_object* l_Lean_Elab_Command_elabSyntax_match__2___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -118,7 +114,6 @@ lean_object* l_Lean_Elab_Command_expandNotation___lambda__1___boxed(lean_object* lean_object* l_Lean_SourceInfo_fromRef(lean_object*); lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__23; lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Command_expandMacro___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Elab_Command_mkSimpleDelab_go___closed__5; lean_object* l_Lean_Elab_Command_expandElab___lambda__2___closed__35; extern lean_object* l_Lean_Parser_Command_namedPrio___elambda__1___closed__2; lean_object* l_Lean_Elab_Command_expandMixfix___lambda__1___closed__1; @@ -126,7 +121,6 @@ lean_object* l_Lean_Elab_Term_toParserDescr_process___closed__2; extern lean_object* l_Lean_Elab_Command_commandElabAttribute; lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_getCatSuffix_match__1(lean_object*); lean_object* lean_array_uset(lean_object*, size_t, lean_object*); -lean_object* l_Lean_Elab_Command_mkSimpleDelab_go___closed__14; lean_object* l___regBuiltin_Lean_Elab_Command_elabMacroRules(lean_object*); lean_object* l_Lean_throwErrorAt___at_Lean_Elab_Term_toParserDescr_process___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_toParserDescr_processNullaryOrCat___closed__13; @@ -140,7 +134,6 @@ extern lean_object* l_term___u2218_____closed__6; lean_object* l_Lean_Elab_Term_toParserDescr_processSepBy1___lambda__1___closed__2; lean_object* l_Lean_Elab_Term_toParserDescr_ensureNoPrec(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_throwErrorAt___at_Lean_Elab_Command_elabSyntax___spec__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Elab_Command_mkSimpleDelab_go_match__1___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_elabSyntax___lambda__3___closed__2; lean_object* l_Lean_Elab_Command_elabMacroRulesAux___closed__23; uint8_t l_Lean_Syntax_structEq(lean_object*, lean_object*); @@ -149,9 +142,9 @@ lean_object* l_Lean_Elab_Command_expandMacroArgIntoPattern(lean_object*, lean_ob lean_object* l_Lean_Elab_Term_toParserDescr_processNullaryOrCat___closed__16; lean_object* l_Lean_Elab_Command_withExpectedType(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_expandElab___lambda__2___closed__19; -uint8_t l___private_Init_Data_Array_Basic_0__Array_allDiffAux___at_Lean_Elab_Command_mkSimpleDelab_go___spec__2(lean_object*, lean_object*); extern lean_object* l_Array_empty___closed__1; extern lean_object* l_myMacro____x40_Init_Notation___hyg_14470____closed__1; +lean_object* l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__5; lean_object* lean_environment_find(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_toParserDescr_processSepBy1___lambda__1___closed__4; lean_object* l_Lean_Elab_Term_toParserDescr_processSeq___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -163,9 +156,11 @@ uint8_t l_Lean_checkTraceOption(lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_expandMacro___boxed__const__1; lean_object* l_Lean_resolveGlobalName___at_Lean_Elab_Term_toParserDescr_resolveParserName___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__18; +lean_object* l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__18; lean_object* l_Lean_Elab_Command_expandElab___lambda__2___closed__6; lean_object* lean_st_ref_get(lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_expandMixfix___lambda__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* l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__15; extern lean_object* l_Lean_instInhabitedParserDescr___closed__1; extern lean_object* l_Lean_PrettyPrinter_runForNodeKind___rarg___closed__4; lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__30; @@ -177,10 +172,12 @@ lean_object* l_Lean_Elab_Command_expandElab___lambda__2___closed__51; extern lean_object* l_myMacro____x40_Init_Notation___hyg_14470____closed__2; lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__22; extern lean_object* l_instReprBool___closed__1; +lean_object* l___private_Init_Data_Array_Basic_0__Array_allDiffAux___at_Lean_Elab_Command_mkSimpleDelab___spec__3___boxed(lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_expandMixfix___lambda__7___closed__5; lean_object* l_Lean_Elab_Command_expandElab___lambda__2___closed__46; lean_object* l_Lean_Syntax_mkAntiquotSuffixSpliceNode(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_throwErrorAt___at_Lean_Elab_Command_elabSyntax___spec__8___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__3; lean_object* l_Lean_mkIdentFrom(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_toParserDescr_processAtom___closed__2; lean_object* l_Lean_Elab_Command_expandMixfix___lambda__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -188,6 +185,7 @@ lean_object* l_Lean_Elab_Command_elabSyntax___lambda__3___closed__6; extern lean_object* l_Lean_Parser_Term_scoped___elambda__1___closed__1; lean_object* l_Lean_Elab_Command_expandElab___lambda__2___closed__29; lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Term_mkParserSeq___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_resolveGlobalName___at_Lean_Elab_Command_mkSimpleDelab___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__29; extern lean_object* l_myMacro____x40_Init_Notation___hyg_1398____closed__6; lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Elab_Command_elabNoKindMacroRulesAux___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -201,12 +199,11 @@ lean_object* lean_array_get_size(lean_object*); lean_object* l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_5198____spec__5(size_t, size_t, lean_object*); lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__5; lean_object* l_Lean_Elab_Term_toParserDescr_processSepBy___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_Lean_Elab_Command_mkSimpleDelab_go___closed__19; lean_object* lean_string_append(lean_object*, lean_object*); lean_object* lean_string_utf8_set(lean_object*, lean_object*, uint32_t); -lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_elabCommand___spec__9___rarg(lean_object*); lean_object* l_Lean_Elab_Term_toParserDescr_processNullaryOrCat___closed__10; lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Elab_Command_elabNoKindMacroRulesAux___spec__2(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__1; extern lean_object* l_Lean_Parser_Syntax_nonReserved___elambda__1___closed__2; lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_elabMacroRules___spec__1___rarg(lean_object*); lean_object* l_Lean_MessageData_ofList(lean_object*); @@ -223,7 +220,6 @@ uint8_t l_Char_isWhitespace(uint32_t); lean_object* l_Lean_Elab_Term_toParserDescr_processSeq___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_toParserDescr_processSepBy1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_resolveGlobalConst___at_Lean_Elab_Term_toParserDescr_resolveParserName___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Elab_Command_mkSimpleDelab_go(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_mkSimpleDelab___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_elabMacroRulesAux___closed__9; lean_object* l_Lean_Elab_Command_expandElab___lambda__2___closed__12; @@ -232,16 +228,17 @@ lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_elabSynta extern lean_object* l_Lean_Elab_Term_mkTermElabAttributeUnsafe___closed__7; lean_object* l_Lean_Elab_Command_expandMacro___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_expandElab___lambda__2___closed__50; -lean_object* l_Lean_Elab_Command_mkSimpleDelab_go_match__1(lean_object*); lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Term_withNotFirst(lean_object*); extern lean_object* l_myMacro____x40_Init_Notation___hyg_1162____closed__4; -lean_object* l_Lean_Elab_Command_mkSimpleDelab_go___closed__12; +lean_object* l_Lean_throwError___at_Lean_Elab_Command_elabCommand___spec__9(lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t l___private_Init_Data_Array_Basic_0__Array_allDiffAux___at_Lean_Elab_Command_mkSimpleDelab___spec__3(lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_expandMixfix___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_Subarray_forInUnsafe_loop___at___private_Lean_Elab_Syntax_0__Lean_Elab_Term_mkParserSeq___spec__1___closed__5; extern lean_object* l_Lean_PrettyPrinter_runForNodeKind___rarg___closed__1; lean_object* l_String_mapAux___at_Lean_Elab_Command_mkNameFromParserSyntax_visit___spec__2(lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_elabMacroRulesAux___closed__25; lean_object* lean_string_utf8_byte_size(lean_object*); +lean_object* l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__2; lean_object* l_Lean_Elab_Command_expandMixfix___lambda__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_myMacro____x40_Init_NotationExtra___hyg_5658____closed__10; lean_object* l_Lean_Elab_Command_elabElab___closed__1; @@ -254,6 +251,7 @@ lean_object* l_Lean_Elab_Command_expandMixfix___lambda__13(lean_object*, lean_ob extern lean_object* l_Lean_Parser_Command_mixfix___elambda__1___closed__2; lean_object* l_Lean_Elab_Term_getMainModule___rarg(lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_mkNameFromParserSyntax(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__14; uint8_t l_USize_decLt(size_t, size_t); lean_object* l_Lean_Elab_Term_toParserDescr_processAtom___closed__1; lean_object* l_Lean_Elab_Command_expandMixfix___lambda__15(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -276,6 +274,7 @@ lean_object* l_Lean_Elab_Command_elabDeclareSyntaxCat___boxed(lean_object*, lean lean_object* l_Lean_Elab_Command_expandElab___lambda__2___closed__1; extern lean_object* l_Lean_throwUnknownConstant___rarg___closed__2; lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__4; +lean_object* l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__7; lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Term_toParserDescr_processSeq___spec__2(size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_expandElab___lambda__2___boxed(lean_object**); lean_object* l_Lean_throwError___at_Lean_Elab_Command_elabSyntax___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*); @@ -283,12 +282,14 @@ lean_object* l_Lean_throwError___at_Lean_Elab_Term_checkLeftRec___spec__2(lean_o lean_object* l_Lean_Name_toStringWithSep(lean_object*, lean_object*); lean_object* l_Lean_Syntax_SepArray_ofElems(lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__27; +lean_object* l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__16; lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___spec__2(size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__23; lean_object* l_Lean_Elab_Term_checkLeftRec___closed__1; lean_object* l_Lean_throwErrorAt___at_Lean_Elab_Command_elabSyntax___spec__11(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Command_macro__rules___elambda__1___closed__1; lean_object* l_Lean_Elab_mkUnusedBaseName___at_Lean_Elab_Command_mkNameFromParserSyntax___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Command_mkSimpleDelab_match__1___rarg(lean_object*, lean_object*, lean_object*); lean_object* lean_string_utf8_next(lean_object*, lean_object*); extern lean_object* l_Lean_Json_Parser_anyCore___rarg___closed__6; lean_object* l_Lean_Elab_Command_expandMixfix___lambda__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*); @@ -303,7 +304,6 @@ extern lean_object* l_myMacro____x40_Init_Notation___hyg_2191____closed__3; lean_object* l_Lean_Elab_Command_expandElab___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_toParserDescr_processNonReserved___closed__9; lean_object* l_Lean_Elab_Command_expandMixfix___lambda__7___closed__7; -lean_object* l_Lean_Elab_Command_mkSimpleDelab_go___closed__16; extern lean_object* l_Lean_Parser_Tactic_quot___elambda__1___closed__6; lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Command_expandMacro___spec__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Command_elabSyntaxAbbrev___closed__1; @@ -340,7 +340,6 @@ lean_object* l_Lean_Elab_Term_toParserDescr_processNonReserved___closed__8; lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux_match__1___rarg(uint8_t, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__19; lean_object* l_Lean_Elab_Command_expandMixfix___lambda__7___closed__3; -lean_object* l___private_Init_Data_Array_Basic_0__Array_allDiffAuxAux___at_Lean_Elab_Command_mkSimpleDelab_go___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_antiquote___lambda__1___boxed(lean_object*, lean_object*); lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Term_checkLeftRec___spec__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_toParserDescr_processNullaryOrCat___closed__11; @@ -353,7 +352,6 @@ extern lean_object* l_Lean_Parser_categoryParserFnImpl___closed__1; lean_object* lean_nat_sub(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_toParserDescr_resolveParserName_match__2(lean_object*); lean_object* l_Lean_Elab_Command_expandMacroArgIntoPattern___closed__1; -lean_object* l_Lean_throwError___at_Lean_Elab_Command_elabCommand___spec__8(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_toParserDescr_processNullaryOrCat___closed__8; lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Term_markAsTrailingParser___boxed(lean_object*); extern lean_object* l_Lean_Elab_Command_mkCommandElabAttributeUnsafe___closed__9; @@ -363,8 +361,8 @@ lean_object* l___regBuiltin_Lean_Elab_Command_elabSyntax(lean_object*); lean_object* l_Lean_Elab_Command_elabMacroRulesAux___closed__3; lean_object* l_Lean_Syntax_isStrLit_x3f(lean_object*); lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__35; +uint8_t l___private_Init_Data_Array_Basic_0__Array_allDiffAuxAux___at_Lean_Elab_Command_mkSimpleDelab___spec__4(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_expandElab___lambda__2___closed__48; -lean_object* l_Lean_Elab_Command_mkSimpleDelab_go___closed__2; extern lean_object* l_myMacro____x40_Init_Notation___hyg_13868____closed__9; lean_object* l_Lean_Elab_Command_expandNotationItemIntoPattern(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Syntax_addPrec___closed__3; @@ -381,6 +379,7 @@ extern lean_object* l_stx___x3f___closed__3; lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_elabMacroRulesAux___spec__2___boxed(lean_object*, lean_object*); extern lean_object* l_Lean_instToStringAttributeKind___closed__2; lean_object* l_Lean_Elab_Term_toParserDescr_processParserCategory___lambda__1___closed__2; +lean_object* l_Lean_throwErrorAt___at_Lean_Elab_Command_elabCommand___spec__8(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__21; lean_object* l_Lean_resolveGlobalConst___at_Lean_Elab_Term_toParserDescr_resolveParserName___spec__1___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_expandMixfix___lambda__1___closed__2; @@ -396,7 +395,7 @@ lean_object* l_Lean_Elab_Command_expandElab___lambda__2___closed__23; lean_object* l_String_capitalize(lean_object*); lean_object* l___private_Lean_Elab_Util_0__Lean_Elab_expandMacro_x3f___boxed(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_myMacro____x40_Init_Notation___hyg_13868____closed__13; -lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_16723_(lean_object*); +lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_17131_(lean_object*); lean_object* l_List_map___at_Lean_Elab_Term_toParserDescr_processNullaryOrCat___spec__3(lean_object*); lean_object* l_Lean_Elab_Command_elabSyntax_match__2___rarg(uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_expandMixfix___lambda__1___closed__4; @@ -427,7 +426,6 @@ lean_object* l_Lean_Elab_Command_elabSyntax___lambda__3___closed__17; lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_elabMacroRulesAux___spec__2(lean_object*, lean_object*); lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Command_elabMacroRulesAux___spec__3___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_strLitKind___closed__2; -lean_object* l_Array_anyMUnsafe_any___at_Lean_Elab_Command_mkSimpleDelab_go___spec__5___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_mkNameFromParserSyntax___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_elabMacroRulesAux___closed__20; extern lean_object* l_Lean_instQuoteBool___closed__3; @@ -460,6 +458,7 @@ lean_object* l_Lean_Elab_addMacroStack___at_Lean_Elab_Term_instAddErrorMessageCo extern lean_object* l_myMacro____x40_Init_Notation___hyg_1264____closed__1; extern lean_object* l_Lean_Elab_Term_mkTermElabAttributeUnsafe___closed__6; lean_object* l_Lean_Elab_Command_elabSyntax___lambda__3___closed__9; +lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_17131____closed__1; lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__17; lean_object* l_Lean_Elab_Command_adaptExpander(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_mkParserAttributeImpl___closed__1; @@ -467,21 +466,19 @@ lean_object* l_Lean_Elab_mkUnusedBaseName_loop(lean_object*, lean_object*, lean_ extern lean_object* l_Lean_choiceKind; uint8_t l_Lean_Elab_Command_elabNoKindMacroRulesAux___closed__1; lean_object* l_Lean_Elab_Term_checkLeftRec___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* l___private_Init_Data_Array_Basic_0__Array_allDiffAuxAux___at_Lean_Elab_Command_mkSimpleDelab___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_maxPrec; lean_object* l_Lean_Elab_Command_elabMacroRulesAux___closed__16; lean_object* l_Lean_Elab_Term_checkLeftRec___lambda__2___closed__1; lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_Elab_Term_toParserDescr_processParserCategory___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -uint8_t l_Array_anyMUnsafe_any___at_Lean_Elab_Command_mkSimpleDelab_go___spec__5(lean_object*, size_t, size_t); lean_object* l_Lean_Elab_Command_elabNoKindMacroRulesAux___closed__2; extern lean_object* l_myMacro____x40_Init_Notation___hyg_2191____closed__2; extern lean_object* l_Lean_Parser_Command_elab___elambda__1___closed__2; lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_antiquote(lean_object*, lean_object*); -lean_object* l_Lean_Elab_Command_mkSimpleDelab_go___closed__7; lean_object* l_Lean_addMessageContextPartial___at_Lean_Elab_Command_instAddMessageContextCommandElabM___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Elab_Command_mkNameFromParserSyntax_visit___spec__1(lean_object*, size_t, size_t, lean_object*); lean_object* l_Lean_Elab_Term_getCurrMacroScope(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_toParserDescr_processSepBy___lambda__1___closed__7; -lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_16723____closed__1; lean_object* l_Lean_Elab_Term_checkLeftRec___closed__2; lean_object* l_Lean_throwErrorAt___at_Lean_Elab_Term_toParserDescr_process___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_throwErrorAt___at_Lean_Elab_Command_expandMacro___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -507,16 +504,16 @@ lean_object* l_Lean_throwError___at_Lean_Elab_Term_checkLeftRec___spec__4(lean_o lean_object* l_Subarray_forInUnsafe_loop___at___private_Lean_Elab_Syntax_0__Lean_Elab_Term_mkParserSeq___spec__1___closed__7; lean_object* l___private_Init_Meta_0__Lean_quoteName(lean_object*); lean_object* l_Lean_Syntax_mkStrLit(lean_object*, lean_object*); +lean_object* l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__12; lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Term_toParserDescr_process___spec__4___rarg(lean_object*); lean_object* l_Lean_Elab_Term_toParserDescr_processNullaryOrCat___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Command_mkSimpleDelab_match__1(lean_object*); lean_object* l_Lean_Elab_Command_expandElab___lambda__2___closed__16; extern lean_object* l_Lean_Parser_Command_identPrec___elambda__1___closed__1; extern lean_object* l_myMacro____x40_Init_Notation___hyg_1264____closed__2; lean_object* l_Lean_Elab_Term_toParserDescr_processNullaryOrCat___closed__1; -lean_object* l_Lean_Elab_Command_mkSimpleDelab_go___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__12; lean_object* l_Lean_Elab_Command_expandElab___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Elab_Command_mkSimpleDelab_go___closed__1; lean_object* l_Lean_Elab_Term_toParserDescr_processParserCategory___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_evalOptPrec(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_toParserDescr_processSeq(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -539,7 +536,6 @@ lean_object* l_Lean_Elab_Command_elabCommand(lean_object*, lean_object*, lean_ob lean_object* l_Lean_Elab_Command_expandElab___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_938____closed__15; lean_object* l_Lean_Elab_Command_elabSyntax_match__3___rarg(lean_object*, lean_object*); -lean_object* l_Lean_resolveGlobalName___at_Lean_Elab_Command_mkSimpleDelab_go___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_throwError___at_Lean_Elab_Command_elabSyntax___spec__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_evalOptPrio(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_toParserDescr_processNonReserved___closed__12; @@ -547,7 +543,6 @@ lean_object* l_Lean_throwErrorAt___at_Lean_Elab_Term_checkLeftRec___spec__3(lean lean_object* l_Lean_ResolveName_resolveGlobalName(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_expandNotation___lambda__4(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_expandElab___lambda__2___closed__33; -lean_object* l_Lean_Elab_Command_mkSimpleDelab_go___closed__8; lean_object* l_Lean_Elab_Term_toParserDescr_processAtom_match__1(lean_object*); extern lean_object* l_myMacro____x40_Init_Notation___hyg_13868____closed__12; lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Syntax_0__Lean_Elab_Command_antiquote___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); @@ -560,8 +555,8 @@ lean_object* l_Lean_Elab_Command_expandElab___lambda__2___closed__28; lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_elabSyntax___spec__4___rarg(lean_object*); lean_object* l_Lean_throwUnknownConstant___at_Lean_Elab_Term_toParserDescr_resolveParserName___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Term_quot___elambda__1___closed__1; -lean_object* l_Lean_Elab_Command_mkSimpleDelab_go___closed__17; lean_object* l_Lean_Elab_Term_toParserDescr_processSepBy1___lambda__1___closed__3; +lean_object* l_Lean_resolveGlobalName___at_Lean_Elab_Command_mkSimpleDelab___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Command_syntaxAbbrev___elambda__1___closed__2; lean_object* l_Lean_Elab_Command_elabMacroRulesAux___closed__11; extern lean_object* l_Lean_KernelException_toMessageData___closed__3; @@ -604,7 +599,6 @@ extern lean_object* l_Lean_Parser_Command_namedName___elambda__1___closed__2; lean_object* l_Lean_Elab_Command_expandMixfix(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_toParserDescr_processSepBy1___lambda__1___closed__7; lean_object* l_Lean_Elab_Command_expandMixfix___lambda__15___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Elab_Command_mkSimpleDelab_go___closed__11; lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Term_toParserDescr_processSeq___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_evalPrec(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_checkLeftRec___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -632,6 +626,7 @@ lean_object* l_Lean_Elab_Term_toParserDescr_processAtom_match__1___rarg(lean_obj extern lean_object* l_myMacro____x40_Init_Notation___hyg_14470____closed__10; extern lean_object* l_Lean_Syntax_mkApp___closed__1; lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_Elab_Term_toParserDescr_processNonReserved___spec__2___rarg(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__11; lean_object* l_Lean_Elab_Command_elabElab(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_elabNoKindMacroRulesAux___closed__5; lean_object* l_Lean_Elab_Term_checkLeftRec___lambda__2___closed__2; @@ -658,6 +653,7 @@ extern lean_object* l_Lean_Elab_macroAttribute; lean_object* l___regBuiltin_Lean_Elab_Command_expandMixfix(lean_object*); lean_object* l_Lean_Elab_Command_expandMixfix___lambda__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_toParserDescr_processUnary___closed__2; +lean_object* l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__19; lean_object* l_Lean_Syntax_setArg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_elabSyntaxAbbrev___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_environment_main_module(lean_object*); @@ -678,7 +674,6 @@ lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Term_markAsTrailingParser extern lean_object* l_Lean_Elab_Command_mkCommandElabAttributeUnsafe___closed__1; lean_object* l_Lean_Elab_Term_toParserDescr_processUnary___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_elabSyntax___spec__7___boxed(lean_object*, lean_object*); -lean_object* l_Lean_resolveGlobalName___at_Lean_Elab_Command_mkSimpleDelab_go___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Command_elabMacroRulesAux___spec__1(lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*); uint8_t l_Lean_Parser_isParserCategory(lean_object*, lean_object*); extern lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__11; @@ -719,18 +714,20 @@ lean_object* l_Lean_Elab_Term_toParserDescr_processUnary___closed__7; lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___lambda__2___closed__1; lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___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_Syntax_0__Lean_Elab_Command_expandNotationAux___lambda__2(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t l_Array_anyMUnsafe_any___at_Lean_Elab_Command_mkSimpleDelab___spec__5(lean_object*, size_t, size_t); lean_object* l_Lean_Elab_Term_toParserDescr_processNullaryOrCat___closed__9; lean_object* l_Lean_throwErrorAt___at_Lean_Elab_Command_elabSyntax___spec__8(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_Term_toParserDescr_processAtom___closed__4; lean_object* l_Lean_Elab_Command_elabSyntaxAbbrev___closed__2; +lean_object* l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__20; lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_elabSyntax___spec__10(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_toParserDescr_process(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_evalPrec___closed__1; lean_object* l_Lean_Elab_Command_elabSyntax___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_mapIdxM_map___at_Lean_Elab_Term_toParserDescr_processSeq___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__10; lean_object* l_Lean_Elab_Command_elabSyntax___closed__2; -lean_object* l_Lean_Elab_Command_mkSimpleDelab_go___closed__6; lean_object* l_Lean_Elab_Command_inferMacroRulesAltKind___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__26; lean_object* l_Lean_Elab_Term_toParserDescr_processParserCategory(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -746,6 +743,7 @@ lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Term_markAsTrailingParser lean_object* l_Lean_Elab_Term_toParserDescr(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_elabMacroRulesAux___closed__26; lean_object* l_Lean_Elab_Command_mkNameFromParserSyntax_appendCatName___boxed(lean_object*, lean_object*); +lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_Elab_Command_mkSimpleDelab___spec__2___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_toParserDescr_processNullaryOrCat___closed__17; lean_object* l_Lean_throwErrorAt___at_Lean_Elab_Command_elabSyntax___spec__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_expandMixfix___lambda__11___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -760,7 +758,6 @@ lean_object* lean_st_ref_set(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_toParserDescr_process_match__1(lean_object*); lean_object* l_Lean_Elab_Command_elabNoKindMacroRulesAux___closed__7; lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Elab_Command_mkSimpleDelab_go___closed__20; lean_object* l_Lean_Elab_Command_expandElab___lambda__2___closed__43; lean_object* l_Lean_Elab_Command_elabSyntax(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_toParserDescr_resolveParserName_match__3___rarg(lean_object*, lean_object*, lean_object*); @@ -775,18 +772,22 @@ lean_object* l_Lean_Elab_Command_expandMixfix___lambda__13___boxed(lean_object*, lean_object* l_Lean_Elab_Command_withExpectedType_match__1(lean_object*); lean_object* l_Lean_Elab_Command_elabSyntax_match__3(lean_object*); lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_elabSyntax___spec__7(lean_object*, lean_object*); +lean_object* l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__9; uint8_t l_Lean_Syntax_isNone(lean_object*); lean_object* l_Lean_Elab_Command_expandMixfix___lambda__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__21; lean_object* l_Lean_expandMacros(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__17; extern lean_object* l_myMacro____x40_Init_Notation___hyg_1398____closed__8; lean_object* l_Lean_Elab_Command_elabMacroRulesAux___closed__21; +lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_elabCommand___spec__10___rarg(lean_object*); extern lean_object* l_Lean_Parser_Term_local___elambda__1___closed__1; lean_object* l_Lean_Elab_Command_elabSyntax___lambda__3___closed__15; lean_object* l_Lean_Elab_Command_elabSyntaxAbbrev(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Macro_expandMacro_x3fImp(lean_object*, lean_object*, lean_object*); lean_object* l_String_trim(lean_object*); lean_object* l_Lean_Elab_Command_elabSyntaxAbbrev___closed__4; +lean_object* l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__4; lean_object* l_Lean_Elab_Command_elabSyntax___lambda__3___closed__3; lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_elabMacroRulesAux___spec__2___rarg(lean_object*); extern lean_object* l_Lean_instQuoteBool___closed__4; @@ -794,7 +795,9 @@ lean_object* l_Lean_Elab_Command_expandNotation___lambda__3(lean_object*, lean_o lean_object* l_Lean_Elab_Term_toParserDescr_processParserCategory___closed__1; lean_object* l_Lean_throwError___at_Lean_Elab_Command_elabSyntax___spec__9(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_toAttributeKind___at_Lean_Elab_Command_elabSyntax___spec__1___closed__1; +lean_object* l_Lean_Elab_logTrace___at_Lean_Elab_Command_elabCommand___spec__11(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_elabSyntax___spec__7___rarg(lean_object*); +lean_object* l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__8; lean_object* l_Lean_Elab_Term_toParserDescr_processParserCategory___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_expandOptPrecedence(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Term_toParserDescr_process___spec__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -818,7 +821,6 @@ lean_object* l_Lean_Elab_toAttributeKind___at_Lean_Elab_Command_elabSyntax___spe lean_object* l_Lean_Elab_Term_toParserDescr_processSepBy___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Command_elabMacroRulesAux___spec__3___lambda__1___closed__4; lean_object* l_Lean_throwErrorAt___at_Lean_Elab_Term_checkLeftRec___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*); -uint8_t l___private_Init_Data_Array_Basic_0__Array_allDiffAuxAux___at_Lean_Elab_Command_mkSimpleDelab_go___spec__3(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_expandElab(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_throwError___at_Lean_Elab_Term_toParserDescr_process___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_elabSyntax___lambda__3___closed__14; @@ -853,7 +855,7 @@ lean_object* l_Lean_Elab_Command_elabMacroRulesAux(lean_object*, lean_object*, l lean_object* l_Lean_Elab_Term_toParserDescr_processNullaryOrCat___closed__3; extern lean_object* l_Lean_mkOptionalNode___closed__2; lean_object* l_Lean_Elab_Term_toParserDescr_processUnary___closed__4; -lean_object* l_Lean_Elab_Command_mkSimpleDelab_go___closed__10; +lean_object* l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__6; lean_object* l_Lean_Elab_Command_expandMixfix___lambda__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_elabMacro___closed__1; lean_object* l_Lean_Elab_Command_elabMacroRulesAux___closed__19; @@ -893,7 +895,6 @@ lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_getCatSuffix___cl lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__10; lean_object* l_Subarray_forInUnsafe_loop___at___private_Lean_Elab_Syntax_0__Lean_Elab_Term_mkParserSeq___spec__1___closed__1; lean_object* l_Lean_Elab_Command_elabSyntax___lambda__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_Elab_Command_mkSimpleDelab_go___spec__4(lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Term_withNotFirst___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_getCatSuffix___closed__1; extern lean_object* l_Lean_Elab_Command_mkCommandElabAttributeUnsafe___closed__6; @@ -909,13 +910,12 @@ lean_object* l_Subarray_forInUnsafe_loop___at___private_Lean_Elab_Syntax_0__Lean lean_object* l_Lean_Elab_Command_expandElab___lambda__2___closed__36; lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_getCatSuffix(lean_object*); lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux_match__1(lean_object*); -lean_object* l___private_Init_Data_Array_Basic_0__Array_allDiffAux___at_Lean_Elab_Command_mkSimpleDelab_go___spec__2___boxed(lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_elabSyntax___lambda__3___closed__16; extern lean_object* l_Lean_Parser_Syntax_cat___elambda__1___closed__1; lean_object* l_Lean_Elab_Command_expandElab___lambda__2___closed__45; lean_object* l_Lean_throwUnknownConstant___at_Lean_Elab_Term_toParserDescr_resolveParserName___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Command_elabMacroRulesAux___spec__3___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Elab_Command_mkSimpleDelab_go___closed__13; +lean_object* l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__13; lean_object* l_Lean_Elab_Term_toParserDescr_processSepBy(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Command_elabMacroRulesAux___spec__3___lambda__1___closed__1; lean_object* l_Lean_Elab_Command_inferMacroRulesAltKind___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -936,7 +936,6 @@ lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Term_toParserDesc lean_object* l_Subarray_forInUnsafe_loop___at___private_Lean_Elab_Syntax_0__Lean_Elab_Term_mkParserSeq___spec__1___closed__8; lean_object* l_Lean_Elab_Term_toParserDescr_processSepBy___lambda__1___closed__1; lean_object* l_Lean_Elab_Term_toParserDescr_processNullaryOrCat_match__1(lean_object*); -lean_object* l_Lean_Elab_Command_mkSimpleDelab_go___closed__4; lean_object* l_Lean_Elab_Command_elabMacroRulesAux___closed__12; lean_object* l_Lean_Elab_Term_toParserDescr_processNullaryOrCat___closed__12; lean_object* l_Lean_Elab_Command_expandElab___lambda__2___closed__49; @@ -945,12 +944,12 @@ lean_object* l_Lean_Elab_Command_expandElab___lambda__2___closed__44; lean_object* l_Lean_Elab_Term_toParserDescr_processUnary___closed__6; lean_object* l_Lean_Elab_Command_expandMacroArgIntoSyntaxItem___boxed(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Command_infixr___elambda__1___closed__2; +lean_object* l_Array_anyMUnsafe_any___at_Lean_Elab_Command_mkSimpleDelab___spec__5___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_throwErrorAt___at_Lean_Elab_Command_elabNoKindMacroRulesAux___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_elabDeclareSyntaxCat(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Elab_mkMacroAttributeUnsafe___closed__8; extern lean_object* l_Array_findSomeM_x3f___rarg___closed__1; lean_object* l_Lean_throwError___at_Lean_Elab_Command_elabSyntax___spec__9___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Elab_Command_mkSimpleDelab_go___closed__9; lean_object* l_Lean_throwError___at_Lean_Elab_Term_synthesizeInst___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Command_elabDeclareSyntaxCat(lean_object*); extern lean_object* l_myMacro____x40_Init_Notation___hyg_14470____closed__5; @@ -964,7 +963,6 @@ lean_object* l_Lean_Elab_Command_expandNotation(lean_object*, lean_object*, lean lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___spec__3(size_t, size_t, lean_object*); lean_object* l_Lean_Elab_Command_expandMixfix___lambda__7___closed__1; lean_object* l_Lean_Elab_Term_withAutoBoundImplicitLocal___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_Elab_Command_mkSimpleDelab_go___spec__4___boxed(lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Command_elabMacro___closed__1; lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__7; lean_object* l_Lean_Elab_Term_toParserDescr_processNonReserved___closed__1; @@ -975,8 +973,8 @@ lean_object* l_Lean_Elab_Command_elabMacroRulesAux___boxed__const__1; lean_object* l_Lean_Elab_Command_elabSyntax___lambda__3(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_toAttributeKind___at_Lean_Elab_Command_elabSyntax___spec__1___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_myMacro____x40_Init_Notation___hyg_14470____closed__14; -lean_object* l_Lean_Elab_logTrace___at_Lean_Elab_Command_elabCommand___spec__10(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_getBetterRef(lean_object*, lean_object*); +lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_Elab_Command_mkSimpleDelab___spec__2(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_elabElab___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_string_dec_eq(lean_object*, lean_object*); lean_object* l_Lean_Syntax_mkLit(lean_object*, lean_object*, lean_object*); @@ -12543,7 +12541,7 @@ lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_inc(x_2); x_32 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_32, 0, x_2); -x_33 = l_Lean_Elab_logTrace___at_Lean_Elab_Command_elabCommand___spec__10(x_30, x_32, x_3, x_4, x_26); +x_33 = l_Lean_Elab_logTrace___at_Lean_Elab_Command_elabCommand___spec__11(x_30, x_32, x_3, x_4, x_26); x_34 = lean_ctor_get(x_33, 1); lean_inc(x_34); lean_dec(x_33); @@ -15620,7 +15618,7 @@ x_19 = l_Lean_KernelException_toMessageData___closed__3; x_20 = lean_alloc_ctor(10, 2, 0); lean_ctor_set(x_20, 0, x_18); lean_ctor_set(x_20, 1, x_19); -x_21 = l_Lean_throwErrorAt___at_Lean_Elab_Command_elabCommand___spec__7(x_6, x_20, x_8, x_9, x_10); +x_21 = l_Lean_throwErrorAt___at_Lean_Elab_Command_elabCommand___spec__8(x_6, x_20, x_8, x_9, x_10); lean_dec(x_6); return x_21; } @@ -15657,7 +15655,7 @@ x_32 = l_Lean_KernelException_toMessageData___closed__3; x_33 = lean_alloc_ctor(10, 2, 0); lean_ctor_set(x_33, 0, x_31); lean_ctor_set(x_33, 1, x_32); -x_34 = l_Lean_throwErrorAt___at_Lean_Elab_Command_elabCommand___spec__7(x_6, x_33, x_8, x_9, x_10); +x_34 = l_Lean_throwErrorAt___at_Lean_Elab_Command_elabCommand___spec__8(x_6, x_33, x_8, x_9, x_10); lean_dec(x_6); return x_34; } @@ -15791,7 +15789,7 @@ lean_object* x_8; lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_8 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_elabCommand___spec__9___rarg(x_5); +x_8 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_elabCommand___spec__10___rarg(x_5); return x_8; } else @@ -22350,7 +22348,7 @@ lean_dec(x_2); return x_5; } } -lean_object* l_Lean_Elab_Command_mkSimpleDelab_go_match__1___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Lean_Elab_Command_mkSimpleDelab_match__1___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { if (lean_obj_tag(x_1) == 0) @@ -22405,15 +22403,15 @@ return x_11; } } } -lean_object* l_Lean_Elab_Command_mkSimpleDelab_go_match__1(lean_object* x_1) { +lean_object* l_Lean_Elab_Command_mkSimpleDelab_match__1(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Lean_Elab_Command_mkSimpleDelab_go_match__1___rarg), 3, 0); +x_2 = lean_alloc_closure((void*)(l_Lean_Elab_Command_mkSimpleDelab_match__1___rarg), 3, 0); return x_2; } } -lean_object* l_Lean_resolveGlobalName___at_Lean_Elab_Command_mkSimpleDelab_go___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_Lean_resolveGlobalName___at_Lean_Elab_Command_mkSimpleDelab___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; lean_object* x_6; lean_object* x_7; 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; @@ -22473,7 +22471,43 @@ return x_24; } } } -uint8_t l___private_Init_Data_Array_Basic_0__Array_allDiffAuxAux___at_Lean_Elab_Command_mkSimpleDelab_go___spec__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_Elab_Command_mkSimpleDelab___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; uint8_t x_5; +x_4 = l_Lean_Elab_Command_getRef(x_1, x_2, x_3); +x_5 = !lean_is_exclusive(x_4); +if (x_5 == 0) +{ +lean_object* x_6; lean_object* x_7; lean_object* x_8; +x_6 = lean_ctor_get(x_4, 0); +x_7 = l_Lean_SourceInfo_fromRef(x_6); +lean_dec(x_6); +x_8 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_8, 0, x_7); +lean_ctor_set(x_4, 0, x_8); +return x_4; +} +else +{ +lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; +x_9 = lean_ctor_get(x_4, 0); +x_10 = lean_ctor_get(x_4, 1); +lean_inc(x_10); +lean_inc(x_9); +lean_dec(x_4); +x_11 = l_Lean_SourceInfo_fromRef(x_9); +lean_dec(x_9); +x_12 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_12, 0, x_11); +x_13 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_13, 0, x_12); +lean_ctor_set(x_13, 1, x_10); +return x_13; +} +} +} +uint8_t l___private_Init_Data_Array_Basic_0__Array_allDiffAuxAux___at_Lean_Elab_Command_mkSimpleDelab___spec__4(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; uint8_t x_6; @@ -22511,7 +22545,7 @@ return x_13; } } } -uint8_t l___private_Init_Data_Array_Basic_0__Array_allDiffAux___at_Lean_Elab_Command_mkSimpleDelab_go___spec__2(lean_object* x_1, lean_object* x_2) { +uint8_t l___private_Init_Data_Array_Basic_0__Array_allDiffAux___at_Lean_Elab_Command_mkSimpleDelab___spec__3(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; uint8_t x_4; @@ -22530,7 +22564,7 @@ else lean_object* x_6; uint8_t x_7; x_6 = lean_array_fget(x_1, x_2); lean_inc(x_2); -x_7 = l___private_Init_Data_Array_Basic_0__Array_allDiffAuxAux___at_Lean_Elab_Command_mkSimpleDelab_go___spec__3(x_1, x_6, x_2, lean_box(0)); +x_7 = l___private_Init_Data_Array_Basic_0__Array_allDiffAuxAux___at_Lean_Elab_Command_mkSimpleDelab___spec__4(x_1, x_6, x_2, lean_box(0)); lean_dec(x_6); if (x_7 == 0) { @@ -22551,43 +22585,7 @@ goto _start; } } } -lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_Elab_Command_mkSimpleDelab_go___spec__4(lean_object* x_1, lean_object* x_2, lean_object* x_3) { -_start: -{ -lean_object* x_4; uint8_t x_5; -x_4 = l_Lean_Elab_Command_getRef(x_1, x_2, x_3); -x_5 = !lean_is_exclusive(x_4); -if (x_5 == 0) -{ -lean_object* x_6; lean_object* x_7; lean_object* x_8; -x_6 = lean_ctor_get(x_4, 0); -x_7 = l_Lean_SourceInfo_fromRef(x_6); -lean_dec(x_6); -x_8 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_8, 0, x_7); -lean_ctor_set(x_4, 0, x_8); -return x_4; -} -else -{ -lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; -x_9 = lean_ctor_get(x_4, 0); -x_10 = lean_ctor_get(x_4, 1); -lean_inc(x_10); -lean_inc(x_9); -lean_dec(x_4); -x_11 = l_Lean_SourceInfo_fromRef(x_9); -lean_dec(x_9); -x_12 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_12, 0, x_11); -x_13 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_13, 0, x_12); -lean_ctor_set(x_13, 1, x_10); -return x_13; -} -} -} -uint8_t l_Array_anyMUnsafe_any___at_Lean_Elab_Command_mkSimpleDelab_go___spec__5(lean_object* x_1, size_t x_2, size_t x_3) { +uint8_t l_Array_anyMUnsafe_any___at_Lean_Elab_Command_mkSimpleDelab___spec__5(lean_object* x_1, size_t x_2, size_t x_3) { _start: { uint8_t x_4; @@ -22623,7 +22621,7 @@ return x_12; } } } -static lean_object* _init_l_Lean_Elab_Command_mkSimpleDelab_go___closed__1() { +static lean_object* _init_l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__1() { _start: { lean_object* x_1; @@ -22631,22 +22629,22 @@ x_1 = lean_mk_string("appUnexpander"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Command_mkSimpleDelab_go___closed__2() { +static lean_object* _init_l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__1; +x_1 = l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__1; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_Lean_Elab_Command_mkSimpleDelab_go___closed__3() { +static lean_object* _init_l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__1; +x_1 = l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__2; +x_3 = l_Lean_Elab_Command_mkSimpleDelab___rarg___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); @@ -22654,17 +22652,17 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Lean_Elab_Command_mkSimpleDelab_go___closed__4() { +static lean_object* _init_l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__1; +x_2 = l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Command_mkSimpleDelab_go___closed__5() { +static lean_object* _init_l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__5() { _start: { lean_object* x_1; @@ -22672,22 +22670,22 @@ x_1 = lean_mk_string("unexpand"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Command_mkSimpleDelab_go___closed__6() { +static lean_object* _init_l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__6() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__5; +x_1 = l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__5; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_Lean_Elab_Command_mkSimpleDelab_go___closed__7() { +static lean_object* _init_l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__5; +x_1 = l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__5; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__6; +x_3 = l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__6; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -22695,17 +22693,17 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Lean_Elab_Command_mkSimpleDelab_go___closed__8() { +static lean_object* _init_l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__5; +x_2 = l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__5; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Command_mkSimpleDelab_go___closed__9() { +static lean_object* _init_l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__9() { _start: { lean_object* x_1; @@ -22713,22 +22711,22 @@ x_1 = lean_mk_string("Lean.PrettyPrinter.Unexpander"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Command_mkSimpleDelab_go___closed__10() { +static lean_object* _init_l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__10() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__9; +x_1 = l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__9; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_Lean_Elab_Command_mkSimpleDelab_go___closed__11() { +static lean_object* _init_l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__11() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__9; +x_1 = l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__9; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__10; +x_3 = l_Lean_Elab_Command_mkSimpleDelab___rarg___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); @@ -22736,7 +22734,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Lean_Elab_Command_mkSimpleDelab_go___closed__12() { +static lean_object* _init_l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__12() { _start: { lean_object* x_1; @@ -22744,41 +22742,41 @@ x_1 = lean_mk_string("Unexpander"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Command_mkSimpleDelab_go___closed__13() { +static lean_object* _init_l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__13() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_PrettyPrinter_mkFormatterAttribute___closed__6; -x_2 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__12; +x_2 = l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__12; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Command_mkSimpleDelab_go___closed__14() { +static lean_object* _init_l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__14() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__13; +x_2 = l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__13; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Lean_Elab_Command_mkSimpleDelab_go___closed__15() { +static lean_object* _init_l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__15() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__14; +x_2 = l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__14; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Lean_Elab_Command_mkSimpleDelab_go___closed__16() { +static lean_object* _init_l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__16() { _start: { lean_object* x_1; @@ -22786,4398 +22784,47 @@ x_1 = lean_mk_string("c"); return x_1; } } -static lean_object* _init_l_Lean_Elab_Command_mkSimpleDelab_go___closed__17() { +static lean_object* _init_l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__17() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__16; +x_2 = l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__16; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Command_mkSimpleDelab_go___closed__18() { +static lean_object* _init_l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__18() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__17; +x_1 = l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__17; x_2 = lean_mk_syntax_ident(x_1); return x_2; } } -static lean_object* _init_l_Lean_Elab_Command_mkSimpleDelab_go___closed__19() { +static lean_object* _init_l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__19() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_1 = lean_box(0); -x_2 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__18; +x_2 = l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__18; x_3 = lean_unsigned_to_nat(0u); x_4 = lean_box(0); x_5 = l_Lean_Syntax_mkAntiquotNode(x_2, x_3, x_1, x_4); return x_5; } } -static lean_object* _init_l_Lean_Elab_Command_mkSimpleDelab_go___closed__20() { +static lean_object* _init_l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__20() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Array_empty___closed__1; -x_2 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__19; +x_2 = l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__19; x_3 = lean_array_push(x_1, x_2); return x_3; } } -lean_object* l_Lean_Elab_Command_mkSimpleDelab_go(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { -_start: -{ -lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; -x_7 = l_Lean_Syntax_getId(x_2); -x_8 = l_Lean_resolveGlobalName___at_Lean_Elab_Command_mkSimpleDelab_go___spec__1(x_7, x_4, x_5, x_6); -x_9 = lean_ctor_get(x_8, 0); -lean_inc(x_9); -x_10 = lean_ctor_get(x_9, 0); -lean_inc(x_10); -lean_dec(x_9); -if (lean_obj_tag(x_10) == 0) -{ -uint8_t x_11; -lean_dec(x_1); -x_11 = !lean_is_exclusive(x_8); -if (x_11 == 0) -{ -lean_object* x_12; lean_object* x_13; -x_12 = lean_ctor_get(x_8, 0); -lean_dec(x_12); -x_13 = lean_box(0); -lean_ctor_set(x_8, 0, x_13); -return x_8; -} -else -{ -lean_object* x_14; lean_object* x_15; lean_object* x_16; -x_14 = lean_ctor_get(x_8, 1); -lean_inc(x_14); -lean_dec(x_8); -x_15 = lean_box(0); -x_16 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_16, 0, x_15); -lean_ctor_set(x_16, 1, x_14); -return x_16; -} -} -else -{ -lean_object* x_17; lean_object* x_18; -x_17 = lean_ctor_get(x_10, 0); -lean_inc(x_17); -x_18 = lean_ctor_get(x_17, 1); -lean_inc(x_18); -if (lean_obj_tag(x_18) == 0) -{ -lean_object* x_19; -x_19 = lean_ctor_get(x_10, 1); -lean_inc(x_19); -lean_dec(x_10); -if (lean_obj_tag(x_19) == 0) -{ -uint8_t x_20; -x_20 = !lean_is_exclusive(x_8); -if (x_20 == 0) -{ -lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; uint8_t x_26; -x_21 = lean_ctor_get(x_8, 1); -x_22 = lean_ctor_get(x_8, 0); -lean_dec(x_22); -x_23 = lean_ctor_get(x_17, 0); -lean_inc(x_23); -lean_dec(x_17); -x_24 = lean_array_get_size(x_3); -x_25 = lean_unsigned_to_nat(0u); -x_26 = lean_nat_dec_lt(x_25, x_24); -if (x_26 == 0) -{ -uint8_t x_27; -lean_dec(x_24); -x_27 = l___private_Init_Data_Array_Basic_0__Array_allDiffAux___at_Lean_Elab_Command_mkSimpleDelab_go___spec__2(x_3, x_25); -if (x_27 == 0) -{ -lean_object* x_28; -lean_dec(x_23); -lean_dec(x_1); -x_28 = lean_box(0); -lean_ctor_set(x_8, 0, x_28); -return x_8; -} -else -{ -lean_object* x_29; lean_object* x_30; lean_object* x_501; lean_object* x_502; uint8_t x_503; -lean_free_object(x_8); -x_501 = l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_Elab_Command_mkSimpleDelab_go___spec__4(x_4, x_5, x_21); -x_502 = lean_ctor_get(x_501, 0); -lean_inc(x_502); -x_503 = !lean_is_exclusive(x_502); -if (x_503 == 0) -{ -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; -x_504 = lean_ctor_get(x_502, 0); -lean_dec(x_504); -x_505 = lean_ctor_get(x_501, 1); -lean_inc(x_505); -lean_dec(x_501); -x_506 = l_Lean_Elab_Command_getCurrMacroScope(x_4, x_5, x_505); -x_507 = lean_ctor_get(x_506, 1); -lean_inc(x_507); -lean_dec(x_506); -x_508 = l_Lean_Elab_Command_getMainModule___rarg(x_5, x_507); -x_509 = lean_ctor_get(x_508, 1); -lean_inc(x_509); -lean_dec(x_508); -x_510 = l_Array_empty___closed__1; -x_511 = l_Array_appendCore___rarg(x_510, x_3); -x_512 = l_Lean_nullKind___closed__2; -x_513 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_513, 0, x_512); -lean_ctor_set(x_513, 1, x_511); -x_514 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__20; -x_515 = lean_array_push(x_514, x_513); -x_516 = l_myMacro____x40_Init_Notation___hyg_2191____closed__4; -x_517 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_517, 0, x_516); -lean_ctor_set(x_517, 1, x_515); -lean_ctor_set(x_502, 0, x_517); -x_29 = x_502; -x_30 = x_509; -goto block_500; -} -else -{ -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_dec(x_502); -x_518 = lean_ctor_get(x_501, 1); -lean_inc(x_518); -lean_dec(x_501); -x_519 = l_Lean_Elab_Command_getCurrMacroScope(x_4, x_5, x_518); -x_520 = lean_ctor_get(x_519, 1); -lean_inc(x_520); -lean_dec(x_519); -x_521 = l_Lean_Elab_Command_getMainModule___rarg(x_5, x_520); -x_522 = lean_ctor_get(x_521, 1); -lean_inc(x_522); -lean_dec(x_521); -x_523 = l_Array_empty___closed__1; -x_524 = l_Array_appendCore___rarg(x_523, x_3); -x_525 = l_Lean_nullKind___closed__2; -x_526 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_526, 0, x_525); -lean_ctor_set(x_526, 1, x_524); -x_527 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__20; -x_528 = lean_array_push(x_527, x_526); -x_529 = l_myMacro____x40_Init_Notation___hyg_2191____closed__4; -x_530 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_530, 0, x_529); -lean_ctor_set(x_530, 1, x_528); -x_531 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_531, 0, x_530); -x_29 = x_531; -x_30 = x_522; -goto block_500; -} -block_500: -{ -lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; uint8_t x_35; -x_31 = lean_ctor_get(x_29, 0); -lean_inc(x_31); -lean_dec(x_29); -x_32 = l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_Elab_Command_mkSimpleDelab_go___spec__4(x_4, x_5, x_30); -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 = !lean_is_exclusive(x_33); -if (x_35 == 0) -{ -lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; uint8_t x_41; -x_36 = lean_ctor_get(x_33, 0); -x_37 = l_Lean_Elab_Command_getCurrMacroScope(x_4, x_5, x_34); -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_Lean_Elab_Command_getMainModule___rarg(x_5, x_39); -x_41 = !lean_is_exclusive(x_40); -if (x_41 == 0) -{ -lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; lean_object* x_153; lean_object* x_154; lean_object* x_155; lean_object* x_156; lean_object* x_157; lean_object* x_158; lean_object* x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; lean_object* x_164; lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; lean_object* x_169; lean_object* x_170; lean_object* x_171; lean_object* x_172; lean_object* x_173; lean_object* x_174; lean_object* x_175; lean_object* x_176; lean_object* x_177; lean_object* x_178; lean_object* x_179; lean_object* x_180; lean_object* x_181; lean_object* x_182; lean_object* x_183; lean_object* x_184; lean_object* x_185; lean_object* x_186; lean_object* x_187; lean_object* x_188; lean_object* x_189; lean_object* x_190; -x_42 = lean_ctor_get(x_40, 0); -x_43 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__11; -lean_inc(x_36); -x_44 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_44, 0, x_36); -lean_ctor_set(x_44, 1, x_43); -x_45 = l_Array_empty___closed__1; -x_46 = lean_array_push(x_45, x_44); -x_47 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__4; -lean_inc(x_38); -lean_inc(x_42); -x_48 = l_Lean_addMacroScope(x_42, x_47, x_38); -x_49 = lean_box(0); -x_50 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__3; -lean_inc(x_36); -x_51 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_51, 0, x_36); -lean_ctor_set(x_51, 1, x_50); -lean_ctor_set(x_51, 2, x_48); -lean_ctor_set(x_51, 3, x_49); -x_52 = lean_array_push(x_45, x_51); -x_53 = lean_mk_syntax_ident(x_23); -x_54 = lean_array_push(x_45, x_53); -x_55 = l_Lean_nullKind___closed__2; -x_56 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_56, 0, x_55); -lean_ctor_set(x_56, 1, x_54); -x_57 = lean_array_push(x_52, x_56); -x_58 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__15; -x_59 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_59, 0, x_58); -lean_ctor_set(x_59, 1, x_57); -x_60 = l_myMacro____x40_Init_NotationExtra___hyg_5658____closed__24; -x_61 = lean_array_push(x_60, x_59); -x_62 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__13; -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_45, x_63); -x_65 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_65, 0, x_55); -lean_ctor_set(x_65, 1, x_64); -x_66 = lean_array_push(x_46, x_65); -x_67 = l_term_x5b___x5d___closed__9; -lean_inc(x_36); -x_68 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_68, 0, x_36); -lean_ctor_set(x_68, 1, x_67); -x_69 = lean_array_push(x_66, x_68); -x_70 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__10; -x_71 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_71, 0, x_70); -lean_ctor_set(x_71, 1, x_69); -x_72 = lean_array_push(x_45, x_71); -x_73 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_73, 0, x_55); -lean_ctor_set(x_73, 1, x_72); -x_74 = l_myMacro____x40_Init_Notation___hyg_14470____closed__5; -x_75 = lean_array_push(x_74, x_73); -x_76 = l_myMacro____x40_Init_Notation___hyg_1398____closed__8; -x_77 = lean_array_push(x_75, x_76); -x_78 = lean_array_push(x_77, x_76); -x_79 = lean_array_push(x_78, x_76); -x_80 = lean_array_push(x_79, x_76); -x_81 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__7; -x_82 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_82, 0, x_81); -lean_ctor_set(x_82, 1, x_80); -x_83 = lean_array_push(x_45, x_82); -x_84 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__20; -lean_inc(x_36); -x_85 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_85, 0, x_36); -lean_ctor_set(x_85, 1, x_84); -x_86 = lean_array_push(x_45, x_85); -x_87 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__8; -lean_inc(x_38); -lean_inc(x_42); -x_88 = l_Lean_addMacroScope(x_42, x_87, x_38); -x_89 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__7; -lean_inc(x_36); -x_90 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_90, 0, x_36); -lean_ctor_set(x_90, 1, x_89); -lean_ctor_set(x_90, 2, x_88); -lean_ctor_set(x_90, 3, x_49); -x_91 = lean_array_push(x_45, x_90); -x_92 = lean_array_push(x_91, x_76); -x_93 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__23; -x_94 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_94, 0, x_93); -lean_ctor_set(x_94, 1, x_92); -x_95 = lean_array_push(x_86, x_94); -x_96 = l_myMacro____x40_Init_Notation___hyg_15387____closed__9; -lean_inc(x_36); -x_97 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_97, 0, x_36); -lean_ctor_set(x_97, 1, x_96); -x_98 = lean_array_push(x_45, x_97); -x_99 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__13; -lean_inc(x_38); -lean_inc(x_42); -x_100 = l_Lean_addMacroScope(x_42, x_99, x_38); -x_101 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__11; -x_102 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__15; -lean_inc(x_36); -x_103 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_103, 0, x_36); -lean_ctor_set(x_103, 1, x_101); -lean_ctor_set(x_103, 2, x_100); -lean_ctor_set(x_103, 3, x_102); -x_104 = lean_array_push(x_98, x_103); -x_105 = l_Lean_expandExplicitBindersAux_loop___closed__4; -x_106 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_106, 0, x_105); -lean_ctor_set(x_106, 1, x_104); -x_107 = lean_array_push(x_45, x_106); -x_108 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_108, 0, x_55); -lean_ctor_set(x_108, 1, x_107); -x_109 = lean_array_push(x_74, x_108); -x_110 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__25; -x_111 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_111, 0, x_110); -lean_ctor_set(x_111, 1, x_109); -x_112 = lean_array_push(x_95, x_111); -x_113 = l_myMacro____x40_Init_Notation___hyg_15956____closed__11; -lean_inc(x_36); -x_114 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_114, 0, x_36); -lean_ctor_set(x_114, 1, x_113); -x_115 = lean_array_push(x_45, x_114); -x_116 = l_myMacro____x40_Init_Notation___hyg_13868____closed__9; -lean_inc(x_36); -x_117 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_117, 0, x_36); -lean_ctor_set(x_117, 1, x_116); -x_118 = lean_array_push(x_45, x_117); -x_119 = l_myMacro____x40_Init_Notation___hyg_14470____closed__11; -lean_inc(x_36); -x_120 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_120, 0, x_36); -lean_ctor_set(x_120, 1, x_119); -x_121 = lean_array_push(x_45, x_120); -x_122 = l_Lean_Parser_Term_dynamicQuot___elambda__1___closed__11; -lean_inc(x_36); -x_123 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_123, 0, x_36); -lean_ctor_set(x_123, 1, x_122); -x_124 = lean_array_push(x_45, x_123); -lean_inc(x_124); -x_125 = lean_array_push(x_124, x_31); -x_126 = l_prec_x28___x29___closed__7; -lean_inc(x_36); -x_127 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_127, 0, x_36); -lean_ctor_set(x_127, 1, x_126); -lean_inc(x_127); -x_128 = lean_array_push(x_125, x_127); -x_129 = l_Lean_Parser_Term_quot___elambda__1___closed__1; -x_130 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_130, 0, x_129); -lean_ctor_set(x_130, 1, x_128); -x_131 = lean_array_push(x_45, x_130); -x_132 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_132, 0, x_55); -lean_ctor_set(x_132, 1, x_131); -lean_inc(x_121); -x_133 = lean_array_push(x_121, x_132); -x_134 = l_myMacro____x40_Init_Notation___hyg_13868____closed__13; -lean_inc(x_36); -x_135 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_135, 0, x_36); -lean_ctor_set(x_135, 1, x_134); -lean_inc(x_135); -x_136 = lean_array_push(x_133, x_135); -x_137 = lean_array_push(x_124, x_1); -lean_inc(x_127); -x_138 = lean_array_push(x_137, x_127); -x_139 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_139, 0, x_129); -lean_ctor_set(x_139, 1, x_138); -x_140 = lean_array_push(x_136, x_139); -x_141 = l_myMacro____x40_Init_Notation___hyg_14470____closed__10; -x_142 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_142, 0, x_141); -lean_ctor_set(x_142, 1, x_140); -x_143 = lean_array_push(x_45, x_142); -x_144 = l_myMacro____x40_Init_Notation___hyg_14470____closed__14; -lean_inc(x_36); -x_145 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_145, 0, x_36); -lean_ctor_set(x_145, 1, x_144); -x_146 = lean_array_push(x_45, x_145); -x_147 = l_myMacro____x40_Init_Notation___hyg_14470____closed__13; -x_148 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_148, 0, x_147); -lean_ctor_set(x_148, 1, x_146); -x_149 = lean_array_push(x_45, x_148); -x_150 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_150, 0, x_55); -lean_ctor_set(x_150, 1, x_149); -x_151 = lean_array_push(x_121, x_150); -x_152 = lean_array_push(x_151, x_135); -x_153 = l_Lean_Elab_Command_elabMacroRulesAux___closed__13; -x_154 = l_Lean_addMacroScope(x_42, x_153, x_38); -x_155 = l_Lean_Elab_Command_elabMacroRulesAux___closed__12; -x_156 = l_Lean_Elab_Command_elabMacroRulesAux___closed__18; -lean_inc(x_36); -x_157 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_157, 0, x_36); -lean_ctor_set(x_157, 1, x_155); -lean_ctor_set(x_157, 2, x_154); -lean_ctor_set(x_157, 3, x_156); -x_158 = lean_array_push(x_45, x_157); -x_159 = l_prec_x28___x29___closed__3; -x_160 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_160, 0, x_36); -lean_ctor_set(x_160, 1, x_159); -x_161 = lean_array_push(x_45, x_160); -x_162 = lean_array_push(x_161, x_76); -x_163 = lean_array_push(x_162, x_127); -x_164 = l_myMacro____x40_Init_Notation___hyg_13868____closed__8; -x_165 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_165, 0, x_164); -lean_ctor_set(x_165, 1, x_163); -x_166 = lean_array_push(x_45, x_165); -x_167 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_167, 0, x_55); -lean_ctor_set(x_167, 1, x_166); -x_168 = lean_array_push(x_158, x_167); -x_169 = l_myMacro____x40_Init_Notation___hyg_2191____closed__4; -x_170 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_170, 0, x_169); -lean_ctor_set(x_170, 1, x_168); -x_171 = lean_array_push(x_152, x_170); -x_172 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_172, 0, x_141); -lean_ctor_set(x_172, 1, x_171); -x_173 = lean_array_push(x_143, x_172); -x_174 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_174, 0, x_55); -lean_ctor_set(x_174, 1, x_173); -x_175 = lean_array_push(x_45, x_174); -x_176 = l_myMacro____x40_Init_Notation___hyg_14470____closed__8; -x_177 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_177, 0, x_176); -lean_ctor_set(x_177, 1, x_175); -x_178 = lean_array_push(x_118, x_177); -x_179 = l_myMacro____x40_Init_Notation___hyg_13868____closed__10; -x_180 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_180, 0, x_179); -lean_ctor_set(x_180, 1, x_178); -x_181 = lean_array_push(x_115, x_180); -x_182 = lean_array_push(x_181, x_76); -x_183 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__33; -x_184 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_184, 0, x_183); -lean_ctor_set(x_184, 1, x_182); -x_185 = lean_array_push(x_112, x_184); -x_186 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__21; -x_187 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_187, 0, x_186); -lean_ctor_set(x_187, 1, x_185); -x_188 = lean_array_push(x_83, x_187); -x_189 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__5; -x_190 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_190, 0, x_189); -lean_ctor_set(x_190, 1, x_188); -lean_ctor_set(x_33, 0, x_190); -lean_ctor_set(x_40, 0, x_33); -return x_40; -} -else -{ -lean_object* x_191; lean_object* x_192; lean_object* x_193; lean_object* x_194; lean_object* x_195; lean_object* x_196; lean_object* x_197; lean_object* x_198; lean_object* x_199; lean_object* x_200; lean_object* x_201; lean_object* x_202; lean_object* x_203; lean_object* x_204; lean_object* x_205; lean_object* x_206; lean_object* x_207; lean_object* x_208; lean_object* x_209; lean_object* x_210; lean_object* x_211; lean_object* x_212; lean_object* x_213; lean_object* x_214; lean_object* x_215; lean_object* x_216; lean_object* x_217; lean_object* x_218; lean_object* x_219; lean_object* x_220; lean_object* x_221; lean_object* x_222; lean_object* x_223; lean_object* x_224; lean_object* x_225; lean_object* x_226; lean_object* x_227; lean_object* x_228; lean_object* x_229; lean_object* x_230; lean_object* x_231; lean_object* x_232; 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; 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; -x_191 = lean_ctor_get(x_40, 0); -x_192 = lean_ctor_get(x_40, 1); -lean_inc(x_192); -lean_inc(x_191); -lean_dec(x_40); -x_193 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__11; -lean_inc(x_36); -x_194 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_194, 0, x_36); -lean_ctor_set(x_194, 1, x_193); -x_195 = l_Array_empty___closed__1; -x_196 = lean_array_push(x_195, x_194); -x_197 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__4; -lean_inc(x_38); -lean_inc(x_191); -x_198 = l_Lean_addMacroScope(x_191, x_197, x_38); -x_199 = lean_box(0); -x_200 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__3; -lean_inc(x_36); -x_201 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_201, 0, x_36); -lean_ctor_set(x_201, 1, x_200); -lean_ctor_set(x_201, 2, x_198); -lean_ctor_set(x_201, 3, x_199); -x_202 = lean_array_push(x_195, x_201); -x_203 = lean_mk_syntax_ident(x_23); -x_204 = lean_array_push(x_195, x_203); -x_205 = l_Lean_nullKind___closed__2; -x_206 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_206, 0, x_205); -lean_ctor_set(x_206, 1, x_204); -x_207 = lean_array_push(x_202, x_206); -x_208 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__15; -x_209 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_209, 0, x_208); -lean_ctor_set(x_209, 1, x_207); -x_210 = l_myMacro____x40_Init_NotationExtra___hyg_5658____closed__24; -x_211 = lean_array_push(x_210, x_209); -x_212 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__13; -x_213 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_213, 0, x_212); -lean_ctor_set(x_213, 1, x_211); -x_214 = lean_array_push(x_195, x_213); -x_215 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_215, 0, x_205); -lean_ctor_set(x_215, 1, x_214); -x_216 = lean_array_push(x_196, x_215); -x_217 = l_term_x5b___x5d___closed__9; -lean_inc(x_36); -x_218 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_218, 0, x_36); -lean_ctor_set(x_218, 1, x_217); -x_219 = lean_array_push(x_216, x_218); -x_220 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__10; -x_221 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_221, 0, x_220); -lean_ctor_set(x_221, 1, x_219); -x_222 = lean_array_push(x_195, x_221); -x_223 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_223, 0, x_205); -lean_ctor_set(x_223, 1, x_222); -x_224 = l_myMacro____x40_Init_Notation___hyg_14470____closed__5; -x_225 = lean_array_push(x_224, x_223); -x_226 = l_myMacro____x40_Init_Notation___hyg_1398____closed__8; -x_227 = lean_array_push(x_225, x_226); -x_228 = lean_array_push(x_227, x_226); -x_229 = lean_array_push(x_228, x_226); -x_230 = lean_array_push(x_229, x_226); -x_231 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__7; -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 = lean_array_push(x_195, x_232); -x_234 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__20; -lean_inc(x_36); -x_235 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_235, 0, x_36); -lean_ctor_set(x_235, 1, x_234); -x_236 = lean_array_push(x_195, x_235); -x_237 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__8; -lean_inc(x_38); -lean_inc(x_191); -x_238 = l_Lean_addMacroScope(x_191, x_237, x_38); -x_239 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__7; -lean_inc(x_36); -x_240 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_240, 0, x_36); -lean_ctor_set(x_240, 1, x_239); -lean_ctor_set(x_240, 2, x_238); -lean_ctor_set(x_240, 3, x_199); -x_241 = lean_array_push(x_195, x_240); -x_242 = lean_array_push(x_241, x_226); -x_243 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__23; -x_244 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_244, 0, x_243); -lean_ctor_set(x_244, 1, x_242); -x_245 = lean_array_push(x_236, x_244); -x_246 = l_myMacro____x40_Init_Notation___hyg_15387____closed__9; -lean_inc(x_36); -x_247 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_247, 0, x_36); -lean_ctor_set(x_247, 1, x_246); -x_248 = lean_array_push(x_195, x_247); -x_249 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__13; -lean_inc(x_38); -lean_inc(x_191); -x_250 = l_Lean_addMacroScope(x_191, x_249, x_38); -x_251 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__11; -x_252 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__15; -lean_inc(x_36); -x_253 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_253, 0, x_36); -lean_ctor_set(x_253, 1, x_251); -lean_ctor_set(x_253, 2, x_250); -lean_ctor_set(x_253, 3, x_252); -x_254 = lean_array_push(x_248, x_253); -x_255 = l_Lean_expandExplicitBindersAux_loop___closed__4; -x_256 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_256, 0, x_255); -lean_ctor_set(x_256, 1, x_254); -x_257 = lean_array_push(x_195, x_256); -x_258 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_258, 0, x_205); -lean_ctor_set(x_258, 1, x_257); -x_259 = lean_array_push(x_224, x_258); -x_260 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__25; -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 = lean_array_push(x_245, x_261); -x_263 = l_myMacro____x40_Init_Notation___hyg_15956____closed__11; -lean_inc(x_36); -x_264 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_264, 0, x_36); -lean_ctor_set(x_264, 1, x_263); -x_265 = lean_array_push(x_195, x_264); -x_266 = l_myMacro____x40_Init_Notation___hyg_13868____closed__9; -lean_inc(x_36); -x_267 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_267, 0, x_36); -lean_ctor_set(x_267, 1, x_266); -x_268 = lean_array_push(x_195, x_267); -x_269 = l_myMacro____x40_Init_Notation___hyg_14470____closed__11; -lean_inc(x_36); -x_270 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_270, 0, x_36); -lean_ctor_set(x_270, 1, x_269); -x_271 = lean_array_push(x_195, x_270); -x_272 = l_Lean_Parser_Term_dynamicQuot___elambda__1___closed__11; -lean_inc(x_36); -x_273 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_273, 0, x_36); -lean_ctor_set(x_273, 1, x_272); -x_274 = lean_array_push(x_195, x_273); -lean_inc(x_274); -x_275 = lean_array_push(x_274, x_31); -x_276 = l_prec_x28___x29___closed__7; -lean_inc(x_36); -x_277 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_277, 0, x_36); -lean_ctor_set(x_277, 1, x_276); -lean_inc(x_277); -x_278 = lean_array_push(x_275, x_277); -x_279 = l_Lean_Parser_Term_quot___elambda__1___closed__1; -x_280 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_280, 0, x_279); -lean_ctor_set(x_280, 1, x_278); -x_281 = lean_array_push(x_195, x_280); -x_282 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_282, 0, x_205); -lean_ctor_set(x_282, 1, x_281); -lean_inc(x_271); -x_283 = lean_array_push(x_271, x_282); -x_284 = l_myMacro____x40_Init_Notation___hyg_13868____closed__13; -lean_inc(x_36); -x_285 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_285, 0, x_36); -lean_ctor_set(x_285, 1, x_284); -lean_inc(x_285); -x_286 = lean_array_push(x_283, x_285); -x_287 = lean_array_push(x_274, x_1); -lean_inc(x_277); -x_288 = lean_array_push(x_287, x_277); -x_289 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_289, 0, x_279); -lean_ctor_set(x_289, 1, x_288); -x_290 = lean_array_push(x_286, x_289); -x_291 = l_myMacro____x40_Init_Notation___hyg_14470____closed__10; -x_292 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_292, 0, x_291); -lean_ctor_set(x_292, 1, x_290); -x_293 = lean_array_push(x_195, x_292); -x_294 = l_myMacro____x40_Init_Notation___hyg_14470____closed__14; -lean_inc(x_36); -x_295 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_295, 0, x_36); -lean_ctor_set(x_295, 1, x_294); -x_296 = lean_array_push(x_195, x_295); -x_297 = l_myMacro____x40_Init_Notation___hyg_14470____closed__13; -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_195, x_298); -x_300 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_300, 0, x_205); -lean_ctor_set(x_300, 1, x_299); -x_301 = lean_array_push(x_271, x_300); -x_302 = lean_array_push(x_301, x_285); -x_303 = l_Lean_Elab_Command_elabMacroRulesAux___closed__13; -x_304 = l_Lean_addMacroScope(x_191, x_303, x_38); -x_305 = l_Lean_Elab_Command_elabMacroRulesAux___closed__12; -x_306 = l_Lean_Elab_Command_elabMacroRulesAux___closed__18; -lean_inc(x_36); -x_307 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_307, 0, x_36); -lean_ctor_set(x_307, 1, x_305); -lean_ctor_set(x_307, 2, x_304); -lean_ctor_set(x_307, 3, x_306); -x_308 = lean_array_push(x_195, x_307); -x_309 = l_prec_x28___x29___closed__3; -x_310 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_310, 0, x_36); -lean_ctor_set(x_310, 1, x_309); -x_311 = lean_array_push(x_195, x_310); -x_312 = lean_array_push(x_311, x_226); -x_313 = lean_array_push(x_312, x_277); -x_314 = l_myMacro____x40_Init_Notation___hyg_13868____closed__8; -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_195, x_315); -x_317 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_317, 0, x_205); -lean_ctor_set(x_317, 1, x_316); -x_318 = lean_array_push(x_308, x_317); -x_319 = l_myMacro____x40_Init_Notation___hyg_2191____closed__4; -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_302, x_320); -x_322 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_322, 0, x_291); -lean_ctor_set(x_322, 1, x_321); -x_323 = lean_array_push(x_293, x_322); -x_324 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_324, 0, x_205); -lean_ctor_set(x_324, 1, x_323); -x_325 = lean_array_push(x_195, x_324); -x_326 = l_myMacro____x40_Init_Notation___hyg_14470____closed__8; -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_array_push(x_268, x_327); -x_329 = l_myMacro____x40_Init_Notation___hyg_13868____closed__10; -x_330 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_330, 0, x_329); -lean_ctor_set(x_330, 1, x_328); -x_331 = lean_array_push(x_265, x_330); -x_332 = lean_array_push(x_331, x_226); -x_333 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__33; -x_334 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_334, 0, x_333); -lean_ctor_set(x_334, 1, x_332); -x_335 = lean_array_push(x_262, x_334); -x_336 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__21; -x_337 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_337, 0, x_336); -lean_ctor_set(x_337, 1, x_335); -x_338 = lean_array_push(x_233, x_337); -x_339 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__5; -x_340 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_340, 0, x_339); -lean_ctor_set(x_340, 1, x_338); -lean_ctor_set(x_33, 0, x_340); -x_341 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_341, 0, x_33); -lean_ctor_set(x_341, 1, x_192); -return x_341; -} -} -else -{ -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; 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; -x_342 = lean_ctor_get(x_33, 0); -lean_inc(x_342); -lean_dec(x_33); -x_343 = l_Lean_Elab_Command_getCurrMacroScope(x_4, x_5, x_34); -x_344 = lean_ctor_get(x_343, 0); -lean_inc(x_344); -x_345 = lean_ctor_get(x_343, 1); -lean_inc(x_345); -lean_dec(x_343); -x_346 = l_Lean_Elab_Command_getMainModule___rarg(x_5, x_345); -x_347 = lean_ctor_get(x_346, 0); -lean_inc(x_347); -x_348 = lean_ctor_get(x_346, 1); -lean_inc(x_348); -if (lean_is_exclusive(x_346)) { - lean_ctor_release(x_346, 0); - lean_ctor_release(x_346, 1); - x_349 = x_346; -} else { - lean_dec_ref(x_346); - x_349 = lean_box(0); -} -x_350 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__11; -lean_inc(x_342); -x_351 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_351, 0, x_342); -lean_ctor_set(x_351, 1, x_350); -x_352 = l_Array_empty___closed__1; -x_353 = lean_array_push(x_352, x_351); -x_354 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__4; -lean_inc(x_344); -lean_inc(x_347); -x_355 = l_Lean_addMacroScope(x_347, x_354, x_344); -x_356 = lean_box(0); -x_357 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__3; -lean_inc(x_342); -x_358 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_358, 0, x_342); -lean_ctor_set(x_358, 1, x_357); -lean_ctor_set(x_358, 2, x_355); -lean_ctor_set(x_358, 3, x_356); -x_359 = lean_array_push(x_352, x_358); -x_360 = lean_mk_syntax_ident(x_23); -x_361 = lean_array_push(x_352, x_360); -x_362 = l_Lean_nullKind___closed__2; -x_363 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_363, 0, x_362); -lean_ctor_set(x_363, 1, x_361); -x_364 = lean_array_push(x_359, x_363); -x_365 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__15; -x_366 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_366, 0, x_365); -lean_ctor_set(x_366, 1, x_364); -x_367 = l_myMacro____x40_Init_NotationExtra___hyg_5658____closed__24; -x_368 = lean_array_push(x_367, x_366); -x_369 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__13; -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 = lean_array_push(x_352, x_370); -x_372 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_372, 0, x_362); -lean_ctor_set(x_372, 1, x_371); -x_373 = lean_array_push(x_353, x_372); -x_374 = l_term_x5b___x5d___closed__9; -lean_inc(x_342); -x_375 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_375, 0, x_342); -lean_ctor_set(x_375, 1, x_374); -x_376 = lean_array_push(x_373, x_375); -x_377 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__10; -x_378 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_378, 0, x_377); -lean_ctor_set(x_378, 1, x_376); -x_379 = lean_array_push(x_352, x_378); -x_380 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_380, 0, x_362); -lean_ctor_set(x_380, 1, x_379); -x_381 = l_myMacro____x40_Init_Notation___hyg_14470____closed__5; -x_382 = lean_array_push(x_381, x_380); -x_383 = l_myMacro____x40_Init_Notation___hyg_1398____closed__8; -x_384 = lean_array_push(x_382, x_383); -x_385 = lean_array_push(x_384, x_383); -x_386 = lean_array_push(x_385, x_383); -x_387 = lean_array_push(x_386, x_383); -x_388 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__7; -x_389 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_389, 0, x_388); -lean_ctor_set(x_389, 1, x_387); -x_390 = lean_array_push(x_352, x_389); -x_391 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__20; -lean_inc(x_342); -x_392 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_392, 0, x_342); -lean_ctor_set(x_392, 1, x_391); -x_393 = lean_array_push(x_352, x_392); -x_394 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__8; -lean_inc(x_344); -lean_inc(x_347); -x_395 = l_Lean_addMacroScope(x_347, x_394, x_344); -x_396 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__7; -lean_inc(x_342); -x_397 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_397, 0, x_342); -lean_ctor_set(x_397, 1, x_396); -lean_ctor_set(x_397, 2, x_395); -lean_ctor_set(x_397, 3, x_356); -x_398 = lean_array_push(x_352, x_397); -x_399 = lean_array_push(x_398, x_383); -x_400 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__23; -x_401 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_401, 0, x_400); -lean_ctor_set(x_401, 1, x_399); -x_402 = lean_array_push(x_393, x_401); -x_403 = l_myMacro____x40_Init_Notation___hyg_15387____closed__9; -lean_inc(x_342); -x_404 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_404, 0, x_342); -lean_ctor_set(x_404, 1, x_403); -x_405 = lean_array_push(x_352, x_404); -x_406 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__13; -lean_inc(x_344); -lean_inc(x_347); -x_407 = l_Lean_addMacroScope(x_347, x_406, x_344); -x_408 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__11; -x_409 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__15; -lean_inc(x_342); -x_410 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_410, 0, x_342); -lean_ctor_set(x_410, 1, x_408); -lean_ctor_set(x_410, 2, x_407); -lean_ctor_set(x_410, 3, x_409); -x_411 = lean_array_push(x_405, x_410); -x_412 = l_Lean_expandExplicitBindersAux_loop___closed__4; -x_413 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_413, 0, x_412); -lean_ctor_set(x_413, 1, x_411); -x_414 = lean_array_push(x_352, x_413); -x_415 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_415, 0, x_362); -lean_ctor_set(x_415, 1, x_414); -x_416 = lean_array_push(x_381, x_415); -x_417 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__25; -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_402, x_418); -x_420 = l_myMacro____x40_Init_Notation___hyg_15956____closed__11; -lean_inc(x_342); -x_421 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_421, 0, x_342); -lean_ctor_set(x_421, 1, x_420); -x_422 = lean_array_push(x_352, x_421); -x_423 = l_myMacro____x40_Init_Notation___hyg_13868____closed__9; -lean_inc(x_342); -x_424 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_424, 0, x_342); -lean_ctor_set(x_424, 1, x_423); -x_425 = lean_array_push(x_352, x_424); -x_426 = l_myMacro____x40_Init_Notation___hyg_14470____closed__11; -lean_inc(x_342); -x_427 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_427, 0, x_342); -lean_ctor_set(x_427, 1, x_426); -x_428 = lean_array_push(x_352, x_427); -x_429 = l_Lean_Parser_Term_dynamicQuot___elambda__1___closed__11; -lean_inc(x_342); -x_430 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_430, 0, x_342); -lean_ctor_set(x_430, 1, x_429); -x_431 = lean_array_push(x_352, x_430); -lean_inc(x_431); -x_432 = lean_array_push(x_431, x_31); -x_433 = l_prec_x28___x29___closed__7; -lean_inc(x_342); -x_434 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_434, 0, x_342); -lean_ctor_set(x_434, 1, x_433); -lean_inc(x_434); -x_435 = lean_array_push(x_432, x_434); -x_436 = l_Lean_Parser_Term_quot___elambda__1___closed__1; -x_437 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_437, 0, x_436); -lean_ctor_set(x_437, 1, x_435); -x_438 = lean_array_push(x_352, x_437); -x_439 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_439, 0, x_362); -lean_ctor_set(x_439, 1, x_438); -lean_inc(x_428); -x_440 = lean_array_push(x_428, x_439); -x_441 = l_myMacro____x40_Init_Notation___hyg_13868____closed__13; -lean_inc(x_342); -x_442 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_442, 0, x_342); -lean_ctor_set(x_442, 1, x_441); -lean_inc(x_442); -x_443 = lean_array_push(x_440, x_442); -x_444 = lean_array_push(x_431, x_1); -lean_inc(x_434); -x_445 = lean_array_push(x_444, x_434); -x_446 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_446, 0, x_436); -lean_ctor_set(x_446, 1, x_445); -x_447 = lean_array_push(x_443, x_446); -x_448 = l_myMacro____x40_Init_Notation___hyg_14470____closed__10; -x_449 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_449, 0, x_448); -lean_ctor_set(x_449, 1, x_447); -x_450 = lean_array_push(x_352, x_449); -x_451 = l_myMacro____x40_Init_Notation___hyg_14470____closed__14; -lean_inc(x_342); -x_452 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_452, 0, x_342); -lean_ctor_set(x_452, 1, x_451); -x_453 = lean_array_push(x_352, x_452); -x_454 = l_myMacro____x40_Init_Notation___hyg_14470____closed__13; -x_455 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_455, 0, x_454); -lean_ctor_set(x_455, 1, x_453); -x_456 = lean_array_push(x_352, x_455); -x_457 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_457, 0, x_362); -lean_ctor_set(x_457, 1, x_456); -x_458 = lean_array_push(x_428, x_457); -x_459 = lean_array_push(x_458, x_442); -x_460 = l_Lean_Elab_Command_elabMacroRulesAux___closed__13; -x_461 = l_Lean_addMacroScope(x_347, x_460, x_344); -x_462 = l_Lean_Elab_Command_elabMacroRulesAux___closed__12; -x_463 = l_Lean_Elab_Command_elabMacroRulesAux___closed__18; -lean_inc(x_342); -x_464 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_464, 0, x_342); -lean_ctor_set(x_464, 1, x_462); -lean_ctor_set(x_464, 2, x_461); -lean_ctor_set(x_464, 3, x_463); -x_465 = lean_array_push(x_352, x_464); -x_466 = l_prec_x28___x29___closed__3; -x_467 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_467, 0, x_342); -lean_ctor_set(x_467, 1, x_466); -x_468 = lean_array_push(x_352, x_467); -x_469 = lean_array_push(x_468, x_383); -x_470 = lean_array_push(x_469, x_434); -x_471 = l_myMacro____x40_Init_Notation___hyg_13868____closed__8; -x_472 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_472, 0, x_471); -lean_ctor_set(x_472, 1, x_470); -x_473 = lean_array_push(x_352, x_472); -x_474 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_474, 0, x_362); -lean_ctor_set(x_474, 1, x_473); -x_475 = lean_array_push(x_465, x_474); -x_476 = l_myMacro____x40_Init_Notation___hyg_2191____closed__4; -x_477 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_477, 0, x_476); -lean_ctor_set(x_477, 1, x_475); -x_478 = lean_array_push(x_459, x_477); -x_479 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_479, 0, x_448); -lean_ctor_set(x_479, 1, x_478); -x_480 = lean_array_push(x_450, x_479); -x_481 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_481, 0, x_362); -lean_ctor_set(x_481, 1, x_480); -x_482 = lean_array_push(x_352, x_481); -x_483 = l_myMacro____x40_Init_Notation___hyg_14470____closed__8; -x_484 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_484, 0, x_483); -lean_ctor_set(x_484, 1, x_482); -x_485 = lean_array_push(x_425, x_484); -x_486 = l_myMacro____x40_Init_Notation___hyg_13868____closed__10; -x_487 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_487, 0, x_486); -lean_ctor_set(x_487, 1, x_485); -x_488 = lean_array_push(x_422, x_487); -x_489 = lean_array_push(x_488, x_383); -x_490 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__33; -x_491 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_491, 0, x_490); -lean_ctor_set(x_491, 1, x_489); -x_492 = lean_array_push(x_419, x_491); -x_493 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__21; -x_494 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_494, 0, x_493); -lean_ctor_set(x_494, 1, x_492); -x_495 = lean_array_push(x_390, x_494); -x_496 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__5; -x_497 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_497, 0, x_496); -lean_ctor_set(x_497, 1, x_495); -x_498 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_498, 0, x_497); -if (lean_is_scalar(x_349)) { - x_499 = lean_alloc_ctor(0, 2, 0); -} else { - x_499 = x_349; -} -lean_ctor_set(x_499, 0, x_498); -lean_ctor_set(x_499, 1, x_348); -return x_499; -} -} -} -} -else -{ -uint8_t x_532; -x_532 = lean_nat_dec_le(x_24, x_24); -if (x_532 == 0) -{ -uint8_t x_533; -lean_dec(x_24); -x_533 = l___private_Init_Data_Array_Basic_0__Array_allDiffAux___at_Lean_Elab_Command_mkSimpleDelab_go___spec__2(x_3, x_25); -if (x_533 == 0) -{ -lean_object* x_534; -lean_dec(x_23); -lean_dec(x_1); -x_534 = lean_box(0); -lean_ctor_set(x_8, 0, x_534); -return x_8; -} -else -{ -lean_object* x_535; lean_object* x_536; lean_object* x_1007; lean_object* x_1008; uint8_t x_1009; -lean_free_object(x_8); -x_1007 = l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_Elab_Command_mkSimpleDelab_go___spec__4(x_4, x_5, x_21); -x_1008 = lean_ctor_get(x_1007, 0); -lean_inc(x_1008); -x_1009 = !lean_is_exclusive(x_1008); -if (x_1009 == 0) -{ -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; -x_1010 = lean_ctor_get(x_1008, 0); -lean_dec(x_1010); -x_1011 = lean_ctor_get(x_1007, 1); -lean_inc(x_1011); -lean_dec(x_1007); -x_1012 = l_Lean_Elab_Command_getCurrMacroScope(x_4, x_5, x_1011); -x_1013 = lean_ctor_get(x_1012, 1); -lean_inc(x_1013); -lean_dec(x_1012); -x_1014 = l_Lean_Elab_Command_getMainModule___rarg(x_5, x_1013); -x_1015 = lean_ctor_get(x_1014, 1); -lean_inc(x_1015); -lean_dec(x_1014); -x_1016 = l_Array_empty___closed__1; -x_1017 = l_Array_appendCore___rarg(x_1016, x_3); -x_1018 = l_Lean_nullKind___closed__2; -x_1019 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1019, 0, x_1018); -lean_ctor_set(x_1019, 1, x_1017); -x_1020 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__20; -x_1021 = lean_array_push(x_1020, x_1019); -x_1022 = l_myMacro____x40_Init_Notation___hyg_2191____closed__4; -x_1023 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1023, 0, x_1022); -lean_ctor_set(x_1023, 1, x_1021); -lean_ctor_set(x_1008, 0, x_1023); -x_535 = x_1008; -x_536 = x_1015; -goto block_1006; -} -else -{ -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_dec(x_1008); -x_1024 = lean_ctor_get(x_1007, 1); -lean_inc(x_1024); -lean_dec(x_1007); -x_1025 = l_Lean_Elab_Command_getCurrMacroScope(x_4, x_5, x_1024); -x_1026 = lean_ctor_get(x_1025, 1); -lean_inc(x_1026); -lean_dec(x_1025); -x_1027 = l_Lean_Elab_Command_getMainModule___rarg(x_5, x_1026); -x_1028 = lean_ctor_get(x_1027, 1); -lean_inc(x_1028); -lean_dec(x_1027); -x_1029 = l_Array_empty___closed__1; -x_1030 = l_Array_appendCore___rarg(x_1029, x_3); -x_1031 = l_Lean_nullKind___closed__2; -x_1032 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1032, 0, x_1031); -lean_ctor_set(x_1032, 1, x_1030); -x_1033 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__20; -x_1034 = lean_array_push(x_1033, x_1032); -x_1035 = l_myMacro____x40_Init_Notation___hyg_2191____closed__4; -x_1036 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1036, 0, x_1035); -lean_ctor_set(x_1036, 1, x_1034); -x_1037 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_1037, 0, x_1036); -x_535 = x_1037; -x_536 = x_1028; -goto block_1006; -} -block_1006: -{ -lean_object* x_537; lean_object* x_538; lean_object* x_539; lean_object* x_540; uint8_t x_541; -x_537 = lean_ctor_get(x_535, 0); -lean_inc(x_537); -lean_dec(x_535); -x_538 = l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_Elab_Command_mkSimpleDelab_go___spec__4(x_4, x_5, x_536); -x_539 = lean_ctor_get(x_538, 0); -lean_inc(x_539); -x_540 = lean_ctor_get(x_538, 1); -lean_inc(x_540); -lean_dec(x_538); -x_541 = !lean_is_exclusive(x_539); -if (x_541 == 0) -{ -lean_object* x_542; lean_object* x_543; lean_object* x_544; lean_object* x_545; lean_object* x_546; uint8_t x_547; -x_542 = lean_ctor_get(x_539, 0); -x_543 = l_Lean_Elab_Command_getCurrMacroScope(x_4, x_5, x_540); -x_544 = lean_ctor_get(x_543, 0); -lean_inc(x_544); -x_545 = lean_ctor_get(x_543, 1); -lean_inc(x_545); -lean_dec(x_543); -x_546 = l_Lean_Elab_Command_getMainModule___rarg(x_5, x_545); -x_547 = !lean_is_exclusive(x_546); -if (x_547 == 0) -{ -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; 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; 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; -x_548 = lean_ctor_get(x_546, 0); -x_549 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__11; -lean_inc(x_542); -x_550 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_550, 0, x_542); -lean_ctor_set(x_550, 1, x_549); -x_551 = l_Array_empty___closed__1; -x_552 = lean_array_push(x_551, x_550); -x_553 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__4; -lean_inc(x_544); -lean_inc(x_548); -x_554 = l_Lean_addMacroScope(x_548, x_553, x_544); -x_555 = lean_box(0); -x_556 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__3; -lean_inc(x_542); -x_557 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_557, 0, x_542); -lean_ctor_set(x_557, 1, x_556); -lean_ctor_set(x_557, 2, x_554); -lean_ctor_set(x_557, 3, x_555); -x_558 = lean_array_push(x_551, x_557); -x_559 = lean_mk_syntax_ident(x_23); -x_560 = lean_array_push(x_551, x_559); -x_561 = l_Lean_nullKind___closed__2; -x_562 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_562, 0, x_561); -lean_ctor_set(x_562, 1, x_560); -x_563 = lean_array_push(x_558, x_562); -x_564 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__15; -x_565 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_565, 0, x_564); -lean_ctor_set(x_565, 1, x_563); -x_566 = l_myMacro____x40_Init_NotationExtra___hyg_5658____closed__24; -x_567 = lean_array_push(x_566, x_565); -x_568 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__13; -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_551, x_569); -x_571 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_571, 0, x_561); -lean_ctor_set(x_571, 1, x_570); -x_572 = lean_array_push(x_552, x_571); -x_573 = l_term_x5b___x5d___closed__9; -lean_inc(x_542); -x_574 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_574, 0, x_542); -lean_ctor_set(x_574, 1, x_573); -x_575 = lean_array_push(x_572, x_574); -x_576 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__10; -x_577 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_577, 0, x_576); -lean_ctor_set(x_577, 1, x_575); -x_578 = lean_array_push(x_551, x_577); -x_579 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_579, 0, x_561); -lean_ctor_set(x_579, 1, x_578); -x_580 = l_myMacro____x40_Init_Notation___hyg_14470____closed__5; -x_581 = lean_array_push(x_580, x_579); -x_582 = l_myMacro____x40_Init_Notation___hyg_1398____closed__8; -x_583 = lean_array_push(x_581, x_582); -x_584 = lean_array_push(x_583, x_582); -x_585 = lean_array_push(x_584, x_582); -x_586 = lean_array_push(x_585, x_582); -x_587 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__7; -x_588 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_588, 0, x_587); -lean_ctor_set(x_588, 1, x_586); -x_589 = lean_array_push(x_551, x_588); -x_590 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__20; -lean_inc(x_542); -x_591 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_591, 0, x_542); -lean_ctor_set(x_591, 1, x_590); -x_592 = lean_array_push(x_551, x_591); -x_593 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__8; -lean_inc(x_544); -lean_inc(x_548); -x_594 = l_Lean_addMacroScope(x_548, x_593, x_544); -x_595 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__7; -lean_inc(x_542); -x_596 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_596, 0, x_542); -lean_ctor_set(x_596, 1, x_595); -lean_ctor_set(x_596, 2, x_594); -lean_ctor_set(x_596, 3, x_555); -x_597 = lean_array_push(x_551, x_596); -x_598 = lean_array_push(x_597, x_582); -x_599 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__23; -x_600 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_600, 0, x_599); -lean_ctor_set(x_600, 1, x_598); -x_601 = lean_array_push(x_592, x_600); -x_602 = l_myMacro____x40_Init_Notation___hyg_15387____closed__9; -lean_inc(x_542); -x_603 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_603, 0, x_542); -lean_ctor_set(x_603, 1, x_602); -x_604 = lean_array_push(x_551, x_603); -x_605 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__13; -lean_inc(x_544); -lean_inc(x_548); -x_606 = l_Lean_addMacroScope(x_548, x_605, x_544); -x_607 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__11; -x_608 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__15; -lean_inc(x_542); -x_609 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_609, 0, x_542); -lean_ctor_set(x_609, 1, x_607); -lean_ctor_set(x_609, 2, x_606); -lean_ctor_set(x_609, 3, x_608); -x_610 = lean_array_push(x_604, x_609); -x_611 = l_Lean_expandExplicitBindersAux_loop___closed__4; -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_551, x_612); -x_614 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_614, 0, x_561); -lean_ctor_set(x_614, 1, x_613); -x_615 = lean_array_push(x_580, x_614); -x_616 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__25; -x_617 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_617, 0, x_616); -lean_ctor_set(x_617, 1, x_615); -x_618 = lean_array_push(x_601, x_617); -x_619 = l_myMacro____x40_Init_Notation___hyg_15956____closed__11; -lean_inc(x_542); -x_620 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_620, 0, x_542); -lean_ctor_set(x_620, 1, x_619); -x_621 = lean_array_push(x_551, x_620); -x_622 = l_myMacro____x40_Init_Notation___hyg_13868____closed__9; -lean_inc(x_542); -x_623 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_623, 0, x_542); -lean_ctor_set(x_623, 1, x_622); -x_624 = lean_array_push(x_551, x_623); -x_625 = l_myMacro____x40_Init_Notation___hyg_14470____closed__11; -lean_inc(x_542); -x_626 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_626, 0, x_542); -lean_ctor_set(x_626, 1, x_625); -x_627 = lean_array_push(x_551, x_626); -x_628 = l_Lean_Parser_Term_dynamicQuot___elambda__1___closed__11; -lean_inc(x_542); -x_629 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_629, 0, x_542); -lean_ctor_set(x_629, 1, x_628); -x_630 = lean_array_push(x_551, x_629); -lean_inc(x_630); -x_631 = lean_array_push(x_630, x_537); -x_632 = l_prec_x28___x29___closed__7; -lean_inc(x_542); -x_633 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_633, 0, x_542); -lean_ctor_set(x_633, 1, x_632); -lean_inc(x_633); -x_634 = lean_array_push(x_631, x_633); -x_635 = l_Lean_Parser_Term_quot___elambda__1___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_551, x_636); -x_638 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_638, 0, x_561); -lean_ctor_set(x_638, 1, x_637); -lean_inc(x_627); -x_639 = lean_array_push(x_627, x_638); -x_640 = l_myMacro____x40_Init_Notation___hyg_13868____closed__13; -lean_inc(x_542); -x_641 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_641, 0, x_542); -lean_ctor_set(x_641, 1, x_640); -lean_inc(x_641); -x_642 = lean_array_push(x_639, x_641); -x_643 = lean_array_push(x_630, x_1); -lean_inc(x_633); -x_644 = lean_array_push(x_643, x_633); -x_645 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_645, 0, x_635); -lean_ctor_set(x_645, 1, x_644); -x_646 = lean_array_push(x_642, x_645); -x_647 = l_myMacro____x40_Init_Notation___hyg_14470____closed__10; -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_551, x_648); -x_650 = l_myMacro____x40_Init_Notation___hyg_14470____closed__14; -lean_inc(x_542); -x_651 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_651, 0, x_542); -lean_ctor_set(x_651, 1, x_650); -x_652 = lean_array_push(x_551, x_651); -x_653 = l_myMacro____x40_Init_Notation___hyg_14470____closed__13; -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_array_push(x_551, x_654); -x_656 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_656, 0, x_561); -lean_ctor_set(x_656, 1, x_655); -x_657 = lean_array_push(x_627, x_656); -x_658 = lean_array_push(x_657, x_641); -x_659 = l_Lean_Elab_Command_elabMacroRulesAux___closed__13; -x_660 = l_Lean_addMacroScope(x_548, x_659, x_544); -x_661 = l_Lean_Elab_Command_elabMacroRulesAux___closed__12; -x_662 = l_Lean_Elab_Command_elabMacroRulesAux___closed__18; -lean_inc(x_542); -x_663 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_663, 0, x_542); -lean_ctor_set(x_663, 1, x_661); -lean_ctor_set(x_663, 2, x_660); -lean_ctor_set(x_663, 3, x_662); -x_664 = lean_array_push(x_551, x_663); -x_665 = l_prec_x28___x29___closed__3; -x_666 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_666, 0, x_542); -lean_ctor_set(x_666, 1, x_665); -x_667 = lean_array_push(x_551, x_666); -x_668 = lean_array_push(x_667, x_582); -x_669 = lean_array_push(x_668, x_633); -x_670 = l_myMacro____x40_Init_Notation___hyg_13868____closed__8; -x_671 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_671, 0, x_670); -lean_ctor_set(x_671, 1, x_669); -x_672 = lean_array_push(x_551, x_671); -x_673 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_673, 0, x_561); -lean_ctor_set(x_673, 1, x_672); -x_674 = lean_array_push(x_664, x_673); -x_675 = l_myMacro____x40_Init_Notation___hyg_2191____closed__4; -x_676 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_676, 0, x_675); -lean_ctor_set(x_676, 1, x_674); -x_677 = lean_array_push(x_658, x_676); -x_678 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_678, 0, x_647); -lean_ctor_set(x_678, 1, x_677); -x_679 = lean_array_push(x_649, x_678); -x_680 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_680, 0, x_561); -lean_ctor_set(x_680, 1, x_679); -x_681 = lean_array_push(x_551, x_680); -x_682 = l_myMacro____x40_Init_Notation___hyg_14470____closed__8; -x_683 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_683, 0, x_682); -lean_ctor_set(x_683, 1, x_681); -x_684 = lean_array_push(x_624, x_683); -x_685 = l_myMacro____x40_Init_Notation___hyg_13868____closed__10; -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_621, x_686); -x_688 = lean_array_push(x_687, x_582); -x_689 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__33; -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_618, x_690); -x_692 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__21; -x_693 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_693, 0, x_692); -lean_ctor_set(x_693, 1, x_691); -x_694 = lean_array_push(x_589, x_693); -x_695 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__5; -x_696 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_696, 0, x_695); -lean_ctor_set(x_696, 1, x_694); -lean_ctor_set(x_539, 0, x_696); -lean_ctor_set(x_546, 0, x_539); -return x_546; -} -else -{ -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; 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; -x_697 = lean_ctor_get(x_546, 0); -x_698 = lean_ctor_get(x_546, 1); -lean_inc(x_698); -lean_inc(x_697); -lean_dec(x_546); -x_699 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__11; -lean_inc(x_542); -x_700 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_700, 0, x_542); -lean_ctor_set(x_700, 1, x_699); -x_701 = l_Array_empty___closed__1; -x_702 = lean_array_push(x_701, x_700); -x_703 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__4; -lean_inc(x_544); -lean_inc(x_697); -x_704 = l_Lean_addMacroScope(x_697, x_703, x_544); -x_705 = lean_box(0); -x_706 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__3; -lean_inc(x_542); -x_707 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_707, 0, x_542); -lean_ctor_set(x_707, 1, x_706); -lean_ctor_set(x_707, 2, x_704); -lean_ctor_set(x_707, 3, x_705); -x_708 = lean_array_push(x_701, x_707); -x_709 = lean_mk_syntax_ident(x_23); -x_710 = lean_array_push(x_701, x_709); -x_711 = l_Lean_nullKind___closed__2; -x_712 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_712, 0, x_711); -lean_ctor_set(x_712, 1, x_710); -x_713 = lean_array_push(x_708, x_712); -x_714 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__15; -x_715 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_715, 0, x_714); -lean_ctor_set(x_715, 1, x_713); -x_716 = l_myMacro____x40_Init_NotationExtra___hyg_5658____closed__24; -x_717 = lean_array_push(x_716, x_715); -x_718 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__13; -x_719 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_719, 0, x_718); -lean_ctor_set(x_719, 1, x_717); -x_720 = lean_array_push(x_701, x_719); -x_721 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_721, 0, x_711); -lean_ctor_set(x_721, 1, x_720); -x_722 = lean_array_push(x_702, x_721); -x_723 = l_term_x5b___x5d___closed__9; -lean_inc(x_542); -x_724 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_724, 0, x_542); -lean_ctor_set(x_724, 1, x_723); -x_725 = lean_array_push(x_722, x_724); -x_726 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__10; -x_727 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_727, 0, x_726); -lean_ctor_set(x_727, 1, x_725); -x_728 = lean_array_push(x_701, x_727); -x_729 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_729, 0, x_711); -lean_ctor_set(x_729, 1, x_728); -x_730 = l_myMacro____x40_Init_Notation___hyg_14470____closed__5; -x_731 = lean_array_push(x_730, x_729); -x_732 = l_myMacro____x40_Init_Notation___hyg_1398____closed__8; -x_733 = lean_array_push(x_731, x_732); -x_734 = lean_array_push(x_733, x_732); -x_735 = lean_array_push(x_734, x_732); -x_736 = lean_array_push(x_735, x_732); -x_737 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__7; -x_738 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_738, 0, x_737); -lean_ctor_set(x_738, 1, x_736); -x_739 = lean_array_push(x_701, x_738); -x_740 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__20; -lean_inc(x_542); -x_741 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_741, 0, x_542); -lean_ctor_set(x_741, 1, x_740); -x_742 = lean_array_push(x_701, x_741); -x_743 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__8; -lean_inc(x_544); -lean_inc(x_697); -x_744 = l_Lean_addMacroScope(x_697, x_743, x_544); -x_745 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__7; -lean_inc(x_542); -x_746 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_746, 0, x_542); -lean_ctor_set(x_746, 1, x_745); -lean_ctor_set(x_746, 2, x_744); -lean_ctor_set(x_746, 3, x_705); -x_747 = lean_array_push(x_701, x_746); -x_748 = lean_array_push(x_747, x_732); -x_749 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__23; -x_750 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_750, 0, x_749); -lean_ctor_set(x_750, 1, x_748); -x_751 = lean_array_push(x_742, x_750); -x_752 = l_myMacro____x40_Init_Notation___hyg_15387____closed__9; -lean_inc(x_542); -x_753 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_753, 0, x_542); -lean_ctor_set(x_753, 1, x_752); -x_754 = lean_array_push(x_701, x_753); -x_755 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__13; -lean_inc(x_544); -lean_inc(x_697); -x_756 = l_Lean_addMacroScope(x_697, x_755, x_544); -x_757 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__11; -x_758 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__15; -lean_inc(x_542); -x_759 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_759, 0, x_542); -lean_ctor_set(x_759, 1, x_757); -lean_ctor_set(x_759, 2, x_756); -lean_ctor_set(x_759, 3, x_758); -x_760 = lean_array_push(x_754, x_759); -x_761 = l_Lean_expandExplicitBindersAux_loop___closed__4; -x_762 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_762, 0, x_761); -lean_ctor_set(x_762, 1, x_760); -x_763 = lean_array_push(x_701, x_762); -x_764 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_764, 0, x_711); -lean_ctor_set(x_764, 1, x_763); -x_765 = lean_array_push(x_730, x_764); -x_766 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__25; -x_767 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_767, 0, x_766); -lean_ctor_set(x_767, 1, x_765); -x_768 = lean_array_push(x_751, x_767); -x_769 = l_myMacro____x40_Init_Notation___hyg_15956____closed__11; -lean_inc(x_542); -x_770 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_770, 0, x_542); -lean_ctor_set(x_770, 1, x_769); -x_771 = lean_array_push(x_701, x_770); -x_772 = l_myMacro____x40_Init_Notation___hyg_13868____closed__9; -lean_inc(x_542); -x_773 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_773, 0, x_542); -lean_ctor_set(x_773, 1, x_772); -x_774 = lean_array_push(x_701, x_773); -x_775 = l_myMacro____x40_Init_Notation___hyg_14470____closed__11; -lean_inc(x_542); -x_776 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_776, 0, x_542); -lean_ctor_set(x_776, 1, x_775); -x_777 = lean_array_push(x_701, x_776); -x_778 = l_Lean_Parser_Term_dynamicQuot___elambda__1___closed__11; -lean_inc(x_542); -x_779 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_779, 0, x_542); -lean_ctor_set(x_779, 1, x_778); -x_780 = lean_array_push(x_701, x_779); -lean_inc(x_780); -x_781 = lean_array_push(x_780, x_537); -x_782 = l_prec_x28___x29___closed__7; -lean_inc(x_542); -x_783 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_783, 0, x_542); -lean_ctor_set(x_783, 1, x_782); -lean_inc(x_783); -x_784 = lean_array_push(x_781, x_783); -x_785 = l_Lean_Parser_Term_quot___elambda__1___closed__1; -x_786 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_786, 0, x_785); -lean_ctor_set(x_786, 1, x_784); -x_787 = lean_array_push(x_701, x_786); -x_788 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_788, 0, x_711); -lean_ctor_set(x_788, 1, x_787); -lean_inc(x_777); -x_789 = lean_array_push(x_777, x_788); -x_790 = l_myMacro____x40_Init_Notation___hyg_13868____closed__13; -lean_inc(x_542); -x_791 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_791, 0, x_542); -lean_ctor_set(x_791, 1, x_790); -lean_inc(x_791); -x_792 = lean_array_push(x_789, x_791); -x_793 = lean_array_push(x_780, x_1); -lean_inc(x_783); -x_794 = lean_array_push(x_793, x_783); -x_795 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_795, 0, x_785); -lean_ctor_set(x_795, 1, x_794); -x_796 = lean_array_push(x_792, x_795); -x_797 = l_myMacro____x40_Init_Notation___hyg_14470____closed__10; -x_798 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_798, 0, x_797); -lean_ctor_set(x_798, 1, x_796); -x_799 = lean_array_push(x_701, x_798); -x_800 = l_myMacro____x40_Init_Notation___hyg_14470____closed__14; -lean_inc(x_542); -x_801 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_801, 0, x_542); -lean_ctor_set(x_801, 1, x_800); -x_802 = lean_array_push(x_701, x_801); -x_803 = l_myMacro____x40_Init_Notation___hyg_14470____closed__13; -x_804 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_804, 0, x_803); -lean_ctor_set(x_804, 1, x_802); -x_805 = lean_array_push(x_701, x_804); -x_806 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_806, 0, x_711); -lean_ctor_set(x_806, 1, x_805); -x_807 = lean_array_push(x_777, x_806); -x_808 = lean_array_push(x_807, x_791); -x_809 = l_Lean_Elab_Command_elabMacroRulesAux___closed__13; -x_810 = l_Lean_addMacroScope(x_697, x_809, x_544); -x_811 = l_Lean_Elab_Command_elabMacroRulesAux___closed__12; -x_812 = l_Lean_Elab_Command_elabMacroRulesAux___closed__18; -lean_inc(x_542); -x_813 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_813, 0, x_542); -lean_ctor_set(x_813, 1, x_811); -lean_ctor_set(x_813, 2, x_810); -lean_ctor_set(x_813, 3, x_812); -x_814 = lean_array_push(x_701, x_813); -x_815 = l_prec_x28___x29___closed__3; -x_816 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_816, 0, x_542); -lean_ctor_set(x_816, 1, x_815); -x_817 = lean_array_push(x_701, x_816); -x_818 = lean_array_push(x_817, x_732); -x_819 = lean_array_push(x_818, x_783); -x_820 = l_myMacro____x40_Init_Notation___hyg_13868____closed__8; -x_821 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_821, 0, x_820); -lean_ctor_set(x_821, 1, x_819); -x_822 = lean_array_push(x_701, x_821); -x_823 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_823, 0, x_711); -lean_ctor_set(x_823, 1, x_822); -x_824 = lean_array_push(x_814, x_823); -x_825 = l_myMacro____x40_Init_Notation___hyg_2191____closed__4; -x_826 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_826, 0, x_825); -lean_ctor_set(x_826, 1, x_824); -x_827 = lean_array_push(x_808, x_826); -x_828 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_828, 0, x_797); -lean_ctor_set(x_828, 1, x_827); -x_829 = lean_array_push(x_799, x_828); -x_830 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_830, 0, x_711); -lean_ctor_set(x_830, 1, x_829); -x_831 = lean_array_push(x_701, x_830); -x_832 = l_myMacro____x40_Init_Notation___hyg_14470____closed__8; -x_833 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_833, 0, x_832); -lean_ctor_set(x_833, 1, x_831); -x_834 = lean_array_push(x_774, x_833); -x_835 = l_myMacro____x40_Init_Notation___hyg_13868____closed__10; -x_836 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_836, 0, x_835); -lean_ctor_set(x_836, 1, x_834); -x_837 = lean_array_push(x_771, x_836); -x_838 = lean_array_push(x_837, x_732); -x_839 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__33; -x_840 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_840, 0, x_839); -lean_ctor_set(x_840, 1, x_838); -x_841 = lean_array_push(x_768, x_840); -x_842 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__21; -x_843 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_843, 0, x_842); -lean_ctor_set(x_843, 1, x_841); -x_844 = lean_array_push(x_739, x_843); -x_845 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__5; -x_846 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_846, 0, x_845); -lean_ctor_set(x_846, 1, x_844); -lean_ctor_set(x_539, 0, x_846); -x_847 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_847, 0, x_539); -lean_ctor_set(x_847, 1, x_698); -return x_847; -} -} -else -{ -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; 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; -x_848 = lean_ctor_get(x_539, 0); -lean_inc(x_848); -lean_dec(x_539); -x_849 = l_Lean_Elab_Command_getCurrMacroScope(x_4, x_5, x_540); -x_850 = lean_ctor_get(x_849, 0); -lean_inc(x_850); -x_851 = lean_ctor_get(x_849, 1); -lean_inc(x_851); -lean_dec(x_849); -x_852 = l_Lean_Elab_Command_getMainModule___rarg(x_5, x_851); -x_853 = lean_ctor_get(x_852, 0); -lean_inc(x_853); -x_854 = lean_ctor_get(x_852, 1); -lean_inc(x_854); -if (lean_is_exclusive(x_852)) { - lean_ctor_release(x_852, 0); - lean_ctor_release(x_852, 1); - x_855 = x_852; -} else { - lean_dec_ref(x_852); - x_855 = lean_box(0); -} -x_856 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__11; -lean_inc(x_848); -x_857 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_857, 0, x_848); -lean_ctor_set(x_857, 1, x_856); -x_858 = l_Array_empty___closed__1; -x_859 = lean_array_push(x_858, x_857); -x_860 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__4; -lean_inc(x_850); -lean_inc(x_853); -x_861 = l_Lean_addMacroScope(x_853, x_860, x_850); -x_862 = lean_box(0); -x_863 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__3; -lean_inc(x_848); -x_864 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_864, 0, x_848); -lean_ctor_set(x_864, 1, x_863); -lean_ctor_set(x_864, 2, x_861); -lean_ctor_set(x_864, 3, x_862); -x_865 = lean_array_push(x_858, x_864); -x_866 = lean_mk_syntax_ident(x_23); -x_867 = lean_array_push(x_858, x_866); -x_868 = l_Lean_nullKind___closed__2; -x_869 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_869, 0, x_868); -lean_ctor_set(x_869, 1, x_867); -x_870 = lean_array_push(x_865, x_869); -x_871 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__15; -x_872 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_872, 0, x_871); -lean_ctor_set(x_872, 1, x_870); -x_873 = l_myMacro____x40_Init_NotationExtra___hyg_5658____closed__24; -x_874 = lean_array_push(x_873, x_872); -x_875 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__13; -x_876 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_876, 0, x_875); -lean_ctor_set(x_876, 1, x_874); -x_877 = lean_array_push(x_858, x_876); -x_878 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_878, 0, x_868); -lean_ctor_set(x_878, 1, x_877); -x_879 = lean_array_push(x_859, x_878); -x_880 = l_term_x5b___x5d___closed__9; -lean_inc(x_848); -x_881 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_881, 0, x_848); -lean_ctor_set(x_881, 1, x_880); -x_882 = lean_array_push(x_879, x_881); -x_883 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__10; -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 = lean_array_push(x_858, x_884); -x_886 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_886, 0, x_868); -lean_ctor_set(x_886, 1, x_885); -x_887 = l_myMacro____x40_Init_Notation___hyg_14470____closed__5; -x_888 = lean_array_push(x_887, x_886); -x_889 = l_myMacro____x40_Init_Notation___hyg_1398____closed__8; -x_890 = lean_array_push(x_888, x_889); -x_891 = lean_array_push(x_890, x_889); -x_892 = lean_array_push(x_891, x_889); -x_893 = lean_array_push(x_892, x_889); -x_894 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__7; -x_895 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_895, 0, x_894); -lean_ctor_set(x_895, 1, x_893); -x_896 = lean_array_push(x_858, x_895); -x_897 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__20; -lean_inc(x_848); -x_898 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_898, 0, x_848); -lean_ctor_set(x_898, 1, x_897); -x_899 = lean_array_push(x_858, x_898); -x_900 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__8; -lean_inc(x_850); -lean_inc(x_853); -x_901 = l_Lean_addMacroScope(x_853, x_900, x_850); -x_902 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__7; -lean_inc(x_848); -x_903 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_903, 0, x_848); -lean_ctor_set(x_903, 1, x_902); -lean_ctor_set(x_903, 2, x_901); -lean_ctor_set(x_903, 3, x_862); -x_904 = lean_array_push(x_858, x_903); -x_905 = lean_array_push(x_904, x_889); -x_906 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__23; -x_907 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_907, 0, x_906); -lean_ctor_set(x_907, 1, x_905); -x_908 = lean_array_push(x_899, x_907); -x_909 = l_myMacro____x40_Init_Notation___hyg_15387____closed__9; -lean_inc(x_848); -x_910 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_910, 0, x_848); -lean_ctor_set(x_910, 1, x_909); -x_911 = lean_array_push(x_858, x_910); -x_912 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__13; -lean_inc(x_850); -lean_inc(x_853); -x_913 = l_Lean_addMacroScope(x_853, x_912, x_850); -x_914 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__11; -x_915 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__15; -lean_inc(x_848); -x_916 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_916, 0, x_848); -lean_ctor_set(x_916, 1, x_914); -lean_ctor_set(x_916, 2, x_913); -lean_ctor_set(x_916, 3, x_915); -x_917 = lean_array_push(x_911, x_916); -x_918 = l_Lean_expandExplicitBindersAux_loop___closed__4; -x_919 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_919, 0, x_918); -lean_ctor_set(x_919, 1, x_917); -x_920 = lean_array_push(x_858, x_919); -x_921 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_921, 0, x_868); -lean_ctor_set(x_921, 1, x_920); -x_922 = lean_array_push(x_887, x_921); -x_923 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__25; -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_908, x_924); -x_926 = l_myMacro____x40_Init_Notation___hyg_15956____closed__11; -lean_inc(x_848); -x_927 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_927, 0, x_848); -lean_ctor_set(x_927, 1, x_926); -x_928 = lean_array_push(x_858, x_927); -x_929 = l_myMacro____x40_Init_Notation___hyg_13868____closed__9; -lean_inc(x_848); -x_930 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_930, 0, x_848); -lean_ctor_set(x_930, 1, x_929); -x_931 = lean_array_push(x_858, x_930); -x_932 = l_myMacro____x40_Init_Notation___hyg_14470____closed__11; -lean_inc(x_848); -x_933 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_933, 0, x_848); -lean_ctor_set(x_933, 1, x_932); -x_934 = lean_array_push(x_858, x_933); -x_935 = l_Lean_Parser_Term_dynamicQuot___elambda__1___closed__11; -lean_inc(x_848); -x_936 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_936, 0, x_848); -lean_ctor_set(x_936, 1, x_935); -x_937 = lean_array_push(x_858, x_936); -lean_inc(x_937); -x_938 = lean_array_push(x_937, x_537); -x_939 = l_prec_x28___x29___closed__7; -lean_inc(x_848); -x_940 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_940, 0, x_848); -lean_ctor_set(x_940, 1, x_939); -lean_inc(x_940); -x_941 = lean_array_push(x_938, x_940); -x_942 = l_Lean_Parser_Term_quot___elambda__1___closed__1; -x_943 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_943, 0, x_942); -lean_ctor_set(x_943, 1, x_941); -x_944 = lean_array_push(x_858, x_943); -x_945 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_945, 0, x_868); -lean_ctor_set(x_945, 1, x_944); -lean_inc(x_934); -x_946 = lean_array_push(x_934, x_945); -x_947 = l_myMacro____x40_Init_Notation___hyg_13868____closed__13; -lean_inc(x_848); -x_948 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_948, 0, x_848); -lean_ctor_set(x_948, 1, x_947); -lean_inc(x_948); -x_949 = lean_array_push(x_946, x_948); -x_950 = lean_array_push(x_937, x_1); -lean_inc(x_940); -x_951 = lean_array_push(x_950, x_940); -x_952 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_952, 0, x_942); -lean_ctor_set(x_952, 1, x_951); -x_953 = lean_array_push(x_949, x_952); -x_954 = l_myMacro____x40_Init_Notation___hyg_14470____closed__10; -x_955 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_955, 0, x_954); -lean_ctor_set(x_955, 1, x_953); -x_956 = lean_array_push(x_858, x_955); -x_957 = l_myMacro____x40_Init_Notation___hyg_14470____closed__14; -lean_inc(x_848); -x_958 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_958, 0, x_848); -lean_ctor_set(x_958, 1, x_957); -x_959 = lean_array_push(x_858, x_958); -x_960 = l_myMacro____x40_Init_Notation___hyg_14470____closed__13; -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_858, x_961); -x_963 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_963, 0, x_868); -lean_ctor_set(x_963, 1, x_962); -x_964 = lean_array_push(x_934, x_963); -x_965 = lean_array_push(x_964, x_948); -x_966 = l_Lean_Elab_Command_elabMacroRulesAux___closed__13; -x_967 = l_Lean_addMacroScope(x_853, x_966, x_850); -x_968 = l_Lean_Elab_Command_elabMacroRulesAux___closed__12; -x_969 = l_Lean_Elab_Command_elabMacroRulesAux___closed__18; -lean_inc(x_848); -x_970 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_970, 0, x_848); -lean_ctor_set(x_970, 1, x_968); -lean_ctor_set(x_970, 2, x_967); -lean_ctor_set(x_970, 3, x_969); -x_971 = lean_array_push(x_858, x_970); -x_972 = l_prec_x28___x29___closed__3; -x_973 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_973, 0, x_848); -lean_ctor_set(x_973, 1, x_972); -x_974 = lean_array_push(x_858, x_973); -x_975 = lean_array_push(x_974, x_889); -x_976 = lean_array_push(x_975, x_940); -x_977 = l_myMacro____x40_Init_Notation___hyg_13868____closed__8; -x_978 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_978, 0, x_977); -lean_ctor_set(x_978, 1, x_976); -x_979 = lean_array_push(x_858, x_978); -x_980 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_980, 0, x_868); -lean_ctor_set(x_980, 1, x_979); -x_981 = lean_array_push(x_971, x_980); -x_982 = l_myMacro____x40_Init_Notation___hyg_2191____closed__4; -x_983 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_983, 0, x_982); -lean_ctor_set(x_983, 1, x_981); -x_984 = lean_array_push(x_965, x_983); -x_985 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_985, 0, x_954); -lean_ctor_set(x_985, 1, x_984); -x_986 = lean_array_push(x_956, x_985); -x_987 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_987, 0, x_868); -lean_ctor_set(x_987, 1, x_986); -x_988 = lean_array_push(x_858, x_987); -x_989 = l_myMacro____x40_Init_Notation___hyg_14470____closed__8; -x_990 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_990, 0, x_989); -lean_ctor_set(x_990, 1, x_988); -x_991 = lean_array_push(x_931, x_990); -x_992 = l_myMacro____x40_Init_Notation___hyg_13868____closed__10; -x_993 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_993, 0, x_992); -lean_ctor_set(x_993, 1, x_991); -x_994 = lean_array_push(x_928, x_993); -x_995 = lean_array_push(x_994, x_889); -x_996 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__33; -x_997 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_997, 0, x_996); -lean_ctor_set(x_997, 1, x_995); -x_998 = lean_array_push(x_925, x_997); -x_999 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__21; -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_896, x_1000); -x_1002 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__5; -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_alloc_ctor(1, 1, 0); -lean_ctor_set(x_1004, 0, x_1003); -if (lean_is_scalar(x_855)) { - x_1005 = lean_alloc_ctor(0, 2, 0); -} else { - x_1005 = x_855; -} -lean_ctor_set(x_1005, 0, x_1004); -lean_ctor_set(x_1005, 1, x_854); -return x_1005; -} -} -} -} -else -{ -size_t x_1038; size_t x_1039; uint8_t x_1040; -x_1038 = 0; -x_1039 = lean_usize_of_nat(x_24); -lean_dec(x_24); -x_1040 = l_Array_anyMUnsafe_any___at_Lean_Elab_Command_mkSimpleDelab_go___spec__5(x_3, x_1038, x_1039); -if (x_1040 == 0) -{ -uint8_t x_1041; -x_1041 = l___private_Init_Data_Array_Basic_0__Array_allDiffAux___at_Lean_Elab_Command_mkSimpleDelab_go___spec__2(x_3, x_25); -if (x_1041 == 0) -{ -lean_object* x_1042; -lean_dec(x_23); -lean_dec(x_1); -x_1042 = lean_box(0); -lean_ctor_set(x_8, 0, x_1042); -return x_8; -} -else -{ -lean_object* x_1043; lean_object* x_1044; lean_object* x_1515; lean_object* x_1516; uint8_t x_1517; -lean_free_object(x_8); -x_1515 = l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_Elab_Command_mkSimpleDelab_go___spec__4(x_4, x_5, x_21); -x_1516 = lean_ctor_get(x_1515, 0); -lean_inc(x_1516); -x_1517 = !lean_is_exclusive(x_1516); -if (x_1517 == 0) -{ -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; -x_1518 = lean_ctor_get(x_1516, 0); -lean_dec(x_1518); -x_1519 = lean_ctor_get(x_1515, 1); -lean_inc(x_1519); -lean_dec(x_1515); -x_1520 = l_Lean_Elab_Command_getCurrMacroScope(x_4, x_5, x_1519); -x_1521 = lean_ctor_get(x_1520, 1); -lean_inc(x_1521); -lean_dec(x_1520); -x_1522 = l_Lean_Elab_Command_getMainModule___rarg(x_5, x_1521); -x_1523 = lean_ctor_get(x_1522, 1); -lean_inc(x_1523); -lean_dec(x_1522); -x_1524 = l_Array_empty___closed__1; -x_1525 = l_Array_appendCore___rarg(x_1524, x_3); -x_1526 = l_Lean_nullKind___closed__2; -x_1527 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1527, 0, x_1526); -lean_ctor_set(x_1527, 1, x_1525); -x_1528 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__20; -x_1529 = lean_array_push(x_1528, x_1527); -x_1530 = l_myMacro____x40_Init_Notation___hyg_2191____closed__4; -x_1531 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1531, 0, x_1530); -lean_ctor_set(x_1531, 1, x_1529); -lean_ctor_set(x_1516, 0, x_1531); -x_1043 = x_1516; -x_1044 = x_1523; -goto block_1514; -} -else -{ -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_dec(x_1516); -x_1532 = lean_ctor_get(x_1515, 1); -lean_inc(x_1532); -lean_dec(x_1515); -x_1533 = l_Lean_Elab_Command_getCurrMacroScope(x_4, x_5, x_1532); -x_1534 = lean_ctor_get(x_1533, 1); -lean_inc(x_1534); -lean_dec(x_1533); -x_1535 = l_Lean_Elab_Command_getMainModule___rarg(x_5, x_1534); -x_1536 = lean_ctor_get(x_1535, 1); -lean_inc(x_1536); -lean_dec(x_1535); -x_1537 = l_Array_empty___closed__1; -x_1538 = l_Array_appendCore___rarg(x_1537, x_3); -x_1539 = l_Lean_nullKind___closed__2; -x_1540 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1540, 0, x_1539); -lean_ctor_set(x_1540, 1, x_1538); -x_1541 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__20; -x_1542 = lean_array_push(x_1541, x_1540); -x_1543 = l_myMacro____x40_Init_Notation___hyg_2191____closed__4; -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_alloc_ctor(1, 1, 0); -lean_ctor_set(x_1545, 0, x_1544); -x_1043 = x_1545; -x_1044 = x_1536; -goto block_1514; -} -block_1514: -{ -lean_object* x_1045; lean_object* x_1046; lean_object* x_1047; lean_object* x_1048; uint8_t x_1049; -x_1045 = lean_ctor_get(x_1043, 0); -lean_inc(x_1045); -lean_dec(x_1043); -x_1046 = l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_Elab_Command_mkSimpleDelab_go___spec__4(x_4, x_5, x_1044); -x_1047 = lean_ctor_get(x_1046, 0); -lean_inc(x_1047); -x_1048 = lean_ctor_get(x_1046, 1); -lean_inc(x_1048); -lean_dec(x_1046); -x_1049 = !lean_is_exclusive(x_1047); -if (x_1049 == 0) -{ -lean_object* x_1050; lean_object* x_1051; lean_object* x_1052; lean_object* x_1053; lean_object* x_1054; uint8_t x_1055; -x_1050 = lean_ctor_get(x_1047, 0); -x_1051 = l_Lean_Elab_Command_getCurrMacroScope(x_4, x_5, x_1048); -x_1052 = lean_ctor_get(x_1051, 0); -lean_inc(x_1052); -x_1053 = lean_ctor_get(x_1051, 1); -lean_inc(x_1053); -lean_dec(x_1051); -x_1054 = l_Lean_Elab_Command_getMainModule___rarg(x_5, x_1053); -x_1055 = !lean_is_exclusive(x_1054); -if (x_1055 == 0) -{ -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; 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; 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; -x_1056 = lean_ctor_get(x_1054, 0); -x_1057 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__11; -lean_inc(x_1050); -x_1058 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1058, 0, x_1050); -lean_ctor_set(x_1058, 1, x_1057); -x_1059 = l_Array_empty___closed__1; -x_1060 = lean_array_push(x_1059, x_1058); -x_1061 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__4; -lean_inc(x_1052); -lean_inc(x_1056); -x_1062 = l_Lean_addMacroScope(x_1056, x_1061, x_1052); -x_1063 = lean_box(0); -x_1064 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__3; -lean_inc(x_1050); -x_1065 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1065, 0, x_1050); -lean_ctor_set(x_1065, 1, x_1064); -lean_ctor_set(x_1065, 2, x_1062); -lean_ctor_set(x_1065, 3, x_1063); -x_1066 = lean_array_push(x_1059, x_1065); -x_1067 = lean_mk_syntax_ident(x_23); -x_1068 = lean_array_push(x_1059, x_1067); -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_1066, x_1070); -x_1072 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__15; -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_myMacro____x40_Init_NotationExtra___hyg_5658____closed__24; -x_1075 = lean_array_push(x_1074, x_1073); -x_1076 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__13; -x_1077 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1077, 0, x_1076); -lean_ctor_set(x_1077, 1, x_1075); -x_1078 = lean_array_push(x_1059, x_1077); -x_1079 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1079, 0, x_1069); -lean_ctor_set(x_1079, 1, x_1078); -x_1080 = lean_array_push(x_1060, x_1079); -x_1081 = l_term_x5b___x5d___closed__9; -lean_inc(x_1050); -x_1082 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1082, 0, x_1050); -lean_ctor_set(x_1082, 1, x_1081); -x_1083 = lean_array_push(x_1080, x_1082); -x_1084 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__10; -x_1085 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1085, 0, x_1084); -lean_ctor_set(x_1085, 1, x_1083); -x_1086 = lean_array_push(x_1059, x_1085); -x_1087 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1087, 0, x_1069); -lean_ctor_set(x_1087, 1, x_1086); -x_1088 = l_myMacro____x40_Init_Notation___hyg_14470____closed__5; -x_1089 = lean_array_push(x_1088, x_1087); -x_1090 = l_myMacro____x40_Init_Notation___hyg_1398____closed__8; -x_1091 = lean_array_push(x_1089, x_1090); -x_1092 = lean_array_push(x_1091, x_1090); -x_1093 = lean_array_push(x_1092, x_1090); -x_1094 = lean_array_push(x_1093, x_1090); -x_1095 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__7; -x_1096 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1096, 0, x_1095); -lean_ctor_set(x_1096, 1, x_1094); -x_1097 = lean_array_push(x_1059, x_1096); -x_1098 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__20; -lean_inc(x_1050); -x_1099 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1099, 0, x_1050); -lean_ctor_set(x_1099, 1, x_1098); -x_1100 = lean_array_push(x_1059, x_1099); -x_1101 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__8; -lean_inc(x_1052); -lean_inc(x_1056); -x_1102 = l_Lean_addMacroScope(x_1056, x_1101, x_1052); -x_1103 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__7; -lean_inc(x_1050); -x_1104 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1104, 0, x_1050); -lean_ctor_set(x_1104, 1, x_1103); -lean_ctor_set(x_1104, 2, x_1102); -lean_ctor_set(x_1104, 3, x_1063); -x_1105 = lean_array_push(x_1059, x_1104); -x_1106 = lean_array_push(x_1105, x_1090); -x_1107 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__23; -x_1108 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1108, 0, x_1107); -lean_ctor_set(x_1108, 1, x_1106); -x_1109 = lean_array_push(x_1100, x_1108); -x_1110 = l_myMacro____x40_Init_Notation___hyg_15387____closed__9; -lean_inc(x_1050); -x_1111 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1111, 0, x_1050); -lean_ctor_set(x_1111, 1, x_1110); -x_1112 = lean_array_push(x_1059, x_1111); -x_1113 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__13; -lean_inc(x_1052); -lean_inc(x_1056); -x_1114 = l_Lean_addMacroScope(x_1056, x_1113, x_1052); -x_1115 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__11; -x_1116 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__15; -lean_inc(x_1050); -x_1117 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1117, 0, x_1050); -lean_ctor_set(x_1117, 1, x_1115); -lean_ctor_set(x_1117, 2, x_1114); -lean_ctor_set(x_1117, 3, x_1116); -x_1118 = lean_array_push(x_1112, x_1117); -x_1119 = l_Lean_expandExplicitBindersAux_loop___closed__4; -x_1120 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1120, 0, x_1119); -lean_ctor_set(x_1120, 1, x_1118); -x_1121 = lean_array_push(x_1059, x_1120); -x_1122 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1122, 0, x_1069); -lean_ctor_set(x_1122, 1, x_1121); -x_1123 = lean_array_push(x_1088, x_1122); -x_1124 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__25; -x_1125 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1125, 0, x_1124); -lean_ctor_set(x_1125, 1, x_1123); -x_1126 = lean_array_push(x_1109, x_1125); -x_1127 = l_myMacro____x40_Init_Notation___hyg_15956____closed__11; -lean_inc(x_1050); -x_1128 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1128, 0, x_1050); -lean_ctor_set(x_1128, 1, x_1127); -x_1129 = lean_array_push(x_1059, x_1128); -x_1130 = l_myMacro____x40_Init_Notation___hyg_13868____closed__9; -lean_inc(x_1050); -x_1131 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1131, 0, x_1050); -lean_ctor_set(x_1131, 1, x_1130); -x_1132 = lean_array_push(x_1059, x_1131); -x_1133 = l_myMacro____x40_Init_Notation___hyg_14470____closed__11; -lean_inc(x_1050); -x_1134 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1134, 0, x_1050); -lean_ctor_set(x_1134, 1, x_1133); -x_1135 = lean_array_push(x_1059, x_1134); -x_1136 = l_Lean_Parser_Term_dynamicQuot___elambda__1___closed__11; -lean_inc(x_1050); -x_1137 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1137, 0, x_1050); -lean_ctor_set(x_1137, 1, x_1136); -x_1138 = lean_array_push(x_1059, x_1137); -lean_inc(x_1138); -x_1139 = lean_array_push(x_1138, x_1045); -x_1140 = l_prec_x28___x29___closed__7; -lean_inc(x_1050); -x_1141 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1141, 0, x_1050); -lean_ctor_set(x_1141, 1, x_1140); -lean_inc(x_1141); -x_1142 = lean_array_push(x_1139, x_1141); -x_1143 = l_Lean_Parser_Term_quot___elambda__1___closed__1; -x_1144 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1144, 0, x_1143); -lean_ctor_set(x_1144, 1, x_1142); -x_1145 = lean_array_push(x_1059, x_1144); -x_1146 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1146, 0, x_1069); -lean_ctor_set(x_1146, 1, x_1145); -lean_inc(x_1135); -x_1147 = lean_array_push(x_1135, x_1146); -x_1148 = l_myMacro____x40_Init_Notation___hyg_13868____closed__13; -lean_inc(x_1050); -x_1149 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1149, 0, x_1050); -lean_ctor_set(x_1149, 1, x_1148); -lean_inc(x_1149); -x_1150 = lean_array_push(x_1147, x_1149); -x_1151 = lean_array_push(x_1138, x_1); -lean_inc(x_1141); -x_1152 = lean_array_push(x_1151, x_1141); -x_1153 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1153, 0, x_1143); -lean_ctor_set(x_1153, 1, x_1152); -x_1154 = lean_array_push(x_1150, x_1153); -x_1155 = l_myMacro____x40_Init_Notation___hyg_14470____closed__10; -x_1156 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1156, 0, x_1155); -lean_ctor_set(x_1156, 1, x_1154); -x_1157 = lean_array_push(x_1059, x_1156); -x_1158 = l_myMacro____x40_Init_Notation___hyg_14470____closed__14; -lean_inc(x_1050); -x_1159 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1159, 0, x_1050); -lean_ctor_set(x_1159, 1, x_1158); -x_1160 = lean_array_push(x_1059, x_1159); -x_1161 = l_myMacro____x40_Init_Notation___hyg_14470____closed__13; -x_1162 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1162, 0, x_1161); -lean_ctor_set(x_1162, 1, x_1160); -x_1163 = lean_array_push(x_1059, x_1162); -x_1164 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1164, 0, x_1069); -lean_ctor_set(x_1164, 1, x_1163); -x_1165 = lean_array_push(x_1135, x_1164); -x_1166 = lean_array_push(x_1165, x_1149); -x_1167 = l_Lean_Elab_Command_elabMacroRulesAux___closed__13; -x_1168 = l_Lean_addMacroScope(x_1056, x_1167, x_1052); -x_1169 = l_Lean_Elab_Command_elabMacroRulesAux___closed__12; -x_1170 = l_Lean_Elab_Command_elabMacroRulesAux___closed__18; -lean_inc(x_1050); -x_1171 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1171, 0, x_1050); -lean_ctor_set(x_1171, 1, x_1169); -lean_ctor_set(x_1171, 2, x_1168); -lean_ctor_set(x_1171, 3, x_1170); -x_1172 = lean_array_push(x_1059, x_1171); -x_1173 = l_prec_x28___x29___closed__3; -x_1174 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1174, 0, x_1050); -lean_ctor_set(x_1174, 1, x_1173); -x_1175 = lean_array_push(x_1059, x_1174); -x_1176 = lean_array_push(x_1175, x_1090); -x_1177 = lean_array_push(x_1176, x_1141); -x_1178 = l_myMacro____x40_Init_Notation___hyg_13868____closed__8; -x_1179 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1179, 0, x_1178); -lean_ctor_set(x_1179, 1, x_1177); -x_1180 = lean_array_push(x_1059, x_1179); -x_1181 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1181, 0, x_1069); -lean_ctor_set(x_1181, 1, x_1180); -x_1182 = lean_array_push(x_1172, x_1181); -x_1183 = l_myMacro____x40_Init_Notation___hyg_2191____closed__4; -x_1184 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1184, 0, x_1183); -lean_ctor_set(x_1184, 1, x_1182); -x_1185 = lean_array_push(x_1166, x_1184); -x_1186 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1186, 0, x_1155); -lean_ctor_set(x_1186, 1, x_1185); -x_1187 = lean_array_push(x_1157, x_1186); -x_1188 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1188, 0, x_1069); -lean_ctor_set(x_1188, 1, x_1187); -x_1189 = lean_array_push(x_1059, x_1188); -x_1190 = l_myMacro____x40_Init_Notation___hyg_14470____closed__8; -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_1132, x_1191); -x_1193 = l_myMacro____x40_Init_Notation___hyg_13868____closed__10; -x_1194 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1194, 0, x_1193); -lean_ctor_set(x_1194, 1, x_1192); -x_1195 = lean_array_push(x_1129, x_1194); -x_1196 = lean_array_push(x_1195, x_1090); -x_1197 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__33; -x_1198 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1198, 0, x_1197); -lean_ctor_set(x_1198, 1, x_1196); -x_1199 = lean_array_push(x_1126, x_1198); -x_1200 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__21; -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 = lean_array_push(x_1097, x_1201); -x_1203 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__5; -x_1204 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1204, 0, x_1203); -lean_ctor_set(x_1204, 1, x_1202); -lean_ctor_set(x_1047, 0, x_1204); -lean_ctor_set(x_1054, 0, x_1047); -return x_1054; -} -else -{ -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; 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; -x_1205 = lean_ctor_get(x_1054, 0); -x_1206 = lean_ctor_get(x_1054, 1); -lean_inc(x_1206); -lean_inc(x_1205); -lean_dec(x_1054); -x_1207 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__11; -lean_inc(x_1050); -x_1208 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1208, 0, x_1050); -lean_ctor_set(x_1208, 1, x_1207); -x_1209 = l_Array_empty___closed__1; -x_1210 = lean_array_push(x_1209, x_1208); -x_1211 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__4; -lean_inc(x_1052); -lean_inc(x_1205); -x_1212 = l_Lean_addMacroScope(x_1205, x_1211, x_1052); -x_1213 = lean_box(0); -x_1214 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__3; -lean_inc(x_1050); -x_1215 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1215, 0, x_1050); -lean_ctor_set(x_1215, 1, x_1214); -lean_ctor_set(x_1215, 2, x_1212); -lean_ctor_set(x_1215, 3, x_1213); -x_1216 = lean_array_push(x_1209, x_1215); -x_1217 = lean_mk_syntax_ident(x_23); -x_1218 = lean_array_push(x_1209, x_1217); -x_1219 = l_Lean_nullKind___closed__2; -x_1220 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1220, 0, x_1219); -lean_ctor_set(x_1220, 1, x_1218); -x_1221 = lean_array_push(x_1216, x_1220); -x_1222 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__15; -x_1223 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1223, 0, x_1222); -lean_ctor_set(x_1223, 1, x_1221); -x_1224 = l_myMacro____x40_Init_NotationExtra___hyg_5658____closed__24; -x_1225 = lean_array_push(x_1224, x_1223); -x_1226 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__13; -x_1227 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1227, 0, x_1226); -lean_ctor_set(x_1227, 1, x_1225); -x_1228 = lean_array_push(x_1209, x_1227); -x_1229 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1229, 0, x_1219); -lean_ctor_set(x_1229, 1, x_1228); -x_1230 = lean_array_push(x_1210, x_1229); -x_1231 = l_term_x5b___x5d___closed__9; -lean_inc(x_1050); -x_1232 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1232, 0, x_1050); -lean_ctor_set(x_1232, 1, x_1231); -x_1233 = lean_array_push(x_1230, x_1232); -x_1234 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__10; -x_1235 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1235, 0, x_1234); -lean_ctor_set(x_1235, 1, x_1233); -x_1236 = lean_array_push(x_1209, x_1235); -x_1237 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1237, 0, x_1219); -lean_ctor_set(x_1237, 1, x_1236); -x_1238 = l_myMacro____x40_Init_Notation___hyg_14470____closed__5; -x_1239 = lean_array_push(x_1238, x_1237); -x_1240 = l_myMacro____x40_Init_Notation___hyg_1398____closed__8; -x_1241 = lean_array_push(x_1239, x_1240); -x_1242 = lean_array_push(x_1241, x_1240); -x_1243 = lean_array_push(x_1242, x_1240); -x_1244 = lean_array_push(x_1243, x_1240); -x_1245 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__7; -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 = lean_array_push(x_1209, x_1246); -x_1248 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__20; -lean_inc(x_1050); -x_1249 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1249, 0, x_1050); -lean_ctor_set(x_1249, 1, x_1248); -x_1250 = lean_array_push(x_1209, x_1249); -x_1251 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__8; -lean_inc(x_1052); -lean_inc(x_1205); -x_1252 = l_Lean_addMacroScope(x_1205, x_1251, x_1052); -x_1253 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__7; -lean_inc(x_1050); -x_1254 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1254, 0, x_1050); -lean_ctor_set(x_1254, 1, x_1253); -lean_ctor_set(x_1254, 2, x_1252); -lean_ctor_set(x_1254, 3, x_1213); -x_1255 = lean_array_push(x_1209, x_1254); -x_1256 = lean_array_push(x_1255, x_1240); -x_1257 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__23; -x_1258 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1258, 0, x_1257); -lean_ctor_set(x_1258, 1, x_1256); -x_1259 = lean_array_push(x_1250, x_1258); -x_1260 = l_myMacro____x40_Init_Notation___hyg_15387____closed__9; -lean_inc(x_1050); -x_1261 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1261, 0, x_1050); -lean_ctor_set(x_1261, 1, x_1260); -x_1262 = lean_array_push(x_1209, x_1261); -x_1263 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__13; -lean_inc(x_1052); -lean_inc(x_1205); -x_1264 = l_Lean_addMacroScope(x_1205, x_1263, x_1052); -x_1265 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__11; -x_1266 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__15; -lean_inc(x_1050); -x_1267 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1267, 0, x_1050); -lean_ctor_set(x_1267, 1, x_1265); -lean_ctor_set(x_1267, 2, x_1264); -lean_ctor_set(x_1267, 3, x_1266); -x_1268 = lean_array_push(x_1262, x_1267); -x_1269 = l_Lean_expandExplicitBindersAux_loop___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_1209, x_1270); -x_1272 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1272, 0, x_1219); -lean_ctor_set(x_1272, 1, x_1271); -x_1273 = lean_array_push(x_1238, x_1272); -x_1274 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__25; -x_1275 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1275, 0, x_1274); -lean_ctor_set(x_1275, 1, x_1273); -x_1276 = lean_array_push(x_1259, x_1275); -x_1277 = l_myMacro____x40_Init_Notation___hyg_15956____closed__11; -lean_inc(x_1050); -x_1278 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1278, 0, x_1050); -lean_ctor_set(x_1278, 1, x_1277); -x_1279 = lean_array_push(x_1209, x_1278); -x_1280 = l_myMacro____x40_Init_Notation___hyg_13868____closed__9; -lean_inc(x_1050); -x_1281 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1281, 0, x_1050); -lean_ctor_set(x_1281, 1, x_1280); -x_1282 = lean_array_push(x_1209, x_1281); -x_1283 = l_myMacro____x40_Init_Notation___hyg_14470____closed__11; -lean_inc(x_1050); -x_1284 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1284, 0, x_1050); -lean_ctor_set(x_1284, 1, x_1283); -x_1285 = lean_array_push(x_1209, x_1284); -x_1286 = l_Lean_Parser_Term_dynamicQuot___elambda__1___closed__11; -lean_inc(x_1050); -x_1287 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1287, 0, x_1050); -lean_ctor_set(x_1287, 1, x_1286); -x_1288 = lean_array_push(x_1209, x_1287); -lean_inc(x_1288); -x_1289 = lean_array_push(x_1288, x_1045); -x_1290 = l_prec_x28___x29___closed__7; -lean_inc(x_1050); -x_1291 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1291, 0, x_1050); -lean_ctor_set(x_1291, 1, x_1290); -lean_inc(x_1291); -x_1292 = lean_array_push(x_1289, x_1291); -x_1293 = l_Lean_Parser_Term_quot___elambda__1___closed__1; -x_1294 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1294, 0, x_1293); -lean_ctor_set(x_1294, 1, x_1292); -x_1295 = lean_array_push(x_1209, x_1294); -x_1296 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1296, 0, x_1219); -lean_ctor_set(x_1296, 1, x_1295); -lean_inc(x_1285); -x_1297 = lean_array_push(x_1285, x_1296); -x_1298 = l_myMacro____x40_Init_Notation___hyg_13868____closed__13; -lean_inc(x_1050); -x_1299 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1299, 0, x_1050); -lean_ctor_set(x_1299, 1, x_1298); -lean_inc(x_1299); -x_1300 = lean_array_push(x_1297, x_1299); -x_1301 = lean_array_push(x_1288, x_1); -lean_inc(x_1291); -x_1302 = lean_array_push(x_1301, x_1291); -x_1303 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1303, 0, x_1293); -lean_ctor_set(x_1303, 1, x_1302); -x_1304 = lean_array_push(x_1300, x_1303); -x_1305 = l_myMacro____x40_Init_Notation___hyg_14470____closed__10; -x_1306 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1306, 0, x_1305); -lean_ctor_set(x_1306, 1, x_1304); -x_1307 = lean_array_push(x_1209, x_1306); -x_1308 = l_myMacro____x40_Init_Notation___hyg_14470____closed__14; -lean_inc(x_1050); -x_1309 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1309, 0, x_1050); -lean_ctor_set(x_1309, 1, x_1308); -x_1310 = lean_array_push(x_1209, x_1309); -x_1311 = l_myMacro____x40_Init_Notation___hyg_14470____closed__13; -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_1209, x_1312); -x_1314 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1314, 0, x_1219); -lean_ctor_set(x_1314, 1, x_1313); -x_1315 = lean_array_push(x_1285, x_1314); -x_1316 = lean_array_push(x_1315, x_1299); -x_1317 = l_Lean_Elab_Command_elabMacroRulesAux___closed__13; -x_1318 = l_Lean_addMacroScope(x_1205, x_1317, x_1052); -x_1319 = l_Lean_Elab_Command_elabMacroRulesAux___closed__12; -x_1320 = l_Lean_Elab_Command_elabMacroRulesAux___closed__18; -lean_inc(x_1050); -x_1321 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1321, 0, x_1050); -lean_ctor_set(x_1321, 1, x_1319); -lean_ctor_set(x_1321, 2, x_1318); -lean_ctor_set(x_1321, 3, x_1320); -x_1322 = lean_array_push(x_1209, x_1321); -x_1323 = l_prec_x28___x29___closed__3; -x_1324 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1324, 0, x_1050); -lean_ctor_set(x_1324, 1, x_1323); -x_1325 = lean_array_push(x_1209, x_1324); -x_1326 = lean_array_push(x_1325, x_1240); -x_1327 = lean_array_push(x_1326, x_1291); -x_1328 = l_myMacro____x40_Init_Notation___hyg_13868____closed__8; -x_1329 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1329, 0, x_1328); -lean_ctor_set(x_1329, 1, x_1327); -x_1330 = lean_array_push(x_1209, x_1329); -x_1331 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1331, 0, x_1219); -lean_ctor_set(x_1331, 1, x_1330); -x_1332 = lean_array_push(x_1322, x_1331); -x_1333 = l_myMacro____x40_Init_Notation___hyg_2191____closed__4; -x_1334 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1334, 0, x_1333); -lean_ctor_set(x_1334, 1, x_1332); -x_1335 = lean_array_push(x_1316, x_1334); -x_1336 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1336, 0, x_1305); -lean_ctor_set(x_1336, 1, x_1335); -x_1337 = lean_array_push(x_1307, x_1336); -x_1338 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1338, 0, x_1219); -lean_ctor_set(x_1338, 1, x_1337); -x_1339 = lean_array_push(x_1209, x_1338); -x_1340 = l_myMacro____x40_Init_Notation___hyg_14470____closed__8; -x_1341 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1341, 0, x_1340); -lean_ctor_set(x_1341, 1, x_1339); -x_1342 = lean_array_push(x_1282, x_1341); -x_1343 = l_myMacro____x40_Init_Notation___hyg_13868____closed__10; -x_1344 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1344, 0, x_1343); -lean_ctor_set(x_1344, 1, x_1342); -x_1345 = lean_array_push(x_1279, x_1344); -x_1346 = lean_array_push(x_1345, x_1240); -x_1347 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__33; -x_1348 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1348, 0, x_1347); -lean_ctor_set(x_1348, 1, x_1346); -x_1349 = lean_array_push(x_1276, x_1348); -x_1350 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__21; -x_1351 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1351, 0, x_1350); -lean_ctor_set(x_1351, 1, x_1349); -x_1352 = lean_array_push(x_1247, x_1351); -x_1353 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__5; -x_1354 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1354, 0, x_1353); -lean_ctor_set(x_1354, 1, x_1352); -lean_ctor_set(x_1047, 0, x_1354); -x_1355 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1355, 0, x_1047); -lean_ctor_set(x_1355, 1, x_1206); -return x_1355; -} -} -else -{ -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; 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_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_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; -x_1356 = lean_ctor_get(x_1047, 0); -lean_inc(x_1356); -lean_dec(x_1047); -x_1357 = l_Lean_Elab_Command_getCurrMacroScope(x_4, x_5, x_1048); -x_1358 = lean_ctor_get(x_1357, 0); -lean_inc(x_1358); -x_1359 = lean_ctor_get(x_1357, 1); -lean_inc(x_1359); -lean_dec(x_1357); -x_1360 = l_Lean_Elab_Command_getMainModule___rarg(x_5, x_1359); -x_1361 = lean_ctor_get(x_1360, 0); -lean_inc(x_1361); -x_1362 = lean_ctor_get(x_1360, 1); -lean_inc(x_1362); -if (lean_is_exclusive(x_1360)) { - lean_ctor_release(x_1360, 0); - lean_ctor_release(x_1360, 1); - x_1363 = x_1360; -} else { - lean_dec_ref(x_1360); - x_1363 = lean_box(0); -} -x_1364 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__11; -lean_inc(x_1356); -x_1365 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1365, 0, x_1356); -lean_ctor_set(x_1365, 1, x_1364); -x_1366 = l_Array_empty___closed__1; -x_1367 = lean_array_push(x_1366, x_1365); -x_1368 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__4; -lean_inc(x_1358); -lean_inc(x_1361); -x_1369 = l_Lean_addMacroScope(x_1361, x_1368, x_1358); -x_1370 = lean_box(0); -x_1371 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__3; -lean_inc(x_1356); -x_1372 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1372, 0, x_1356); -lean_ctor_set(x_1372, 1, x_1371); -lean_ctor_set(x_1372, 2, x_1369); -lean_ctor_set(x_1372, 3, x_1370); -x_1373 = lean_array_push(x_1366, x_1372); -x_1374 = lean_mk_syntax_ident(x_23); -x_1375 = lean_array_push(x_1366, x_1374); -x_1376 = l_Lean_nullKind___closed__2; -x_1377 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1377, 0, x_1376); -lean_ctor_set(x_1377, 1, x_1375); -x_1378 = lean_array_push(x_1373, x_1377); -x_1379 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__15; -x_1380 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1380, 0, x_1379); -lean_ctor_set(x_1380, 1, x_1378); -x_1381 = l_myMacro____x40_Init_NotationExtra___hyg_5658____closed__24; -x_1382 = lean_array_push(x_1381, x_1380); -x_1383 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__13; -x_1384 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1384, 0, x_1383); -lean_ctor_set(x_1384, 1, x_1382); -x_1385 = lean_array_push(x_1366, x_1384); -x_1386 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1386, 0, x_1376); -lean_ctor_set(x_1386, 1, x_1385); -x_1387 = lean_array_push(x_1367, x_1386); -x_1388 = l_term_x5b___x5d___closed__9; -lean_inc(x_1356); -x_1389 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1389, 0, x_1356); -lean_ctor_set(x_1389, 1, x_1388); -x_1390 = lean_array_push(x_1387, x_1389); -x_1391 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__10; -x_1392 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1392, 0, x_1391); -lean_ctor_set(x_1392, 1, x_1390); -x_1393 = lean_array_push(x_1366, x_1392); -x_1394 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1394, 0, x_1376); -lean_ctor_set(x_1394, 1, x_1393); -x_1395 = l_myMacro____x40_Init_Notation___hyg_14470____closed__5; -x_1396 = lean_array_push(x_1395, x_1394); -x_1397 = l_myMacro____x40_Init_Notation___hyg_1398____closed__8; -x_1398 = lean_array_push(x_1396, x_1397); -x_1399 = lean_array_push(x_1398, x_1397); -x_1400 = lean_array_push(x_1399, x_1397); -x_1401 = lean_array_push(x_1400, x_1397); -x_1402 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__7; -x_1403 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1403, 0, x_1402); -lean_ctor_set(x_1403, 1, x_1401); -x_1404 = lean_array_push(x_1366, x_1403); -x_1405 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__20; -lean_inc(x_1356); -x_1406 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1406, 0, x_1356); -lean_ctor_set(x_1406, 1, x_1405); -x_1407 = lean_array_push(x_1366, x_1406); -x_1408 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__8; -lean_inc(x_1358); -lean_inc(x_1361); -x_1409 = l_Lean_addMacroScope(x_1361, x_1408, x_1358); -x_1410 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__7; -lean_inc(x_1356); -x_1411 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1411, 0, x_1356); -lean_ctor_set(x_1411, 1, x_1410); -lean_ctor_set(x_1411, 2, x_1409); -lean_ctor_set(x_1411, 3, x_1370); -x_1412 = lean_array_push(x_1366, x_1411); -x_1413 = lean_array_push(x_1412, x_1397); -x_1414 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__23; -x_1415 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1415, 0, x_1414); -lean_ctor_set(x_1415, 1, x_1413); -x_1416 = lean_array_push(x_1407, x_1415); -x_1417 = l_myMacro____x40_Init_Notation___hyg_15387____closed__9; -lean_inc(x_1356); -x_1418 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1418, 0, x_1356); -lean_ctor_set(x_1418, 1, x_1417); -x_1419 = lean_array_push(x_1366, x_1418); -x_1420 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__13; -lean_inc(x_1358); -lean_inc(x_1361); -x_1421 = l_Lean_addMacroScope(x_1361, x_1420, x_1358); -x_1422 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__11; -x_1423 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__15; -lean_inc(x_1356); -x_1424 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1424, 0, x_1356); -lean_ctor_set(x_1424, 1, x_1422); -lean_ctor_set(x_1424, 2, x_1421); -lean_ctor_set(x_1424, 3, x_1423); -x_1425 = lean_array_push(x_1419, x_1424); -x_1426 = l_Lean_expandExplicitBindersAux_loop___closed__4; -x_1427 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1427, 0, x_1426); -lean_ctor_set(x_1427, 1, x_1425); -x_1428 = lean_array_push(x_1366, x_1427); -x_1429 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1429, 0, x_1376); -lean_ctor_set(x_1429, 1, x_1428); -x_1430 = lean_array_push(x_1395, x_1429); -x_1431 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__25; -x_1432 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1432, 0, x_1431); -lean_ctor_set(x_1432, 1, x_1430); -x_1433 = lean_array_push(x_1416, x_1432); -x_1434 = l_myMacro____x40_Init_Notation___hyg_15956____closed__11; -lean_inc(x_1356); -x_1435 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1435, 0, x_1356); -lean_ctor_set(x_1435, 1, x_1434); -x_1436 = lean_array_push(x_1366, x_1435); -x_1437 = l_myMacro____x40_Init_Notation___hyg_13868____closed__9; -lean_inc(x_1356); -x_1438 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1438, 0, x_1356); -lean_ctor_set(x_1438, 1, x_1437); -x_1439 = lean_array_push(x_1366, x_1438); -x_1440 = l_myMacro____x40_Init_Notation___hyg_14470____closed__11; -lean_inc(x_1356); -x_1441 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1441, 0, x_1356); -lean_ctor_set(x_1441, 1, x_1440); -x_1442 = lean_array_push(x_1366, x_1441); -x_1443 = l_Lean_Parser_Term_dynamicQuot___elambda__1___closed__11; -lean_inc(x_1356); -x_1444 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1444, 0, x_1356); -lean_ctor_set(x_1444, 1, x_1443); -x_1445 = lean_array_push(x_1366, x_1444); -lean_inc(x_1445); -x_1446 = lean_array_push(x_1445, x_1045); -x_1447 = l_prec_x28___x29___closed__7; -lean_inc(x_1356); -x_1448 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1448, 0, x_1356); -lean_ctor_set(x_1448, 1, x_1447); -lean_inc(x_1448); -x_1449 = lean_array_push(x_1446, x_1448); -x_1450 = l_Lean_Parser_Term_quot___elambda__1___closed__1; -x_1451 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1451, 0, x_1450); -lean_ctor_set(x_1451, 1, x_1449); -x_1452 = lean_array_push(x_1366, x_1451); -x_1453 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1453, 0, x_1376); -lean_ctor_set(x_1453, 1, x_1452); -lean_inc(x_1442); -x_1454 = lean_array_push(x_1442, x_1453); -x_1455 = l_myMacro____x40_Init_Notation___hyg_13868____closed__13; -lean_inc(x_1356); -x_1456 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1456, 0, x_1356); -lean_ctor_set(x_1456, 1, x_1455); -lean_inc(x_1456); -x_1457 = lean_array_push(x_1454, x_1456); -x_1458 = lean_array_push(x_1445, x_1); -lean_inc(x_1448); -x_1459 = lean_array_push(x_1458, x_1448); -x_1460 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1460, 0, x_1450); -lean_ctor_set(x_1460, 1, x_1459); -x_1461 = lean_array_push(x_1457, x_1460); -x_1462 = l_myMacro____x40_Init_Notation___hyg_14470____closed__10; -x_1463 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1463, 0, x_1462); -lean_ctor_set(x_1463, 1, x_1461); -x_1464 = lean_array_push(x_1366, x_1463); -x_1465 = l_myMacro____x40_Init_Notation___hyg_14470____closed__14; -lean_inc(x_1356); -x_1466 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1466, 0, x_1356); -lean_ctor_set(x_1466, 1, x_1465); -x_1467 = lean_array_push(x_1366, x_1466); -x_1468 = l_myMacro____x40_Init_Notation___hyg_14470____closed__13; -x_1469 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1469, 0, x_1468); -lean_ctor_set(x_1469, 1, x_1467); -x_1470 = lean_array_push(x_1366, x_1469); -x_1471 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1471, 0, x_1376); -lean_ctor_set(x_1471, 1, x_1470); -x_1472 = lean_array_push(x_1442, x_1471); -x_1473 = lean_array_push(x_1472, x_1456); -x_1474 = l_Lean_Elab_Command_elabMacroRulesAux___closed__13; -x_1475 = l_Lean_addMacroScope(x_1361, x_1474, x_1358); -x_1476 = l_Lean_Elab_Command_elabMacroRulesAux___closed__12; -x_1477 = l_Lean_Elab_Command_elabMacroRulesAux___closed__18; -lean_inc(x_1356); -x_1478 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1478, 0, x_1356); -lean_ctor_set(x_1478, 1, x_1476); -lean_ctor_set(x_1478, 2, x_1475); -lean_ctor_set(x_1478, 3, x_1477); -x_1479 = lean_array_push(x_1366, x_1478); -x_1480 = l_prec_x28___x29___closed__3; -x_1481 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1481, 0, x_1356); -lean_ctor_set(x_1481, 1, x_1480); -x_1482 = lean_array_push(x_1366, x_1481); -x_1483 = lean_array_push(x_1482, x_1397); -x_1484 = lean_array_push(x_1483, x_1448); -x_1485 = l_myMacro____x40_Init_Notation___hyg_13868____closed__8; -x_1486 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1486, 0, x_1485); -lean_ctor_set(x_1486, 1, x_1484); -x_1487 = lean_array_push(x_1366, x_1486); -x_1488 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1488, 0, x_1376); -lean_ctor_set(x_1488, 1, x_1487); -x_1489 = lean_array_push(x_1479, x_1488); -x_1490 = l_myMacro____x40_Init_Notation___hyg_2191____closed__4; -x_1491 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1491, 0, x_1490); -lean_ctor_set(x_1491, 1, x_1489); -x_1492 = lean_array_push(x_1473, x_1491); -x_1493 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1493, 0, x_1462); -lean_ctor_set(x_1493, 1, x_1492); -x_1494 = lean_array_push(x_1464, x_1493); -x_1495 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1495, 0, x_1376); -lean_ctor_set(x_1495, 1, x_1494); -x_1496 = lean_array_push(x_1366, x_1495); -x_1497 = l_myMacro____x40_Init_Notation___hyg_14470____closed__8; -x_1498 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1498, 0, x_1497); -lean_ctor_set(x_1498, 1, x_1496); -x_1499 = lean_array_push(x_1439, x_1498); -x_1500 = l_myMacro____x40_Init_Notation___hyg_13868____closed__10; -x_1501 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1501, 0, x_1500); -lean_ctor_set(x_1501, 1, x_1499); -x_1502 = lean_array_push(x_1436, x_1501); -x_1503 = lean_array_push(x_1502, x_1397); -x_1504 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__33; -x_1505 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1505, 0, x_1504); -lean_ctor_set(x_1505, 1, x_1503); -x_1506 = lean_array_push(x_1433, x_1505); -x_1507 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__21; -x_1508 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1508, 0, x_1507); -lean_ctor_set(x_1508, 1, x_1506); -x_1509 = lean_array_push(x_1404, x_1508); -x_1510 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__5; -x_1511 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1511, 0, x_1510); -lean_ctor_set(x_1511, 1, x_1509); -x_1512 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_1512, 0, x_1511); -if (lean_is_scalar(x_1363)) { - x_1513 = lean_alloc_ctor(0, 2, 0); -} else { - x_1513 = x_1363; -} -lean_ctor_set(x_1513, 0, x_1512); -lean_ctor_set(x_1513, 1, x_1362); -return x_1513; -} -} -} -} -else -{ -lean_object* x_1546; -lean_dec(x_23); -lean_dec(x_1); -x_1546 = lean_box(0); -lean_ctor_set(x_8, 0, x_1546); -return x_8; -} -} -} -} -else -{ -lean_object* x_1547; lean_object* x_1548; lean_object* x_1549; lean_object* x_1550; uint8_t x_1551; -x_1547 = lean_ctor_get(x_8, 1); -lean_inc(x_1547); -lean_dec(x_8); -x_1548 = lean_ctor_get(x_17, 0); -lean_inc(x_1548); -lean_dec(x_17); -x_1549 = lean_array_get_size(x_3); -x_1550 = lean_unsigned_to_nat(0u); -x_1551 = lean_nat_dec_lt(x_1550, x_1549); -if (x_1551 == 0) -{ -uint8_t x_1552; -lean_dec(x_1549); -x_1552 = l___private_Init_Data_Array_Basic_0__Array_allDiffAux___at_Lean_Elab_Command_mkSimpleDelab_go___spec__2(x_3, x_1550); -if (x_1552 == 0) -{ -lean_object* x_1553; lean_object* x_1554; -lean_dec(x_1548); -lean_dec(x_1); -x_1553 = lean_box(0); -x_1554 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1554, 0, x_1553); -lean_ctor_set(x_1554, 1, x_1547); -return x_1554; -} -else -{ -lean_object* x_1555; lean_object* x_1556; 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; -x_1721 = l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_Elab_Command_mkSimpleDelab_go___spec__4(x_4, x_5, x_1547); -x_1722 = lean_ctor_get(x_1721, 0); -lean_inc(x_1722); -if (lean_is_exclusive(x_1722)) { - lean_ctor_release(x_1722, 0); - x_1723 = x_1722; -} else { - lean_dec_ref(x_1722); - x_1723 = lean_box(0); -} -x_1724 = lean_ctor_get(x_1721, 1); -lean_inc(x_1724); -lean_dec(x_1721); -x_1725 = l_Lean_Elab_Command_getCurrMacroScope(x_4, x_5, x_1724); -x_1726 = lean_ctor_get(x_1725, 1); -lean_inc(x_1726); -lean_dec(x_1725); -x_1727 = l_Lean_Elab_Command_getMainModule___rarg(x_5, x_1726); -x_1728 = lean_ctor_get(x_1727, 1); -lean_inc(x_1728); -lean_dec(x_1727); -x_1729 = l_Array_empty___closed__1; -x_1730 = l_Array_appendCore___rarg(x_1729, x_3); -x_1731 = l_Lean_nullKind___closed__2; -x_1732 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1732, 0, x_1731); -lean_ctor_set(x_1732, 1, x_1730); -x_1733 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__20; -x_1734 = lean_array_push(x_1733, x_1732); -x_1735 = l_myMacro____x40_Init_Notation___hyg_2191____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); -if (lean_is_scalar(x_1723)) { - x_1737 = lean_alloc_ctor(1, 1, 0); -} else { - x_1737 = x_1723; -} -lean_ctor_set(x_1737, 0, x_1736); -x_1555 = x_1737; -x_1556 = x_1728; -goto block_1720; -block_1720: -{ -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; 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; 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_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; -x_1557 = lean_ctor_get(x_1555, 0); -lean_inc(x_1557); -lean_dec(x_1555); -x_1558 = l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_Elab_Command_mkSimpleDelab_go___spec__4(x_4, x_5, x_1556); -x_1559 = lean_ctor_get(x_1558, 0); -lean_inc(x_1559); -x_1560 = lean_ctor_get(x_1558, 1); -lean_inc(x_1560); -lean_dec(x_1558); -x_1561 = lean_ctor_get(x_1559, 0); -lean_inc(x_1561); -if (lean_is_exclusive(x_1559)) { - lean_ctor_release(x_1559, 0); - x_1562 = x_1559; -} else { - lean_dec_ref(x_1559); - x_1562 = lean_box(0); -} -x_1563 = l_Lean_Elab_Command_getCurrMacroScope(x_4, x_5, x_1560); -x_1564 = lean_ctor_get(x_1563, 0); -lean_inc(x_1564); -x_1565 = lean_ctor_get(x_1563, 1); -lean_inc(x_1565); -lean_dec(x_1563); -x_1566 = l_Lean_Elab_Command_getMainModule___rarg(x_5, x_1565); -x_1567 = lean_ctor_get(x_1566, 0); -lean_inc(x_1567); -x_1568 = lean_ctor_get(x_1566, 1); -lean_inc(x_1568); -if (lean_is_exclusive(x_1566)) { - lean_ctor_release(x_1566, 0); - lean_ctor_release(x_1566, 1); - x_1569 = x_1566; -} else { - lean_dec_ref(x_1566); - x_1569 = lean_box(0); -} -x_1570 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__11; -lean_inc(x_1561); -x_1571 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1571, 0, x_1561); -lean_ctor_set(x_1571, 1, x_1570); -x_1572 = l_Array_empty___closed__1; -x_1573 = lean_array_push(x_1572, x_1571); -x_1574 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__4; -lean_inc(x_1564); -lean_inc(x_1567); -x_1575 = l_Lean_addMacroScope(x_1567, x_1574, x_1564); -x_1576 = lean_box(0); -x_1577 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__3; -lean_inc(x_1561); -x_1578 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1578, 0, x_1561); -lean_ctor_set(x_1578, 1, x_1577); -lean_ctor_set(x_1578, 2, x_1575); -lean_ctor_set(x_1578, 3, x_1576); -x_1579 = lean_array_push(x_1572, x_1578); -x_1580 = lean_mk_syntax_ident(x_1548); -x_1581 = lean_array_push(x_1572, x_1580); -x_1582 = l_Lean_nullKind___closed__2; -x_1583 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1583, 0, x_1582); -lean_ctor_set(x_1583, 1, x_1581); -x_1584 = lean_array_push(x_1579, x_1583); -x_1585 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__15; -x_1586 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1586, 0, x_1585); -lean_ctor_set(x_1586, 1, x_1584); -x_1587 = l_myMacro____x40_Init_NotationExtra___hyg_5658____closed__24; -x_1588 = lean_array_push(x_1587, x_1586); -x_1589 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__13; -x_1590 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1590, 0, x_1589); -lean_ctor_set(x_1590, 1, x_1588); -x_1591 = lean_array_push(x_1572, x_1590); -x_1592 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1592, 0, x_1582); -lean_ctor_set(x_1592, 1, x_1591); -x_1593 = lean_array_push(x_1573, x_1592); -x_1594 = l_term_x5b___x5d___closed__9; -lean_inc(x_1561); -x_1595 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1595, 0, x_1561); -lean_ctor_set(x_1595, 1, x_1594); -x_1596 = lean_array_push(x_1593, x_1595); -x_1597 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__10; -x_1598 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1598, 0, x_1597); -lean_ctor_set(x_1598, 1, x_1596); -x_1599 = lean_array_push(x_1572, x_1598); -x_1600 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1600, 0, x_1582); -lean_ctor_set(x_1600, 1, x_1599); -x_1601 = l_myMacro____x40_Init_Notation___hyg_14470____closed__5; -x_1602 = lean_array_push(x_1601, x_1600); -x_1603 = l_myMacro____x40_Init_Notation___hyg_1398____closed__8; -x_1604 = lean_array_push(x_1602, x_1603); -x_1605 = lean_array_push(x_1604, x_1603); -x_1606 = lean_array_push(x_1605, x_1603); -x_1607 = lean_array_push(x_1606, x_1603); -x_1608 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__7; -x_1609 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1609, 0, x_1608); -lean_ctor_set(x_1609, 1, x_1607); -x_1610 = lean_array_push(x_1572, x_1609); -x_1611 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__20; -lean_inc(x_1561); -x_1612 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1612, 0, x_1561); -lean_ctor_set(x_1612, 1, x_1611); -x_1613 = lean_array_push(x_1572, x_1612); -x_1614 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__8; -lean_inc(x_1564); -lean_inc(x_1567); -x_1615 = l_Lean_addMacroScope(x_1567, x_1614, x_1564); -x_1616 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__7; -lean_inc(x_1561); -x_1617 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1617, 0, x_1561); -lean_ctor_set(x_1617, 1, x_1616); -lean_ctor_set(x_1617, 2, x_1615); -lean_ctor_set(x_1617, 3, x_1576); -x_1618 = lean_array_push(x_1572, x_1617); -x_1619 = lean_array_push(x_1618, x_1603); -x_1620 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__23; -x_1621 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1621, 0, x_1620); -lean_ctor_set(x_1621, 1, x_1619); -x_1622 = lean_array_push(x_1613, x_1621); -x_1623 = l_myMacro____x40_Init_Notation___hyg_15387____closed__9; -lean_inc(x_1561); -x_1624 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1624, 0, x_1561); -lean_ctor_set(x_1624, 1, x_1623); -x_1625 = lean_array_push(x_1572, x_1624); -x_1626 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__13; -lean_inc(x_1564); -lean_inc(x_1567); -x_1627 = l_Lean_addMacroScope(x_1567, x_1626, x_1564); -x_1628 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__11; -x_1629 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__15; -lean_inc(x_1561); -x_1630 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1630, 0, x_1561); -lean_ctor_set(x_1630, 1, x_1628); -lean_ctor_set(x_1630, 2, x_1627); -lean_ctor_set(x_1630, 3, x_1629); -x_1631 = lean_array_push(x_1625, x_1630); -x_1632 = l_Lean_expandExplicitBindersAux_loop___closed__4; -x_1633 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1633, 0, x_1632); -lean_ctor_set(x_1633, 1, x_1631); -x_1634 = lean_array_push(x_1572, x_1633); -x_1635 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1635, 0, x_1582); -lean_ctor_set(x_1635, 1, x_1634); -x_1636 = lean_array_push(x_1601, x_1635); -x_1637 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__25; -x_1638 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1638, 0, x_1637); -lean_ctor_set(x_1638, 1, x_1636); -x_1639 = lean_array_push(x_1622, x_1638); -x_1640 = l_myMacro____x40_Init_Notation___hyg_15956____closed__11; -lean_inc(x_1561); -x_1641 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1641, 0, x_1561); -lean_ctor_set(x_1641, 1, x_1640); -x_1642 = lean_array_push(x_1572, x_1641); -x_1643 = l_myMacro____x40_Init_Notation___hyg_13868____closed__9; -lean_inc(x_1561); -x_1644 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1644, 0, x_1561); -lean_ctor_set(x_1644, 1, x_1643); -x_1645 = lean_array_push(x_1572, x_1644); -x_1646 = l_myMacro____x40_Init_Notation___hyg_14470____closed__11; -lean_inc(x_1561); -x_1647 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1647, 0, x_1561); -lean_ctor_set(x_1647, 1, x_1646); -x_1648 = lean_array_push(x_1572, x_1647); -x_1649 = l_Lean_Parser_Term_dynamicQuot___elambda__1___closed__11; -lean_inc(x_1561); -x_1650 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1650, 0, x_1561); -lean_ctor_set(x_1650, 1, x_1649); -x_1651 = lean_array_push(x_1572, x_1650); -lean_inc(x_1651); -x_1652 = lean_array_push(x_1651, x_1557); -x_1653 = l_prec_x28___x29___closed__7; -lean_inc(x_1561); -x_1654 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1654, 0, x_1561); -lean_ctor_set(x_1654, 1, x_1653); -lean_inc(x_1654); -x_1655 = lean_array_push(x_1652, x_1654); -x_1656 = l_Lean_Parser_Term_quot___elambda__1___closed__1; -x_1657 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1657, 0, x_1656); -lean_ctor_set(x_1657, 1, x_1655); -x_1658 = lean_array_push(x_1572, x_1657); -x_1659 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1659, 0, x_1582); -lean_ctor_set(x_1659, 1, x_1658); -lean_inc(x_1648); -x_1660 = lean_array_push(x_1648, x_1659); -x_1661 = l_myMacro____x40_Init_Notation___hyg_13868____closed__13; -lean_inc(x_1561); -x_1662 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1662, 0, x_1561); -lean_ctor_set(x_1662, 1, x_1661); -lean_inc(x_1662); -x_1663 = lean_array_push(x_1660, x_1662); -x_1664 = lean_array_push(x_1651, x_1); -lean_inc(x_1654); -x_1665 = lean_array_push(x_1664, x_1654); -x_1666 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1666, 0, x_1656); -lean_ctor_set(x_1666, 1, x_1665); -x_1667 = lean_array_push(x_1663, x_1666); -x_1668 = l_myMacro____x40_Init_Notation___hyg_14470____closed__10; -x_1669 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1669, 0, x_1668); -lean_ctor_set(x_1669, 1, x_1667); -x_1670 = lean_array_push(x_1572, x_1669); -x_1671 = l_myMacro____x40_Init_Notation___hyg_14470____closed__14; -lean_inc(x_1561); -x_1672 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1672, 0, x_1561); -lean_ctor_set(x_1672, 1, x_1671); -x_1673 = lean_array_push(x_1572, x_1672); -x_1674 = l_myMacro____x40_Init_Notation___hyg_14470____closed__13; -x_1675 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1675, 0, x_1674); -lean_ctor_set(x_1675, 1, x_1673); -x_1676 = lean_array_push(x_1572, x_1675); -x_1677 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1677, 0, x_1582); -lean_ctor_set(x_1677, 1, x_1676); -x_1678 = lean_array_push(x_1648, x_1677); -x_1679 = lean_array_push(x_1678, x_1662); -x_1680 = l_Lean_Elab_Command_elabMacroRulesAux___closed__13; -x_1681 = l_Lean_addMacroScope(x_1567, x_1680, x_1564); -x_1682 = l_Lean_Elab_Command_elabMacroRulesAux___closed__12; -x_1683 = l_Lean_Elab_Command_elabMacroRulesAux___closed__18; -lean_inc(x_1561); -x_1684 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1684, 0, x_1561); -lean_ctor_set(x_1684, 1, x_1682); -lean_ctor_set(x_1684, 2, x_1681); -lean_ctor_set(x_1684, 3, x_1683); -x_1685 = lean_array_push(x_1572, x_1684); -x_1686 = l_prec_x28___x29___closed__3; -x_1687 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1687, 0, x_1561); -lean_ctor_set(x_1687, 1, x_1686); -x_1688 = lean_array_push(x_1572, x_1687); -x_1689 = lean_array_push(x_1688, x_1603); -x_1690 = lean_array_push(x_1689, x_1654); -x_1691 = l_myMacro____x40_Init_Notation___hyg_13868____closed__8; -x_1692 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1692, 0, x_1691); -lean_ctor_set(x_1692, 1, x_1690); -x_1693 = lean_array_push(x_1572, x_1692); -x_1694 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1694, 0, x_1582); -lean_ctor_set(x_1694, 1, x_1693); -x_1695 = lean_array_push(x_1685, x_1694); -x_1696 = l_myMacro____x40_Init_Notation___hyg_2191____closed__4; -x_1697 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1697, 0, x_1696); -lean_ctor_set(x_1697, 1, x_1695); -x_1698 = lean_array_push(x_1679, x_1697); -x_1699 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1699, 0, x_1668); -lean_ctor_set(x_1699, 1, x_1698); -x_1700 = lean_array_push(x_1670, x_1699); -x_1701 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1701, 0, x_1582); -lean_ctor_set(x_1701, 1, x_1700); -x_1702 = lean_array_push(x_1572, x_1701); -x_1703 = l_myMacro____x40_Init_Notation___hyg_14470____closed__8; -x_1704 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1704, 0, x_1703); -lean_ctor_set(x_1704, 1, x_1702); -x_1705 = lean_array_push(x_1645, x_1704); -x_1706 = l_myMacro____x40_Init_Notation___hyg_13868____closed__10; -x_1707 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1707, 0, x_1706); -lean_ctor_set(x_1707, 1, x_1705); -x_1708 = lean_array_push(x_1642, x_1707); -x_1709 = lean_array_push(x_1708, x_1603); -x_1710 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__33; -x_1711 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1711, 0, x_1710); -lean_ctor_set(x_1711, 1, x_1709); -x_1712 = lean_array_push(x_1639, x_1711); -x_1713 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__21; -x_1714 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1714, 0, x_1713); -lean_ctor_set(x_1714, 1, x_1712); -x_1715 = lean_array_push(x_1610, x_1714); -x_1716 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__5; -x_1717 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1717, 0, x_1716); -lean_ctor_set(x_1717, 1, x_1715); -if (lean_is_scalar(x_1562)) { - x_1718 = lean_alloc_ctor(1, 1, 0); -} else { - x_1718 = x_1562; -} -lean_ctor_set(x_1718, 0, x_1717); -if (lean_is_scalar(x_1569)) { - x_1719 = lean_alloc_ctor(0, 2, 0); -} else { - x_1719 = x_1569; -} -lean_ctor_set(x_1719, 0, x_1718); -lean_ctor_set(x_1719, 1, x_1568); -return x_1719; -} -} -} -else -{ -uint8_t x_1738; -x_1738 = lean_nat_dec_le(x_1549, x_1549); -if (x_1738 == 0) -{ -uint8_t x_1739; -lean_dec(x_1549); -x_1739 = l___private_Init_Data_Array_Basic_0__Array_allDiffAux___at_Lean_Elab_Command_mkSimpleDelab_go___spec__2(x_3, x_1550); -if (x_1739 == 0) -{ -lean_object* x_1740; lean_object* x_1741; -lean_dec(x_1548); -lean_dec(x_1); -x_1740 = lean_box(0); -x_1741 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1741, 0, x_1740); -lean_ctor_set(x_1741, 1, x_1547); -return x_1741; -} -else -{ -lean_object* x_1742; lean_object* x_1743; lean_object* x_1908; lean_object* x_1909; lean_object* x_1910; lean_object* x_1911; lean_object* x_1912; lean_object* x_1913; lean_object* x_1914; lean_object* x_1915; lean_object* x_1916; lean_object* x_1917; lean_object* x_1918; lean_object* x_1919; lean_object* x_1920; lean_object* x_1921; lean_object* x_1922; lean_object* x_1923; lean_object* x_1924; -x_1908 = l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_Elab_Command_mkSimpleDelab_go___spec__4(x_4, x_5, x_1547); -x_1909 = lean_ctor_get(x_1908, 0); -lean_inc(x_1909); -if (lean_is_exclusive(x_1909)) { - lean_ctor_release(x_1909, 0); - x_1910 = x_1909; -} else { - lean_dec_ref(x_1909); - x_1910 = lean_box(0); -} -x_1911 = lean_ctor_get(x_1908, 1); -lean_inc(x_1911); -lean_dec(x_1908); -x_1912 = l_Lean_Elab_Command_getCurrMacroScope(x_4, x_5, x_1911); -x_1913 = lean_ctor_get(x_1912, 1); -lean_inc(x_1913); -lean_dec(x_1912); -x_1914 = l_Lean_Elab_Command_getMainModule___rarg(x_5, x_1913); -x_1915 = lean_ctor_get(x_1914, 1); -lean_inc(x_1915); -lean_dec(x_1914); -x_1916 = l_Array_empty___closed__1; -x_1917 = l_Array_appendCore___rarg(x_1916, x_3); -x_1918 = l_Lean_nullKind___closed__2; -x_1919 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1919, 0, x_1918); -lean_ctor_set(x_1919, 1, x_1917); -x_1920 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__20; -x_1921 = lean_array_push(x_1920, x_1919); -x_1922 = l_myMacro____x40_Init_Notation___hyg_2191____closed__4; -x_1923 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1923, 0, x_1922); -lean_ctor_set(x_1923, 1, x_1921); -if (lean_is_scalar(x_1910)) { - x_1924 = lean_alloc_ctor(1, 1, 0); -} else { - x_1924 = x_1910; -} -lean_ctor_set(x_1924, 0, x_1923); -x_1742 = x_1924; -x_1743 = x_1915; -goto block_1907; -block_1907: -{ -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; 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; 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; lean_object* x_1801; lean_object* x_1802; lean_object* x_1803; lean_object* x_1804; 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; 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; lean_object* x_1847; lean_object* x_1848; lean_object* x_1849; lean_object* x_1850; 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; lean_object* x_1870; lean_object* x_1871; lean_object* x_1872; lean_object* x_1873; lean_object* x_1874; lean_object* x_1875; lean_object* x_1876; lean_object* x_1877; lean_object* x_1878; lean_object* x_1879; lean_object* x_1880; lean_object* x_1881; lean_object* x_1882; lean_object* x_1883; lean_object* x_1884; lean_object* x_1885; lean_object* x_1886; lean_object* x_1887; lean_object* x_1888; lean_object* x_1889; lean_object* x_1890; lean_object* x_1891; lean_object* x_1892; lean_object* x_1893; lean_object* x_1894; lean_object* x_1895; lean_object* x_1896; lean_object* x_1897; lean_object* x_1898; lean_object* x_1899; lean_object* x_1900; lean_object* x_1901; lean_object* x_1902; lean_object* x_1903; lean_object* x_1904; lean_object* x_1905; lean_object* x_1906; -x_1744 = lean_ctor_get(x_1742, 0); -lean_inc(x_1744); -lean_dec(x_1742); -x_1745 = l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_Elab_Command_mkSimpleDelab_go___spec__4(x_4, x_5, x_1743); -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 = lean_ctor_get(x_1746, 0); -lean_inc(x_1748); -if (lean_is_exclusive(x_1746)) { - lean_ctor_release(x_1746, 0); - x_1749 = x_1746; -} else { - lean_dec_ref(x_1746); - x_1749 = lean_box(0); -} -x_1750 = l_Lean_Elab_Command_getCurrMacroScope(x_4, x_5, x_1747); -x_1751 = lean_ctor_get(x_1750, 0); -lean_inc(x_1751); -x_1752 = lean_ctor_get(x_1750, 1); -lean_inc(x_1752); -lean_dec(x_1750); -x_1753 = l_Lean_Elab_Command_getMainModule___rarg(x_5, x_1752); -x_1754 = lean_ctor_get(x_1753, 0); -lean_inc(x_1754); -x_1755 = lean_ctor_get(x_1753, 1); -lean_inc(x_1755); -if (lean_is_exclusive(x_1753)) { - lean_ctor_release(x_1753, 0); - lean_ctor_release(x_1753, 1); - x_1756 = x_1753; -} else { - lean_dec_ref(x_1753); - x_1756 = lean_box(0); -} -x_1757 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__11; -lean_inc(x_1748); -x_1758 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1758, 0, x_1748); -lean_ctor_set(x_1758, 1, x_1757); -x_1759 = l_Array_empty___closed__1; -x_1760 = lean_array_push(x_1759, x_1758); -x_1761 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__4; -lean_inc(x_1751); -lean_inc(x_1754); -x_1762 = l_Lean_addMacroScope(x_1754, x_1761, x_1751); -x_1763 = lean_box(0); -x_1764 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__3; -lean_inc(x_1748); -x_1765 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1765, 0, x_1748); -lean_ctor_set(x_1765, 1, x_1764); -lean_ctor_set(x_1765, 2, x_1762); -lean_ctor_set(x_1765, 3, x_1763); -x_1766 = lean_array_push(x_1759, x_1765); -x_1767 = lean_mk_syntax_ident(x_1548); -x_1768 = lean_array_push(x_1759, x_1767); -x_1769 = l_Lean_nullKind___closed__2; -x_1770 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1770, 0, x_1769); -lean_ctor_set(x_1770, 1, x_1768); -x_1771 = lean_array_push(x_1766, x_1770); -x_1772 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__15; -x_1773 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1773, 0, x_1772); -lean_ctor_set(x_1773, 1, x_1771); -x_1774 = l_myMacro____x40_Init_NotationExtra___hyg_5658____closed__24; -x_1775 = lean_array_push(x_1774, x_1773); -x_1776 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__13; -x_1777 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1777, 0, x_1776); -lean_ctor_set(x_1777, 1, x_1775); -x_1778 = lean_array_push(x_1759, x_1777); -x_1779 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1779, 0, x_1769); -lean_ctor_set(x_1779, 1, x_1778); -x_1780 = lean_array_push(x_1760, x_1779); -x_1781 = l_term_x5b___x5d___closed__9; -lean_inc(x_1748); -x_1782 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1782, 0, x_1748); -lean_ctor_set(x_1782, 1, x_1781); -x_1783 = lean_array_push(x_1780, x_1782); -x_1784 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__10; -x_1785 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1785, 0, x_1784); -lean_ctor_set(x_1785, 1, x_1783); -x_1786 = lean_array_push(x_1759, x_1785); -x_1787 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1787, 0, x_1769); -lean_ctor_set(x_1787, 1, x_1786); -x_1788 = l_myMacro____x40_Init_Notation___hyg_14470____closed__5; -x_1789 = lean_array_push(x_1788, x_1787); -x_1790 = l_myMacro____x40_Init_Notation___hyg_1398____closed__8; -x_1791 = lean_array_push(x_1789, x_1790); -x_1792 = lean_array_push(x_1791, x_1790); -x_1793 = lean_array_push(x_1792, x_1790); -x_1794 = lean_array_push(x_1793, x_1790); -x_1795 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__7; -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_1759, x_1796); -x_1798 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__20; -lean_inc(x_1748); -x_1799 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1799, 0, x_1748); -lean_ctor_set(x_1799, 1, x_1798); -x_1800 = lean_array_push(x_1759, x_1799); -x_1801 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__8; -lean_inc(x_1751); -lean_inc(x_1754); -x_1802 = l_Lean_addMacroScope(x_1754, x_1801, x_1751); -x_1803 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__7; -lean_inc(x_1748); -x_1804 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1804, 0, x_1748); -lean_ctor_set(x_1804, 1, x_1803); -lean_ctor_set(x_1804, 2, x_1802); -lean_ctor_set(x_1804, 3, x_1763); -x_1805 = lean_array_push(x_1759, x_1804); -x_1806 = lean_array_push(x_1805, x_1790); -x_1807 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__23; -x_1808 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1808, 0, x_1807); -lean_ctor_set(x_1808, 1, x_1806); -x_1809 = lean_array_push(x_1800, x_1808); -x_1810 = l_myMacro____x40_Init_Notation___hyg_15387____closed__9; -lean_inc(x_1748); -x_1811 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1811, 0, x_1748); -lean_ctor_set(x_1811, 1, x_1810); -x_1812 = lean_array_push(x_1759, x_1811); -x_1813 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__13; -lean_inc(x_1751); -lean_inc(x_1754); -x_1814 = l_Lean_addMacroScope(x_1754, x_1813, x_1751); -x_1815 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__11; -x_1816 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__15; -lean_inc(x_1748); -x_1817 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1817, 0, x_1748); -lean_ctor_set(x_1817, 1, x_1815); -lean_ctor_set(x_1817, 2, x_1814); -lean_ctor_set(x_1817, 3, x_1816); -x_1818 = lean_array_push(x_1812, x_1817); -x_1819 = l_Lean_expandExplicitBindersAux_loop___closed__4; -x_1820 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1820, 0, x_1819); -lean_ctor_set(x_1820, 1, x_1818); -x_1821 = lean_array_push(x_1759, x_1820); -x_1822 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1822, 0, x_1769); -lean_ctor_set(x_1822, 1, x_1821); -x_1823 = lean_array_push(x_1788, x_1822); -x_1824 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__25; -x_1825 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1825, 0, x_1824); -lean_ctor_set(x_1825, 1, x_1823); -x_1826 = lean_array_push(x_1809, x_1825); -x_1827 = l_myMacro____x40_Init_Notation___hyg_15956____closed__11; -lean_inc(x_1748); -x_1828 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1828, 0, x_1748); -lean_ctor_set(x_1828, 1, x_1827); -x_1829 = lean_array_push(x_1759, x_1828); -x_1830 = l_myMacro____x40_Init_Notation___hyg_13868____closed__9; -lean_inc(x_1748); -x_1831 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1831, 0, x_1748); -lean_ctor_set(x_1831, 1, x_1830); -x_1832 = lean_array_push(x_1759, x_1831); -x_1833 = l_myMacro____x40_Init_Notation___hyg_14470____closed__11; -lean_inc(x_1748); -x_1834 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1834, 0, x_1748); -lean_ctor_set(x_1834, 1, x_1833); -x_1835 = lean_array_push(x_1759, x_1834); -x_1836 = l_Lean_Parser_Term_dynamicQuot___elambda__1___closed__11; -lean_inc(x_1748); -x_1837 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1837, 0, x_1748); -lean_ctor_set(x_1837, 1, x_1836); -x_1838 = lean_array_push(x_1759, x_1837); -lean_inc(x_1838); -x_1839 = lean_array_push(x_1838, x_1744); -x_1840 = l_prec_x28___x29___closed__7; -lean_inc(x_1748); -x_1841 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1841, 0, x_1748); -lean_ctor_set(x_1841, 1, x_1840); -lean_inc(x_1841); -x_1842 = lean_array_push(x_1839, x_1841); -x_1843 = l_Lean_Parser_Term_quot___elambda__1___closed__1; -x_1844 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1844, 0, x_1843); -lean_ctor_set(x_1844, 1, x_1842); -x_1845 = lean_array_push(x_1759, x_1844); -x_1846 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1846, 0, x_1769); -lean_ctor_set(x_1846, 1, x_1845); -lean_inc(x_1835); -x_1847 = lean_array_push(x_1835, x_1846); -x_1848 = l_myMacro____x40_Init_Notation___hyg_13868____closed__13; -lean_inc(x_1748); -x_1849 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1849, 0, x_1748); -lean_ctor_set(x_1849, 1, x_1848); -lean_inc(x_1849); -x_1850 = lean_array_push(x_1847, x_1849); -x_1851 = lean_array_push(x_1838, x_1); -lean_inc(x_1841); -x_1852 = lean_array_push(x_1851, x_1841); -x_1853 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1853, 0, x_1843); -lean_ctor_set(x_1853, 1, x_1852); -x_1854 = lean_array_push(x_1850, x_1853); -x_1855 = l_myMacro____x40_Init_Notation___hyg_14470____closed__10; -x_1856 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1856, 0, x_1855); -lean_ctor_set(x_1856, 1, x_1854); -x_1857 = lean_array_push(x_1759, x_1856); -x_1858 = l_myMacro____x40_Init_Notation___hyg_14470____closed__14; -lean_inc(x_1748); -x_1859 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1859, 0, x_1748); -lean_ctor_set(x_1859, 1, x_1858); -x_1860 = lean_array_push(x_1759, x_1859); -x_1861 = l_myMacro____x40_Init_Notation___hyg_14470____closed__13; -x_1862 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1862, 0, x_1861); -lean_ctor_set(x_1862, 1, x_1860); -x_1863 = lean_array_push(x_1759, x_1862); -x_1864 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1864, 0, x_1769); -lean_ctor_set(x_1864, 1, x_1863); -x_1865 = lean_array_push(x_1835, x_1864); -x_1866 = lean_array_push(x_1865, x_1849); -x_1867 = l_Lean_Elab_Command_elabMacroRulesAux___closed__13; -x_1868 = l_Lean_addMacroScope(x_1754, x_1867, x_1751); -x_1869 = l_Lean_Elab_Command_elabMacroRulesAux___closed__12; -x_1870 = l_Lean_Elab_Command_elabMacroRulesAux___closed__18; -lean_inc(x_1748); -x_1871 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1871, 0, x_1748); -lean_ctor_set(x_1871, 1, x_1869); -lean_ctor_set(x_1871, 2, x_1868); -lean_ctor_set(x_1871, 3, x_1870); -x_1872 = lean_array_push(x_1759, x_1871); -x_1873 = l_prec_x28___x29___closed__3; -x_1874 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1874, 0, x_1748); -lean_ctor_set(x_1874, 1, x_1873); -x_1875 = lean_array_push(x_1759, x_1874); -x_1876 = lean_array_push(x_1875, x_1790); -x_1877 = lean_array_push(x_1876, x_1841); -x_1878 = l_myMacro____x40_Init_Notation___hyg_13868____closed__8; -x_1879 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1879, 0, x_1878); -lean_ctor_set(x_1879, 1, x_1877); -x_1880 = lean_array_push(x_1759, x_1879); -x_1881 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1881, 0, x_1769); -lean_ctor_set(x_1881, 1, x_1880); -x_1882 = lean_array_push(x_1872, x_1881); -x_1883 = l_myMacro____x40_Init_Notation___hyg_2191____closed__4; -x_1884 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1884, 0, x_1883); -lean_ctor_set(x_1884, 1, x_1882); -x_1885 = lean_array_push(x_1866, x_1884); -x_1886 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1886, 0, x_1855); -lean_ctor_set(x_1886, 1, x_1885); -x_1887 = lean_array_push(x_1857, x_1886); -x_1888 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1888, 0, x_1769); -lean_ctor_set(x_1888, 1, x_1887); -x_1889 = lean_array_push(x_1759, x_1888); -x_1890 = l_myMacro____x40_Init_Notation___hyg_14470____closed__8; -x_1891 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1891, 0, x_1890); -lean_ctor_set(x_1891, 1, x_1889); -x_1892 = lean_array_push(x_1832, x_1891); -x_1893 = l_myMacro____x40_Init_Notation___hyg_13868____closed__10; -x_1894 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1894, 0, x_1893); -lean_ctor_set(x_1894, 1, x_1892); -x_1895 = lean_array_push(x_1829, x_1894); -x_1896 = lean_array_push(x_1895, x_1790); -x_1897 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__33; -x_1898 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1898, 0, x_1897); -lean_ctor_set(x_1898, 1, x_1896); -x_1899 = lean_array_push(x_1826, x_1898); -x_1900 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__21; -x_1901 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1901, 0, x_1900); -lean_ctor_set(x_1901, 1, x_1899); -x_1902 = lean_array_push(x_1797, x_1901); -x_1903 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__5; -x_1904 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1904, 0, x_1903); -lean_ctor_set(x_1904, 1, x_1902); -if (lean_is_scalar(x_1749)) { - x_1905 = lean_alloc_ctor(1, 1, 0); -} else { - x_1905 = x_1749; -} -lean_ctor_set(x_1905, 0, x_1904); -if (lean_is_scalar(x_1756)) { - x_1906 = lean_alloc_ctor(0, 2, 0); -} else { - x_1906 = x_1756; -} -lean_ctor_set(x_1906, 0, x_1905); -lean_ctor_set(x_1906, 1, x_1755); -return x_1906; -} -} -} -else -{ -size_t x_1925; size_t x_1926; uint8_t x_1927; -x_1925 = 0; -x_1926 = lean_usize_of_nat(x_1549); -lean_dec(x_1549); -x_1927 = l_Array_anyMUnsafe_any___at_Lean_Elab_Command_mkSimpleDelab_go___spec__5(x_3, x_1925, x_1926); -if (x_1927 == 0) -{ -uint8_t x_1928; -x_1928 = l___private_Init_Data_Array_Basic_0__Array_allDiffAux___at_Lean_Elab_Command_mkSimpleDelab_go___spec__2(x_3, x_1550); -if (x_1928 == 0) -{ -lean_object* x_1929; lean_object* x_1930; -lean_dec(x_1548); -lean_dec(x_1); -x_1929 = lean_box(0); -x_1930 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1930, 0, x_1929); -lean_ctor_set(x_1930, 1, x_1547); -return x_1930; -} -else -{ -lean_object* x_1931; lean_object* x_1932; lean_object* x_2097; lean_object* x_2098; lean_object* x_2099; lean_object* x_2100; lean_object* x_2101; lean_object* x_2102; lean_object* x_2103; lean_object* x_2104; lean_object* x_2105; lean_object* x_2106; lean_object* x_2107; lean_object* x_2108; lean_object* x_2109; lean_object* x_2110; lean_object* x_2111; lean_object* x_2112; lean_object* x_2113; -x_2097 = l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_Elab_Command_mkSimpleDelab_go___spec__4(x_4, x_5, x_1547); -x_2098 = lean_ctor_get(x_2097, 0); -lean_inc(x_2098); -if (lean_is_exclusive(x_2098)) { - lean_ctor_release(x_2098, 0); - x_2099 = x_2098; -} else { - lean_dec_ref(x_2098); - x_2099 = lean_box(0); -} -x_2100 = lean_ctor_get(x_2097, 1); -lean_inc(x_2100); -lean_dec(x_2097); -x_2101 = l_Lean_Elab_Command_getCurrMacroScope(x_4, x_5, x_2100); -x_2102 = lean_ctor_get(x_2101, 1); -lean_inc(x_2102); -lean_dec(x_2101); -x_2103 = l_Lean_Elab_Command_getMainModule___rarg(x_5, x_2102); -x_2104 = lean_ctor_get(x_2103, 1); -lean_inc(x_2104); -lean_dec(x_2103); -x_2105 = l_Array_empty___closed__1; -x_2106 = l_Array_appendCore___rarg(x_2105, x_3); -x_2107 = l_Lean_nullKind___closed__2; -x_2108 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2108, 0, x_2107); -lean_ctor_set(x_2108, 1, x_2106); -x_2109 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__20; -x_2110 = lean_array_push(x_2109, x_2108); -x_2111 = l_myMacro____x40_Init_Notation___hyg_2191____closed__4; -x_2112 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2112, 0, x_2111); -lean_ctor_set(x_2112, 1, x_2110); -if (lean_is_scalar(x_2099)) { - x_2113 = lean_alloc_ctor(1, 1, 0); -} else { - x_2113 = x_2099; -} -lean_ctor_set(x_2113, 0, x_2112); -x_1931 = x_2113; -x_1932 = x_2104; -goto block_2096; -block_2096: -{ -lean_object* x_1933; lean_object* x_1934; lean_object* x_1935; lean_object* x_1936; lean_object* x_1937; lean_object* x_1938; lean_object* x_1939; lean_object* x_1940; lean_object* x_1941; lean_object* x_1942; lean_object* x_1943; lean_object* x_1944; lean_object* x_1945; lean_object* x_1946; lean_object* x_1947; lean_object* x_1948; lean_object* x_1949; lean_object* x_1950; lean_object* x_1951; lean_object* x_1952; lean_object* x_1953; lean_object* x_1954; lean_object* x_1955; lean_object* x_1956; lean_object* x_1957; lean_object* x_1958; lean_object* x_1959; lean_object* x_1960; lean_object* x_1961; lean_object* x_1962; lean_object* x_1963; lean_object* x_1964; lean_object* x_1965; lean_object* x_1966; lean_object* x_1967; lean_object* x_1968; lean_object* x_1969; lean_object* x_1970; lean_object* x_1971; lean_object* x_1972; lean_object* x_1973; lean_object* x_1974; lean_object* x_1975; lean_object* x_1976; lean_object* x_1977; lean_object* x_1978; lean_object* x_1979; lean_object* x_1980; lean_object* x_1981; lean_object* x_1982; lean_object* x_1983; lean_object* x_1984; lean_object* x_1985; lean_object* x_1986; lean_object* x_1987; lean_object* x_1988; lean_object* x_1989; lean_object* x_1990; lean_object* x_1991; lean_object* x_1992; lean_object* x_1993; lean_object* x_1994; lean_object* x_1995; lean_object* x_1996; lean_object* x_1997; lean_object* x_1998; lean_object* x_1999; lean_object* x_2000; lean_object* x_2001; lean_object* x_2002; lean_object* x_2003; lean_object* x_2004; lean_object* x_2005; lean_object* x_2006; lean_object* x_2007; lean_object* x_2008; lean_object* x_2009; lean_object* x_2010; lean_object* x_2011; lean_object* x_2012; lean_object* x_2013; lean_object* x_2014; lean_object* x_2015; lean_object* x_2016; lean_object* x_2017; lean_object* x_2018; lean_object* x_2019; lean_object* x_2020; lean_object* x_2021; lean_object* x_2022; lean_object* x_2023; lean_object* x_2024; lean_object* x_2025; lean_object* x_2026; lean_object* x_2027; lean_object* x_2028; lean_object* x_2029; lean_object* x_2030; lean_object* x_2031; lean_object* x_2032; lean_object* x_2033; lean_object* x_2034; lean_object* x_2035; lean_object* x_2036; lean_object* x_2037; lean_object* x_2038; lean_object* x_2039; lean_object* x_2040; lean_object* x_2041; lean_object* x_2042; lean_object* x_2043; lean_object* x_2044; lean_object* x_2045; lean_object* x_2046; lean_object* x_2047; lean_object* x_2048; lean_object* x_2049; lean_object* x_2050; lean_object* x_2051; lean_object* x_2052; lean_object* x_2053; lean_object* x_2054; lean_object* x_2055; lean_object* x_2056; lean_object* x_2057; lean_object* x_2058; lean_object* x_2059; lean_object* x_2060; lean_object* x_2061; lean_object* x_2062; lean_object* x_2063; lean_object* x_2064; lean_object* x_2065; lean_object* x_2066; lean_object* x_2067; lean_object* x_2068; lean_object* x_2069; lean_object* x_2070; lean_object* x_2071; lean_object* x_2072; lean_object* x_2073; lean_object* x_2074; lean_object* x_2075; lean_object* x_2076; lean_object* x_2077; lean_object* x_2078; lean_object* x_2079; lean_object* x_2080; lean_object* x_2081; lean_object* x_2082; lean_object* x_2083; lean_object* x_2084; lean_object* x_2085; lean_object* x_2086; lean_object* x_2087; lean_object* x_2088; lean_object* x_2089; lean_object* x_2090; lean_object* x_2091; lean_object* x_2092; lean_object* x_2093; lean_object* x_2094; lean_object* x_2095; -x_1933 = lean_ctor_get(x_1931, 0); -lean_inc(x_1933); -lean_dec(x_1931); -x_1934 = l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_Elab_Command_mkSimpleDelab_go___spec__4(x_4, x_5, x_1932); -x_1935 = lean_ctor_get(x_1934, 0); -lean_inc(x_1935); -x_1936 = lean_ctor_get(x_1934, 1); -lean_inc(x_1936); -lean_dec(x_1934); -x_1937 = lean_ctor_get(x_1935, 0); -lean_inc(x_1937); -if (lean_is_exclusive(x_1935)) { - lean_ctor_release(x_1935, 0); - x_1938 = x_1935; -} else { - lean_dec_ref(x_1935); - x_1938 = lean_box(0); -} -x_1939 = l_Lean_Elab_Command_getCurrMacroScope(x_4, x_5, x_1936); -x_1940 = lean_ctor_get(x_1939, 0); -lean_inc(x_1940); -x_1941 = lean_ctor_get(x_1939, 1); -lean_inc(x_1941); -lean_dec(x_1939); -x_1942 = l_Lean_Elab_Command_getMainModule___rarg(x_5, x_1941); -x_1943 = lean_ctor_get(x_1942, 0); -lean_inc(x_1943); -x_1944 = lean_ctor_get(x_1942, 1); -lean_inc(x_1944); -if (lean_is_exclusive(x_1942)) { - lean_ctor_release(x_1942, 0); - lean_ctor_release(x_1942, 1); - x_1945 = x_1942; -} else { - lean_dec_ref(x_1942); - x_1945 = lean_box(0); -} -x_1946 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__11; -lean_inc(x_1937); -x_1947 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1947, 0, x_1937); -lean_ctor_set(x_1947, 1, x_1946); -x_1948 = l_Array_empty___closed__1; -x_1949 = lean_array_push(x_1948, x_1947); -x_1950 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__4; -lean_inc(x_1940); -lean_inc(x_1943); -x_1951 = l_Lean_addMacroScope(x_1943, x_1950, x_1940); -x_1952 = lean_box(0); -x_1953 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__3; -lean_inc(x_1937); -x_1954 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1954, 0, x_1937); -lean_ctor_set(x_1954, 1, x_1953); -lean_ctor_set(x_1954, 2, x_1951); -lean_ctor_set(x_1954, 3, x_1952); -x_1955 = lean_array_push(x_1948, x_1954); -x_1956 = lean_mk_syntax_ident(x_1548); -x_1957 = lean_array_push(x_1948, x_1956); -x_1958 = l_Lean_nullKind___closed__2; -x_1959 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1959, 0, x_1958); -lean_ctor_set(x_1959, 1, x_1957); -x_1960 = lean_array_push(x_1955, x_1959); -x_1961 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__15; -x_1962 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1962, 0, x_1961); -lean_ctor_set(x_1962, 1, x_1960); -x_1963 = l_myMacro____x40_Init_NotationExtra___hyg_5658____closed__24; -x_1964 = lean_array_push(x_1963, x_1962); -x_1965 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__13; -x_1966 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1966, 0, x_1965); -lean_ctor_set(x_1966, 1, x_1964); -x_1967 = lean_array_push(x_1948, x_1966); -x_1968 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1968, 0, x_1958); -lean_ctor_set(x_1968, 1, x_1967); -x_1969 = lean_array_push(x_1949, x_1968); -x_1970 = l_term_x5b___x5d___closed__9; -lean_inc(x_1937); -x_1971 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1971, 0, x_1937); -lean_ctor_set(x_1971, 1, x_1970); -x_1972 = lean_array_push(x_1969, x_1971); -x_1973 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__10; -x_1974 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1974, 0, x_1973); -lean_ctor_set(x_1974, 1, x_1972); -x_1975 = lean_array_push(x_1948, x_1974); -x_1976 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1976, 0, x_1958); -lean_ctor_set(x_1976, 1, x_1975); -x_1977 = l_myMacro____x40_Init_Notation___hyg_14470____closed__5; -x_1978 = lean_array_push(x_1977, x_1976); -x_1979 = l_myMacro____x40_Init_Notation___hyg_1398____closed__8; -x_1980 = lean_array_push(x_1978, x_1979); -x_1981 = lean_array_push(x_1980, x_1979); -x_1982 = lean_array_push(x_1981, x_1979); -x_1983 = lean_array_push(x_1982, x_1979); -x_1984 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__7; -x_1985 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1985, 0, x_1984); -lean_ctor_set(x_1985, 1, x_1983); -x_1986 = lean_array_push(x_1948, x_1985); -x_1987 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__20; -lean_inc(x_1937); -x_1988 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1988, 0, x_1937); -lean_ctor_set(x_1988, 1, x_1987); -x_1989 = lean_array_push(x_1948, x_1988); -x_1990 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__8; -lean_inc(x_1940); -lean_inc(x_1943); -x_1991 = l_Lean_addMacroScope(x_1943, x_1990, x_1940); -x_1992 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__7; -lean_inc(x_1937); -x_1993 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1993, 0, x_1937); -lean_ctor_set(x_1993, 1, x_1992); -lean_ctor_set(x_1993, 2, x_1991); -lean_ctor_set(x_1993, 3, x_1952); -x_1994 = lean_array_push(x_1948, x_1993); -x_1995 = lean_array_push(x_1994, x_1979); -x_1996 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__23; -x_1997 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1997, 0, x_1996); -lean_ctor_set(x_1997, 1, x_1995); -x_1998 = lean_array_push(x_1989, x_1997); -x_1999 = l_myMacro____x40_Init_Notation___hyg_15387____closed__9; -lean_inc(x_1937); -x_2000 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_2000, 0, x_1937); -lean_ctor_set(x_2000, 1, x_1999); -x_2001 = lean_array_push(x_1948, x_2000); -x_2002 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__13; -lean_inc(x_1940); -lean_inc(x_1943); -x_2003 = l_Lean_addMacroScope(x_1943, x_2002, x_1940); -x_2004 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__11; -x_2005 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__15; -lean_inc(x_1937); -x_2006 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_2006, 0, x_1937); -lean_ctor_set(x_2006, 1, x_2004); -lean_ctor_set(x_2006, 2, x_2003); -lean_ctor_set(x_2006, 3, x_2005); -x_2007 = lean_array_push(x_2001, x_2006); -x_2008 = l_Lean_expandExplicitBindersAux_loop___closed__4; -x_2009 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2009, 0, x_2008); -lean_ctor_set(x_2009, 1, x_2007); -x_2010 = lean_array_push(x_1948, x_2009); -x_2011 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2011, 0, x_1958); -lean_ctor_set(x_2011, 1, x_2010); -x_2012 = lean_array_push(x_1977, x_2011); -x_2013 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__25; -x_2014 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2014, 0, x_2013); -lean_ctor_set(x_2014, 1, x_2012); -x_2015 = lean_array_push(x_1998, x_2014); -x_2016 = l_myMacro____x40_Init_Notation___hyg_15956____closed__11; -lean_inc(x_1937); -x_2017 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_2017, 0, x_1937); -lean_ctor_set(x_2017, 1, x_2016); -x_2018 = lean_array_push(x_1948, x_2017); -x_2019 = l_myMacro____x40_Init_Notation___hyg_13868____closed__9; -lean_inc(x_1937); -x_2020 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_2020, 0, x_1937); -lean_ctor_set(x_2020, 1, x_2019); -x_2021 = lean_array_push(x_1948, x_2020); -x_2022 = l_myMacro____x40_Init_Notation___hyg_14470____closed__11; -lean_inc(x_1937); -x_2023 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_2023, 0, x_1937); -lean_ctor_set(x_2023, 1, x_2022); -x_2024 = lean_array_push(x_1948, x_2023); -x_2025 = l_Lean_Parser_Term_dynamicQuot___elambda__1___closed__11; -lean_inc(x_1937); -x_2026 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_2026, 0, x_1937); -lean_ctor_set(x_2026, 1, x_2025); -x_2027 = lean_array_push(x_1948, x_2026); -lean_inc(x_2027); -x_2028 = lean_array_push(x_2027, x_1933); -x_2029 = l_prec_x28___x29___closed__7; -lean_inc(x_1937); -x_2030 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_2030, 0, x_1937); -lean_ctor_set(x_2030, 1, x_2029); -lean_inc(x_2030); -x_2031 = lean_array_push(x_2028, x_2030); -x_2032 = l_Lean_Parser_Term_quot___elambda__1___closed__1; -x_2033 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2033, 0, x_2032); -lean_ctor_set(x_2033, 1, x_2031); -x_2034 = lean_array_push(x_1948, x_2033); -x_2035 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2035, 0, x_1958); -lean_ctor_set(x_2035, 1, x_2034); -lean_inc(x_2024); -x_2036 = lean_array_push(x_2024, x_2035); -x_2037 = l_myMacro____x40_Init_Notation___hyg_13868____closed__13; -lean_inc(x_1937); -x_2038 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_2038, 0, x_1937); -lean_ctor_set(x_2038, 1, x_2037); -lean_inc(x_2038); -x_2039 = lean_array_push(x_2036, x_2038); -x_2040 = lean_array_push(x_2027, x_1); -lean_inc(x_2030); -x_2041 = lean_array_push(x_2040, x_2030); -x_2042 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2042, 0, x_2032); -lean_ctor_set(x_2042, 1, x_2041); -x_2043 = lean_array_push(x_2039, x_2042); -x_2044 = l_myMacro____x40_Init_Notation___hyg_14470____closed__10; -x_2045 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2045, 0, x_2044); -lean_ctor_set(x_2045, 1, x_2043); -x_2046 = lean_array_push(x_1948, x_2045); -x_2047 = l_myMacro____x40_Init_Notation___hyg_14470____closed__14; -lean_inc(x_1937); -x_2048 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_2048, 0, x_1937); -lean_ctor_set(x_2048, 1, x_2047); -x_2049 = lean_array_push(x_1948, x_2048); -x_2050 = l_myMacro____x40_Init_Notation___hyg_14470____closed__13; -x_2051 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2051, 0, x_2050); -lean_ctor_set(x_2051, 1, x_2049); -x_2052 = lean_array_push(x_1948, x_2051); -x_2053 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2053, 0, x_1958); -lean_ctor_set(x_2053, 1, x_2052); -x_2054 = lean_array_push(x_2024, x_2053); -x_2055 = lean_array_push(x_2054, x_2038); -x_2056 = l_Lean_Elab_Command_elabMacroRulesAux___closed__13; -x_2057 = l_Lean_addMacroScope(x_1943, x_2056, x_1940); -x_2058 = l_Lean_Elab_Command_elabMacroRulesAux___closed__12; -x_2059 = l_Lean_Elab_Command_elabMacroRulesAux___closed__18; -lean_inc(x_1937); -x_2060 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_2060, 0, x_1937); -lean_ctor_set(x_2060, 1, x_2058); -lean_ctor_set(x_2060, 2, x_2057); -lean_ctor_set(x_2060, 3, x_2059); -x_2061 = lean_array_push(x_1948, x_2060); -x_2062 = l_prec_x28___x29___closed__3; -x_2063 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_2063, 0, x_1937); -lean_ctor_set(x_2063, 1, x_2062); -x_2064 = lean_array_push(x_1948, x_2063); -x_2065 = lean_array_push(x_2064, x_1979); -x_2066 = lean_array_push(x_2065, x_2030); -x_2067 = l_myMacro____x40_Init_Notation___hyg_13868____closed__8; -x_2068 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2068, 0, x_2067); -lean_ctor_set(x_2068, 1, x_2066); -x_2069 = lean_array_push(x_1948, x_2068); -x_2070 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2070, 0, x_1958); -lean_ctor_set(x_2070, 1, x_2069); -x_2071 = lean_array_push(x_2061, x_2070); -x_2072 = l_myMacro____x40_Init_Notation___hyg_2191____closed__4; -x_2073 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2073, 0, x_2072); -lean_ctor_set(x_2073, 1, x_2071); -x_2074 = lean_array_push(x_2055, x_2073); -x_2075 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2075, 0, x_2044); -lean_ctor_set(x_2075, 1, x_2074); -x_2076 = lean_array_push(x_2046, x_2075); -x_2077 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2077, 0, x_1958); -lean_ctor_set(x_2077, 1, x_2076); -x_2078 = lean_array_push(x_1948, x_2077); -x_2079 = l_myMacro____x40_Init_Notation___hyg_14470____closed__8; -x_2080 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2080, 0, x_2079); -lean_ctor_set(x_2080, 1, x_2078); -x_2081 = lean_array_push(x_2021, x_2080); -x_2082 = l_myMacro____x40_Init_Notation___hyg_13868____closed__10; -x_2083 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2083, 0, x_2082); -lean_ctor_set(x_2083, 1, x_2081); -x_2084 = lean_array_push(x_2018, x_2083); -x_2085 = lean_array_push(x_2084, x_1979); -x_2086 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__33; -x_2087 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2087, 0, x_2086); -lean_ctor_set(x_2087, 1, x_2085); -x_2088 = lean_array_push(x_2015, x_2087); -x_2089 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__21; -x_2090 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2090, 0, x_2089); -lean_ctor_set(x_2090, 1, x_2088); -x_2091 = lean_array_push(x_1986, x_2090); -x_2092 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__5; -x_2093 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2093, 0, x_2092); -lean_ctor_set(x_2093, 1, x_2091); -if (lean_is_scalar(x_1938)) { - x_2094 = lean_alloc_ctor(1, 1, 0); -} else { - x_2094 = x_1938; -} -lean_ctor_set(x_2094, 0, x_2093); -if (lean_is_scalar(x_1945)) { - x_2095 = lean_alloc_ctor(0, 2, 0); -} else { - x_2095 = x_1945; -} -lean_ctor_set(x_2095, 0, x_2094); -lean_ctor_set(x_2095, 1, x_1944); -return x_2095; -} -} -} -else -{ -lean_object* x_2114; lean_object* x_2115; -lean_dec(x_1548); -lean_dec(x_1); -x_2114 = lean_box(0); -x_2115 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_2115, 0, x_2114); -lean_ctor_set(x_2115, 1, x_1547); -return x_2115; -} -} -} -} -} -else -{ -uint8_t x_2116; -lean_dec(x_19); -lean_dec(x_17); -lean_dec(x_1); -x_2116 = !lean_is_exclusive(x_8); -if (x_2116 == 0) -{ -lean_object* x_2117; lean_object* x_2118; -x_2117 = lean_ctor_get(x_8, 0); -lean_dec(x_2117); -x_2118 = lean_box(0); -lean_ctor_set(x_8, 0, x_2118); -return x_8; -} -else -{ -lean_object* x_2119; lean_object* x_2120; lean_object* x_2121; -x_2119 = lean_ctor_get(x_8, 1); -lean_inc(x_2119); -lean_dec(x_8); -x_2120 = lean_box(0); -x_2121 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_2121, 0, x_2120); -lean_ctor_set(x_2121, 1, x_2119); -return x_2121; -} -} -} -else -{ -uint8_t x_2122; -lean_dec(x_18); -lean_dec(x_17); -lean_dec(x_10); -lean_dec(x_1); -x_2122 = !lean_is_exclusive(x_8); -if (x_2122 == 0) -{ -lean_object* x_2123; lean_object* x_2124; -x_2123 = lean_ctor_get(x_8, 0); -lean_dec(x_2123); -x_2124 = lean_box(0); -lean_ctor_set(x_8, 0, x_2124); -return x_8; -} -else -{ -lean_object* x_2125; lean_object* x_2126; lean_object* x_2127; -x_2125 = lean_ctor_get(x_8, 1); -lean_inc(x_2125); -lean_dec(x_8); -x_2126 = lean_box(0); -x_2127 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_2127, 0, x_2126); -lean_ctor_set(x_2127, 1, x_2125); -return x_2127; -} -} -} -} -} -lean_object* l_Lean_resolveGlobalName___at_Lean_Elab_Command_mkSimpleDelab_go___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { -_start: -{ -lean_object* x_5; -x_5 = l_Lean_resolveGlobalName___at_Lean_Elab_Command_mkSimpleDelab_go___spec__1(x_1, x_2, x_3, x_4); -lean_dec(x_3); -lean_dec(x_2); -return x_5; -} -} -lean_object* l___private_Init_Data_Array_Basic_0__Array_allDiffAuxAux___at_Lean_Elab_Command_mkSimpleDelab_go___spec__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { -_start: -{ -uint8_t x_5; lean_object* x_6; -x_5 = l___private_Init_Data_Array_Basic_0__Array_allDiffAuxAux___at_Lean_Elab_Command_mkSimpleDelab_go___spec__3(x_1, x_2, x_3, x_4); -lean_dec(x_2); -lean_dec(x_1); -x_6 = lean_box(x_5); -return x_6; -} -} -lean_object* l___private_Init_Data_Array_Basic_0__Array_allDiffAux___at_Lean_Elab_Command_mkSimpleDelab_go___spec__2___boxed(lean_object* x_1, lean_object* x_2) { -_start: -{ -uint8_t x_3; lean_object* x_4; -x_3 = l___private_Init_Data_Array_Basic_0__Array_allDiffAux___at_Lean_Elab_Command_mkSimpleDelab_go___spec__2(x_1, x_2); -lean_dec(x_1); -x_4 = lean_box(x_3); -return x_4; -} -} -lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_Elab_Command_mkSimpleDelab_go___spec__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { -_start: -{ -lean_object* x_4; -x_4 = l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_Elab_Command_mkSimpleDelab_go___spec__4(x_1, x_2, x_3); -lean_dec(x_2); -lean_dec(x_1); -return x_4; -} -} -lean_object* l_Array_anyMUnsafe_any___at_Lean_Elab_Command_mkSimpleDelab_go___spec__5___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { -_start: -{ -size_t x_4; size_t x_5; uint8_t x_6; lean_object* x_7; -x_4 = lean_unbox_usize(x_2); -lean_dec(x_2); -x_5 = lean_unbox_usize(x_3); -lean_dec(x_3); -x_6 = l_Array_anyMUnsafe_any___at_Lean_Elab_Command_mkSimpleDelab_go___spec__5(x_1, x_4, x_5); -lean_dec(x_1); -x_7 = lean_box(x_6); -return x_7; -} -} -lean_object* l_Lean_Elab_Command_mkSimpleDelab_go___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { -_start: -{ -lean_object* x_7; -x_7 = l_Lean_Elab_Command_mkSimpleDelab_go(x_1, x_2, x_3, x_4, x_5, x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -return x_7; -} -} lean_object* l_Lean_Elab_Command_mkSimpleDelab___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { @@ -27204,45 +22851,5104 @@ return x_11; } else { -lean_object* x_12; lean_object* x_13; -x_12 = l_Array_empty___closed__1; -x_13 = l_Lean_Elab_Command_mkSimpleDelab_go(x_1, x_2, x_12, x_3, x_4, x_5); +lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; +x_12 = l_Lean_Syntax_getId(x_2); lean_dec(x_2); +x_13 = l_Lean_resolveGlobalName___at_Lean_Elab_Command_mkSimpleDelab___spec__1(x_12, x_3, x_4, x_5); +x_14 = lean_ctor_get(x_13, 0); +lean_inc(x_14); +x_15 = lean_ctor_get(x_14, 0); +lean_inc(x_15); +lean_dec(x_14); +if (lean_obj_tag(x_15) == 0) +{ +uint8_t x_16; +lean_dec(x_1); +x_16 = !lean_is_exclusive(x_13); +if (x_16 == 0) +{ +lean_object* x_17; lean_object* x_18; +x_17 = lean_ctor_get(x_13, 0); +lean_dec(x_17); +x_18 = lean_box(0); +lean_ctor_set(x_13, 0, x_18); return x_13; } +else +{ +lean_object* x_19; lean_object* x_20; lean_object* x_21; +x_19 = lean_ctor_get(x_13, 1); +lean_inc(x_19); +lean_dec(x_13); +x_20 = lean_box(0); +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_14; lean_object* x_15; lean_object* x_16; uint8_t x_17; -x_14 = lean_unsigned_to_nat(0u); -x_15 = l_Lean_Syntax_getArg(x_2, x_14); -x_16 = l_Lean_identKind___closed__2; -lean_inc(x_15); -x_17 = l_Lean_Syntax_isOfKind(x_15, x_16); -if (x_17 == 0) +lean_object* x_22; lean_object* x_23; +x_22 = lean_ctor_get(x_15, 0); +lean_inc(x_22); +x_23 = lean_ctor_get(x_22, 1); +lean_inc(x_23); +if (lean_obj_tag(x_23) == 0) { -lean_object* x_18; lean_object* x_19; +lean_object* x_24; +x_24 = lean_ctor_get(x_15, 1); +lean_inc(x_24); lean_dec(x_15); -lean_dec(x_2); -lean_dec(x_1); -x_18 = lean_box(0); -x_19 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_19, 0, x_18); -lean_ctor_set(x_19, 1, x_5); -return x_19; +if (lean_obj_tag(x_24) == 0) +{ +lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; uint8_t x_30; +x_25 = lean_ctor_get(x_13, 1); +lean_inc(x_25); +lean_dec(x_13); +x_26 = lean_ctor_get(x_22, 0); +lean_inc(x_26); +lean_dec(x_22); +x_27 = l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_Elab_Command_mkSimpleDelab___spec__2(x_3, x_4, x_25); +x_28 = lean_ctor_get(x_27, 0); +lean_inc(x_28); +x_29 = lean_ctor_get(x_27, 1); +lean_inc(x_29); +lean_dec(x_27); +x_30 = !lean_is_exclusive(x_28); +if (x_30 == 0) +{ +lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; uint8_t x_36; +x_31 = lean_ctor_get(x_28, 0); +x_32 = l_Lean_Elab_Command_getCurrMacroScope(x_3, x_4, x_29); +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_Lean_Elab_Command_getMainModule___rarg(x_4, x_34); +x_36 = !lean_is_exclusive(x_35); +if (x_36 == 0) +{ +lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; +x_37 = lean_ctor_get(x_35, 0); +x_38 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__11; +lean_inc(x_31); +x_39 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_39, 0, x_31); +lean_ctor_set(x_39, 1, x_38); +x_40 = l_Array_empty___closed__1; +x_41 = lean_array_push(x_40, x_39); +x_42 = l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__4; +lean_inc(x_33); +lean_inc(x_37); +x_43 = l_Lean_addMacroScope(x_37, x_42, x_33); +x_44 = lean_box(0); +x_45 = l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__3; +lean_inc(x_31); +x_46 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_46, 0, x_31); +lean_ctor_set(x_46, 1, x_45); +lean_ctor_set(x_46, 2, x_43); +lean_ctor_set(x_46, 3, x_44); +x_47 = lean_array_push(x_40, x_46); +x_48 = lean_mk_syntax_ident(x_26); +x_49 = lean_array_push(x_40, x_48); +x_50 = l_Lean_nullKind___closed__2; +x_51 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_51, 0, x_50); +lean_ctor_set(x_51, 1, x_49); +x_52 = lean_array_push(x_47, x_51); +x_53 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__15; +x_54 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_54, 0, x_53); +lean_ctor_set(x_54, 1, x_52); +x_55 = l_myMacro____x40_Init_NotationExtra___hyg_5658____closed__24; +x_56 = lean_array_push(x_55, x_54); +x_57 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__13; +x_58 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_58, 0, x_57); +lean_ctor_set(x_58, 1, x_56); +x_59 = lean_array_push(x_40, x_58); +x_60 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_60, 0, x_50); +lean_ctor_set(x_60, 1, x_59); +x_61 = lean_array_push(x_41, x_60); +x_62 = l_term_x5b___x5d___closed__9; +lean_inc(x_31); +x_63 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_63, 0, x_31); +lean_ctor_set(x_63, 1, x_62); +x_64 = lean_array_push(x_61, x_63); +x_65 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__10; +x_66 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_66, 0, x_65); +lean_ctor_set(x_66, 1, x_64); +x_67 = lean_array_push(x_40, x_66); +x_68 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_68, 0, x_50); +lean_ctor_set(x_68, 1, x_67); +x_69 = l_myMacro____x40_Init_Notation___hyg_14470____closed__5; +x_70 = lean_array_push(x_69, x_68); +x_71 = l_myMacro____x40_Init_Notation___hyg_1398____closed__8; +x_72 = lean_array_push(x_70, x_71); +x_73 = lean_array_push(x_72, x_71); +x_74 = lean_array_push(x_73, x_71); +x_75 = lean_array_push(x_74, x_71); +x_76 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__7; +x_77 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_77, 0, x_76); +lean_ctor_set(x_77, 1, x_75); +x_78 = lean_array_push(x_40, x_77); +x_79 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__20; +lean_inc(x_31); +x_80 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_80, 0, x_31); +lean_ctor_set(x_80, 1, x_79); +x_81 = lean_array_push(x_40, x_80); +x_82 = l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__8; +lean_inc(x_33); +lean_inc(x_37); +x_83 = l_Lean_addMacroScope(x_37, x_82, x_33); +x_84 = l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__7; +lean_inc(x_31); +x_85 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_85, 0, x_31); +lean_ctor_set(x_85, 1, x_84); +lean_ctor_set(x_85, 2, x_83); +lean_ctor_set(x_85, 3, x_44); +x_86 = lean_array_push(x_40, x_85); +x_87 = lean_array_push(x_86, x_71); +x_88 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__23; +x_89 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_89, 0, x_88); +lean_ctor_set(x_89, 1, x_87); +x_90 = lean_array_push(x_81, x_89); +x_91 = l_myMacro____x40_Init_Notation___hyg_15387____closed__9; +lean_inc(x_31); +x_92 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_92, 0, x_31); +lean_ctor_set(x_92, 1, x_91); +x_93 = lean_array_push(x_40, x_92); +x_94 = l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__13; +x_95 = l_Lean_addMacroScope(x_37, x_94, x_33); +x_96 = l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__11; +x_97 = l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__15; +lean_inc(x_31); +x_98 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_98, 0, x_31); +lean_ctor_set(x_98, 1, x_96); +lean_ctor_set(x_98, 2, x_95); +lean_ctor_set(x_98, 3, x_97); +x_99 = lean_array_push(x_93, x_98); +x_100 = l_Lean_expandExplicitBindersAux_loop___closed__4; +x_101 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_101, 0, x_100); +lean_ctor_set(x_101, 1, x_99); +x_102 = lean_array_push(x_40, x_101); +x_103 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_103, 0, x_50); +lean_ctor_set(x_103, 1, x_102); +x_104 = lean_array_push(x_69, x_103); +x_105 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__25; +x_106 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_106, 0, x_105); +lean_ctor_set(x_106, 1, x_104); +x_107 = lean_array_push(x_90, x_106); +x_108 = l_myMacro____x40_Init_Notation___hyg_15956____closed__11; +lean_inc(x_31); +x_109 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_109, 0, x_31); +lean_ctor_set(x_109, 1, x_108); +x_110 = lean_array_push(x_40, x_109); +x_111 = l_myMacro____x40_Init_Notation___hyg_13868____closed__9; +lean_inc(x_31); +x_112 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_112, 0, x_31); +lean_ctor_set(x_112, 1, x_111); +x_113 = lean_array_push(x_40, x_112); +x_114 = l_myMacro____x40_Init_Notation___hyg_14470____closed__14; +lean_inc(x_31); +x_115 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_115, 0, x_31); +lean_ctor_set(x_115, 1, x_114); +x_116 = lean_array_push(x_40, x_115); +x_117 = l_myMacro____x40_Init_Notation___hyg_14470____closed__13; +x_118 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_118, 0, x_117); +lean_ctor_set(x_118, 1, x_116); +x_119 = lean_array_push(x_40, x_118); +x_120 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_120, 0, x_50); +lean_ctor_set(x_120, 1, x_119); +x_121 = lean_array_push(x_40, x_120); +x_122 = l_myMacro____x40_Init_Notation___hyg_13868____closed__13; +lean_inc(x_31); +x_123 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_123, 0, x_31); +lean_ctor_set(x_123, 1, x_122); +x_124 = lean_array_push(x_121, x_123); +x_125 = l_Lean_Parser_Term_dynamicQuot___elambda__1___closed__11; +lean_inc(x_31); +x_126 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_126, 0, x_31); +lean_ctor_set(x_126, 1, x_125); +x_127 = lean_array_push(x_40, x_126); +x_128 = lean_array_push(x_127, x_1); +x_129 = l_prec_x28___x29___closed__7; +x_130 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_130, 0, x_31); +lean_ctor_set(x_130, 1, x_129); +x_131 = lean_array_push(x_128, x_130); +x_132 = l_Lean_Parser_Term_quot___elambda__1___closed__1; +x_133 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_133, 0, x_132); +lean_ctor_set(x_133, 1, x_131); +x_134 = lean_array_push(x_124, x_133); +x_135 = l_myMacro____x40_Init_Notation___hyg_13868____closed__12; +x_136 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_136, 0, x_135); +lean_ctor_set(x_136, 1, x_134); +x_137 = lean_array_push(x_113, x_136); +x_138 = l_myMacro____x40_Init_Notation___hyg_13868____closed__10; +x_139 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_139, 0, x_138); +lean_ctor_set(x_139, 1, x_137); +x_140 = lean_array_push(x_110, x_139); +x_141 = lean_array_push(x_140, x_71); +x_142 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__33; +x_143 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_143, 0, x_142); +lean_ctor_set(x_143, 1, x_141); +x_144 = lean_array_push(x_107, x_143); +x_145 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__21; +x_146 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_146, 0, x_145); +lean_ctor_set(x_146, 1, x_144); +x_147 = lean_array_push(x_78, x_146); +x_148 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__5; +x_149 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_149, 0, x_148); +lean_ctor_set(x_149, 1, x_147); +lean_ctor_set(x_28, 0, x_149); +lean_ctor_set(x_35, 0, x_28); +return x_35; } else { -lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; -x_20 = lean_unsigned_to_nat(1u); -x_21 = l_Lean_Syntax_getArg(x_2, x_20); -lean_dec(x_2); -x_22 = l_Lean_Syntax_getArgs(x_21); -lean_dec(x_21); -x_23 = l_Lean_Elab_Command_mkSimpleDelab_go(x_1, x_15, x_22, x_3, x_4, x_5); +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; 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; +x_150 = lean_ctor_get(x_35, 0); +x_151 = lean_ctor_get(x_35, 1); +lean_inc(x_151); +lean_inc(x_150); +lean_dec(x_35); +x_152 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__11; +lean_inc(x_31); +x_153 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_153, 0, x_31); +lean_ctor_set(x_153, 1, x_152); +x_154 = l_Array_empty___closed__1; +x_155 = lean_array_push(x_154, x_153); +x_156 = l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__4; +lean_inc(x_33); +lean_inc(x_150); +x_157 = l_Lean_addMacroScope(x_150, x_156, x_33); +x_158 = lean_box(0); +x_159 = l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__3; +lean_inc(x_31); +x_160 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_160, 0, x_31); +lean_ctor_set(x_160, 1, x_159); +lean_ctor_set(x_160, 2, x_157); +lean_ctor_set(x_160, 3, x_158); +x_161 = lean_array_push(x_154, x_160); +x_162 = lean_mk_syntax_ident(x_26); +x_163 = lean_array_push(x_154, x_162); +x_164 = l_Lean_nullKind___closed__2; +x_165 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_165, 0, x_164); +lean_ctor_set(x_165, 1, x_163); +x_166 = lean_array_push(x_161, x_165); +x_167 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__15; +x_168 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_168, 0, x_167); +lean_ctor_set(x_168, 1, x_166); +x_169 = l_myMacro____x40_Init_NotationExtra___hyg_5658____closed__24; +x_170 = lean_array_push(x_169, x_168); +x_171 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__13; +x_172 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_172, 0, x_171); +lean_ctor_set(x_172, 1, x_170); +x_173 = lean_array_push(x_154, x_172); +x_174 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_174, 0, x_164); +lean_ctor_set(x_174, 1, x_173); +x_175 = lean_array_push(x_155, x_174); +x_176 = l_term_x5b___x5d___closed__9; +lean_inc(x_31); +x_177 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_177, 0, x_31); +lean_ctor_set(x_177, 1, x_176); +x_178 = lean_array_push(x_175, x_177); +x_179 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__10; +x_180 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_180, 0, x_179); +lean_ctor_set(x_180, 1, x_178); +x_181 = lean_array_push(x_154, x_180); +x_182 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_182, 0, x_164); +lean_ctor_set(x_182, 1, x_181); +x_183 = l_myMacro____x40_Init_Notation___hyg_14470____closed__5; +x_184 = lean_array_push(x_183, x_182); +x_185 = l_myMacro____x40_Init_Notation___hyg_1398____closed__8; +x_186 = lean_array_push(x_184, x_185); +x_187 = lean_array_push(x_186, x_185); +x_188 = lean_array_push(x_187, x_185); +x_189 = lean_array_push(x_188, x_185); +x_190 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__7; +x_191 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_191, 0, x_190); +lean_ctor_set(x_191, 1, x_189); +x_192 = lean_array_push(x_154, x_191); +x_193 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__20; +lean_inc(x_31); +x_194 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_194, 0, x_31); +lean_ctor_set(x_194, 1, x_193); +x_195 = lean_array_push(x_154, x_194); +x_196 = l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__8; +lean_inc(x_33); +lean_inc(x_150); +x_197 = l_Lean_addMacroScope(x_150, x_196, x_33); +x_198 = l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__7; +lean_inc(x_31); +x_199 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_199, 0, x_31); +lean_ctor_set(x_199, 1, x_198); +lean_ctor_set(x_199, 2, x_197); +lean_ctor_set(x_199, 3, x_158); +x_200 = lean_array_push(x_154, x_199); +x_201 = lean_array_push(x_200, x_185); +x_202 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__23; +x_203 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_203, 0, x_202); +lean_ctor_set(x_203, 1, x_201); +x_204 = lean_array_push(x_195, x_203); +x_205 = l_myMacro____x40_Init_Notation___hyg_15387____closed__9; +lean_inc(x_31); +x_206 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_206, 0, x_31); +lean_ctor_set(x_206, 1, x_205); +x_207 = lean_array_push(x_154, x_206); +x_208 = l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__13; +x_209 = l_Lean_addMacroScope(x_150, x_208, x_33); +x_210 = l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__11; +x_211 = l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__15; +lean_inc(x_31); +x_212 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_212, 0, x_31); +lean_ctor_set(x_212, 1, x_210); +lean_ctor_set(x_212, 2, x_209); +lean_ctor_set(x_212, 3, x_211); +x_213 = lean_array_push(x_207, x_212); +x_214 = l_Lean_expandExplicitBindersAux_loop___closed__4; +x_215 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_215, 0, x_214); +lean_ctor_set(x_215, 1, x_213); +x_216 = lean_array_push(x_154, x_215); +x_217 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_217, 0, x_164); +lean_ctor_set(x_217, 1, x_216); +x_218 = lean_array_push(x_183, x_217); +x_219 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__25; +x_220 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_220, 0, x_219); +lean_ctor_set(x_220, 1, x_218); +x_221 = lean_array_push(x_204, x_220); +x_222 = l_myMacro____x40_Init_Notation___hyg_15956____closed__11; +lean_inc(x_31); +x_223 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_223, 0, x_31); +lean_ctor_set(x_223, 1, x_222); +x_224 = lean_array_push(x_154, x_223); +x_225 = l_myMacro____x40_Init_Notation___hyg_13868____closed__9; +lean_inc(x_31); +x_226 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_226, 0, x_31); +lean_ctor_set(x_226, 1, x_225); +x_227 = lean_array_push(x_154, x_226); +x_228 = l_myMacro____x40_Init_Notation___hyg_14470____closed__14; +lean_inc(x_31); +x_229 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_229, 0, x_31); +lean_ctor_set(x_229, 1, x_228); +x_230 = lean_array_push(x_154, x_229); +x_231 = l_myMacro____x40_Init_Notation___hyg_14470____closed__13; +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 = lean_array_push(x_154, x_232); +x_234 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_234, 0, x_164); +lean_ctor_set(x_234, 1, x_233); +x_235 = lean_array_push(x_154, x_234); +x_236 = l_myMacro____x40_Init_Notation___hyg_13868____closed__13; +lean_inc(x_31); +x_237 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_237, 0, x_31); +lean_ctor_set(x_237, 1, x_236); +x_238 = lean_array_push(x_235, x_237); +x_239 = l_Lean_Parser_Term_dynamicQuot___elambda__1___closed__11; +lean_inc(x_31); +x_240 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_240, 0, x_31); +lean_ctor_set(x_240, 1, x_239); +x_241 = lean_array_push(x_154, x_240); +x_242 = lean_array_push(x_241, x_1); +x_243 = l_prec_x28___x29___closed__7; +x_244 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_244, 0, x_31); +lean_ctor_set(x_244, 1, x_243); +x_245 = lean_array_push(x_242, x_244); +x_246 = l_Lean_Parser_Term_quot___elambda__1___closed__1; +x_247 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_247, 0, x_246); +lean_ctor_set(x_247, 1, x_245); +x_248 = lean_array_push(x_238, x_247); +x_249 = l_myMacro____x40_Init_Notation___hyg_13868____closed__12; +x_250 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_250, 0, x_249); +lean_ctor_set(x_250, 1, x_248); +x_251 = lean_array_push(x_227, x_250); +x_252 = l_myMacro____x40_Init_Notation___hyg_13868____closed__10; +x_253 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_253, 0, x_252); +lean_ctor_set(x_253, 1, x_251); +x_254 = lean_array_push(x_224, x_253); +x_255 = lean_array_push(x_254, x_185); +x_256 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__33; +x_257 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_257, 0, x_256); +lean_ctor_set(x_257, 1, x_255); +x_258 = lean_array_push(x_221, x_257); +x_259 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__21; +x_260 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_260, 0, x_259); +lean_ctor_set(x_260, 1, x_258); +x_261 = lean_array_push(x_192, x_260); +x_262 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__5; +x_263 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_263, 0, x_262); +lean_ctor_set(x_263, 1, x_261); +lean_ctor_set(x_28, 0, x_263); +x_264 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_264, 0, x_28); +lean_ctor_set(x_264, 1, x_151); +return x_264; +} +} +else +{ +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; 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; +x_265 = lean_ctor_get(x_28, 0); +lean_inc(x_265); +lean_dec(x_28); +x_266 = l_Lean_Elab_Command_getCurrMacroScope(x_3, x_4, x_29); +x_267 = lean_ctor_get(x_266, 0); +lean_inc(x_267); +x_268 = lean_ctor_get(x_266, 1); +lean_inc(x_268); +lean_dec(x_266); +x_269 = l_Lean_Elab_Command_getMainModule___rarg(x_4, x_268); +x_270 = lean_ctor_get(x_269, 0); +lean_inc(x_270); +x_271 = lean_ctor_get(x_269, 1); +lean_inc(x_271); +if (lean_is_exclusive(x_269)) { + lean_ctor_release(x_269, 0); + lean_ctor_release(x_269, 1); + x_272 = x_269; +} else { + lean_dec_ref(x_269); + x_272 = lean_box(0); +} +x_273 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__11; +lean_inc(x_265); +x_274 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_274, 0, x_265); +lean_ctor_set(x_274, 1, x_273); +x_275 = l_Array_empty___closed__1; +x_276 = lean_array_push(x_275, x_274); +x_277 = l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__4; +lean_inc(x_267); +lean_inc(x_270); +x_278 = l_Lean_addMacroScope(x_270, x_277, x_267); +x_279 = lean_box(0); +x_280 = l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__3; +lean_inc(x_265); +x_281 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_281, 0, x_265); +lean_ctor_set(x_281, 1, x_280); +lean_ctor_set(x_281, 2, x_278); +lean_ctor_set(x_281, 3, x_279); +x_282 = lean_array_push(x_275, x_281); +x_283 = lean_mk_syntax_ident(x_26); +x_284 = lean_array_push(x_275, x_283); +x_285 = l_Lean_nullKind___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_282, x_286); +x_288 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__15; +x_289 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_289, 0, x_288); +lean_ctor_set(x_289, 1, x_287); +x_290 = l_myMacro____x40_Init_NotationExtra___hyg_5658____closed__24; +x_291 = lean_array_push(x_290, x_289); +x_292 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__13; +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 = lean_array_push(x_275, x_293); +x_295 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_295, 0, x_285); +lean_ctor_set(x_295, 1, x_294); +x_296 = lean_array_push(x_276, x_295); +x_297 = l_term_x5b___x5d___closed__9; +lean_inc(x_265); +x_298 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_298, 0, x_265); +lean_ctor_set(x_298, 1, x_297); +x_299 = lean_array_push(x_296, x_298); +x_300 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__10; +x_301 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_301, 0, x_300); +lean_ctor_set(x_301, 1, x_299); +x_302 = lean_array_push(x_275, x_301); +x_303 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_303, 0, x_285); +lean_ctor_set(x_303, 1, x_302); +x_304 = l_myMacro____x40_Init_Notation___hyg_14470____closed__5; +x_305 = lean_array_push(x_304, x_303); +x_306 = l_myMacro____x40_Init_Notation___hyg_1398____closed__8; +x_307 = lean_array_push(x_305, x_306); +x_308 = lean_array_push(x_307, x_306); +x_309 = lean_array_push(x_308, x_306); +x_310 = lean_array_push(x_309, x_306); +x_311 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__7; +x_312 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_312, 0, x_311); +lean_ctor_set(x_312, 1, x_310); +x_313 = lean_array_push(x_275, x_312); +x_314 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__20; +lean_inc(x_265); +x_315 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_315, 0, x_265); +lean_ctor_set(x_315, 1, x_314); +x_316 = lean_array_push(x_275, x_315); +x_317 = l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__8; +lean_inc(x_267); +lean_inc(x_270); +x_318 = l_Lean_addMacroScope(x_270, x_317, x_267); +x_319 = l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__7; +lean_inc(x_265); +x_320 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_320, 0, x_265); +lean_ctor_set(x_320, 1, x_319); +lean_ctor_set(x_320, 2, x_318); +lean_ctor_set(x_320, 3, x_279); +x_321 = lean_array_push(x_275, x_320); +x_322 = lean_array_push(x_321, x_306); +x_323 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__23; +x_324 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_324, 0, x_323); +lean_ctor_set(x_324, 1, x_322); +x_325 = lean_array_push(x_316, x_324); +x_326 = l_myMacro____x40_Init_Notation___hyg_15387____closed__9; +lean_inc(x_265); +x_327 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_327, 0, x_265); +lean_ctor_set(x_327, 1, x_326); +x_328 = lean_array_push(x_275, x_327); +x_329 = l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__13; +x_330 = l_Lean_addMacroScope(x_270, x_329, x_267); +x_331 = l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__11; +x_332 = l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__15; +lean_inc(x_265); +x_333 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_333, 0, x_265); +lean_ctor_set(x_333, 1, x_331); +lean_ctor_set(x_333, 2, x_330); +lean_ctor_set(x_333, 3, x_332); +x_334 = lean_array_push(x_328, x_333); +x_335 = l_Lean_expandExplicitBindersAux_loop___closed__4; +x_336 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_336, 0, x_335); +lean_ctor_set(x_336, 1, x_334); +x_337 = lean_array_push(x_275, x_336); +x_338 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_338, 0, x_285); +lean_ctor_set(x_338, 1, x_337); +x_339 = lean_array_push(x_304, x_338); +x_340 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__25; +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_325, x_341); +x_343 = l_myMacro____x40_Init_Notation___hyg_15956____closed__11; +lean_inc(x_265); +x_344 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_344, 0, x_265); +lean_ctor_set(x_344, 1, x_343); +x_345 = lean_array_push(x_275, x_344); +x_346 = l_myMacro____x40_Init_Notation___hyg_13868____closed__9; +lean_inc(x_265); +x_347 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_347, 0, x_265); +lean_ctor_set(x_347, 1, x_346); +x_348 = lean_array_push(x_275, x_347); +x_349 = l_myMacro____x40_Init_Notation___hyg_14470____closed__14; +lean_inc(x_265); +x_350 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_350, 0, x_265); +lean_ctor_set(x_350, 1, x_349); +x_351 = lean_array_push(x_275, x_350); +x_352 = l_myMacro____x40_Init_Notation___hyg_14470____closed__13; +x_353 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_353, 0, x_352); +lean_ctor_set(x_353, 1, x_351); +x_354 = lean_array_push(x_275, x_353); +x_355 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_355, 0, x_285); +lean_ctor_set(x_355, 1, x_354); +x_356 = lean_array_push(x_275, x_355); +x_357 = l_myMacro____x40_Init_Notation___hyg_13868____closed__13; +lean_inc(x_265); +x_358 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_358, 0, x_265); +lean_ctor_set(x_358, 1, x_357); +x_359 = lean_array_push(x_356, x_358); +x_360 = l_Lean_Parser_Term_dynamicQuot___elambda__1___closed__11; +lean_inc(x_265); +x_361 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_361, 0, x_265); +lean_ctor_set(x_361, 1, x_360); +x_362 = lean_array_push(x_275, x_361); +x_363 = lean_array_push(x_362, x_1); +x_364 = l_prec_x28___x29___closed__7; +x_365 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_365, 0, x_265); +lean_ctor_set(x_365, 1, x_364); +x_366 = lean_array_push(x_363, x_365); +x_367 = l_Lean_Parser_Term_quot___elambda__1___closed__1; +x_368 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_368, 0, x_367); +lean_ctor_set(x_368, 1, x_366); +x_369 = lean_array_push(x_359, x_368); +x_370 = l_myMacro____x40_Init_Notation___hyg_13868____closed__12; +x_371 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_371, 0, x_370); +lean_ctor_set(x_371, 1, x_369); +x_372 = lean_array_push(x_348, x_371); +x_373 = l_myMacro____x40_Init_Notation___hyg_13868____closed__10; +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_345, x_374); +x_376 = lean_array_push(x_375, x_306); +x_377 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__33; +x_378 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_378, 0, x_377); +lean_ctor_set(x_378, 1, x_376); +x_379 = lean_array_push(x_342, x_378); +x_380 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__21; +x_381 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_381, 0, x_380); +lean_ctor_set(x_381, 1, x_379); +x_382 = lean_array_push(x_313, x_381); +x_383 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__5; +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_alloc_ctor(1, 1, 0); +lean_ctor_set(x_385, 0, x_384); +if (lean_is_scalar(x_272)) { + x_386 = lean_alloc_ctor(0, 2, 0); +} else { + x_386 = x_272; +} +lean_ctor_set(x_386, 0, x_385); +lean_ctor_set(x_386, 1, x_271); +return x_386; +} +} +else +{ +uint8_t x_387; +lean_dec(x_24); +lean_dec(x_22); +lean_dec(x_1); +x_387 = !lean_is_exclusive(x_13); +if (x_387 == 0) +{ +lean_object* x_388; lean_object* x_389; +x_388 = lean_ctor_get(x_13, 0); +lean_dec(x_388); +x_389 = lean_box(0); +lean_ctor_set(x_13, 0, x_389); +return x_13; +} +else +{ +lean_object* x_390; lean_object* x_391; lean_object* x_392; +x_390 = lean_ctor_get(x_13, 1); +lean_inc(x_390); +lean_dec(x_13); +x_391 = lean_box(0); +x_392 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_392, 0, x_391); +lean_ctor_set(x_392, 1, x_390); +return x_392; +} +} +} +else +{ +uint8_t x_393; +lean_dec(x_23); lean_dec(x_22); lean_dec(x_15); -return x_23; +lean_dec(x_1); +x_393 = !lean_is_exclusive(x_13); +if (x_393 == 0) +{ +lean_object* x_394; lean_object* x_395; +x_394 = lean_ctor_get(x_13, 0); +lean_dec(x_394); +x_395 = lean_box(0); +lean_ctor_set(x_13, 0, x_395); +return x_13; +} +else +{ +lean_object* x_396; lean_object* x_397; lean_object* x_398; +x_396 = lean_ctor_get(x_13, 1); +lean_inc(x_396); +lean_dec(x_13); +x_397 = lean_box(0); +x_398 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_398, 0, x_397); +lean_ctor_set(x_398, 1, x_396); +return x_398; +} +} +} +} +} +else +{ +lean_object* x_399; lean_object* x_400; lean_object* x_401; uint8_t x_402; +x_399 = lean_unsigned_to_nat(0u); +x_400 = l_Lean_Syntax_getArg(x_2, x_399); +x_401 = l_Lean_identKind___closed__2; +lean_inc(x_400); +x_402 = l_Lean_Syntax_isOfKind(x_400, x_401); +if (x_402 == 0) +{ +lean_object* x_403; lean_object* x_404; +lean_dec(x_400); +lean_dec(x_2); +lean_dec(x_1); +x_403 = lean_box(0); +x_404 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_404, 0, x_403); +lean_ctor_set(x_404, 1, x_5); +return x_404; +} +else +{ +lean_object* x_405; lean_object* x_406; lean_object* x_407; lean_object* x_408; lean_object* x_409; lean_object* x_410; lean_object* x_411; +x_405 = lean_unsigned_to_nat(1u); +x_406 = l_Lean_Syntax_getArg(x_2, x_405); +lean_dec(x_2); +x_407 = l_Lean_Syntax_getArgs(x_406); +lean_dec(x_406); +x_408 = l_Lean_Syntax_getId(x_400); +lean_dec(x_400); +x_409 = l_Lean_resolveGlobalName___at_Lean_Elab_Command_mkSimpleDelab___spec__1(x_408, x_3, x_4, x_5); +x_410 = lean_ctor_get(x_409, 0); +lean_inc(x_410); +x_411 = lean_ctor_get(x_410, 0); +lean_inc(x_411); +lean_dec(x_410); +if (lean_obj_tag(x_411) == 0) +{ +uint8_t x_412; +lean_dec(x_407); +lean_dec(x_1); +x_412 = !lean_is_exclusive(x_409); +if (x_412 == 0) +{ +lean_object* x_413; lean_object* x_414; +x_413 = lean_ctor_get(x_409, 0); +lean_dec(x_413); +x_414 = lean_box(0); +lean_ctor_set(x_409, 0, x_414); +return x_409; +} +else +{ +lean_object* x_415; lean_object* x_416; lean_object* x_417; +x_415 = lean_ctor_get(x_409, 1); +lean_inc(x_415); +lean_dec(x_409); +x_416 = lean_box(0); +x_417 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_417, 0, x_416); +lean_ctor_set(x_417, 1, x_415); +return x_417; +} +} +else +{ +lean_object* x_418; lean_object* x_419; +x_418 = lean_ctor_get(x_411, 0); +lean_inc(x_418); +x_419 = lean_ctor_get(x_418, 1); +lean_inc(x_419); +if (lean_obj_tag(x_419) == 0) +{ +lean_object* x_420; +x_420 = lean_ctor_get(x_411, 1); +lean_inc(x_420); +lean_dec(x_411); +if (lean_obj_tag(x_420) == 0) +{ +uint8_t x_421; +x_421 = !lean_is_exclusive(x_409); +if (x_421 == 0) +{ +lean_object* x_422; lean_object* x_423; lean_object* x_424; lean_object* x_425; uint8_t x_426; +x_422 = lean_ctor_get(x_409, 1); +x_423 = lean_ctor_get(x_409, 0); +lean_dec(x_423); +x_424 = lean_ctor_get(x_418, 0); +lean_inc(x_424); +lean_dec(x_418); +x_425 = lean_array_get_size(x_407); +x_426 = lean_nat_dec_lt(x_399, x_425); +if (x_426 == 0) +{ +uint8_t x_427; +lean_dec(x_425); +x_427 = l___private_Init_Data_Array_Basic_0__Array_allDiffAux___at_Lean_Elab_Command_mkSimpleDelab___spec__3(x_407, x_399); +if (x_427 == 0) +{ +lean_object* x_428; +lean_dec(x_424); +lean_dec(x_407); +lean_dec(x_1); +x_428 = lean_box(0); +lean_ctor_set(x_409, 0, x_428); +return x_409; +} +else +{ +lean_object* x_429; lean_object* x_430; lean_object* x_898; lean_object* x_899; uint8_t x_900; +lean_free_object(x_409); +x_898 = l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_Elab_Command_mkSimpleDelab___spec__2(x_3, x_4, x_422); +x_899 = lean_ctor_get(x_898, 0); +lean_inc(x_899); +x_900 = !lean_is_exclusive(x_899); +if (x_900 == 0) +{ +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; +x_901 = lean_ctor_get(x_899, 0); +lean_dec(x_901); +x_902 = lean_ctor_get(x_898, 1); +lean_inc(x_902); +lean_dec(x_898); +x_903 = l_Lean_Elab_Command_getCurrMacroScope(x_3, x_4, x_902); +x_904 = lean_ctor_get(x_903, 1); +lean_inc(x_904); +lean_dec(x_903); +x_905 = l_Lean_Elab_Command_getMainModule___rarg(x_4, x_904); +x_906 = lean_ctor_get(x_905, 1); +lean_inc(x_906); +lean_dec(x_905); +x_907 = l_Array_empty___closed__1; +x_908 = l_Array_appendCore___rarg(x_907, x_407); +lean_dec(x_407); +x_909 = l_Lean_nullKind___closed__2; +x_910 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_910, 0, x_909); +lean_ctor_set(x_910, 1, x_908); +x_911 = l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__20; +x_912 = lean_array_push(x_911, x_910); +x_913 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_913, 0, x_6); +lean_ctor_set(x_913, 1, x_912); +lean_ctor_set(x_899, 0, x_913); +x_429 = x_899; +x_430 = x_906; +goto block_897; +} +else +{ +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_dec(x_899); +x_914 = lean_ctor_get(x_898, 1); +lean_inc(x_914); +lean_dec(x_898); +x_915 = l_Lean_Elab_Command_getCurrMacroScope(x_3, x_4, x_914); +x_916 = lean_ctor_get(x_915, 1); +lean_inc(x_916); +lean_dec(x_915); +x_917 = l_Lean_Elab_Command_getMainModule___rarg(x_4, x_916); +x_918 = lean_ctor_get(x_917, 1); +lean_inc(x_918); +lean_dec(x_917); +x_919 = l_Array_empty___closed__1; +x_920 = l_Array_appendCore___rarg(x_919, x_407); +lean_dec(x_407); +x_921 = l_Lean_nullKind___closed__2; +x_922 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_922, 0, x_921); +lean_ctor_set(x_922, 1, x_920); +x_923 = l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__20; +x_924 = lean_array_push(x_923, x_922); +x_925 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_925, 0, x_6); +lean_ctor_set(x_925, 1, x_924); +x_926 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_926, 0, x_925); +x_429 = x_926; +x_430 = x_918; +goto block_897; +} +block_897: +{ +lean_object* x_431; lean_object* x_432; lean_object* x_433; lean_object* x_434; uint8_t x_435; +x_431 = lean_ctor_get(x_429, 0); +lean_inc(x_431); +lean_dec(x_429); +x_432 = l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_Elab_Command_mkSimpleDelab___spec__2(x_3, x_4, x_430); +x_433 = lean_ctor_get(x_432, 0); +lean_inc(x_433); +x_434 = lean_ctor_get(x_432, 1); +lean_inc(x_434); +lean_dec(x_432); +x_435 = !lean_is_exclusive(x_433); +if (x_435 == 0) +{ +lean_object* x_436; lean_object* x_437; lean_object* x_438; lean_object* x_439; lean_object* x_440; uint8_t x_441; +x_436 = lean_ctor_get(x_433, 0); +x_437 = l_Lean_Elab_Command_getCurrMacroScope(x_3, x_4, x_434); +x_438 = lean_ctor_get(x_437, 0); +lean_inc(x_438); +x_439 = lean_ctor_get(x_437, 1); +lean_inc(x_439); +lean_dec(x_437); +x_440 = l_Lean_Elab_Command_getMainModule___rarg(x_4, x_439); +x_441 = !lean_is_exclusive(x_440); +if (x_441 == 0) +{ +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; 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; +x_442 = lean_ctor_get(x_440, 0); +x_443 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__11; +lean_inc(x_436); +x_444 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_444, 0, x_436); +lean_ctor_set(x_444, 1, x_443); +x_445 = l_Array_empty___closed__1; +x_446 = lean_array_push(x_445, x_444); +x_447 = l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__4; +lean_inc(x_438); +lean_inc(x_442); +x_448 = l_Lean_addMacroScope(x_442, x_447, x_438); +x_449 = lean_box(0); +x_450 = l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__3; +lean_inc(x_436); +x_451 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_451, 0, x_436); +lean_ctor_set(x_451, 1, x_450); +lean_ctor_set(x_451, 2, x_448); +lean_ctor_set(x_451, 3, x_449); +x_452 = lean_array_push(x_445, x_451); +x_453 = lean_mk_syntax_ident(x_424); +x_454 = lean_array_push(x_445, x_453); +x_455 = l_Lean_nullKind___closed__2; +x_456 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_456, 0, x_455); +lean_ctor_set(x_456, 1, x_454); +x_457 = lean_array_push(x_452, x_456); +x_458 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__15; +x_459 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_459, 0, x_458); +lean_ctor_set(x_459, 1, x_457); +x_460 = l_myMacro____x40_Init_NotationExtra___hyg_5658____closed__24; +x_461 = lean_array_push(x_460, x_459); +x_462 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__13; +x_463 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_463, 0, x_462); +lean_ctor_set(x_463, 1, x_461); +x_464 = lean_array_push(x_445, x_463); +x_465 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_465, 0, x_455); +lean_ctor_set(x_465, 1, x_464); +x_466 = lean_array_push(x_446, x_465); +x_467 = l_term_x5b___x5d___closed__9; +lean_inc(x_436); +x_468 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_468, 0, x_436); +lean_ctor_set(x_468, 1, x_467); +x_469 = lean_array_push(x_466, x_468); +x_470 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__10; +x_471 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_471, 0, x_470); +lean_ctor_set(x_471, 1, x_469); +x_472 = lean_array_push(x_445, x_471); +x_473 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_473, 0, x_455); +lean_ctor_set(x_473, 1, x_472); +x_474 = l_myMacro____x40_Init_Notation___hyg_14470____closed__5; +x_475 = lean_array_push(x_474, x_473); +x_476 = l_myMacro____x40_Init_Notation___hyg_1398____closed__8; +x_477 = lean_array_push(x_475, x_476); +x_478 = lean_array_push(x_477, x_476); +x_479 = lean_array_push(x_478, x_476); +x_480 = lean_array_push(x_479, x_476); +x_481 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__7; +x_482 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_482, 0, x_481); +lean_ctor_set(x_482, 1, x_480); +x_483 = lean_array_push(x_445, x_482); +x_484 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__20; +lean_inc(x_436); +x_485 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_485, 0, x_436); +lean_ctor_set(x_485, 1, x_484); +x_486 = lean_array_push(x_445, x_485); +x_487 = l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__8; +lean_inc(x_438); +lean_inc(x_442); +x_488 = l_Lean_addMacroScope(x_442, x_487, x_438); +x_489 = l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__7; +lean_inc(x_436); +x_490 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_490, 0, x_436); +lean_ctor_set(x_490, 1, x_489); +lean_ctor_set(x_490, 2, x_488); +lean_ctor_set(x_490, 3, x_449); +x_491 = lean_array_push(x_445, x_490); +x_492 = lean_array_push(x_491, x_476); +x_493 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__23; +x_494 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_494, 0, x_493); +lean_ctor_set(x_494, 1, x_492); +x_495 = lean_array_push(x_486, x_494); +x_496 = l_myMacro____x40_Init_Notation___hyg_15387____closed__9; +lean_inc(x_436); +x_497 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_497, 0, x_436); +lean_ctor_set(x_497, 1, x_496); +x_498 = lean_array_push(x_445, x_497); +x_499 = l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__13; +lean_inc(x_438); +lean_inc(x_442); +x_500 = l_Lean_addMacroScope(x_442, x_499, x_438); +x_501 = l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__11; +x_502 = l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__15; +lean_inc(x_436); +x_503 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_503, 0, x_436); +lean_ctor_set(x_503, 1, x_501); +lean_ctor_set(x_503, 2, x_500); +lean_ctor_set(x_503, 3, x_502); +x_504 = lean_array_push(x_498, x_503); +x_505 = l_Lean_expandExplicitBindersAux_loop___closed__4; +x_506 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_506, 0, x_505); +lean_ctor_set(x_506, 1, x_504); +x_507 = lean_array_push(x_445, x_506); +x_508 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_508, 0, x_455); +lean_ctor_set(x_508, 1, x_507); +x_509 = lean_array_push(x_474, x_508); +x_510 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__25; +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 = lean_array_push(x_495, x_511); +x_513 = l_myMacro____x40_Init_Notation___hyg_15956____closed__11; +lean_inc(x_436); +x_514 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_514, 0, x_436); +lean_ctor_set(x_514, 1, x_513); +x_515 = lean_array_push(x_445, x_514); +x_516 = l_myMacro____x40_Init_Notation___hyg_13868____closed__9; +lean_inc(x_436); +x_517 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_517, 0, x_436); +lean_ctor_set(x_517, 1, x_516); +x_518 = lean_array_push(x_445, x_517); +x_519 = l_myMacro____x40_Init_Notation___hyg_14470____closed__11; +lean_inc(x_436); +x_520 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_520, 0, x_436); +lean_ctor_set(x_520, 1, x_519); +x_521 = lean_array_push(x_445, x_520); +x_522 = l_Lean_Parser_Term_dynamicQuot___elambda__1___closed__11; +lean_inc(x_436); +x_523 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_523, 0, x_436); +lean_ctor_set(x_523, 1, x_522); +x_524 = lean_array_push(x_445, x_523); +lean_inc(x_524); +x_525 = lean_array_push(x_524, x_431); +x_526 = l_prec_x28___x29___closed__7; +lean_inc(x_436); +x_527 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_527, 0, x_436); +lean_ctor_set(x_527, 1, x_526); +lean_inc(x_527); +x_528 = lean_array_push(x_525, x_527); +x_529 = l_Lean_Parser_Term_quot___elambda__1___closed__1; +x_530 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_530, 0, x_529); +lean_ctor_set(x_530, 1, x_528); +x_531 = lean_array_push(x_445, x_530); +x_532 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_532, 0, x_455); +lean_ctor_set(x_532, 1, x_531); +lean_inc(x_521); +x_533 = lean_array_push(x_521, x_532); +x_534 = l_myMacro____x40_Init_Notation___hyg_13868____closed__13; +lean_inc(x_436); +x_535 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_535, 0, x_436); +lean_ctor_set(x_535, 1, x_534); +lean_inc(x_535); +x_536 = lean_array_push(x_533, x_535); +x_537 = lean_array_push(x_524, x_1); +lean_inc(x_527); +x_538 = lean_array_push(x_537, x_527); +x_539 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_539, 0, x_529); +lean_ctor_set(x_539, 1, x_538); +x_540 = lean_array_push(x_536, x_539); +x_541 = l_myMacro____x40_Init_Notation___hyg_14470____closed__10; +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_445, x_542); +x_544 = l_myMacro____x40_Init_Notation___hyg_14470____closed__14; +lean_inc(x_436); +x_545 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_545, 0, x_436); +lean_ctor_set(x_545, 1, x_544); +x_546 = lean_array_push(x_445, x_545); +x_547 = l_myMacro____x40_Init_Notation___hyg_14470____closed__13; +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_445, x_548); +x_550 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_550, 0, x_455); +lean_ctor_set(x_550, 1, x_549); +x_551 = lean_array_push(x_521, x_550); +x_552 = lean_array_push(x_551, x_535); +x_553 = l_Lean_Elab_Command_elabMacroRulesAux___closed__13; +x_554 = l_Lean_addMacroScope(x_442, x_553, x_438); +x_555 = l_Lean_Elab_Command_elabMacroRulesAux___closed__12; +x_556 = l_Lean_Elab_Command_elabMacroRulesAux___closed__18; +lean_inc(x_436); +x_557 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_557, 0, x_436); +lean_ctor_set(x_557, 1, x_555); +lean_ctor_set(x_557, 2, x_554); +lean_ctor_set(x_557, 3, x_556); +x_558 = lean_array_push(x_445, x_557); +x_559 = l_prec_x28___x29___closed__3; +x_560 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_560, 0, x_436); +lean_ctor_set(x_560, 1, x_559); +x_561 = lean_array_push(x_445, x_560); +x_562 = lean_array_push(x_561, x_476); +x_563 = lean_array_push(x_562, x_527); +x_564 = l_myMacro____x40_Init_Notation___hyg_13868____closed__8; +x_565 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_565, 0, x_564); +lean_ctor_set(x_565, 1, x_563); +x_566 = lean_array_push(x_445, x_565); +x_567 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_567, 0, x_455); +lean_ctor_set(x_567, 1, x_566); +x_568 = lean_array_push(x_558, x_567); +x_569 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_569, 0, x_6); +lean_ctor_set(x_569, 1, x_568); +x_570 = lean_array_push(x_552, x_569); +x_571 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_571, 0, x_541); +lean_ctor_set(x_571, 1, x_570); +x_572 = lean_array_push(x_543, x_571); +x_573 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_573, 0, x_455); +lean_ctor_set(x_573, 1, x_572); +x_574 = lean_array_push(x_445, x_573); +x_575 = l_myMacro____x40_Init_Notation___hyg_14470____closed__8; +x_576 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_576, 0, x_575); +lean_ctor_set(x_576, 1, x_574); +x_577 = lean_array_push(x_518, x_576); +x_578 = l_myMacro____x40_Init_Notation___hyg_13868____closed__10; +x_579 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_579, 0, x_578); +lean_ctor_set(x_579, 1, x_577); +x_580 = lean_array_push(x_515, x_579); +x_581 = lean_array_push(x_580, x_476); +x_582 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__33; +x_583 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_583, 0, x_582); +lean_ctor_set(x_583, 1, x_581); +x_584 = lean_array_push(x_512, x_583); +x_585 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__21; +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 = lean_array_push(x_483, x_586); +x_588 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__5; +x_589 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_589, 0, x_588); +lean_ctor_set(x_589, 1, x_587); +lean_ctor_set(x_433, 0, x_589); +lean_ctor_set(x_440, 0, x_433); +return x_440; +} +else +{ +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; 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; +x_590 = lean_ctor_get(x_440, 0); +x_591 = lean_ctor_get(x_440, 1); +lean_inc(x_591); +lean_inc(x_590); +lean_dec(x_440); +x_592 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__11; +lean_inc(x_436); +x_593 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_593, 0, x_436); +lean_ctor_set(x_593, 1, x_592); +x_594 = l_Array_empty___closed__1; +x_595 = lean_array_push(x_594, x_593); +x_596 = l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__4; +lean_inc(x_438); +lean_inc(x_590); +x_597 = l_Lean_addMacroScope(x_590, x_596, x_438); +x_598 = lean_box(0); +x_599 = l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__3; +lean_inc(x_436); +x_600 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_600, 0, x_436); +lean_ctor_set(x_600, 1, x_599); +lean_ctor_set(x_600, 2, x_597); +lean_ctor_set(x_600, 3, x_598); +x_601 = lean_array_push(x_594, x_600); +x_602 = lean_mk_syntax_ident(x_424); +x_603 = lean_array_push(x_594, x_602); +x_604 = l_Lean_nullKind___closed__2; +x_605 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_605, 0, x_604); +lean_ctor_set(x_605, 1, x_603); +x_606 = lean_array_push(x_601, x_605); +x_607 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__15; +x_608 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_608, 0, x_607); +lean_ctor_set(x_608, 1, x_606); +x_609 = l_myMacro____x40_Init_NotationExtra___hyg_5658____closed__24; +x_610 = lean_array_push(x_609, x_608); +x_611 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__13; +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_594, x_612); +x_614 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_614, 0, x_604); +lean_ctor_set(x_614, 1, x_613); +x_615 = lean_array_push(x_595, x_614); +x_616 = l_term_x5b___x5d___closed__9; +lean_inc(x_436); +x_617 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_617, 0, x_436); +lean_ctor_set(x_617, 1, x_616); +x_618 = lean_array_push(x_615, x_617); +x_619 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__10; +x_620 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_620, 0, x_619); +lean_ctor_set(x_620, 1, x_618); +x_621 = lean_array_push(x_594, x_620); +x_622 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_622, 0, x_604); +lean_ctor_set(x_622, 1, x_621); +x_623 = l_myMacro____x40_Init_Notation___hyg_14470____closed__5; +x_624 = lean_array_push(x_623, x_622); +x_625 = l_myMacro____x40_Init_Notation___hyg_1398____closed__8; +x_626 = lean_array_push(x_624, x_625); +x_627 = lean_array_push(x_626, x_625); +x_628 = lean_array_push(x_627, x_625); +x_629 = lean_array_push(x_628, x_625); +x_630 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__7; +x_631 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_631, 0, x_630); +lean_ctor_set(x_631, 1, x_629); +x_632 = lean_array_push(x_594, x_631); +x_633 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__20; +lean_inc(x_436); +x_634 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_634, 0, x_436); +lean_ctor_set(x_634, 1, x_633); +x_635 = lean_array_push(x_594, x_634); +x_636 = l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__8; +lean_inc(x_438); +lean_inc(x_590); +x_637 = l_Lean_addMacroScope(x_590, x_636, x_438); +x_638 = l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__7; +lean_inc(x_436); +x_639 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_639, 0, x_436); +lean_ctor_set(x_639, 1, x_638); +lean_ctor_set(x_639, 2, x_637); +lean_ctor_set(x_639, 3, x_598); +x_640 = lean_array_push(x_594, x_639); +x_641 = lean_array_push(x_640, x_625); +x_642 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__23; +x_643 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_643, 0, x_642); +lean_ctor_set(x_643, 1, x_641); +x_644 = lean_array_push(x_635, x_643); +x_645 = l_myMacro____x40_Init_Notation___hyg_15387____closed__9; +lean_inc(x_436); +x_646 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_646, 0, x_436); +lean_ctor_set(x_646, 1, x_645); +x_647 = lean_array_push(x_594, x_646); +x_648 = l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__13; +lean_inc(x_438); +lean_inc(x_590); +x_649 = l_Lean_addMacroScope(x_590, x_648, x_438); +x_650 = l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__11; +x_651 = l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__15; +lean_inc(x_436); +x_652 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_652, 0, x_436); +lean_ctor_set(x_652, 1, x_650); +lean_ctor_set(x_652, 2, x_649); +lean_ctor_set(x_652, 3, x_651); +x_653 = lean_array_push(x_647, x_652); +x_654 = l_Lean_expandExplicitBindersAux_loop___closed__4; +x_655 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_655, 0, x_654); +lean_ctor_set(x_655, 1, x_653); +x_656 = lean_array_push(x_594, x_655); +x_657 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_657, 0, x_604); +lean_ctor_set(x_657, 1, x_656); +x_658 = lean_array_push(x_623, x_657); +x_659 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__25; +x_660 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_660, 0, x_659); +lean_ctor_set(x_660, 1, x_658); +x_661 = lean_array_push(x_644, x_660); +x_662 = l_myMacro____x40_Init_Notation___hyg_15956____closed__11; +lean_inc(x_436); +x_663 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_663, 0, x_436); +lean_ctor_set(x_663, 1, x_662); +x_664 = lean_array_push(x_594, x_663); +x_665 = l_myMacro____x40_Init_Notation___hyg_13868____closed__9; +lean_inc(x_436); +x_666 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_666, 0, x_436); +lean_ctor_set(x_666, 1, x_665); +x_667 = lean_array_push(x_594, x_666); +x_668 = l_myMacro____x40_Init_Notation___hyg_14470____closed__11; +lean_inc(x_436); +x_669 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_669, 0, x_436); +lean_ctor_set(x_669, 1, x_668); +x_670 = lean_array_push(x_594, x_669); +x_671 = l_Lean_Parser_Term_dynamicQuot___elambda__1___closed__11; +lean_inc(x_436); +x_672 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_672, 0, x_436); +lean_ctor_set(x_672, 1, x_671); +x_673 = lean_array_push(x_594, x_672); +lean_inc(x_673); +x_674 = lean_array_push(x_673, x_431); +x_675 = l_prec_x28___x29___closed__7; +lean_inc(x_436); +x_676 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_676, 0, x_436); +lean_ctor_set(x_676, 1, x_675); +lean_inc(x_676); +x_677 = lean_array_push(x_674, x_676); +x_678 = l_Lean_Parser_Term_quot___elambda__1___closed__1; +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_594, x_679); +x_681 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_681, 0, x_604); +lean_ctor_set(x_681, 1, x_680); +lean_inc(x_670); +x_682 = lean_array_push(x_670, x_681); +x_683 = l_myMacro____x40_Init_Notation___hyg_13868____closed__13; +lean_inc(x_436); +x_684 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_684, 0, x_436); +lean_ctor_set(x_684, 1, x_683); +lean_inc(x_684); +x_685 = lean_array_push(x_682, x_684); +x_686 = lean_array_push(x_673, x_1); +lean_inc(x_676); +x_687 = lean_array_push(x_686, x_676); +x_688 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_688, 0, x_678); +lean_ctor_set(x_688, 1, x_687); +x_689 = lean_array_push(x_685, x_688); +x_690 = l_myMacro____x40_Init_Notation___hyg_14470____closed__10; +x_691 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_691, 0, x_690); +lean_ctor_set(x_691, 1, x_689); +x_692 = lean_array_push(x_594, x_691); +x_693 = l_myMacro____x40_Init_Notation___hyg_14470____closed__14; +lean_inc(x_436); +x_694 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_694, 0, x_436); +lean_ctor_set(x_694, 1, x_693); +x_695 = lean_array_push(x_594, x_694); +x_696 = l_myMacro____x40_Init_Notation___hyg_14470____closed__13; +x_697 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_697, 0, x_696); +lean_ctor_set(x_697, 1, x_695); +x_698 = lean_array_push(x_594, x_697); +x_699 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_699, 0, x_604); +lean_ctor_set(x_699, 1, x_698); +x_700 = lean_array_push(x_670, x_699); +x_701 = lean_array_push(x_700, x_684); +x_702 = l_Lean_Elab_Command_elabMacroRulesAux___closed__13; +x_703 = l_Lean_addMacroScope(x_590, x_702, x_438); +x_704 = l_Lean_Elab_Command_elabMacroRulesAux___closed__12; +x_705 = l_Lean_Elab_Command_elabMacroRulesAux___closed__18; +lean_inc(x_436); +x_706 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_706, 0, x_436); +lean_ctor_set(x_706, 1, x_704); +lean_ctor_set(x_706, 2, x_703); +lean_ctor_set(x_706, 3, x_705); +x_707 = lean_array_push(x_594, x_706); +x_708 = l_prec_x28___x29___closed__3; +x_709 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_709, 0, x_436); +lean_ctor_set(x_709, 1, x_708); +x_710 = lean_array_push(x_594, x_709); +x_711 = lean_array_push(x_710, x_625); +x_712 = lean_array_push(x_711, x_676); +x_713 = l_myMacro____x40_Init_Notation___hyg_13868____closed__8; +x_714 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_714, 0, x_713); +lean_ctor_set(x_714, 1, x_712); +x_715 = lean_array_push(x_594, x_714); +x_716 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_716, 0, x_604); +lean_ctor_set(x_716, 1, x_715); +x_717 = lean_array_push(x_707, x_716); +x_718 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_718, 0, x_6); +lean_ctor_set(x_718, 1, x_717); +x_719 = lean_array_push(x_701, x_718); +x_720 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_720, 0, x_690); +lean_ctor_set(x_720, 1, x_719); +x_721 = lean_array_push(x_692, x_720); +x_722 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_722, 0, x_604); +lean_ctor_set(x_722, 1, x_721); +x_723 = lean_array_push(x_594, x_722); +x_724 = l_myMacro____x40_Init_Notation___hyg_14470____closed__8; +x_725 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_725, 0, x_724); +lean_ctor_set(x_725, 1, x_723); +x_726 = lean_array_push(x_667, x_725); +x_727 = l_myMacro____x40_Init_Notation___hyg_13868____closed__10; +x_728 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_728, 0, x_727); +lean_ctor_set(x_728, 1, x_726); +x_729 = lean_array_push(x_664, x_728); +x_730 = lean_array_push(x_729, x_625); +x_731 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__33; +x_732 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_732, 0, x_731); +lean_ctor_set(x_732, 1, x_730); +x_733 = lean_array_push(x_661, x_732); +x_734 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__21; +x_735 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_735, 0, x_734); +lean_ctor_set(x_735, 1, x_733); +x_736 = lean_array_push(x_632, x_735); +x_737 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__5; +x_738 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_738, 0, x_737); +lean_ctor_set(x_738, 1, x_736); +lean_ctor_set(x_433, 0, x_738); +x_739 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_739, 0, x_433); +lean_ctor_set(x_739, 1, x_591); +return x_739; +} +} +else +{ +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; 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; +x_740 = lean_ctor_get(x_433, 0); +lean_inc(x_740); +lean_dec(x_433); +x_741 = l_Lean_Elab_Command_getCurrMacroScope(x_3, x_4, x_434); +x_742 = lean_ctor_get(x_741, 0); +lean_inc(x_742); +x_743 = lean_ctor_get(x_741, 1); +lean_inc(x_743); +lean_dec(x_741); +x_744 = l_Lean_Elab_Command_getMainModule___rarg(x_4, x_743); +x_745 = lean_ctor_get(x_744, 0); +lean_inc(x_745); +x_746 = lean_ctor_get(x_744, 1); +lean_inc(x_746); +if (lean_is_exclusive(x_744)) { + lean_ctor_release(x_744, 0); + lean_ctor_release(x_744, 1); + x_747 = x_744; +} else { + lean_dec_ref(x_744); + x_747 = lean_box(0); +} +x_748 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__11; +lean_inc(x_740); +x_749 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_749, 0, x_740); +lean_ctor_set(x_749, 1, x_748); +x_750 = l_Array_empty___closed__1; +x_751 = lean_array_push(x_750, x_749); +x_752 = l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__4; +lean_inc(x_742); +lean_inc(x_745); +x_753 = l_Lean_addMacroScope(x_745, x_752, x_742); +x_754 = lean_box(0); +x_755 = l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__3; +lean_inc(x_740); +x_756 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_756, 0, x_740); +lean_ctor_set(x_756, 1, x_755); +lean_ctor_set(x_756, 2, x_753); +lean_ctor_set(x_756, 3, x_754); +x_757 = lean_array_push(x_750, x_756); +x_758 = lean_mk_syntax_ident(x_424); +x_759 = lean_array_push(x_750, x_758); +x_760 = l_Lean_nullKind___closed__2; +x_761 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_761, 0, x_760); +lean_ctor_set(x_761, 1, x_759); +x_762 = lean_array_push(x_757, x_761); +x_763 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__15; +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 = l_myMacro____x40_Init_NotationExtra___hyg_5658____closed__24; +x_766 = lean_array_push(x_765, x_764); +x_767 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__13; +x_768 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_768, 0, x_767); +lean_ctor_set(x_768, 1, x_766); +x_769 = lean_array_push(x_750, x_768); +x_770 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_770, 0, x_760); +lean_ctor_set(x_770, 1, x_769); +x_771 = lean_array_push(x_751, x_770); +x_772 = l_term_x5b___x5d___closed__9; +lean_inc(x_740); +x_773 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_773, 0, x_740); +lean_ctor_set(x_773, 1, x_772); +x_774 = lean_array_push(x_771, x_773); +x_775 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__10; +x_776 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_776, 0, x_775); +lean_ctor_set(x_776, 1, x_774); +x_777 = lean_array_push(x_750, x_776); +x_778 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_778, 0, x_760); +lean_ctor_set(x_778, 1, x_777); +x_779 = l_myMacro____x40_Init_Notation___hyg_14470____closed__5; +x_780 = lean_array_push(x_779, x_778); +x_781 = l_myMacro____x40_Init_Notation___hyg_1398____closed__8; +x_782 = lean_array_push(x_780, x_781); +x_783 = lean_array_push(x_782, x_781); +x_784 = lean_array_push(x_783, x_781); +x_785 = lean_array_push(x_784, x_781); +x_786 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__7; +x_787 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_787, 0, x_786); +lean_ctor_set(x_787, 1, x_785); +x_788 = lean_array_push(x_750, x_787); +x_789 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__20; +lean_inc(x_740); +x_790 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_790, 0, x_740); +lean_ctor_set(x_790, 1, x_789); +x_791 = lean_array_push(x_750, x_790); +x_792 = l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__8; +lean_inc(x_742); +lean_inc(x_745); +x_793 = l_Lean_addMacroScope(x_745, x_792, x_742); +x_794 = l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__7; +lean_inc(x_740); +x_795 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_795, 0, x_740); +lean_ctor_set(x_795, 1, x_794); +lean_ctor_set(x_795, 2, x_793); +lean_ctor_set(x_795, 3, x_754); +x_796 = lean_array_push(x_750, x_795); +x_797 = lean_array_push(x_796, x_781); +x_798 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__23; +x_799 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_799, 0, x_798); +lean_ctor_set(x_799, 1, x_797); +x_800 = lean_array_push(x_791, x_799); +x_801 = l_myMacro____x40_Init_Notation___hyg_15387____closed__9; +lean_inc(x_740); +x_802 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_802, 0, x_740); +lean_ctor_set(x_802, 1, x_801); +x_803 = lean_array_push(x_750, x_802); +x_804 = l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__13; +lean_inc(x_742); +lean_inc(x_745); +x_805 = l_Lean_addMacroScope(x_745, x_804, x_742); +x_806 = l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__11; +x_807 = l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__15; +lean_inc(x_740); +x_808 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_808, 0, x_740); +lean_ctor_set(x_808, 1, x_806); +lean_ctor_set(x_808, 2, x_805); +lean_ctor_set(x_808, 3, x_807); +x_809 = lean_array_push(x_803, x_808); +x_810 = l_Lean_expandExplicitBindersAux_loop___closed__4; +x_811 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_811, 0, x_810); +lean_ctor_set(x_811, 1, x_809); +x_812 = lean_array_push(x_750, x_811); +x_813 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_813, 0, x_760); +lean_ctor_set(x_813, 1, x_812); +x_814 = lean_array_push(x_779, x_813); +x_815 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__25; +x_816 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_816, 0, x_815); +lean_ctor_set(x_816, 1, x_814); +x_817 = lean_array_push(x_800, x_816); +x_818 = l_myMacro____x40_Init_Notation___hyg_15956____closed__11; +lean_inc(x_740); +x_819 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_819, 0, x_740); +lean_ctor_set(x_819, 1, x_818); +x_820 = lean_array_push(x_750, x_819); +x_821 = l_myMacro____x40_Init_Notation___hyg_13868____closed__9; +lean_inc(x_740); +x_822 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_822, 0, x_740); +lean_ctor_set(x_822, 1, x_821); +x_823 = lean_array_push(x_750, x_822); +x_824 = l_myMacro____x40_Init_Notation___hyg_14470____closed__11; +lean_inc(x_740); +x_825 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_825, 0, x_740); +lean_ctor_set(x_825, 1, x_824); +x_826 = lean_array_push(x_750, x_825); +x_827 = l_Lean_Parser_Term_dynamicQuot___elambda__1___closed__11; +lean_inc(x_740); +x_828 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_828, 0, x_740); +lean_ctor_set(x_828, 1, x_827); +x_829 = lean_array_push(x_750, x_828); +lean_inc(x_829); +x_830 = lean_array_push(x_829, x_431); +x_831 = l_prec_x28___x29___closed__7; +lean_inc(x_740); +x_832 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_832, 0, x_740); +lean_ctor_set(x_832, 1, x_831); +lean_inc(x_832); +x_833 = lean_array_push(x_830, x_832); +x_834 = l_Lean_Parser_Term_quot___elambda__1___closed__1; +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 = lean_array_push(x_750, x_835); +x_837 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_837, 0, x_760); +lean_ctor_set(x_837, 1, x_836); +lean_inc(x_826); +x_838 = lean_array_push(x_826, x_837); +x_839 = l_myMacro____x40_Init_Notation___hyg_13868____closed__13; +lean_inc(x_740); +x_840 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_840, 0, x_740); +lean_ctor_set(x_840, 1, x_839); +lean_inc(x_840); +x_841 = lean_array_push(x_838, x_840); +x_842 = lean_array_push(x_829, x_1); +lean_inc(x_832); +x_843 = lean_array_push(x_842, x_832); +x_844 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_844, 0, x_834); +lean_ctor_set(x_844, 1, x_843); +x_845 = lean_array_push(x_841, x_844); +x_846 = l_myMacro____x40_Init_Notation___hyg_14470____closed__10; +x_847 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_847, 0, x_846); +lean_ctor_set(x_847, 1, x_845); +x_848 = lean_array_push(x_750, x_847); +x_849 = l_myMacro____x40_Init_Notation___hyg_14470____closed__14; +lean_inc(x_740); +x_850 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_850, 0, x_740); +lean_ctor_set(x_850, 1, x_849); +x_851 = lean_array_push(x_750, x_850); +x_852 = l_myMacro____x40_Init_Notation___hyg_14470____closed__13; +x_853 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_853, 0, x_852); +lean_ctor_set(x_853, 1, x_851); +x_854 = lean_array_push(x_750, x_853); +x_855 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_855, 0, x_760); +lean_ctor_set(x_855, 1, x_854); +x_856 = lean_array_push(x_826, x_855); +x_857 = lean_array_push(x_856, x_840); +x_858 = l_Lean_Elab_Command_elabMacroRulesAux___closed__13; +x_859 = l_Lean_addMacroScope(x_745, x_858, x_742); +x_860 = l_Lean_Elab_Command_elabMacroRulesAux___closed__12; +x_861 = l_Lean_Elab_Command_elabMacroRulesAux___closed__18; +lean_inc(x_740); +x_862 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_862, 0, x_740); +lean_ctor_set(x_862, 1, x_860); +lean_ctor_set(x_862, 2, x_859); +lean_ctor_set(x_862, 3, x_861); +x_863 = lean_array_push(x_750, x_862); +x_864 = l_prec_x28___x29___closed__3; +x_865 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_865, 0, x_740); +lean_ctor_set(x_865, 1, x_864); +x_866 = lean_array_push(x_750, x_865); +x_867 = lean_array_push(x_866, x_781); +x_868 = lean_array_push(x_867, x_832); +x_869 = l_myMacro____x40_Init_Notation___hyg_13868____closed__8; +x_870 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_870, 0, x_869); +lean_ctor_set(x_870, 1, x_868); +x_871 = lean_array_push(x_750, x_870); +x_872 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_872, 0, x_760); +lean_ctor_set(x_872, 1, x_871); +x_873 = lean_array_push(x_863, x_872); +x_874 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_874, 0, x_6); +lean_ctor_set(x_874, 1, x_873); +x_875 = lean_array_push(x_857, x_874); +x_876 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_876, 0, x_846); +lean_ctor_set(x_876, 1, x_875); +x_877 = lean_array_push(x_848, x_876); +x_878 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_878, 0, x_760); +lean_ctor_set(x_878, 1, x_877); +x_879 = lean_array_push(x_750, x_878); +x_880 = l_myMacro____x40_Init_Notation___hyg_14470____closed__8; +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_823, x_881); +x_883 = l_myMacro____x40_Init_Notation___hyg_13868____closed__10; +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 = lean_array_push(x_820, x_884); +x_886 = lean_array_push(x_885, x_781); +x_887 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__33; +x_888 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_888, 0, x_887); +lean_ctor_set(x_888, 1, x_886); +x_889 = lean_array_push(x_817, x_888); +x_890 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__21; +x_891 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_891, 0, x_890); +lean_ctor_set(x_891, 1, x_889); +x_892 = lean_array_push(x_788, x_891); +x_893 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__5; +x_894 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_894, 0, x_893); +lean_ctor_set(x_894, 1, x_892); +x_895 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_895, 0, x_894); +if (lean_is_scalar(x_747)) { + x_896 = lean_alloc_ctor(0, 2, 0); +} else { + x_896 = x_747; +} +lean_ctor_set(x_896, 0, x_895); +lean_ctor_set(x_896, 1, x_746); +return x_896; +} +} +} +} +else +{ +uint8_t x_927; +x_927 = lean_nat_dec_le(x_425, x_425); +if (x_927 == 0) +{ +uint8_t x_928; +lean_dec(x_425); +x_928 = l___private_Init_Data_Array_Basic_0__Array_allDiffAux___at_Lean_Elab_Command_mkSimpleDelab___spec__3(x_407, x_399); +if (x_928 == 0) +{ +lean_object* x_929; +lean_dec(x_424); +lean_dec(x_407); +lean_dec(x_1); +x_929 = lean_box(0); +lean_ctor_set(x_409, 0, x_929); +return x_409; +} +else +{ +lean_object* x_930; lean_object* x_931; lean_object* x_1399; lean_object* x_1400; uint8_t x_1401; +lean_free_object(x_409); +x_1399 = l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_Elab_Command_mkSimpleDelab___spec__2(x_3, x_4, x_422); +x_1400 = lean_ctor_get(x_1399, 0); +lean_inc(x_1400); +x_1401 = !lean_is_exclusive(x_1400); +if (x_1401 == 0) +{ +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; +x_1402 = lean_ctor_get(x_1400, 0); +lean_dec(x_1402); +x_1403 = lean_ctor_get(x_1399, 1); +lean_inc(x_1403); +lean_dec(x_1399); +x_1404 = l_Lean_Elab_Command_getCurrMacroScope(x_3, x_4, x_1403); +x_1405 = lean_ctor_get(x_1404, 1); +lean_inc(x_1405); +lean_dec(x_1404); +x_1406 = l_Lean_Elab_Command_getMainModule___rarg(x_4, x_1405); +x_1407 = lean_ctor_get(x_1406, 1); +lean_inc(x_1407); +lean_dec(x_1406); +x_1408 = l_Array_empty___closed__1; +x_1409 = l_Array_appendCore___rarg(x_1408, x_407); +lean_dec(x_407); +x_1410 = l_Lean_nullKind___closed__2; +x_1411 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1411, 0, x_1410); +lean_ctor_set(x_1411, 1, x_1409); +x_1412 = l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__20; +x_1413 = lean_array_push(x_1412, x_1411); +x_1414 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1414, 0, x_6); +lean_ctor_set(x_1414, 1, x_1413); +lean_ctor_set(x_1400, 0, x_1414); +x_930 = x_1400; +x_931 = x_1407; +goto block_1398; +} +else +{ +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_dec(x_1400); +x_1415 = lean_ctor_get(x_1399, 1); +lean_inc(x_1415); +lean_dec(x_1399); +x_1416 = l_Lean_Elab_Command_getCurrMacroScope(x_3, x_4, x_1415); +x_1417 = lean_ctor_get(x_1416, 1); +lean_inc(x_1417); +lean_dec(x_1416); +x_1418 = l_Lean_Elab_Command_getMainModule___rarg(x_4, x_1417); +x_1419 = lean_ctor_get(x_1418, 1); +lean_inc(x_1419); +lean_dec(x_1418); +x_1420 = l_Array_empty___closed__1; +x_1421 = l_Array_appendCore___rarg(x_1420, x_407); +lean_dec(x_407); +x_1422 = l_Lean_nullKind___closed__2; +x_1423 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1423, 0, x_1422); +lean_ctor_set(x_1423, 1, x_1421); +x_1424 = l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__20; +x_1425 = lean_array_push(x_1424, x_1423); +x_1426 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1426, 0, x_6); +lean_ctor_set(x_1426, 1, x_1425); +x_1427 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_1427, 0, x_1426); +x_930 = x_1427; +x_931 = x_1419; +goto block_1398; +} +block_1398: +{ +lean_object* x_932; lean_object* x_933; lean_object* x_934; lean_object* x_935; uint8_t x_936; +x_932 = lean_ctor_get(x_930, 0); +lean_inc(x_932); +lean_dec(x_930); +x_933 = l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_Elab_Command_mkSimpleDelab___spec__2(x_3, x_4, x_931); +x_934 = lean_ctor_get(x_933, 0); +lean_inc(x_934); +x_935 = lean_ctor_get(x_933, 1); +lean_inc(x_935); +lean_dec(x_933); +x_936 = !lean_is_exclusive(x_934); +if (x_936 == 0) +{ +lean_object* x_937; lean_object* x_938; lean_object* x_939; lean_object* x_940; lean_object* x_941; uint8_t x_942; +x_937 = lean_ctor_get(x_934, 0); +x_938 = l_Lean_Elab_Command_getCurrMacroScope(x_3, x_4, x_935); +x_939 = lean_ctor_get(x_938, 0); +lean_inc(x_939); +x_940 = lean_ctor_get(x_938, 1); +lean_inc(x_940); +lean_dec(x_938); +x_941 = l_Lean_Elab_Command_getMainModule___rarg(x_4, x_940); +x_942 = !lean_is_exclusive(x_941); +if (x_942 == 0) +{ +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_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; +x_943 = lean_ctor_get(x_941, 0); +x_944 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__11; +lean_inc(x_937); +x_945 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_945, 0, x_937); +lean_ctor_set(x_945, 1, x_944); +x_946 = l_Array_empty___closed__1; +x_947 = lean_array_push(x_946, x_945); +x_948 = l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__4; +lean_inc(x_939); +lean_inc(x_943); +x_949 = l_Lean_addMacroScope(x_943, x_948, x_939); +x_950 = lean_box(0); +x_951 = l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__3; +lean_inc(x_937); +x_952 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_952, 0, x_937); +lean_ctor_set(x_952, 1, x_951); +lean_ctor_set(x_952, 2, x_949); +lean_ctor_set(x_952, 3, x_950); +x_953 = lean_array_push(x_946, x_952); +x_954 = lean_mk_syntax_ident(x_424); +x_955 = lean_array_push(x_946, x_954); +x_956 = l_Lean_nullKind___closed__2; +x_957 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_957, 0, x_956); +lean_ctor_set(x_957, 1, x_955); +x_958 = lean_array_push(x_953, x_957); +x_959 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__15; +x_960 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_960, 0, x_959); +lean_ctor_set(x_960, 1, x_958); +x_961 = l_myMacro____x40_Init_NotationExtra___hyg_5658____closed__24; +x_962 = lean_array_push(x_961, x_960); +x_963 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__13; +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 = lean_array_push(x_946, x_964); +x_966 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_966, 0, x_956); +lean_ctor_set(x_966, 1, x_965); +x_967 = lean_array_push(x_947, x_966); +x_968 = l_term_x5b___x5d___closed__9; +lean_inc(x_937); +x_969 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_969, 0, x_937); +lean_ctor_set(x_969, 1, x_968); +x_970 = lean_array_push(x_967, x_969); +x_971 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__10; +x_972 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_972, 0, x_971); +lean_ctor_set(x_972, 1, x_970); +x_973 = lean_array_push(x_946, x_972); +x_974 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_974, 0, x_956); +lean_ctor_set(x_974, 1, x_973); +x_975 = l_myMacro____x40_Init_Notation___hyg_14470____closed__5; +x_976 = lean_array_push(x_975, x_974); +x_977 = l_myMacro____x40_Init_Notation___hyg_1398____closed__8; +x_978 = lean_array_push(x_976, x_977); +x_979 = lean_array_push(x_978, x_977); +x_980 = lean_array_push(x_979, x_977); +x_981 = lean_array_push(x_980, x_977); +x_982 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__7; +x_983 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_983, 0, x_982); +lean_ctor_set(x_983, 1, x_981); +x_984 = lean_array_push(x_946, x_983); +x_985 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__20; +lean_inc(x_937); +x_986 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_986, 0, x_937); +lean_ctor_set(x_986, 1, x_985); +x_987 = lean_array_push(x_946, x_986); +x_988 = l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__8; +lean_inc(x_939); +lean_inc(x_943); +x_989 = l_Lean_addMacroScope(x_943, x_988, x_939); +x_990 = l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__7; +lean_inc(x_937); +x_991 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_991, 0, x_937); +lean_ctor_set(x_991, 1, x_990); +lean_ctor_set(x_991, 2, x_989); +lean_ctor_set(x_991, 3, x_950); +x_992 = lean_array_push(x_946, x_991); +x_993 = lean_array_push(x_992, x_977); +x_994 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__23; +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_987, x_995); +x_997 = l_myMacro____x40_Init_Notation___hyg_15387____closed__9; +lean_inc(x_937); +x_998 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_998, 0, x_937); +lean_ctor_set(x_998, 1, x_997); +x_999 = lean_array_push(x_946, x_998); +x_1000 = l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__13; +lean_inc(x_939); +lean_inc(x_943); +x_1001 = l_Lean_addMacroScope(x_943, x_1000, x_939); +x_1002 = l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__11; +x_1003 = l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__15; +lean_inc(x_937); +x_1004 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1004, 0, x_937); +lean_ctor_set(x_1004, 1, x_1002); +lean_ctor_set(x_1004, 2, x_1001); +lean_ctor_set(x_1004, 3, x_1003); +x_1005 = lean_array_push(x_999, x_1004); +x_1006 = l_Lean_expandExplicitBindersAux_loop___closed__4; +x_1007 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1007, 0, x_1006); +lean_ctor_set(x_1007, 1, x_1005); +x_1008 = lean_array_push(x_946, x_1007); +x_1009 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1009, 0, x_956); +lean_ctor_set(x_1009, 1, x_1008); +x_1010 = lean_array_push(x_975, x_1009); +x_1011 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__25; +x_1012 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1012, 0, x_1011); +lean_ctor_set(x_1012, 1, x_1010); +x_1013 = lean_array_push(x_996, x_1012); +x_1014 = l_myMacro____x40_Init_Notation___hyg_15956____closed__11; +lean_inc(x_937); +x_1015 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1015, 0, x_937); +lean_ctor_set(x_1015, 1, x_1014); +x_1016 = lean_array_push(x_946, x_1015); +x_1017 = l_myMacro____x40_Init_Notation___hyg_13868____closed__9; +lean_inc(x_937); +x_1018 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1018, 0, x_937); +lean_ctor_set(x_1018, 1, x_1017); +x_1019 = lean_array_push(x_946, x_1018); +x_1020 = l_myMacro____x40_Init_Notation___hyg_14470____closed__11; +lean_inc(x_937); +x_1021 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1021, 0, x_937); +lean_ctor_set(x_1021, 1, x_1020); +x_1022 = lean_array_push(x_946, x_1021); +x_1023 = l_Lean_Parser_Term_dynamicQuot___elambda__1___closed__11; +lean_inc(x_937); +x_1024 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1024, 0, x_937); +lean_ctor_set(x_1024, 1, x_1023); +x_1025 = lean_array_push(x_946, x_1024); +lean_inc(x_1025); +x_1026 = lean_array_push(x_1025, x_932); +x_1027 = l_prec_x28___x29___closed__7; +lean_inc(x_937); +x_1028 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1028, 0, x_937); +lean_ctor_set(x_1028, 1, x_1027); +lean_inc(x_1028); +x_1029 = lean_array_push(x_1026, x_1028); +x_1030 = l_Lean_Parser_Term_quot___elambda__1___closed__1; +x_1031 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1031, 0, x_1030); +lean_ctor_set(x_1031, 1, x_1029); +x_1032 = lean_array_push(x_946, x_1031); +x_1033 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1033, 0, x_956); +lean_ctor_set(x_1033, 1, x_1032); +lean_inc(x_1022); +x_1034 = lean_array_push(x_1022, x_1033); +x_1035 = l_myMacro____x40_Init_Notation___hyg_13868____closed__13; +lean_inc(x_937); +x_1036 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1036, 0, x_937); +lean_ctor_set(x_1036, 1, x_1035); +lean_inc(x_1036); +x_1037 = lean_array_push(x_1034, x_1036); +x_1038 = lean_array_push(x_1025, x_1); +lean_inc(x_1028); +x_1039 = lean_array_push(x_1038, x_1028); +x_1040 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1040, 0, x_1030); +lean_ctor_set(x_1040, 1, x_1039); +x_1041 = lean_array_push(x_1037, x_1040); +x_1042 = l_myMacro____x40_Init_Notation___hyg_14470____closed__10; +x_1043 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1043, 0, x_1042); +lean_ctor_set(x_1043, 1, x_1041); +x_1044 = lean_array_push(x_946, x_1043); +x_1045 = l_myMacro____x40_Init_Notation___hyg_14470____closed__14; +lean_inc(x_937); +x_1046 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1046, 0, x_937); +lean_ctor_set(x_1046, 1, x_1045); +x_1047 = lean_array_push(x_946, x_1046); +x_1048 = l_myMacro____x40_Init_Notation___hyg_14470____closed__13; +x_1049 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1049, 0, x_1048); +lean_ctor_set(x_1049, 1, x_1047); +x_1050 = lean_array_push(x_946, x_1049); +x_1051 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1051, 0, x_956); +lean_ctor_set(x_1051, 1, x_1050); +x_1052 = lean_array_push(x_1022, x_1051); +x_1053 = lean_array_push(x_1052, x_1036); +x_1054 = l_Lean_Elab_Command_elabMacroRulesAux___closed__13; +x_1055 = l_Lean_addMacroScope(x_943, x_1054, x_939); +x_1056 = l_Lean_Elab_Command_elabMacroRulesAux___closed__12; +x_1057 = l_Lean_Elab_Command_elabMacroRulesAux___closed__18; +lean_inc(x_937); +x_1058 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1058, 0, x_937); +lean_ctor_set(x_1058, 1, x_1056); +lean_ctor_set(x_1058, 2, x_1055); +lean_ctor_set(x_1058, 3, x_1057); +x_1059 = lean_array_push(x_946, x_1058); +x_1060 = l_prec_x28___x29___closed__3; +x_1061 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1061, 0, x_937); +lean_ctor_set(x_1061, 1, x_1060); +x_1062 = lean_array_push(x_946, x_1061); +x_1063 = lean_array_push(x_1062, x_977); +x_1064 = lean_array_push(x_1063, x_1028); +x_1065 = l_myMacro____x40_Init_Notation___hyg_13868____closed__8; +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_946, x_1066); +x_1068 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1068, 0, x_956); +lean_ctor_set(x_1068, 1, x_1067); +x_1069 = lean_array_push(x_1059, x_1068); +x_1070 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1070, 0, x_6); +lean_ctor_set(x_1070, 1, x_1069); +x_1071 = lean_array_push(x_1053, x_1070); +x_1072 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1072, 0, x_1042); +lean_ctor_set(x_1072, 1, x_1071); +x_1073 = lean_array_push(x_1044, x_1072); +x_1074 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1074, 0, x_956); +lean_ctor_set(x_1074, 1, x_1073); +x_1075 = lean_array_push(x_946, x_1074); +x_1076 = l_myMacro____x40_Init_Notation___hyg_14470____closed__8; +x_1077 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1077, 0, x_1076); +lean_ctor_set(x_1077, 1, x_1075); +x_1078 = lean_array_push(x_1019, x_1077); +x_1079 = l_myMacro____x40_Init_Notation___hyg_13868____closed__10; +x_1080 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1080, 0, x_1079); +lean_ctor_set(x_1080, 1, x_1078); +x_1081 = lean_array_push(x_1016, x_1080); +x_1082 = lean_array_push(x_1081, x_977); +x_1083 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__33; +x_1084 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1084, 0, x_1083); +lean_ctor_set(x_1084, 1, x_1082); +x_1085 = lean_array_push(x_1013, x_1084); +x_1086 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__21; +x_1087 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1087, 0, x_1086); +lean_ctor_set(x_1087, 1, x_1085); +x_1088 = lean_array_push(x_984, x_1087); +x_1089 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__5; +x_1090 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1090, 0, x_1089); +lean_ctor_set(x_1090, 1, x_1088); +lean_ctor_set(x_934, 0, x_1090); +lean_ctor_set(x_941, 0, x_934); +return x_941; +} +else +{ +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; 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; 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; +x_1091 = lean_ctor_get(x_941, 0); +x_1092 = lean_ctor_get(x_941, 1); +lean_inc(x_1092); +lean_inc(x_1091); +lean_dec(x_941); +x_1093 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__11; +lean_inc(x_937); +x_1094 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1094, 0, x_937); +lean_ctor_set(x_1094, 1, x_1093); +x_1095 = l_Array_empty___closed__1; +x_1096 = lean_array_push(x_1095, x_1094); +x_1097 = l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__4; +lean_inc(x_939); +lean_inc(x_1091); +x_1098 = l_Lean_addMacroScope(x_1091, x_1097, x_939); +x_1099 = lean_box(0); +x_1100 = l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__3; +lean_inc(x_937); +x_1101 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1101, 0, x_937); +lean_ctor_set(x_1101, 1, x_1100); +lean_ctor_set(x_1101, 2, x_1098); +lean_ctor_set(x_1101, 3, x_1099); +x_1102 = lean_array_push(x_1095, x_1101); +x_1103 = lean_mk_syntax_ident(x_424); +x_1104 = lean_array_push(x_1095, x_1103); +x_1105 = l_Lean_nullKind___closed__2; +x_1106 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1106, 0, x_1105); +lean_ctor_set(x_1106, 1, x_1104); +x_1107 = lean_array_push(x_1102, x_1106); +x_1108 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__15; +x_1109 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1109, 0, x_1108); +lean_ctor_set(x_1109, 1, x_1107); +x_1110 = l_myMacro____x40_Init_NotationExtra___hyg_5658____closed__24; +x_1111 = lean_array_push(x_1110, x_1109); +x_1112 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__13; +x_1113 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1113, 0, x_1112); +lean_ctor_set(x_1113, 1, x_1111); +x_1114 = lean_array_push(x_1095, x_1113); +x_1115 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1115, 0, x_1105); +lean_ctor_set(x_1115, 1, x_1114); +x_1116 = lean_array_push(x_1096, x_1115); +x_1117 = l_term_x5b___x5d___closed__9; +lean_inc(x_937); +x_1118 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1118, 0, x_937); +lean_ctor_set(x_1118, 1, x_1117); +x_1119 = lean_array_push(x_1116, x_1118); +x_1120 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__10; +x_1121 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1121, 0, x_1120); +lean_ctor_set(x_1121, 1, x_1119); +x_1122 = lean_array_push(x_1095, x_1121); +x_1123 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1123, 0, x_1105); +lean_ctor_set(x_1123, 1, x_1122); +x_1124 = l_myMacro____x40_Init_Notation___hyg_14470____closed__5; +x_1125 = lean_array_push(x_1124, x_1123); +x_1126 = l_myMacro____x40_Init_Notation___hyg_1398____closed__8; +x_1127 = lean_array_push(x_1125, x_1126); +x_1128 = lean_array_push(x_1127, x_1126); +x_1129 = lean_array_push(x_1128, x_1126); +x_1130 = lean_array_push(x_1129, x_1126); +x_1131 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__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_1095, x_1132); +x_1134 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__20; +lean_inc(x_937); +x_1135 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1135, 0, x_937); +lean_ctor_set(x_1135, 1, x_1134); +x_1136 = lean_array_push(x_1095, x_1135); +x_1137 = l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__8; +lean_inc(x_939); +lean_inc(x_1091); +x_1138 = l_Lean_addMacroScope(x_1091, x_1137, x_939); +x_1139 = l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__7; +lean_inc(x_937); +x_1140 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1140, 0, x_937); +lean_ctor_set(x_1140, 1, x_1139); +lean_ctor_set(x_1140, 2, x_1138); +lean_ctor_set(x_1140, 3, x_1099); +x_1141 = lean_array_push(x_1095, x_1140); +x_1142 = lean_array_push(x_1141, x_1126); +x_1143 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__23; +x_1144 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1144, 0, x_1143); +lean_ctor_set(x_1144, 1, x_1142); +x_1145 = lean_array_push(x_1136, x_1144); +x_1146 = l_myMacro____x40_Init_Notation___hyg_15387____closed__9; +lean_inc(x_937); +x_1147 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1147, 0, x_937); +lean_ctor_set(x_1147, 1, x_1146); +x_1148 = lean_array_push(x_1095, x_1147); +x_1149 = l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__13; +lean_inc(x_939); +lean_inc(x_1091); +x_1150 = l_Lean_addMacroScope(x_1091, x_1149, x_939); +x_1151 = l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__11; +x_1152 = l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__15; +lean_inc(x_937); +x_1153 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1153, 0, x_937); +lean_ctor_set(x_1153, 1, x_1151); +lean_ctor_set(x_1153, 2, x_1150); +lean_ctor_set(x_1153, 3, x_1152); +x_1154 = lean_array_push(x_1148, x_1153); +x_1155 = l_Lean_expandExplicitBindersAux_loop___closed__4; +x_1156 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1156, 0, x_1155); +lean_ctor_set(x_1156, 1, x_1154); +x_1157 = lean_array_push(x_1095, x_1156); +x_1158 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1158, 0, x_1105); +lean_ctor_set(x_1158, 1, x_1157); +x_1159 = lean_array_push(x_1124, x_1158); +x_1160 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__25; +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 = lean_array_push(x_1145, x_1161); +x_1163 = l_myMacro____x40_Init_Notation___hyg_15956____closed__11; +lean_inc(x_937); +x_1164 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1164, 0, x_937); +lean_ctor_set(x_1164, 1, x_1163); +x_1165 = lean_array_push(x_1095, x_1164); +x_1166 = l_myMacro____x40_Init_Notation___hyg_13868____closed__9; +lean_inc(x_937); +x_1167 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1167, 0, x_937); +lean_ctor_set(x_1167, 1, x_1166); +x_1168 = lean_array_push(x_1095, x_1167); +x_1169 = l_myMacro____x40_Init_Notation___hyg_14470____closed__11; +lean_inc(x_937); +x_1170 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1170, 0, x_937); +lean_ctor_set(x_1170, 1, x_1169); +x_1171 = lean_array_push(x_1095, x_1170); +x_1172 = l_Lean_Parser_Term_dynamicQuot___elambda__1___closed__11; +lean_inc(x_937); +x_1173 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1173, 0, x_937); +lean_ctor_set(x_1173, 1, x_1172); +x_1174 = lean_array_push(x_1095, x_1173); +lean_inc(x_1174); +x_1175 = lean_array_push(x_1174, x_932); +x_1176 = l_prec_x28___x29___closed__7; +lean_inc(x_937); +x_1177 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1177, 0, x_937); +lean_ctor_set(x_1177, 1, x_1176); +lean_inc(x_1177); +x_1178 = lean_array_push(x_1175, x_1177); +x_1179 = l_Lean_Parser_Term_quot___elambda__1___closed__1; +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 = lean_array_push(x_1095, x_1180); +x_1182 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1182, 0, x_1105); +lean_ctor_set(x_1182, 1, x_1181); +lean_inc(x_1171); +x_1183 = lean_array_push(x_1171, x_1182); +x_1184 = l_myMacro____x40_Init_Notation___hyg_13868____closed__13; +lean_inc(x_937); +x_1185 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1185, 0, x_937); +lean_ctor_set(x_1185, 1, x_1184); +lean_inc(x_1185); +x_1186 = lean_array_push(x_1183, x_1185); +x_1187 = lean_array_push(x_1174, x_1); +lean_inc(x_1177); +x_1188 = lean_array_push(x_1187, x_1177); +x_1189 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1189, 0, x_1179); +lean_ctor_set(x_1189, 1, x_1188); +x_1190 = lean_array_push(x_1186, x_1189); +x_1191 = l_myMacro____x40_Init_Notation___hyg_14470____closed__10; +x_1192 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1192, 0, x_1191); +lean_ctor_set(x_1192, 1, x_1190); +x_1193 = lean_array_push(x_1095, x_1192); +x_1194 = l_myMacro____x40_Init_Notation___hyg_14470____closed__14; +lean_inc(x_937); +x_1195 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1195, 0, x_937); +lean_ctor_set(x_1195, 1, x_1194); +x_1196 = lean_array_push(x_1095, x_1195); +x_1197 = l_myMacro____x40_Init_Notation___hyg_14470____closed__13; +x_1198 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1198, 0, x_1197); +lean_ctor_set(x_1198, 1, x_1196); +x_1199 = lean_array_push(x_1095, x_1198); +x_1200 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1200, 0, x_1105); +lean_ctor_set(x_1200, 1, x_1199); +x_1201 = lean_array_push(x_1171, x_1200); +x_1202 = lean_array_push(x_1201, x_1185); +x_1203 = l_Lean_Elab_Command_elabMacroRulesAux___closed__13; +x_1204 = l_Lean_addMacroScope(x_1091, x_1203, x_939); +x_1205 = l_Lean_Elab_Command_elabMacroRulesAux___closed__12; +x_1206 = l_Lean_Elab_Command_elabMacroRulesAux___closed__18; +lean_inc(x_937); +x_1207 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1207, 0, x_937); +lean_ctor_set(x_1207, 1, x_1205); +lean_ctor_set(x_1207, 2, x_1204); +lean_ctor_set(x_1207, 3, x_1206); +x_1208 = lean_array_push(x_1095, x_1207); +x_1209 = l_prec_x28___x29___closed__3; +x_1210 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1210, 0, x_937); +lean_ctor_set(x_1210, 1, x_1209); +x_1211 = lean_array_push(x_1095, x_1210); +x_1212 = lean_array_push(x_1211, x_1126); +x_1213 = lean_array_push(x_1212, x_1177); +x_1214 = l_myMacro____x40_Init_Notation___hyg_13868____closed__8; +x_1215 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1215, 0, x_1214); +lean_ctor_set(x_1215, 1, x_1213); +x_1216 = lean_array_push(x_1095, x_1215); +x_1217 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1217, 0, x_1105); +lean_ctor_set(x_1217, 1, x_1216); +x_1218 = lean_array_push(x_1208, x_1217); +x_1219 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1219, 0, x_6); +lean_ctor_set(x_1219, 1, x_1218); +x_1220 = lean_array_push(x_1202, x_1219); +x_1221 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1221, 0, x_1191); +lean_ctor_set(x_1221, 1, x_1220); +x_1222 = lean_array_push(x_1193, x_1221); +x_1223 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1223, 0, x_1105); +lean_ctor_set(x_1223, 1, x_1222); +x_1224 = lean_array_push(x_1095, x_1223); +x_1225 = l_myMacro____x40_Init_Notation___hyg_14470____closed__8; +x_1226 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1226, 0, x_1225); +lean_ctor_set(x_1226, 1, x_1224); +x_1227 = lean_array_push(x_1168, x_1226); +x_1228 = l_myMacro____x40_Init_Notation___hyg_13868____closed__10; +x_1229 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1229, 0, x_1228); +lean_ctor_set(x_1229, 1, x_1227); +x_1230 = lean_array_push(x_1165, x_1229); +x_1231 = lean_array_push(x_1230, x_1126); +x_1232 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__33; +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_1162, x_1233); +x_1235 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__21; +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 = lean_array_push(x_1133, x_1236); +x_1238 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__5; +x_1239 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1239, 0, x_1238); +lean_ctor_set(x_1239, 1, x_1237); +lean_ctor_set(x_934, 0, x_1239); +x_1240 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1240, 0, x_934); +lean_ctor_set(x_1240, 1, x_1092); +return x_1240; +} +} +else +{ +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; 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; +x_1241 = lean_ctor_get(x_934, 0); +lean_inc(x_1241); +lean_dec(x_934); +x_1242 = l_Lean_Elab_Command_getCurrMacroScope(x_3, x_4, x_935); +x_1243 = lean_ctor_get(x_1242, 0); +lean_inc(x_1243); +x_1244 = lean_ctor_get(x_1242, 1); +lean_inc(x_1244); +lean_dec(x_1242); +x_1245 = l_Lean_Elab_Command_getMainModule___rarg(x_4, x_1244); +x_1246 = lean_ctor_get(x_1245, 0); +lean_inc(x_1246); +x_1247 = lean_ctor_get(x_1245, 1); +lean_inc(x_1247); +if (lean_is_exclusive(x_1245)) { + lean_ctor_release(x_1245, 0); + lean_ctor_release(x_1245, 1); + x_1248 = x_1245; +} else { + lean_dec_ref(x_1245); + x_1248 = lean_box(0); +} +x_1249 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__11; +lean_inc(x_1241); +x_1250 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1250, 0, x_1241); +lean_ctor_set(x_1250, 1, x_1249); +x_1251 = l_Array_empty___closed__1; +x_1252 = lean_array_push(x_1251, x_1250); +x_1253 = l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__4; +lean_inc(x_1243); +lean_inc(x_1246); +x_1254 = l_Lean_addMacroScope(x_1246, x_1253, x_1243); +x_1255 = lean_box(0); +x_1256 = l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__3; +lean_inc(x_1241); +x_1257 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1257, 0, x_1241); +lean_ctor_set(x_1257, 1, x_1256); +lean_ctor_set(x_1257, 2, x_1254); +lean_ctor_set(x_1257, 3, x_1255); +x_1258 = lean_array_push(x_1251, x_1257); +x_1259 = lean_mk_syntax_ident(x_424); +x_1260 = lean_array_push(x_1251, x_1259); +x_1261 = l_Lean_nullKind___closed__2; +x_1262 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1262, 0, x_1261); +lean_ctor_set(x_1262, 1, x_1260); +x_1263 = lean_array_push(x_1258, x_1262); +x_1264 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__15; +x_1265 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1265, 0, x_1264); +lean_ctor_set(x_1265, 1, x_1263); +x_1266 = l_myMacro____x40_Init_NotationExtra___hyg_5658____closed__24; +x_1267 = lean_array_push(x_1266, x_1265); +x_1268 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__13; +x_1269 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1269, 0, x_1268); +lean_ctor_set(x_1269, 1, x_1267); +x_1270 = lean_array_push(x_1251, x_1269); +x_1271 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1271, 0, x_1261); +lean_ctor_set(x_1271, 1, x_1270); +x_1272 = lean_array_push(x_1252, x_1271); +x_1273 = l_term_x5b___x5d___closed__9; +lean_inc(x_1241); +x_1274 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1274, 0, x_1241); +lean_ctor_set(x_1274, 1, x_1273); +x_1275 = lean_array_push(x_1272, x_1274); +x_1276 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__10; +x_1277 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1277, 0, x_1276); +lean_ctor_set(x_1277, 1, x_1275); +x_1278 = lean_array_push(x_1251, x_1277); +x_1279 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1279, 0, x_1261); +lean_ctor_set(x_1279, 1, x_1278); +x_1280 = l_myMacro____x40_Init_Notation___hyg_14470____closed__5; +x_1281 = lean_array_push(x_1280, x_1279); +x_1282 = l_myMacro____x40_Init_Notation___hyg_1398____closed__8; +x_1283 = lean_array_push(x_1281, x_1282); +x_1284 = lean_array_push(x_1283, x_1282); +x_1285 = lean_array_push(x_1284, x_1282); +x_1286 = lean_array_push(x_1285, x_1282); +x_1287 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__7; +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 = lean_array_push(x_1251, x_1288); +x_1290 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__20; +lean_inc(x_1241); +x_1291 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1291, 0, x_1241); +lean_ctor_set(x_1291, 1, x_1290); +x_1292 = lean_array_push(x_1251, x_1291); +x_1293 = l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__8; +lean_inc(x_1243); +lean_inc(x_1246); +x_1294 = l_Lean_addMacroScope(x_1246, x_1293, x_1243); +x_1295 = l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__7; +lean_inc(x_1241); +x_1296 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1296, 0, x_1241); +lean_ctor_set(x_1296, 1, x_1295); +lean_ctor_set(x_1296, 2, x_1294); +lean_ctor_set(x_1296, 3, x_1255); +x_1297 = lean_array_push(x_1251, x_1296); +x_1298 = lean_array_push(x_1297, x_1282); +x_1299 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__23; +x_1300 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1300, 0, x_1299); +lean_ctor_set(x_1300, 1, x_1298); +x_1301 = lean_array_push(x_1292, x_1300); +x_1302 = l_myMacro____x40_Init_Notation___hyg_15387____closed__9; +lean_inc(x_1241); +x_1303 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1303, 0, x_1241); +lean_ctor_set(x_1303, 1, x_1302); +x_1304 = lean_array_push(x_1251, x_1303); +x_1305 = l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__13; +lean_inc(x_1243); +lean_inc(x_1246); +x_1306 = l_Lean_addMacroScope(x_1246, x_1305, x_1243); +x_1307 = l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__11; +x_1308 = l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__15; +lean_inc(x_1241); +x_1309 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1309, 0, x_1241); +lean_ctor_set(x_1309, 1, x_1307); +lean_ctor_set(x_1309, 2, x_1306); +lean_ctor_set(x_1309, 3, x_1308); +x_1310 = lean_array_push(x_1304, x_1309); +x_1311 = l_Lean_expandExplicitBindersAux_loop___closed__4; +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_1251, x_1312); +x_1314 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1314, 0, x_1261); +lean_ctor_set(x_1314, 1, x_1313); +x_1315 = lean_array_push(x_1280, x_1314); +x_1316 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__25; +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_1301, x_1317); +x_1319 = l_myMacro____x40_Init_Notation___hyg_15956____closed__11; +lean_inc(x_1241); +x_1320 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1320, 0, x_1241); +lean_ctor_set(x_1320, 1, x_1319); +x_1321 = lean_array_push(x_1251, x_1320); +x_1322 = l_myMacro____x40_Init_Notation___hyg_13868____closed__9; +lean_inc(x_1241); +x_1323 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1323, 0, x_1241); +lean_ctor_set(x_1323, 1, x_1322); +x_1324 = lean_array_push(x_1251, x_1323); +x_1325 = l_myMacro____x40_Init_Notation___hyg_14470____closed__11; +lean_inc(x_1241); +x_1326 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1326, 0, x_1241); +lean_ctor_set(x_1326, 1, x_1325); +x_1327 = lean_array_push(x_1251, x_1326); +x_1328 = l_Lean_Parser_Term_dynamicQuot___elambda__1___closed__11; +lean_inc(x_1241); +x_1329 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1329, 0, x_1241); +lean_ctor_set(x_1329, 1, x_1328); +x_1330 = lean_array_push(x_1251, x_1329); +lean_inc(x_1330); +x_1331 = lean_array_push(x_1330, x_932); +x_1332 = l_prec_x28___x29___closed__7; +lean_inc(x_1241); +x_1333 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1333, 0, x_1241); +lean_ctor_set(x_1333, 1, x_1332); +lean_inc(x_1333); +x_1334 = lean_array_push(x_1331, x_1333); +x_1335 = l_Lean_Parser_Term_quot___elambda__1___closed__1; +x_1336 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1336, 0, x_1335); +lean_ctor_set(x_1336, 1, x_1334); +x_1337 = lean_array_push(x_1251, x_1336); +x_1338 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1338, 0, x_1261); +lean_ctor_set(x_1338, 1, x_1337); +lean_inc(x_1327); +x_1339 = lean_array_push(x_1327, x_1338); +x_1340 = l_myMacro____x40_Init_Notation___hyg_13868____closed__13; +lean_inc(x_1241); +x_1341 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1341, 0, x_1241); +lean_ctor_set(x_1341, 1, x_1340); +lean_inc(x_1341); +x_1342 = lean_array_push(x_1339, x_1341); +x_1343 = lean_array_push(x_1330, x_1); +lean_inc(x_1333); +x_1344 = lean_array_push(x_1343, x_1333); +x_1345 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1345, 0, x_1335); +lean_ctor_set(x_1345, 1, x_1344); +x_1346 = lean_array_push(x_1342, x_1345); +x_1347 = l_myMacro____x40_Init_Notation___hyg_14470____closed__10; +x_1348 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1348, 0, x_1347); +lean_ctor_set(x_1348, 1, x_1346); +x_1349 = lean_array_push(x_1251, x_1348); +x_1350 = l_myMacro____x40_Init_Notation___hyg_14470____closed__14; +lean_inc(x_1241); +x_1351 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1351, 0, x_1241); +lean_ctor_set(x_1351, 1, x_1350); +x_1352 = lean_array_push(x_1251, x_1351); +x_1353 = l_myMacro____x40_Init_Notation___hyg_14470____closed__13; +x_1354 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1354, 0, x_1353); +lean_ctor_set(x_1354, 1, x_1352); +x_1355 = lean_array_push(x_1251, x_1354); +x_1356 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1356, 0, x_1261); +lean_ctor_set(x_1356, 1, x_1355); +x_1357 = lean_array_push(x_1327, x_1356); +x_1358 = lean_array_push(x_1357, x_1341); +x_1359 = l_Lean_Elab_Command_elabMacroRulesAux___closed__13; +x_1360 = l_Lean_addMacroScope(x_1246, x_1359, x_1243); +x_1361 = l_Lean_Elab_Command_elabMacroRulesAux___closed__12; +x_1362 = l_Lean_Elab_Command_elabMacroRulesAux___closed__18; +lean_inc(x_1241); +x_1363 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1363, 0, x_1241); +lean_ctor_set(x_1363, 1, x_1361); +lean_ctor_set(x_1363, 2, x_1360); +lean_ctor_set(x_1363, 3, x_1362); +x_1364 = lean_array_push(x_1251, x_1363); +x_1365 = l_prec_x28___x29___closed__3; +x_1366 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1366, 0, x_1241); +lean_ctor_set(x_1366, 1, x_1365); +x_1367 = lean_array_push(x_1251, x_1366); +x_1368 = lean_array_push(x_1367, x_1282); +x_1369 = lean_array_push(x_1368, x_1333); +x_1370 = l_myMacro____x40_Init_Notation___hyg_13868____closed__8; +x_1371 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1371, 0, x_1370); +lean_ctor_set(x_1371, 1, x_1369); +x_1372 = lean_array_push(x_1251, x_1371); +x_1373 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1373, 0, x_1261); +lean_ctor_set(x_1373, 1, x_1372); +x_1374 = lean_array_push(x_1364, x_1373); +x_1375 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1375, 0, x_6); +lean_ctor_set(x_1375, 1, x_1374); +x_1376 = lean_array_push(x_1358, x_1375); +x_1377 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1377, 0, x_1347); +lean_ctor_set(x_1377, 1, x_1376); +x_1378 = lean_array_push(x_1349, x_1377); +x_1379 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1379, 0, x_1261); +lean_ctor_set(x_1379, 1, x_1378); +x_1380 = lean_array_push(x_1251, x_1379); +x_1381 = l_myMacro____x40_Init_Notation___hyg_14470____closed__8; +x_1382 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1382, 0, x_1381); +lean_ctor_set(x_1382, 1, x_1380); +x_1383 = lean_array_push(x_1324, x_1382); +x_1384 = l_myMacro____x40_Init_Notation___hyg_13868____closed__10; +x_1385 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1385, 0, x_1384); +lean_ctor_set(x_1385, 1, x_1383); +x_1386 = lean_array_push(x_1321, x_1385); +x_1387 = lean_array_push(x_1386, x_1282); +x_1388 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__33; +x_1389 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1389, 0, x_1388); +lean_ctor_set(x_1389, 1, x_1387); +x_1390 = lean_array_push(x_1318, x_1389); +x_1391 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__21; +x_1392 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1392, 0, x_1391); +lean_ctor_set(x_1392, 1, x_1390); +x_1393 = lean_array_push(x_1289, x_1392); +x_1394 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__5; +x_1395 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1395, 0, x_1394); +lean_ctor_set(x_1395, 1, x_1393); +x_1396 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_1396, 0, x_1395); +if (lean_is_scalar(x_1248)) { + x_1397 = lean_alloc_ctor(0, 2, 0); +} else { + x_1397 = x_1248; +} +lean_ctor_set(x_1397, 0, x_1396); +lean_ctor_set(x_1397, 1, x_1247); +return x_1397; +} +} +} +} +else +{ +size_t x_1428; size_t x_1429; uint8_t x_1430; +x_1428 = 0; +x_1429 = lean_usize_of_nat(x_425); +lean_dec(x_425); +x_1430 = l_Array_anyMUnsafe_any___at_Lean_Elab_Command_mkSimpleDelab___spec__5(x_407, x_1428, x_1429); +if (x_1430 == 0) +{ +uint8_t x_1431; +x_1431 = l___private_Init_Data_Array_Basic_0__Array_allDiffAux___at_Lean_Elab_Command_mkSimpleDelab___spec__3(x_407, x_399); +if (x_1431 == 0) +{ +lean_object* x_1432; +lean_dec(x_424); +lean_dec(x_407); +lean_dec(x_1); +x_1432 = lean_box(0); +lean_ctor_set(x_409, 0, x_1432); +return x_409; +} +else +{ +lean_object* x_1433; lean_object* x_1434; lean_object* x_1902; lean_object* x_1903; uint8_t x_1904; +lean_free_object(x_409); +x_1902 = l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_Elab_Command_mkSimpleDelab___spec__2(x_3, x_4, x_422); +x_1903 = lean_ctor_get(x_1902, 0); +lean_inc(x_1903); +x_1904 = !lean_is_exclusive(x_1903); +if (x_1904 == 0) +{ +lean_object* x_1905; lean_object* x_1906; lean_object* x_1907; lean_object* x_1908; lean_object* x_1909; lean_object* x_1910; lean_object* x_1911; lean_object* x_1912; lean_object* x_1913; lean_object* x_1914; lean_object* x_1915; lean_object* x_1916; lean_object* x_1917; +x_1905 = lean_ctor_get(x_1903, 0); +lean_dec(x_1905); +x_1906 = lean_ctor_get(x_1902, 1); +lean_inc(x_1906); +lean_dec(x_1902); +x_1907 = l_Lean_Elab_Command_getCurrMacroScope(x_3, x_4, x_1906); +x_1908 = lean_ctor_get(x_1907, 1); +lean_inc(x_1908); +lean_dec(x_1907); +x_1909 = l_Lean_Elab_Command_getMainModule___rarg(x_4, x_1908); +x_1910 = lean_ctor_get(x_1909, 1); +lean_inc(x_1910); +lean_dec(x_1909); +x_1911 = l_Array_empty___closed__1; +x_1912 = l_Array_appendCore___rarg(x_1911, x_407); +lean_dec(x_407); +x_1913 = l_Lean_nullKind___closed__2; +x_1914 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1914, 0, x_1913); +lean_ctor_set(x_1914, 1, x_1912); +x_1915 = l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__20; +x_1916 = lean_array_push(x_1915, x_1914); +x_1917 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1917, 0, x_6); +lean_ctor_set(x_1917, 1, x_1916); +lean_ctor_set(x_1903, 0, x_1917); +x_1433 = x_1903; +x_1434 = x_1910; +goto block_1901; +} +else +{ +lean_object* x_1918; lean_object* x_1919; lean_object* x_1920; lean_object* x_1921; lean_object* x_1922; lean_object* x_1923; lean_object* x_1924; lean_object* x_1925; lean_object* x_1926; lean_object* x_1927; lean_object* x_1928; lean_object* x_1929; lean_object* x_1930; +lean_dec(x_1903); +x_1918 = lean_ctor_get(x_1902, 1); +lean_inc(x_1918); +lean_dec(x_1902); +x_1919 = l_Lean_Elab_Command_getCurrMacroScope(x_3, x_4, x_1918); +x_1920 = lean_ctor_get(x_1919, 1); +lean_inc(x_1920); +lean_dec(x_1919); +x_1921 = l_Lean_Elab_Command_getMainModule___rarg(x_4, x_1920); +x_1922 = lean_ctor_get(x_1921, 1); +lean_inc(x_1922); +lean_dec(x_1921); +x_1923 = l_Array_empty___closed__1; +x_1924 = l_Array_appendCore___rarg(x_1923, x_407); +lean_dec(x_407); +x_1925 = l_Lean_nullKind___closed__2; +x_1926 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1926, 0, x_1925); +lean_ctor_set(x_1926, 1, x_1924); +x_1927 = l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__20; +x_1928 = lean_array_push(x_1927, x_1926); +x_1929 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1929, 0, x_6); +lean_ctor_set(x_1929, 1, x_1928); +x_1930 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_1930, 0, x_1929); +x_1433 = x_1930; +x_1434 = x_1922; +goto block_1901; +} +block_1901: +{ +lean_object* x_1435; lean_object* x_1436; lean_object* x_1437; lean_object* x_1438; uint8_t x_1439; +x_1435 = lean_ctor_get(x_1433, 0); +lean_inc(x_1435); +lean_dec(x_1433); +x_1436 = l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_Elab_Command_mkSimpleDelab___spec__2(x_3, x_4, x_1434); +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_is_exclusive(x_1437); +if (x_1439 == 0) +{ +lean_object* x_1440; lean_object* x_1441; lean_object* x_1442; lean_object* x_1443; lean_object* x_1444; uint8_t x_1445; +x_1440 = lean_ctor_get(x_1437, 0); +x_1441 = l_Lean_Elab_Command_getCurrMacroScope(x_3, x_4, x_1438); +x_1442 = lean_ctor_get(x_1441, 0); +lean_inc(x_1442); +x_1443 = lean_ctor_get(x_1441, 1); +lean_inc(x_1443); +lean_dec(x_1441); +x_1444 = l_Lean_Elab_Command_getMainModule___rarg(x_4, x_1443); +x_1445 = !lean_is_exclusive(x_1444); +if (x_1445 == 0) +{ +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_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; 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; 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; +x_1446 = lean_ctor_get(x_1444, 0); +x_1447 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__11; +lean_inc(x_1440); +x_1448 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1448, 0, x_1440); +lean_ctor_set(x_1448, 1, x_1447); +x_1449 = l_Array_empty___closed__1; +x_1450 = lean_array_push(x_1449, x_1448); +x_1451 = l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__4; +lean_inc(x_1442); +lean_inc(x_1446); +x_1452 = l_Lean_addMacroScope(x_1446, x_1451, x_1442); +x_1453 = lean_box(0); +x_1454 = l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__3; +lean_inc(x_1440); +x_1455 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1455, 0, x_1440); +lean_ctor_set(x_1455, 1, x_1454); +lean_ctor_set(x_1455, 2, x_1452); +lean_ctor_set(x_1455, 3, x_1453); +x_1456 = lean_array_push(x_1449, x_1455); +x_1457 = lean_mk_syntax_ident(x_424); +x_1458 = lean_array_push(x_1449, x_1457); +x_1459 = l_Lean_nullKind___closed__2; +x_1460 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1460, 0, x_1459); +lean_ctor_set(x_1460, 1, x_1458); +x_1461 = lean_array_push(x_1456, x_1460); +x_1462 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__15; +x_1463 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1463, 0, x_1462); +lean_ctor_set(x_1463, 1, x_1461); +x_1464 = l_myMacro____x40_Init_NotationExtra___hyg_5658____closed__24; +x_1465 = lean_array_push(x_1464, x_1463); +x_1466 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__13; +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_1449, x_1467); +x_1469 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1469, 0, x_1459); +lean_ctor_set(x_1469, 1, x_1468); +x_1470 = lean_array_push(x_1450, x_1469); +x_1471 = l_term_x5b___x5d___closed__9; +lean_inc(x_1440); +x_1472 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1472, 0, x_1440); +lean_ctor_set(x_1472, 1, x_1471); +x_1473 = lean_array_push(x_1470, x_1472); +x_1474 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__10; +x_1475 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1475, 0, x_1474); +lean_ctor_set(x_1475, 1, x_1473); +x_1476 = lean_array_push(x_1449, x_1475); +x_1477 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1477, 0, x_1459); +lean_ctor_set(x_1477, 1, x_1476); +x_1478 = l_myMacro____x40_Init_Notation___hyg_14470____closed__5; +x_1479 = lean_array_push(x_1478, x_1477); +x_1480 = l_myMacro____x40_Init_Notation___hyg_1398____closed__8; +x_1481 = lean_array_push(x_1479, x_1480); +x_1482 = lean_array_push(x_1481, x_1480); +x_1483 = lean_array_push(x_1482, x_1480); +x_1484 = lean_array_push(x_1483, x_1480); +x_1485 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__7; +x_1486 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1486, 0, x_1485); +lean_ctor_set(x_1486, 1, x_1484); +x_1487 = lean_array_push(x_1449, x_1486); +x_1488 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__20; +lean_inc(x_1440); +x_1489 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1489, 0, x_1440); +lean_ctor_set(x_1489, 1, x_1488); +x_1490 = lean_array_push(x_1449, x_1489); +x_1491 = l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__8; +lean_inc(x_1442); +lean_inc(x_1446); +x_1492 = l_Lean_addMacroScope(x_1446, x_1491, x_1442); +x_1493 = l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__7; +lean_inc(x_1440); +x_1494 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1494, 0, x_1440); +lean_ctor_set(x_1494, 1, x_1493); +lean_ctor_set(x_1494, 2, x_1492); +lean_ctor_set(x_1494, 3, x_1453); +x_1495 = lean_array_push(x_1449, x_1494); +x_1496 = lean_array_push(x_1495, x_1480); +x_1497 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__23; +x_1498 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1498, 0, x_1497); +lean_ctor_set(x_1498, 1, x_1496); +x_1499 = lean_array_push(x_1490, x_1498); +x_1500 = l_myMacro____x40_Init_Notation___hyg_15387____closed__9; +lean_inc(x_1440); +x_1501 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1501, 0, x_1440); +lean_ctor_set(x_1501, 1, x_1500); +x_1502 = lean_array_push(x_1449, x_1501); +x_1503 = l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__13; +lean_inc(x_1442); +lean_inc(x_1446); +x_1504 = l_Lean_addMacroScope(x_1446, x_1503, x_1442); +x_1505 = l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__11; +x_1506 = l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__15; +lean_inc(x_1440); +x_1507 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1507, 0, x_1440); +lean_ctor_set(x_1507, 1, x_1505); +lean_ctor_set(x_1507, 2, x_1504); +lean_ctor_set(x_1507, 3, x_1506); +x_1508 = lean_array_push(x_1502, x_1507); +x_1509 = l_Lean_expandExplicitBindersAux_loop___closed__4; +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_1449, x_1510); +x_1512 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1512, 0, x_1459); +lean_ctor_set(x_1512, 1, x_1511); +x_1513 = lean_array_push(x_1478, x_1512); +x_1514 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__25; +x_1515 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1515, 0, x_1514); +lean_ctor_set(x_1515, 1, x_1513); +x_1516 = lean_array_push(x_1499, x_1515); +x_1517 = l_myMacro____x40_Init_Notation___hyg_15956____closed__11; +lean_inc(x_1440); +x_1518 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1518, 0, x_1440); +lean_ctor_set(x_1518, 1, x_1517); +x_1519 = lean_array_push(x_1449, x_1518); +x_1520 = l_myMacro____x40_Init_Notation___hyg_13868____closed__9; +lean_inc(x_1440); +x_1521 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1521, 0, x_1440); +lean_ctor_set(x_1521, 1, x_1520); +x_1522 = lean_array_push(x_1449, x_1521); +x_1523 = l_myMacro____x40_Init_Notation___hyg_14470____closed__11; +lean_inc(x_1440); +x_1524 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1524, 0, x_1440); +lean_ctor_set(x_1524, 1, x_1523); +x_1525 = lean_array_push(x_1449, x_1524); +x_1526 = l_Lean_Parser_Term_dynamicQuot___elambda__1___closed__11; +lean_inc(x_1440); +x_1527 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1527, 0, x_1440); +lean_ctor_set(x_1527, 1, x_1526); +x_1528 = lean_array_push(x_1449, x_1527); +lean_inc(x_1528); +x_1529 = lean_array_push(x_1528, x_1435); +x_1530 = l_prec_x28___x29___closed__7; +lean_inc(x_1440); +x_1531 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1531, 0, x_1440); +lean_ctor_set(x_1531, 1, x_1530); +lean_inc(x_1531); +x_1532 = lean_array_push(x_1529, x_1531); +x_1533 = l_Lean_Parser_Term_quot___elambda__1___closed__1; +x_1534 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1534, 0, x_1533); +lean_ctor_set(x_1534, 1, x_1532); +x_1535 = lean_array_push(x_1449, x_1534); +x_1536 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1536, 0, x_1459); +lean_ctor_set(x_1536, 1, x_1535); +lean_inc(x_1525); +x_1537 = lean_array_push(x_1525, x_1536); +x_1538 = l_myMacro____x40_Init_Notation___hyg_13868____closed__13; +lean_inc(x_1440); +x_1539 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1539, 0, x_1440); +lean_ctor_set(x_1539, 1, x_1538); +lean_inc(x_1539); +x_1540 = lean_array_push(x_1537, x_1539); +x_1541 = lean_array_push(x_1528, x_1); +lean_inc(x_1531); +x_1542 = lean_array_push(x_1541, x_1531); +x_1543 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1543, 0, x_1533); +lean_ctor_set(x_1543, 1, x_1542); +x_1544 = lean_array_push(x_1540, x_1543); +x_1545 = l_myMacro____x40_Init_Notation___hyg_14470____closed__10; +x_1546 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1546, 0, x_1545); +lean_ctor_set(x_1546, 1, x_1544); +x_1547 = lean_array_push(x_1449, x_1546); +x_1548 = l_myMacro____x40_Init_Notation___hyg_14470____closed__14; +lean_inc(x_1440); +x_1549 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1549, 0, x_1440); +lean_ctor_set(x_1549, 1, x_1548); +x_1550 = lean_array_push(x_1449, x_1549); +x_1551 = l_myMacro____x40_Init_Notation___hyg_14470____closed__13; +x_1552 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1552, 0, x_1551); +lean_ctor_set(x_1552, 1, x_1550); +x_1553 = lean_array_push(x_1449, x_1552); +x_1554 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1554, 0, x_1459); +lean_ctor_set(x_1554, 1, x_1553); +x_1555 = lean_array_push(x_1525, x_1554); +x_1556 = lean_array_push(x_1555, x_1539); +x_1557 = l_Lean_Elab_Command_elabMacroRulesAux___closed__13; +x_1558 = l_Lean_addMacroScope(x_1446, x_1557, x_1442); +x_1559 = l_Lean_Elab_Command_elabMacroRulesAux___closed__12; +x_1560 = l_Lean_Elab_Command_elabMacroRulesAux___closed__18; +lean_inc(x_1440); +x_1561 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1561, 0, x_1440); +lean_ctor_set(x_1561, 1, x_1559); +lean_ctor_set(x_1561, 2, x_1558); +lean_ctor_set(x_1561, 3, x_1560); +x_1562 = lean_array_push(x_1449, x_1561); +x_1563 = l_prec_x28___x29___closed__3; +x_1564 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1564, 0, x_1440); +lean_ctor_set(x_1564, 1, x_1563); +x_1565 = lean_array_push(x_1449, x_1564); +x_1566 = lean_array_push(x_1565, x_1480); +x_1567 = lean_array_push(x_1566, x_1531); +x_1568 = l_myMacro____x40_Init_Notation___hyg_13868____closed__8; +x_1569 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1569, 0, x_1568); +lean_ctor_set(x_1569, 1, x_1567); +x_1570 = lean_array_push(x_1449, x_1569); +x_1571 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1571, 0, x_1459); +lean_ctor_set(x_1571, 1, x_1570); +x_1572 = lean_array_push(x_1562, x_1571); +x_1573 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1573, 0, x_6); +lean_ctor_set(x_1573, 1, x_1572); +x_1574 = lean_array_push(x_1556, x_1573); +x_1575 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1575, 0, x_1545); +lean_ctor_set(x_1575, 1, x_1574); +x_1576 = lean_array_push(x_1547, x_1575); +x_1577 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1577, 0, x_1459); +lean_ctor_set(x_1577, 1, x_1576); +x_1578 = lean_array_push(x_1449, x_1577); +x_1579 = l_myMacro____x40_Init_Notation___hyg_14470____closed__8; +x_1580 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1580, 0, x_1579); +lean_ctor_set(x_1580, 1, x_1578); +x_1581 = lean_array_push(x_1522, x_1580); +x_1582 = l_myMacro____x40_Init_Notation___hyg_13868____closed__10; +x_1583 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1583, 0, x_1582); +lean_ctor_set(x_1583, 1, x_1581); +x_1584 = lean_array_push(x_1519, x_1583); +x_1585 = lean_array_push(x_1584, x_1480); +x_1586 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__33; +x_1587 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1587, 0, x_1586); +lean_ctor_set(x_1587, 1, x_1585); +x_1588 = lean_array_push(x_1516, x_1587); +x_1589 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__21; +x_1590 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1590, 0, x_1589); +lean_ctor_set(x_1590, 1, x_1588); +x_1591 = lean_array_push(x_1487, x_1590); +x_1592 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__5; +x_1593 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1593, 0, x_1592); +lean_ctor_set(x_1593, 1, x_1591); +lean_ctor_set(x_1437, 0, x_1593); +lean_ctor_set(x_1444, 0, x_1437); +return x_1444; +} +else +{ +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_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_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; +x_1594 = lean_ctor_get(x_1444, 0); +x_1595 = lean_ctor_get(x_1444, 1); +lean_inc(x_1595); +lean_inc(x_1594); +lean_dec(x_1444); +x_1596 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__11; +lean_inc(x_1440); +x_1597 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1597, 0, x_1440); +lean_ctor_set(x_1597, 1, x_1596); +x_1598 = l_Array_empty___closed__1; +x_1599 = lean_array_push(x_1598, x_1597); +x_1600 = l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__4; +lean_inc(x_1442); +lean_inc(x_1594); +x_1601 = l_Lean_addMacroScope(x_1594, x_1600, x_1442); +x_1602 = lean_box(0); +x_1603 = l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__3; +lean_inc(x_1440); +x_1604 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1604, 0, x_1440); +lean_ctor_set(x_1604, 1, x_1603); +lean_ctor_set(x_1604, 2, x_1601); +lean_ctor_set(x_1604, 3, x_1602); +x_1605 = lean_array_push(x_1598, x_1604); +x_1606 = lean_mk_syntax_ident(x_424); +x_1607 = lean_array_push(x_1598, x_1606); +x_1608 = l_Lean_nullKind___closed__2; +x_1609 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1609, 0, x_1608); +lean_ctor_set(x_1609, 1, x_1607); +x_1610 = lean_array_push(x_1605, x_1609); +x_1611 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__15; +x_1612 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1612, 0, x_1611); +lean_ctor_set(x_1612, 1, x_1610); +x_1613 = l_myMacro____x40_Init_NotationExtra___hyg_5658____closed__24; +x_1614 = lean_array_push(x_1613, x_1612); +x_1615 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__13; +x_1616 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1616, 0, x_1615); +lean_ctor_set(x_1616, 1, x_1614); +x_1617 = lean_array_push(x_1598, x_1616); +x_1618 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1618, 0, x_1608); +lean_ctor_set(x_1618, 1, x_1617); +x_1619 = lean_array_push(x_1599, x_1618); +x_1620 = l_term_x5b___x5d___closed__9; +lean_inc(x_1440); +x_1621 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1621, 0, x_1440); +lean_ctor_set(x_1621, 1, x_1620); +x_1622 = lean_array_push(x_1619, x_1621); +x_1623 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__10; +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_1598, x_1624); +x_1626 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1626, 0, x_1608); +lean_ctor_set(x_1626, 1, x_1625); +x_1627 = l_myMacro____x40_Init_Notation___hyg_14470____closed__5; +x_1628 = lean_array_push(x_1627, x_1626); +x_1629 = l_myMacro____x40_Init_Notation___hyg_1398____closed__8; +x_1630 = lean_array_push(x_1628, x_1629); +x_1631 = lean_array_push(x_1630, x_1629); +x_1632 = lean_array_push(x_1631, x_1629); +x_1633 = lean_array_push(x_1632, x_1629); +x_1634 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__7; +x_1635 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1635, 0, x_1634); +lean_ctor_set(x_1635, 1, x_1633); +x_1636 = lean_array_push(x_1598, x_1635); +x_1637 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__20; +lean_inc(x_1440); +x_1638 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1638, 0, x_1440); +lean_ctor_set(x_1638, 1, x_1637); +x_1639 = lean_array_push(x_1598, x_1638); +x_1640 = l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__8; +lean_inc(x_1442); +lean_inc(x_1594); +x_1641 = l_Lean_addMacroScope(x_1594, x_1640, x_1442); +x_1642 = l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__7; +lean_inc(x_1440); +x_1643 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1643, 0, x_1440); +lean_ctor_set(x_1643, 1, x_1642); +lean_ctor_set(x_1643, 2, x_1641); +lean_ctor_set(x_1643, 3, x_1602); +x_1644 = lean_array_push(x_1598, x_1643); +x_1645 = lean_array_push(x_1644, x_1629); +x_1646 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__23; +x_1647 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1647, 0, x_1646); +lean_ctor_set(x_1647, 1, x_1645); +x_1648 = lean_array_push(x_1639, x_1647); +x_1649 = l_myMacro____x40_Init_Notation___hyg_15387____closed__9; +lean_inc(x_1440); +x_1650 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1650, 0, x_1440); +lean_ctor_set(x_1650, 1, x_1649); +x_1651 = lean_array_push(x_1598, x_1650); +x_1652 = l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__13; +lean_inc(x_1442); +lean_inc(x_1594); +x_1653 = l_Lean_addMacroScope(x_1594, x_1652, x_1442); +x_1654 = l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__11; +x_1655 = l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__15; +lean_inc(x_1440); +x_1656 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1656, 0, x_1440); +lean_ctor_set(x_1656, 1, x_1654); +lean_ctor_set(x_1656, 2, x_1653); +lean_ctor_set(x_1656, 3, x_1655); +x_1657 = lean_array_push(x_1651, x_1656); +x_1658 = l_Lean_expandExplicitBindersAux_loop___closed__4; +x_1659 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1659, 0, x_1658); +lean_ctor_set(x_1659, 1, x_1657); +x_1660 = lean_array_push(x_1598, x_1659); +x_1661 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1661, 0, x_1608); +lean_ctor_set(x_1661, 1, x_1660); +x_1662 = lean_array_push(x_1627, x_1661); +x_1663 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__25; +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_1648, x_1664); +x_1666 = l_myMacro____x40_Init_Notation___hyg_15956____closed__11; +lean_inc(x_1440); +x_1667 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1667, 0, x_1440); +lean_ctor_set(x_1667, 1, x_1666); +x_1668 = lean_array_push(x_1598, x_1667); +x_1669 = l_myMacro____x40_Init_Notation___hyg_13868____closed__9; +lean_inc(x_1440); +x_1670 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1670, 0, x_1440); +lean_ctor_set(x_1670, 1, x_1669); +x_1671 = lean_array_push(x_1598, x_1670); +x_1672 = l_myMacro____x40_Init_Notation___hyg_14470____closed__11; +lean_inc(x_1440); +x_1673 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1673, 0, x_1440); +lean_ctor_set(x_1673, 1, x_1672); +x_1674 = lean_array_push(x_1598, x_1673); +x_1675 = l_Lean_Parser_Term_dynamicQuot___elambda__1___closed__11; +lean_inc(x_1440); +x_1676 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1676, 0, x_1440); +lean_ctor_set(x_1676, 1, x_1675); +x_1677 = lean_array_push(x_1598, x_1676); +lean_inc(x_1677); +x_1678 = lean_array_push(x_1677, x_1435); +x_1679 = l_prec_x28___x29___closed__7; +lean_inc(x_1440); +x_1680 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1680, 0, x_1440); +lean_ctor_set(x_1680, 1, x_1679); +lean_inc(x_1680); +x_1681 = lean_array_push(x_1678, x_1680); +x_1682 = l_Lean_Parser_Term_quot___elambda__1___closed__1; +x_1683 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1683, 0, x_1682); +lean_ctor_set(x_1683, 1, x_1681); +x_1684 = lean_array_push(x_1598, x_1683); +x_1685 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1685, 0, x_1608); +lean_ctor_set(x_1685, 1, x_1684); +lean_inc(x_1674); +x_1686 = lean_array_push(x_1674, x_1685); +x_1687 = l_myMacro____x40_Init_Notation___hyg_13868____closed__13; +lean_inc(x_1440); +x_1688 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1688, 0, x_1440); +lean_ctor_set(x_1688, 1, x_1687); +lean_inc(x_1688); +x_1689 = lean_array_push(x_1686, x_1688); +x_1690 = lean_array_push(x_1677, x_1); +lean_inc(x_1680); +x_1691 = lean_array_push(x_1690, x_1680); +x_1692 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1692, 0, x_1682); +lean_ctor_set(x_1692, 1, x_1691); +x_1693 = lean_array_push(x_1689, x_1692); +x_1694 = l_myMacro____x40_Init_Notation___hyg_14470____closed__10; +x_1695 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1695, 0, x_1694); +lean_ctor_set(x_1695, 1, x_1693); +x_1696 = lean_array_push(x_1598, x_1695); +x_1697 = l_myMacro____x40_Init_Notation___hyg_14470____closed__14; +lean_inc(x_1440); +x_1698 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1698, 0, x_1440); +lean_ctor_set(x_1698, 1, x_1697); +x_1699 = lean_array_push(x_1598, x_1698); +x_1700 = l_myMacro____x40_Init_Notation___hyg_14470____closed__13; +x_1701 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1701, 0, x_1700); +lean_ctor_set(x_1701, 1, x_1699); +x_1702 = lean_array_push(x_1598, x_1701); +x_1703 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1703, 0, x_1608); +lean_ctor_set(x_1703, 1, x_1702); +x_1704 = lean_array_push(x_1674, x_1703); +x_1705 = lean_array_push(x_1704, x_1688); +x_1706 = l_Lean_Elab_Command_elabMacroRulesAux___closed__13; +x_1707 = l_Lean_addMacroScope(x_1594, x_1706, x_1442); +x_1708 = l_Lean_Elab_Command_elabMacroRulesAux___closed__12; +x_1709 = l_Lean_Elab_Command_elabMacroRulesAux___closed__18; +lean_inc(x_1440); +x_1710 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1710, 0, x_1440); +lean_ctor_set(x_1710, 1, x_1708); +lean_ctor_set(x_1710, 2, x_1707); +lean_ctor_set(x_1710, 3, x_1709); +x_1711 = lean_array_push(x_1598, x_1710); +x_1712 = l_prec_x28___x29___closed__3; +x_1713 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1713, 0, x_1440); +lean_ctor_set(x_1713, 1, x_1712); +x_1714 = lean_array_push(x_1598, x_1713); +x_1715 = lean_array_push(x_1714, x_1629); +x_1716 = lean_array_push(x_1715, x_1680); +x_1717 = l_myMacro____x40_Init_Notation___hyg_13868____closed__8; +x_1718 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1718, 0, x_1717); +lean_ctor_set(x_1718, 1, x_1716); +x_1719 = lean_array_push(x_1598, x_1718); +x_1720 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1720, 0, x_1608); +lean_ctor_set(x_1720, 1, x_1719); +x_1721 = lean_array_push(x_1711, x_1720); +x_1722 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1722, 0, x_6); +lean_ctor_set(x_1722, 1, x_1721); +x_1723 = lean_array_push(x_1705, x_1722); +x_1724 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1724, 0, x_1694); +lean_ctor_set(x_1724, 1, x_1723); +x_1725 = lean_array_push(x_1696, x_1724); +x_1726 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1726, 0, x_1608); +lean_ctor_set(x_1726, 1, x_1725); +x_1727 = lean_array_push(x_1598, x_1726); +x_1728 = l_myMacro____x40_Init_Notation___hyg_14470____closed__8; +x_1729 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1729, 0, x_1728); +lean_ctor_set(x_1729, 1, x_1727); +x_1730 = lean_array_push(x_1671, x_1729); +x_1731 = l_myMacro____x40_Init_Notation___hyg_13868____closed__10; +x_1732 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1732, 0, x_1731); +lean_ctor_set(x_1732, 1, x_1730); +x_1733 = lean_array_push(x_1668, x_1732); +x_1734 = lean_array_push(x_1733, x_1629); +x_1735 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__33; +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 = lean_array_push(x_1665, x_1736); +x_1738 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__21; +x_1739 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1739, 0, x_1738); +lean_ctor_set(x_1739, 1, x_1737); +x_1740 = lean_array_push(x_1636, x_1739); +x_1741 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__5; +x_1742 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1742, 0, x_1741); +lean_ctor_set(x_1742, 1, x_1740); +lean_ctor_set(x_1437, 0, x_1742); +x_1743 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1743, 0, x_1437); +lean_ctor_set(x_1743, 1, x_1595); +return x_1743; +} +} +else +{ +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; 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; 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; lean_object* x_1801; lean_object* x_1802; lean_object* x_1803; lean_object* x_1804; 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; 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; lean_object* x_1847; lean_object* x_1848; lean_object* x_1849; lean_object* x_1850; 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; lean_object* x_1870; lean_object* x_1871; lean_object* x_1872; lean_object* x_1873; lean_object* x_1874; lean_object* x_1875; lean_object* x_1876; lean_object* x_1877; lean_object* x_1878; lean_object* x_1879; lean_object* x_1880; lean_object* x_1881; lean_object* x_1882; lean_object* x_1883; lean_object* x_1884; lean_object* x_1885; lean_object* x_1886; lean_object* x_1887; lean_object* x_1888; lean_object* x_1889; lean_object* x_1890; lean_object* x_1891; lean_object* x_1892; lean_object* x_1893; lean_object* x_1894; lean_object* x_1895; lean_object* x_1896; lean_object* x_1897; lean_object* x_1898; lean_object* x_1899; lean_object* x_1900; +x_1744 = lean_ctor_get(x_1437, 0); +lean_inc(x_1744); +lean_dec(x_1437); +x_1745 = l_Lean_Elab_Command_getCurrMacroScope(x_3, x_4, x_1438); +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_Lean_Elab_Command_getMainModule___rarg(x_4, x_1747); +x_1749 = lean_ctor_get(x_1748, 0); +lean_inc(x_1749); +x_1750 = lean_ctor_get(x_1748, 1); +lean_inc(x_1750); +if (lean_is_exclusive(x_1748)) { + lean_ctor_release(x_1748, 0); + lean_ctor_release(x_1748, 1); + x_1751 = x_1748; +} else { + lean_dec_ref(x_1748); + x_1751 = lean_box(0); +} +x_1752 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__11; +lean_inc(x_1744); +x_1753 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1753, 0, x_1744); +lean_ctor_set(x_1753, 1, x_1752); +x_1754 = l_Array_empty___closed__1; +x_1755 = lean_array_push(x_1754, x_1753); +x_1756 = l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__4; +lean_inc(x_1746); +lean_inc(x_1749); +x_1757 = l_Lean_addMacroScope(x_1749, x_1756, x_1746); +x_1758 = lean_box(0); +x_1759 = l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__3; +lean_inc(x_1744); +x_1760 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1760, 0, x_1744); +lean_ctor_set(x_1760, 1, x_1759); +lean_ctor_set(x_1760, 2, x_1757); +lean_ctor_set(x_1760, 3, x_1758); +x_1761 = lean_array_push(x_1754, x_1760); +x_1762 = lean_mk_syntax_ident(x_424); +x_1763 = lean_array_push(x_1754, x_1762); +x_1764 = l_Lean_nullKind___closed__2; +x_1765 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1765, 0, x_1764); +lean_ctor_set(x_1765, 1, x_1763); +x_1766 = lean_array_push(x_1761, x_1765); +x_1767 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__15; +x_1768 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1768, 0, x_1767); +lean_ctor_set(x_1768, 1, x_1766); +x_1769 = l_myMacro____x40_Init_NotationExtra___hyg_5658____closed__24; +x_1770 = lean_array_push(x_1769, x_1768); +x_1771 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__13; +x_1772 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1772, 0, x_1771); +lean_ctor_set(x_1772, 1, x_1770); +x_1773 = lean_array_push(x_1754, x_1772); +x_1774 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1774, 0, x_1764); +lean_ctor_set(x_1774, 1, x_1773); +x_1775 = lean_array_push(x_1755, x_1774); +x_1776 = l_term_x5b___x5d___closed__9; +lean_inc(x_1744); +x_1777 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1777, 0, x_1744); +lean_ctor_set(x_1777, 1, x_1776); +x_1778 = lean_array_push(x_1775, x_1777); +x_1779 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__10; +x_1780 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1780, 0, x_1779); +lean_ctor_set(x_1780, 1, x_1778); +x_1781 = lean_array_push(x_1754, x_1780); +x_1782 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1782, 0, x_1764); +lean_ctor_set(x_1782, 1, x_1781); +x_1783 = l_myMacro____x40_Init_Notation___hyg_14470____closed__5; +x_1784 = lean_array_push(x_1783, x_1782); +x_1785 = l_myMacro____x40_Init_Notation___hyg_1398____closed__8; +x_1786 = lean_array_push(x_1784, x_1785); +x_1787 = lean_array_push(x_1786, x_1785); +x_1788 = lean_array_push(x_1787, x_1785); +x_1789 = lean_array_push(x_1788, x_1785); +x_1790 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__7; +x_1791 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1791, 0, x_1790); +lean_ctor_set(x_1791, 1, x_1789); +x_1792 = lean_array_push(x_1754, x_1791); +x_1793 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__20; +lean_inc(x_1744); +x_1794 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1794, 0, x_1744); +lean_ctor_set(x_1794, 1, x_1793); +x_1795 = lean_array_push(x_1754, x_1794); +x_1796 = l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__8; +lean_inc(x_1746); +lean_inc(x_1749); +x_1797 = l_Lean_addMacroScope(x_1749, x_1796, x_1746); +x_1798 = l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__7; +lean_inc(x_1744); +x_1799 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1799, 0, x_1744); +lean_ctor_set(x_1799, 1, x_1798); +lean_ctor_set(x_1799, 2, x_1797); +lean_ctor_set(x_1799, 3, x_1758); +x_1800 = lean_array_push(x_1754, x_1799); +x_1801 = lean_array_push(x_1800, x_1785); +x_1802 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__23; +x_1803 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1803, 0, x_1802); +lean_ctor_set(x_1803, 1, x_1801); +x_1804 = lean_array_push(x_1795, x_1803); +x_1805 = l_myMacro____x40_Init_Notation___hyg_15387____closed__9; +lean_inc(x_1744); +x_1806 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1806, 0, x_1744); +lean_ctor_set(x_1806, 1, x_1805); +x_1807 = lean_array_push(x_1754, x_1806); +x_1808 = l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__13; +lean_inc(x_1746); +lean_inc(x_1749); +x_1809 = l_Lean_addMacroScope(x_1749, x_1808, x_1746); +x_1810 = l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__11; +x_1811 = l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__15; +lean_inc(x_1744); +x_1812 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1812, 0, x_1744); +lean_ctor_set(x_1812, 1, x_1810); +lean_ctor_set(x_1812, 2, x_1809); +lean_ctor_set(x_1812, 3, x_1811); +x_1813 = lean_array_push(x_1807, x_1812); +x_1814 = l_Lean_expandExplicitBindersAux_loop___closed__4; +x_1815 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1815, 0, x_1814); +lean_ctor_set(x_1815, 1, x_1813); +x_1816 = lean_array_push(x_1754, x_1815); +x_1817 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1817, 0, x_1764); +lean_ctor_set(x_1817, 1, x_1816); +x_1818 = lean_array_push(x_1783, x_1817); +x_1819 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__25; +x_1820 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1820, 0, x_1819); +lean_ctor_set(x_1820, 1, x_1818); +x_1821 = lean_array_push(x_1804, x_1820); +x_1822 = l_myMacro____x40_Init_Notation___hyg_15956____closed__11; +lean_inc(x_1744); +x_1823 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1823, 0, x_1744); +lean_ctor_set(x_1823, 1, x_1822); +x_1824 = lean_array_push(x_1754, x_1823); +x_1825 = l_myMacro____x40_Init_Notation___hyg_13868____closed__9; +lean_inc(x_1744); +x_1826 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1826, 0, x_1744); +lean_ctor_set(x_1826, 1, x_1825); +x_1827 = lean_array_push(x_1754, x_1826); +x_1828 = l_myMacro____x40_Init_Notation___hyg_14470____closed__11; +lean_inc(x_1744); +x_1829 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1829, 0, x_1744); +lean_ctor_set(x_1829, 1, x_1828); +x_1830 = lean_array_push(x_1754, x_1829); +x_1831 = l_Lean_Parser_Term_dynamicQuot___elambda__1___closed__11; +lean_inc(x_1744); +x_1832 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1832, 0, x_1744); +lean_ctor_set(x_1832, 1, x_1831); +x_1833 = lean_array_push(x_1754, x_1832); +lean_inc(x_1833); +x_1834 = lean_array_push(x_1833, x_1435); +x_1835 = l_prec_x28___x29___closed__7; +lean_inc(x_1744); +x_1836 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1836, 0, x_1744); +lean_ctor_set(x_1836, 1, x_1835); +lean_inc(x_1836); +x_1837 = lean_array_push(x_1834, x_1836); +x_1838 = l_Lean_Parser_Term_quot___elambda__1___closed__1; +x_1839 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1839, 0, x_1838); +lean_ctor_set(x_1839, 1, x_1837); +x_1840 = lean_array_push(x_1754, x_1839); +x_1841 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1841, 0, x_1764); +lean_ctor_set(x_1841, 1, x_1840); +lean_inc(x_1830); +x_1842 = lean_array_push(x_1830, x_1841); +x_1843 = l_myMacro____x40_Init_Notation___hyg_13868____closed__13; +lean_inc(x_1744); +x_1844 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1844, 0, x_1744); +lean_ctor_set(x_1844, 1, x_1843); +lean_inc(x_1844); +x_1845 = lean_array_push(x_1842, x_1844); +x_1846 = lean_array_push(x_1833, x_1); +lean_inc(x_1836); +x_1847 = lean_array_push(x_1846, x_1836); +x_1848 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1848, 0, x_1838); +lean_ctor_set(x_1848, 1, x_1847); +x_1849 = lean_array_push(x_1845, x_1848); +x_1850 = l_myMacro____x40_Init_Notation___hyg_14470____closed__10; +x_1851 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1851, 0, x_1850); +lean_ctor_set(x_1851, 1, x_1849); +x_1852 = lean_array_push(x_1754, x_1851); +x_1853 = l_myMacro____x40_Init_Notation___hyg_14470____closed__14; +lean_inc(x_1744); +x_1854 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1854, 0, x_1744); +lean_ctor_set(x_1854, 1, x_1853); +x_1855 = lean_array_push(x_1754, x_1854); +x_1856 = l_myMacro____x40_Init_Notation___hyg_14470____closed__13; +x_1857 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1857, 0, x_1856); +lean_ctor_set(x_1857, 1, x_1855); +x_1858 = lean_array_push(x_1754, x_1857); +x_1859 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1859, 0, x_1764); +lean_ctor_set(x_1859, 1, x_1858); +x_1860 = lean_array_push(x_1830, x_1859); +x_1861 = lean_array_push(x_1860, x_1844); +x_1862 = l_Lean_Elab_Command_elabMacroRulesAux___closed__13; +x_1863 = l_Lean_addMacroScope(x_1749, x_1862, x_1746); +x_1864 = l_Lean_Elab_Command_elabMacroRulesAux___closed__12; +x_1865 = l_Lean_Elab_Command_elabMacroRulesAux___closed__18; +lean_inc(x_1744); +x_1866 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1866, 0, x_1744); +lean_ctor_set(x_1866, 1, x_1864); +lean_ctor_set(x_1866, 2, x_1863); +lean_ctor_set(x_1866, 3, x_1865); +x_1867 = lean_array_push(x_1754, x_1866); +x_1868 = l_prec_x28___x29___closed__3; +x_1869 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1869, 0, x_1744); +lean_ctor_set(x_1869, 1, x_1868); +x_1870 = lean_array_push(x_1754, x_1869); +x_1871 = lean_array_push(x_1870, x_1785); +x_1872 = lean_array_push(x_1871, x_1836); +x_1873 = l_myMacro____x40_Init_Notation___hyg_13868____closed__8; +x_1874 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1874, 0, x_1873); +lean_ctor_set(x_1874, 1, x_1872); +x_1875 = lean_array_push(x_1754, x_1874); +x_1876 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1876, 0, x_1764); +lean_ctor_set(x_1876, 1, x_1875); +x_1877 = lean_array_push(x_1867, x_1876); +x_1878 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1878, 0, x_6); +lean_ctor_set(x_1878, 1, x_1877); +x_1879 = lean_array_push(x_1861, x_1878); +x_1880 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1880, 0, x_1850); +lean_ctor_set(x_1880, 1, x_1879); +x_1881 = lean_array_push(x_1852, x_1880); +x_1882 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1882, 0, x_1764); +lean_ctor_set(x_1882, 1, x_1881); +x_1883 = lean_array_push(x_1754, x_1882); +x_1884 = l_myMacro____x40_Init_Notation___hyg_14470____closed__8; +x_1885 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1885, 0, x_1884); +lean_ctor_set(x_1885, 1, x_1883); +x_1886 = lean_array_push(x_1827, x_1885); +x_1887 = l_myMacro____x40_Init_Notation___hyg_13868____closed__10; +x_1888 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1888, 0, x_1887); +lean_ctor_set(x_1888, 1, x_1886); +x_1889 = lean_array_push(x_1824, x_1888); +x_1890 = lean_array_push(x_1889, x_1785); +x_1891 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__33; +x_1892 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1892, 0, x_1891); +lean_ctor_set(x_1892, 1, x_1890); +x_1893 = lean_array_push(x_1821, x_1892); +x_1894 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__21; +x_1895 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1895, 0, x_1894); +lean_ctor_set(x_1895, 1, x_1893); +x_1896 = lean_array_push(x_1792, x_1895); +x_1897 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__5; +x_1898 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1898, 0, x_1897); +lean_ctor_set(x_1898, 1, x_1896); +x_1899 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_1899, 0, x_1898); +if (lean_is_scalar(x_1751)) { + x_1900 = lean_alloc_ctor(0, 2, 0); +} else { + x_1900 = x_1751; +} +lean_ctor_set(x_1900, 0, x_1899); +lean_ctor_set(x_1900, 1, x_1750); +return x_1900; +} +} +} +} +else +{ +lean_object* x_1931; +lean_dec(x_424); +lean_dec(x_407); +lean_dec(x_1); +x_1931 = lean_box(0); +lean_ctor_set(x_409, 0, x_1931); +return x_409; +} +} +} +} +else +{ +lean_object* x_1932; lean_object* x_1933; lean_object* x_1934; uint8_t x_1935; +x_1932 = lean_ctor_get(x_409, 1); +lean_inc(x_1932); +lean_dec(x_409); +x_1933 = lean_ctor_get(x_418, 0); +lean_inc(x_1933); +lean_dec(x_418); +x_1934 = lean_array_get_size(x_407); +x_1935 = lean_nat_dec_lt(x_399, x_1934); +if (x_1935 == 0) +{ +uint8_t x_1936; +lean_dec(x_1934); +x_1936 = l___private_Init_Data_Array_Basic_0__Array_allDiffAux___at_Lean_Elab_Command_mkSimpleDelab___spec__3(x_407, x_399); +if (x_1936 == 0) +{ +lean_object* x_1937; lean_object* x_1938; +lean_dec(x_1933); +lean_dec(x_407); +lean_dec(x_1); +x_1937 = lean_box(0); +x_1938 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1938, 0, x_1937); +lean_ctor_set(x_1938, 1, x_1932); +return x_1938; +} +else +{ +lean_object* x_1939; lean_object* x_1940; lean_object* x_2104; lean_object* x_2105; lean_object* x_2106; lean_object* x_2107; lean_object* x_2108; lean_object* x_2109; lean_object* x_2110; lean_object* x_2111; lean_object* x_2112; lean_object* x_2113; lean_object* x_2114; lean_object* x_2115; lean_object* x_2116; lean_object* x_2117; lean_object* x_2118; lean_object* x_2119; +x_2104 = l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_Elab_Command_mkSimpleDelab___spec__2(x_3, x_4, x_1932); +x_2105 = lean_ctor_get(x_2104, 0); +lean_inc(x_2105); +if (lean_is_exclusive(x_2105)) { + lean_ctor_release(x_2105, 0); + x_2106 = x_2105; +} else { + lean_dec_ref(x_2105); + x_2106 = lean_box(0); +} +x_2107 = lean_ctor_get(x_2104, 1); +lean_inc(x_2107); +lean_dec(x_2104); +x_2108 = l_Lean_Elab_Command_getCurrMacroScope(x_3, x_4, x_2107); +x_2109 = lean_ctor_get(x_2108, 1); +lean_inc(x_2109); +lean_dec(x_2108); +x_2110 = l_Lean_Elab_Command_getMainModule___rarg(x_4, x_2109); +x_2111 = lean_ctor_get(x_2110, 1); +lean_inc(x_2111); +lean_dec(x_2110); +x_2112 = l_Array_empty___closed__1; +x_2113 = l_Array_appendCore___rarg(x_2112, x_407); +lean_dec(x_407); +x_2114 = l_Lean_nullKind___closed__2; +x_2115 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2115, 0, x_2114); +lean_ctor_set(x_2115, 1, x_2113); +x_2116 = l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__20; +x_2117 = lean_array_push(x_2116, x_2115); +x_2118 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2118, 0, x_6); +lean_ctor_set(x_2118, 1, x_2117); +if (lean_is_scalar(x_2106)) { + x_2119 = lean_alloc_ctor(1, 1, 0); +} else { + x_2119 = x_2106; +} +lean_ctor_set(x_2119, 0, x_2118); +x_1939 = x_2119; +x_1940 = x_2111; +goto block_2103; +block_2103: +{ +lean_object* x_1941; lean_object* x_1942; lean_object* x_1943; lean_object* x_1944; lean_object* x_1945; lean_object* x_1946; lean_object* x_1947; lean_object* x_1948; lean_object* x_1949; lean_object* x_1950; lean_object* x_1951; lean_object* x_1952; lean_object* x_1953; lean_object* x_1954; lean_object* x_1955; lean_object* x_1956; lean_object* x_1957; lean_object* x_1958; lean_object* x_1959; lean_object* x_1960; lean_object* x_1961; lean_object* x_1962; lean_object* x_1963; lean_object* x_1964; lean_object* x_1965; lean_object* x_1966; lean_object* x_1967; lean_object* x_1968; lean_object* x_1969; lean_object* x_1970; lean_object* x_1971; lean_object* x_1972; lean_object* x_1973; lean_object* x_1974; lean_object* x_1975; lean_object* x_1976; lean_object* x_1977; lean_object* x_1978; lean_object* x_1979; lean_object* x_1980; lean_object* x_1981; lean_object* x_1982; lean_object* x_1983; lean_object* x_1984; lean_object* x_1985; lean_object* x_1986; lean_object* x_1987; lean_object* x_1988; lean_object* x_1989; lean_object* x_1990; lean_object* x_1991; lean_object* x_1992; lean_object* x_1993; lean_object* x_1994; lean_object* x_1995; lean_object* x_1996; lean_object* x_1997; lean_object* x_1998; lean_object* x_1999; lean_object* x_2000; lean_object* x_2001; lean_object* x_2002; lean_object* x_2003; lean_object* x_2004; lean_object* x_2005; lean_object* x_2006; lean_object* x_2007; lean_object* x_2008; lean_object* x_2009; lean_object* x_2010; lean_object* x_2011; lean_object* x_2012; lean_object* x_2013; lean_object* x_2014; lean_object* x_2015; lean_object* x_2016; lean_object* x_2017; lean_object* x_2018; lean_object* x_2019; lean_object* x_2020; lean_object* x_2021; lean_object* x_2022; lean_object* x_2023; lean_object* x_2024; lean_object* x_2025; lean_object* x_2026; lean_object* x_2027; lean_object* x_2028; lean_object* x_2029; lean_object* x_2030; lean_object* x_2031; lean_object* x_2032; lean_object* x_2033; lean_object* x_2034; lean_object* x_2035; lean_object* x_2036; lean_object* x_2037; lean_object* x_2038; lean_object* x_2039; lean_object* x_2040; lean_object* x_2041; lean_object* x_2042; lean_object* x_2043; lean_object* x_2044; lean_object* x_2045; lean_object* x_2046; lean_object* x_2047; lean_object* x_2048; lean_object* x_2049; lean_object* x_2050; lean_object* x_2051; lean_object* x_2052; lean_object* x_2053; lean_object* x_2054; lean_object* x_2055; lean_object* x_2056; lean_object* x_2057; lean_object* x_2058; lean_object* x_2059; lean_object* x_2060; lean_object* x_2061; lean_object* x_2062; lean_object* x_2063; lean_object* x_2064; lean_object* x_2065; lean_object* x_2066; lean_object* x_2067; lean_object* x_2068; lean_object* x_2069; lean_object* x_2070; lean_object* x_2071; lean_object* x_2072; lean_object* x_2073; lean_object* x_2074; lean_object* x_2075; lean_object* x_2076; lean_object* x_2077; lean_object* x_2078; lean_object* x_2079; lean_object* x_2080; lean_object* x_2081; lean_object* x_2082; lean_object* x_2083; lean_object* x_2084; lean_object* x_2085; lean_object* x_2086; lean_object* x_2087; lean_object* x_2088; lean_object* x_2089; lean_object* x_2090; lean_object* x_2091; lean_object* x_2092; lean_object* x_2093; lean_object* x_2094; lean_object* x_2095; lean_object* x_2096; lean_object* x_2097; lean_object* x_2098; lean_object* x_2099; lean_object* x_2100; lean_object* x_2101; lean_object* x_2102; +x_1941 = lean_ctor_get(x_1939, 0); +lean_inc(x_1941); +lean_dec(x_1939); +x_1942 = l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_Elab_Command_mkSimpleDelab___spec__2(x_3, x_4, x_1940); +x_1943 = lean_ctor_get(x_1942, 0); +lean_inc(x_1943); +x_1944 = lean_ctor_get(x_1942, 1); +lean_inc(x_1944); +lean_dec(x_1942); +x_1945 = lean_ctor_get(x_1943, 0); +lean_inc(x_1945); +if (lean_is_exclusive(x_1943)) { + lean_ctor_release(x_1943, 0); + x_1946 = x_1943; +} else { + lean_dec_ref(x_1943); + x_1946 = lean_box(0); +} +x_1947 = l_Lean_Elab_Command_getCurrMacroScope(x_3, x_4, x_1944); +x_1948 = lean_ctor_get(x_1947, 0); +lean_inc(x_1948); +x_1949 = lean_ctor_get(x_1947, 1); +lean_inc(x_1949); +lean_dec(x_1947); +x_1950 = l_Lean_Elab_Command_getMainModule___rarg(x_4, x_1949); +x_1951 = lean_ctor_get(x_1950, 0); +lean_inc(x_1951); +x_1952 = lean_ctor_get(x_1950, 1); +lean_inc(x_1952); +if (lean_is_exclusive(x_1950)) { + lean_ctor_release(x_1950, 0); + lean_ctor_release(x_1950, 1); + x_1953 = x_1950; +} else { + lean_dec_ref(x_1950); + x_1953 = lean_box(0); +} +x_1954 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__11; +lean_inc(x_1945); +x_1955 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1955, 0, x_1945); +lean_ctor_set(x_1955, 1, x_1954); +x_1956 = l_Array_empty___closed__1; +x_1957 = lean_array_push(x_1956, x_1955); +x_1958 = l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__4; +lean_inc(x_1948); +lean_inc(x_1951); +x_1959 = l_Lean_addMacroScope(x_1951, x_1958, x_1948); +x_1960 = lean_box(0); +x_1961 = l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__3; +lean_inc(x_1945); +x_1962 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1962, 0, x_1945); +lean_ctor_set(x_1962, 1, x_1961); +lean_ctor_set(x_1962, 2, x_1959); +lean_ctor_set(x_1962, 3, x_1960); +x_1963 = lean_array_push(x_1956, x_1962); +x_1964 = lean_mk_syntax_ident(x_1933); +x_1965 = lean_array_push(x_1956, x_1964); +x_1966 = l_Lean_nullKind___closed__2; +x_1967 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1967, 0, x_1966); +lean_ctor_set(x_1967, 1, x_1965); +x_1968 = lean_array_push(x_1963, x_1967); +x_1969 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__15; +x_1970 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1970, 0, x_1969); +lean_ctor_set(x_1970, 1, x_1968); +x_1971 = l_myMacro____x40_Init_NotationExtra___hyg_5658____closed__24; +x_1972 = lean_array_push(x_1971, x_1970); +x_1973 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__13; +x_1974 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1974, 0, x_1973); +lean_ctor_set(x_1974, 1, x_1972); +x_1975 = lean_array_push(x_1956, x_1974); +x_1976 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1976, 0, x_1966); +lean_ctor_set(x_1976, 1, x_1975); +x_1977 = lean_array_push(x_1957, x_1976); +x_1978 = l_term_x5b___x5d___closed__9; +lean_inc(x_1945); +x_1979 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1979, 0, x_1945); +lean_ctor_set(x_1979, 1, x_1978); +x_1980 = lean_array_push(x_1977, x_1979); +x_1981 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__10; +x_1982 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1982, 0, x_1981); +lean_ctor_set(x_1982, 1, x_1980); +x_1983 = lean_array_push(x_1956, x_1982); +x_1984 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1984, 0, x_1966); +lean_ctor_set(x_1984, 1, x_1983); +x_1985 = l_myMacro____x40_Init_Notation___hyg_14470____closed__5; +x_1986 = lean_array_push(x_1985, x_1984); +x_1987 = l_myMacro____x40_Init_Notation___hyg_1398____closed__8; +x_1988 = lean_array_push(x_1986, x_1987); +x_1989 = lean_array_push(x_1988, x_1987); +x_1990 = lean_array_push(x_1989, x_1987); +x_1991 = lean_array_push(x_1990, x_1987); +x_1992 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__7; +x_1993 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1993, 0, x_1992); +lean_ctor_set(x_1993, 1, x_1991); +x_1994 = lean_array_push(x_1956, x_1993); +x_1995 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__20; +lean_inc(x_1945); +x_1996 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1996, 0, x_1945); +lean_ctor_set(x_1996, 1, x_1995); +x_1997 = lean_array_push(x_1956, x_1996); +x_1998 = l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__8; +lean_inc(x_1948); +lean_inc(x_1951); +x_1999 = l_Lean_addMacroScope(x_1951, x_1998, x_1948); +x_2000 = l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__7; +lean_inc(x_1945); +x_2001 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_2001, 0, x_1945); +lean_ctor_set(x_2001, 1, x_2000); +lean_ctor_set(x_2001, 2, x_1999); +lean_ctor_set(x_2001, 3, x_1960); +x_2002 = lean_array_push(x_1956, x_2001); +x_2003 = lean_array_push(x_2002, x_1987); +x_2004 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__23; +x_2005 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2005, 0, x_2004); +lean_ctor_set(x_2005, 1, x_2003); +x_2006 = lean_array_push(x_1997, x_2005); +x_2007 = l_myMacro____x40_Init_Notation___hyg_15387____closed__9; +lean_inc(x_1945); +x_2008 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_2008, 0, x_1945); +lean_ctor_set(x_2008, 1, x_2007); +x_2009 = lean_array_push(x_1956, x_2008); +x_2010 = l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__13; +lean_inc(x_1948); +lean_inc(x_1951); +x_2011 = l_Lean_addMacroScope(x_1951, x_2010, x_1948); +x_2012 = l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__11; +x_2013 = l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__15; +lean_inc(x_1945); +x_2014 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_2014, 0, x_1945); +lean_ctor_set(x_2014, 1, x_2012); +lean_ctor_set(x_2014, 2, x_2011); +lean_ctor_set(x_2014, 3, x_2013); +x_2015 = lean_array_push(x_2009, x_2014); +x_2016 = l_Lean_expandExplicitBindersAux_loop___closed__4; +x_2017 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2017, 0, x_2016); +lean_ctor_set(x_2017, 1, x_2015); +x_2018 = lean_array_push(x_1956, x_2017); +x_2019 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2019, 0, x_1966); +lean_ctor_set(x_2019, 1, x_2018); +x_2020 = lean_array_push(x_1985, x_2019); +x_2021 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__25; +x_2022 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2022, 0, x_2021); +lean_ctor_set(x_2022, 1, x_2020); +x_2023 = lean_array_push(x_2006, x_2022); +x_2024 = l_myMacro____x40_Init_Notation___hyg_15956____closed__11; +lean_inc(x_1945); +x_2025 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_2025, 0, x_1945); +lean_ctor_set(x_2025, 1, x_2024); +x_2026 = lean_array_push(x_1956, x_2025); +x_2027 = l_myMacro____x40_Init_Notation___hyg_13868____closed__9; +lean_inc(x_1945); +x_2028 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_2028, 0, x_1945); +lean_ctor_set(x_2028, 1, x_2027); +x_2029 = lean_array_push(x_1956, x_2028); +x_2030 = l_myMacro____x40_Init_Notation___hyg_14470____closed__11; +lean_inc(x_1945); +x_2031 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_2031, 0, x_1945); +lean_ctor_set(x_2031, 1, x_2030); +x_2032 = lean_array_push(x_1956, x_2031); +x_2033 = l_Lean_Parser_Term_dynamicQuot___elambda__1___closed__11; +lean_inc(x_1945); +x_2034 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_2034, 0, x_1945); +lean_ctor_set(x_2034, 1, x_2033); +x_2035 = lean_array_push(x_1956, x_2034); +lean_inc(x_2035); +x_2036 = lean_array_push(x_2035, x_1941); +x_2037 = l_prec_x28___x29___closed__7; +lean_inc(x_1945); +x_2038 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_2038, 0, x_1945); +lean_ctor_set(x_2038, 1, x_2037); +lean_inc(x_2038); +x_2039 = lean_array_push(x_2036, x_2038); +x_2040 = l_Lean_Parser_Term_quot___elambda__1___closed__1; +x_2041 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2041, 0, x_2040); +lean_ctor_set(x_2041, 1, x_2039); +x_2042 = lean_array_push(x_1956, x_2041); +x_2043 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2043, 0, x_1966); +lean_ctor_set(x_2043, 1, x_2042); +lean_inc(x_2032); +x_2044 = lean_array_push(x_2032, x_2043); +x_2045 = l_myMacro____x40_Init_Notation___hyg_13868____closed__13; +lean_inc(x_1945); +x_2046 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_2046, 0, x_1945); +lean_ctor_set(x_2046, 1, x_2045); +lean_inc(x_2046); +x_2047 = lean_array_push(x_2044, x_2046); +x_2048 = lean_array_push(x_2035, x_1); +lean_inc(x_2038); +x_2049 = lean_array_push(x_2048, x_2038); +x_2050 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2050, 0, x_2040); +lean_ctor_set(x_2050, 1, x_2049); +x_2051 = lean_array_push(x_2047, x_2050); +x_2052 = l_myMacro____x40_Init_Notation___hyg_14470____closed__10; +x_2053 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2053, 0, x_2052); +lean_ctor_set(x_2053, 1, x_2051); +x_2054 = lean_array_push(x_1956, x_2053); +x_2055 = l_myMacro____x40_Init_Notation___hyg_14470____closed__14; +lean_inc(x_1945); +x_2056 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_2056, 0, x_1945); +lean_ctor_set(x_2056, 1, x_2055); +x_2057 = lean_array_push(x_1956, x_2056); +x_2058 = l_myMacro____x40_Init_Notation___hyg_14470____closed__13; +x_2059 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2059, 0, x_2058); +lean_ctor_set(x_2059, 1, x_2057); +x_2060 = lean_array_push(x_1956, x_2059); +x_2061 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2061, 0, x_1966); +lean_ctor_set(x_2061, 1, x_2060); +x_2062 = lean_array_push(x_2032, x_2061); +x_2063 = lean_array_push(x_2062, x_2046); +x_2064 = l_Lean_Elab_Command_elabMacroRulesAux___closed__13; +x_2065 = l_Lean_addMacroScope(x_1951, x_2064, x_1948); +x_2066 = l_Lean_Elab_Command_elabMacroRulesAux___closed__12; +x_2067 = l_Lean_Elab_Command_elabMacroRulesAux___closed__18; +lean_inc(x_1945); +x_2068 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_2068, 0, x_1945); +lean_ctor_set(x_2068, 1, x_2066); +lean_ctor_set(x_2068, 2, x_2065); +lean_ctor_set(x_2068, 3, x_2067); +x_2069 = lean_array_push(x_1956, x_2068); +x_2070 = l_prec_x28___x29___closed__3; +x_2071 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_2071, 0, x_1945); +lean_ctor_set(x_2071, 1, x_2070); +x_2072 = lean_array_push(x_1956, x_2071); +x_2073 = lean_array_push(x_2072, x_1987); +x_2074 = lean_array_push(x_2073, x_2038); +x_2075 = l_myMacro____x40_Init_Notation___hyg_13868____closed__8; +x_2076 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2076, 0, x_2075); +lean_ctor_set(x_2076, 1, x_2074); +x_2077 = lean_array_push(x_1956, x_2076); +x_2078 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2078, 0, x_1966); +lean_ctor_set(x_2078, 1, x_2077); +x_2079 = lean_array_push(x_2069, x_2078); +x_2080 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2080, 0, x_6); +lean_ctor_set(x_2080, 1, x_2079); +x_2081 = lean_array_push(x_2063, x_2080); +x_2082 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2082, 0, x_2052); +lean_ctor_set(x_2082, 1, x_2081); +x_2083 = lean_array_push(x_2054, x_2082); +x_2084 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2084, 0, x_1966); +lean_ctor_set(x_2084, 1, x_2083); +x_2085 = lean_array_push(x_1956, x_2084); +x_2086 = l_myMacro____x40_Init_Notation___hyg_14470____closed__8; +x_2087 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2087, 0, x_2086); +lean_ctor_set(x_2087, 1, x_2085); +x_2088 = lean_array_push(x_2029, x_2087); +x_2089 = l_myMacro____x40_Init_Notation___hyg_13868____closed__10; +x_2090 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2090, 0, x_2089); +lean_ctor_set(x_2090, 1, x_2088); +x_2091 = lean_array_push(x_2026, x_2090); +x_2092 = lean_array_push(x_2091, x_1987); +x_2093 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__33; +x_2094 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2094, 0, x_2093); +lean_ctor_set(x_2094, 1, x_2092); +x_2095 = lean_array_push(x_2023, x_2094); +x_2096 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__21; +x_2097 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2097, 0, x_2096); +lean_ctor_set(x_2097, 1, x_2095); +x_2098 = lean_array_push(x_1994, x_2097); +x_2099 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__5; +x_2100 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2100, 0, x_2099); +lean_ctor_set(x_2100, 1, x_2098); +if (lean_is_scalar(x_1946)) { + x_2101 = lean_alloc_ctor(1, 1, 0); +} else { + x_2101 = x_1946; +} +lean_ctor_set(x_2101, 0, x_2100); +if (lean_is_scalar(x_1953)) { + x_2102 = lean_alloc_ctor(0, 2, 0); +} else { + x_2102 = x_1953; +} +lean_ctor_set(x_2102, 0, x_2101); +lean_ctor_set(x_2102, 1, x_1952); +return x_2102; +} +} +} +else +{ +uint8_t x_2120; +x_2120 = lean_nat_dec_le(x_1934, x_1934); +if (x_2120 == 0) +{ +uint8_t x_2121; +lean_dec(x_1934); +x_2121 = l___private_Init_Data_Array_Basic_0__Array_allDiffAux___at_Lean_Elab_Command_mkSimpleDelab___spec__3(x_407, x_399); +if (x_2121 == 0) +{ +lean_object* x_2122; lean_object* x_2123; +lean_dec(x_1933); +lean_dec(x_407); +lean_dec(x_1); +x_2122 = lean_box(0); +x_2123 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_2123, 0, x_2122); +lean_ctor_set(x_2123, 1, x_1932); +return x_2123; +} +else +{ +lean_object* x_2124; lean_object* x_2125; lean_object* x_2289; lean_object* x_2290; lean_object* x_2291; lean_object* x_2292; lean_object* x_2293; lean_object* x_2294; lean_object* x_2295; lean_object* x_2296; lean_object* x_2297; lean_object* x_2298; lean_object* x_2299; lean_object* x_2300; lean_object* x_2301; lean_object* x_2302; lean_object* x_2303; lean_object* x_2304; +x_2289 = l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_Elab_Command_mkSimpleDelab___spec__2(x_3, x_4, x_1932); +x_2290 = lean_ctor_get(x_2289, 0); +lean_inc(x_2290); +if (lean_is_exclusive(x_2290)) { + lean_ctor_release(x_2290, 0); + x_2291 = x_2290; +} else { + lean_dec_ref(x_2290); + x_2291 = lean_box(0); +} +x_2292 = lean_ctor_get(x_2289, 1); +lean_inc(x_2292); +lean_dec(x_2289); +x_2293 = l_Lean_Elab_Command_getCurrMacroScope(x_3, x_4, x_2292); +x_2294 = lean_ctor_get(x_2293, 1); +lean_inc(x_2294); +lean_dec(x_2293); +x_2295 = l_Lean_Elab_Command_getMainModule___rarg(x_4, x_2294); +x_2296 = lean_ctor_get(x_2295, 1); +lean_inc(x_2296); +lean_dec(x_2295); +x_2297 = l_Array_empty___closed__1; +x_2298 = l_Array_appendCore___rarg(x_2297, x_407); +lean_dec(x_407); +x_2299 = l_Lean_nullKind___closed__2; +x_2300 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2300, 0, x_2299); +lean_ctor_set(x_2300, 1, x_2298); +x_2301 = l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__20; +x_2302 = lean_array_push(x_2301, x_2300); +x_2303 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2303, 0, x_6); +lean_ctor_set(x_2303, 1, x_2302); +if (lean_is_scalar(x_2291)) { + x_2304 = lean_alloc_ctor(1, 1, 0); +} else { + x_2304 = x_2291; +} +lean_ctor_set(x_2304, 0, x_2303); +x_2124 = x_2304; +x_2125 = x_2296; +goto block_2288; +block_2288: +{ +lean_object* x_2126; lean_object* x_2127; lean_object* x_2128; lean_object* x_2129; lean_object* x_2130; lean_object* x_2131; lean_object* x_2132; lean_object* x_2133; lean_object* x_2134; lean_object* x_2135; lean_object* x_2136; lean_object* x_2137; lean_object* x_2138; lean_object* x_2139; lean_object* x_2140; lean_object* x_2141; lean_object* x_2142; lean_object* x_2143; lean_object* x_2144; lean_object* x_2145; lean_object* x_2146; lean_object* x_2147; lean_object* x_2148; lean_object* x_2149; lean_object* x_2150; lean_object* x_2151; lean_object* x_2152; lean_object* x_2153; lean_object* x_2154; lean_object* x_2155; lean_object* x_2156; lean_object* x_2157; lean_object* x_2158; lean_object* x_2159; lean_object* x_2160; lean_object* x_2161; lean_object* x_2162; lean_object* x_2163; lean_object* x_2164; lean_object* x_2165; lean_object* x_2166; lean_object* x_2167; lean_object* x_2168; lean_object* x_2169; lean_object* x_2170; lean_object* x_2171; lean_object* x_2172; lean_object* x_2173; lean_object* x_2174; lean_object* x_2175; lean_object* x_2176; lean_object* x_2177; lean_object* x_2178; lean_object* x_2179; lean_object* x_2180; lean_object* x_2181; lean_object* x_2182; lean_object* x_2183; lean_object* x_2184; lean_object* x_2185; lean_object* x_2186; lean_object* x_2187; lean_object* x_2188; lean_object* x_2189; lean_object* x_2190; lean_object* x_2191; lean_object* x_2192; lean_object* x_2193; lean_object* x_2194; lean_object* x_2195; lean_object* x_2196; lean_object* x_2197; lean_object* x_2198; lean_object* x_2199; lean_object* x_2200; lean_object* x_2201; lean_object* x_2202; lean_object* x_2203; lean_object* x_2204; lean_object* x_2205; lean_object* x_2206; lean_object* x_2207; lean_object* x_2208; lean_object* x_2209; lean_object* x_2210; lean_object* x_2211; lean_object* x_2212; lean_object* x_2213; lean_object* x_2214; lean_object* x_2215; lean_object* x_2216; lean_object* x_2217; lean_object* x_2218; lean_object* x_2219; lean_object* x_2220; lean_object* x_2221; lean_object* x_2222; lean_object* x_2223; lean_object* x_2224; lean_object* x_2225; lean_object* x_2226; lean_object* x_2227; lean_object* x_2228; lean_object* x_2229; lean_object* x_2230; lean_object* x_2231; lean_object* x_2232; lean_object* x_2233; lean_object* x_2234; lean_object* x_2235; lean_object* x_2236; lean_object* x_2237; lean_object* x_2238; lean_object* x_2239; lean_object* x_2240; lean_object* x_2241; lean_object* x_2242; lean_object* x_2243; lean_object* x_2244; lean_object* x_2245; lean_object* x_2246; lean_object* x_2247; lean_object* x_2248; lean_object* x_2249; lean_object* x_2250; lean_object* x_2251; lean_object* x_2252; lean_object* x_2253; lean_object* x_2254; lean_object* x_2255; lean_object* x_2256; lean_object* x_2257; lean_object* x_2258; lean_object* x_2259; lean_object* x_2260; lean_object* x_2261; lean_object* x_2262; lean_object* x_2263; lean_object* x_2264; lean_object* x_2265; lean_object* x_2266; lean_object* x_2267; lean_object* x_2268; lean_object* x_2269; lean_object* x_2270; lean_object* x_2271; lean_object* x_2272; lean_object* x_2273; lean_object* x_2274; lean_object* x_2275; lean_object* x_2276; lean_object* x_2277; lean_object* x_2278; lean_object* x_2279; lean_object* x_2280; lean_object* x_2281; lean_object* x_2282; lean_object* x_2283; lean_object* x_2284; lean_object* x_2285; lean_object* x_2286; lean_object* x_2287; +x_2126 = lean_ctor_get(x_2124, 0); +lean_inc(x_2126); +lean_dec(x_2124); +x_2127 = l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_Elab_Command_mkSimpleDelab___spec__2(x_3, x_4, x_2125); +x_2128 = lean_ctor_get(x_2127, 0); +lean_inc(x_2128); +x_2129 = lean_ctor_get(x_2127, 1); +lean_inc(x_2129); +lean_dec(x_2127); +x_2130 = lean_ctor_get(x_2128, 0); +lean_inc(x_2130); +if (lean_is_exclusive(x_2128)) { + lean_ctor_release(x_2128, 0); + x_2131 = x_2128; +} else { + lean_dec_ref(x_2128); + x_2131 = lean_box(0); +} +x_2132 = l_Lean_Elab_Command_getCurrMacroScope(x_3, x_4, x_2129); +x_2133 = lean_ctor_get(x_2132, 0); +lean_inc(x_2133); +x_2134 = lean_ctor_get(x_2132, 1); +lean_inc(x_2134); +lean_dec(x_2132); +x_2135 = l_Lean_Elab_Command_getMainModule___rarg(x_4, x_2134); +x_2136 = lean_ctor_get(x_2135, 0); +lean_inc(x_2136); +x_2137 = lean_ctor_get(x_2135, 1); +lean_inc(x_2137); +if (lean_is_exclusive(x_2135)) { + lean_ctor_release(x_2135, 0); + lean_ctor_release(x_2135, 1); + x_2138 = x_2135; +} else { + lean_dec_ref(x_2135); + x_2138 = lean_box(0); +} +x_2139 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__11; +lean_inc(x_2130); +x_2140 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_2140, 0, x_2130); +lean_ctor_set(x_2140, 1, x_2139); +x_2141 = l_Array_empty___closed__1; +x_2142 = lean_array_push(x_2141, x_2140); +x_2143 = l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__4; +lean_inc(x_2133); +lean_inc(x_2136); +x_2144 = l_Lean_addMacroScope(x_2136, x_2143, x_2133); +x_2145 = lean_box(0); +x_2146 = l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__3; +lean_inc(x_2130); +x_2147 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_2147, 0, x_2130); +lean_ctor_set(x_2147, 1, x_2146); +lean_ctor_set(x_2147, 2, x_2144); +lean_ctor_set(x_2147, 3, x_2145); +x_2148 = lean_array_push(x_2141, x_2147); +x_2149 = lean_mk_syntax_ident(x_1933); +x_2150 = lean_array_push(x_2141, x_2149); +x_2151 = l_Lean_nullKind___closed__2; +x_2152 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2152, 0, x_2151); +lean_ctor_set(x_2152, 1, x_2150); +x_2153 = lean_array_push(x_2148, x_2152); +x_2154 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__15; +x_2155 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2155, 0, x_2154); +lean_ctor_set(x_2155, 1, x_2153); +x_2156 = l_myMacro____x40_Init_NotationExtra___hyg_5658____closed__24; +x_2157 = lean_array_push(x_2156, x_2155); +x_2158 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__13; +x_2159 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2159, 0, x_2158); +lean_ctor_set(x_2159, 1, x_2157); +x_2160 = lean_array_push(x_2141, x_2159); +x_2161 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2161, 0, x_2151); +lean_ctor_set(x_2161, 1, x_2160); +x_2162 = lean_array_push(x_2142, x_2161); +x_2163 = l_term_x5b___x5d___closed__9; +lean_inc(x_2130); +x_2164 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_2164, 0, x_2130); +lean_ctor_set(x_2164, 1, x_2163); +x_2165 = lean_array_push(x_2162, x_2164); +x_2166 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__10; +x_2167 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2167, 0, x_2166); +lean_ctor_set(x_2167, 1, x_2165); +x_2168 = lean_array_push(x_2141, x_2167); +x_2169 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2169, 0, x_2151); +lean_ctor_set(x_2169, 1, x_2168); +x_2170 = l_myMacro____x40_Init_Notation___hyg_14470____closed__5; +x_2171 = lean_array_push(x_2170, x_2169); +x_2172 = l_myMacro____x40_Init_Notation___hyg_1398____closed__8; +x_2173 = lean_array_push(x_2171, x_2172); +x_2174 = lean_array_push(x_2173, x_2172); +x_2175 = lean_array_push(x_2174, x_2172); +x_2176 = lean_array_push(x_2175, x_2172); +x_2177 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__7; +x_2178 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2178, 0, x_2177); +lean_ctor_set(x_2178, 1, x_2176); +x_2179 = lean_array_push(x_2141, x_2178); +x_2180 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__20; +lean_inc(x_2130); +x_2181 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_2181, 0, x_2130); +lean_ctor_set(x_2181, 1, x_2180); +x_2182 = lean_array_push(x_2141, x_2181); +x_2183 = l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__8; +lean_inc(x_2133); +lean_inc(x_2136); +x_2184 = l_Lean_addMacroScope(x_2136, x_2183, x_2133); +x_2185 = l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__7; +lean_inc(x_2130); +x_2186 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_2186, 0, x_2130); +lean_ctor_set(x_2186, 1, x_2185); +lean_ctor_set(x_2186, 2, x_2184); +lean_ctor_set(x_2186, 3, x_2145); +x_2187 = lean_array_push(x_2141, x_2186); +x_2188 = lean_array_push(x_2187, x_2172); +x_2189 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__23; +x_2190 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2190, 0, x_2189); +lean_ctor_set(x_2190, 1, x_2188); +x_2191 = lean_array_push(x_2182, x_2190); +x_2192 = l_myMacro____x40_Init_Notation___hyg_15387____closed__9; +lean_inc(x_2130); +x_2193 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_2193, 0, x_2130); +lean_ctor_set(x_2193, 1, x_2192); +x_2194 = lean_array_push(x_2141, x_2193); +x_2195 = l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__13; +lean_inc(x_2133); +lean_inc(x_2136); +x_2196 = l_Lean_addMacroScope(x_2136, x_2195, x_2133); +x_2197 = l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__11; +x_2198 = l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__15; +lean_inc(x_2130); +x_2199 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_2199, 0, x_2130); +lean_ctor_set(x_2199, 1, x_2197); +lean_ctor_set(x_2199, 2, x_2196); +lean_ctor_set(x_2199, 3, x_2198); +x_2200 = lean_array_push(x_2194, x_2199); +x_2201 = l_Lean_expandExplicitBindersAux_loop___closed__4; +x_2202 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2202, 0, x_2201); +lean_ctor_set(x_2202, 1, x_2200); +x_2203 = lean_array_push(x_2141, x_2202); +x_2204 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2204, 0, x_2151); +lean_ctor_set(x_2204, 1, x_2203); +x_2205 = lean_array_push(x_2170, x_2204); +x_2206 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__25; +x_2207 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2207, 0, x_2206); +lean_ctor_set(x_2207, 1, x_2205); +x_2208 = lean_array_push(x_2191, x_2207); +x_2209 = l_myMacro____x40_Init_Notation___hyg_15956____closed__11; +lean_inc(x_2130); +x_2210 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_2210, 0, x_2130); +lean_ctor_set(x_2210, 1, x_2209); +x_2211 = lean_array_push(x_2141, x_2210); +x_2212 = l_myMacro____x40_Init_Notation___hyg_13868____closed__9; +lean_inc(x_2130); +x_2213 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_2213, 0, x_2130); +lean_ctor_set(x_2213, 1, x_2212); +x_2214 = lean_array_push(x_2141, x_2213); +x_2215 = l_myMacro____x40_Init_Notation___hyg_14470____closed__11; +lean_inc(x_2130); +x_2216 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_2216, 0, x_2130); +lean_ctor_set(x_2216, 1, x_2215); +x_2217 = lean_array_push(x_2141, x_2216); +x_2218 = l_Lean_Parser_Term_dynamicQuot___elambda__1___closed__11; +lean_inc(x_2130); +x_2219 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_2219, 0, x_2130); +lean_ctor_set(x_2219, 1, x_2218); +x_2220 = lean_array_push(x_2141, x_2219); +lean_inc(x_2220); +x_2221 = lean_array_push(x_2220, x_2126); +x_2222 = l_prec_x28___x29___closed__7; +lean_inc(x_2130); +x_2223 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_2223, 0, x_2130); +lean_ctor_set(x_2223, 1, x_2222); +lean_inc(x_2223); +x_2224 = lean_array_push(x_2221, x_2223); +x_2225 = l_Lean_Parser_Term_quot___elambda__1___closed__1; +x_2226 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2226, 0, x_2225); +lean_ctor_set(x_2226, 1, x_2224); +x_2227 = lean_array_push(x_2141, x_2226); +x_2228 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2228, 0, x_2151); +lean_ctor_set(x_2228, 1, x_2227); +lean_inc(x_2217); +x_2229 = lean_array_push(x_2217, x_2228); +x_2230 = l_myMacro____x40_Init_Notation___hyg_13868____closed__13; +lean_inc(x_2130); +x_2231 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_2231, 0, x_2130); +lean_ctor_set(x_2231, 1, x_2230); +lean_inc(x_2231); +x_2232 = lean_array_push(x_2229, x_2231); +x_2233 = lean_array_push(x_2220, x_1); +lean_inc(x_2223); +x_2234 = lean_array_push(x_2233, x_2223); +x_2235 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2235, 0, x_2225); +lean_ctor_set(x_2235, 1, x_2234); +x_2236 = lean_array_push(x_2232, x_2235); +x_2237 = l_myMacro____x40_Init_Notation___hyg_14470____closed__10; +x_2238 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2238, 0, x_2237); +lean_ctor_set(x_2238, 1, x_2236); +x_2239 = lean_array_push(x_2141, x_2238); +x_2240 = l_myMacro____x40_Init_Notation___hyg_14470____closed__14; +lean_inc(x_2130); +x_2241 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_2241, 0, x_2130); +lean_ctor_set(x_2241, 1, x_2240); +x_2242 = lean_array_push(x_2141, x_2241); +x_2243 = l_myMacro____x40_Init_Notation___hyg_14470____closed__13; +x_2244 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2244, 0, x_2243); +lean_ctor_set(x_2244, 1, x_2242); +x_2245 = lean_array_push(x_2141, x_2244); +x_2246 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2246, 0, x_2151); +lean_ctor_set(x_2246, 1, x_2245); +x_2247 = lean_array_push(x_2217, x_2246); +x_2248 = lean_array_push(x_2247, x_2231); +x_2249 = l_Lean_Elab_Command_elabMacroRulesAux___closed__13; +x_2250 = l_Lean_addMacroScope(x_2136, x_2249, x_2133); +x_2251 = l_Lean_Elab_Command_elabMacroRulesAux___closed__12; +x_2252 = l_Lean_Elab_Command_elabMacroRulesAux___closed__18; +lean_inc(x_2130); +x_2253 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_2253, 0, x_2130); +lean_ctor_set(x_2253, 1, x_2251); +lean_ctor_set(x_2253, 2, x_2250); +lean_ctor_set(x_2253, 3, x_2252); +x_2254 = lean_array_push(x_2141, x_2253); +x_2255 = l_prec_x28___x29___closed__3; +x_2256 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_2256, 0, x_2130); +lean_ctor_set(x_2256, 1, x_2255); +x_2257 = lean_array_push(x_2141, x_2256); +x_2258 = lean_array_push(x_2257, x_2172); +x_2259 = lean_array_push(x_2258, x_2223); +x_2260 = l_myMacro____x40_Init_Notation___hyg_13868____closed__8; +x_2261 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2261, 0, x_2260); +lean_ctor_set(x_2261, 1, x_2259); +x_2262 = lean_array_push(x_2141, x_2261); +x_2263 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2263, 0, x_2151); +lean_ctor_set(x_2263, 1, x_2262); +x_2264 = lean_array_push(x_2254, x_2263); +x_2265 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2265, 0, x_6); +lean_ctor_set(x_2265, 1, x_2264); +x_2266 = lean_array_push(x_2248, x_2265); +x_2267 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2267, 0, x_2237); +lean_ctor_set(x_2267, 1, x_2266); +x_2268 = lean_array_push(x_2239, x_2267); +x_2269 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2269, 0, x_2151); +lean_ctor_set(x_2269, 1, x_2268); +x_2270 = lean_array_push(x_2141, x_2269); +x_2271 = l_myMacro____x40_Init_Notation___hyg_14470____closed__8; +x_2272 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2272, 0, x_2271); +lean_ctor_set(x_2272, 1, x_2270); +x_2273 = lean_array_push(x_2214, x_2272); +x_2274 = l_myMacro____x40_Init_Notation___hyg_13868____closed__10; +x_2275 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2275, 0, x_2274); +lean_ctor_set(x_2275, 1, x_2273); +x_2276 = lean_array_push(x_2211, x_2275); +x_2277 = lean_array_push(x_2276, x_2172); +x_2278 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__33; +x_2279 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2279, 0, x_2278); +lean_ctor_set(x_2279, 1, x_2277); +x_2280 = lean_array_push(x_2208, x_2279); +x_2281 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__21; +x_2282 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2282, 0, x_2281); +lean_ctor_set(x_2282, 1, x_2280); +x_2283 = lean_array_push(x_2179, x_2282); +x_2284 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__5; +x_2285 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2285, 0, x_2284); +lean_ctor_set(x_2285, 1, x_2283); +if (lean_is_scalar(x_2131)) { + x_2286 = lean_alloc_ctor(1, 1, 0); +} else { + x_2286 = x_2131; +} +lean_ctor_set(x_2286, 0, x_2285); +if (lean_is_scalar(x_2138)) { + x_2287 = lean_alloc_ctor(0, 2, 0); +} else { + x_2287 = x_2138; +} +lean_ctor_set(x_2287, 0, x_2286); +lean_ctor_set(x_2287, 1, x_2137); +return x_2287; +} +} +} +else +{ +size_t x_2305; size_t x_2306; uint8_t x_2307; +x_2305 = 0; +x_2306 = lean_usize_of_nat(x_1934); +lean_dec(x_1934); +x_2307 = l_Array_anyMUnsafe_any___at_Lean_Elab_Command_mkSimpleDelab___spec__5(x_407, x_2305, x_2306); +if (x_2307 == 0) +{ +uint8_t x_2308; +x_2308 = l___private_Init_Data_Array_Basic_0__Array_allDiffAux___at_Lean_Elab_Command_mkSimpleDelab___spec__3(x_407, x_399); +if (x_2308 == 0) +{ +lean_object* x_2309; lean_object* x_2310; +lean_dec(x_1933); +lean_dec(x_407); +lean_dec(x_1); +x_2309 = lean_box(0); +x_2310 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_2310, 0, x_2309); +lean_ctor_set(x_2310, 1, x_1932); +return x_2310; +} +else +{ +lean_object* x_2311; lean_object* x_2312; lean_object* x_2476; lean_object* x_2477; lean_object* x_2478; lean_object* x_2479; lean_object* x_2480; lean_object* x_2481; lean_object* x_2482; lean_object* x_2483; lean_object* x_2484; lean_object* x_2485; lean_object* x_2486; lean_object* x_2487; lean_object* x_2488; lean_object* x_2489; lean_object* x_2490; lean_object* x_2491; +x_2476 = l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_Elab_Command_mkSimpleDelab___spec__2(x_3, x_4, x_1932); +x_2477 = lean_ctor_get(x_2476, 0); +lean_inc(x_2477); +if (lean_is_exclusive(x_2477)) { + lean_ctor_release(x_2477, 0); + x_2478 = x_2477; +} else { + lean_dec_ref(x_2477); + x_2478 = lean_box(0); +} +x_2479 = lean_ctor_get(x_2476, 1); +lean_inc(x_2479); +lean_dec(x_2476); +x_2480 = l_Lean_Elab_Command_getCurrMacroScope(x_3, x_4, x_2479); +x_2481 = lean_ctor_get(x_2480, 1); +lean_inc(x_2481); +lean_dec(x_2480); +x_2482 = l_Lean_Elab_Command_getMainModule___rarg(x_4, x_2481); +x_2483 = lean_ctor_get(x_2482, 1); +lean_inc(x_2483); +lean_dec(x_2482); +x_2484 = l_Array_empty___closed__1; +x_2485 = l_Array_appendCore___rarg(x_2484, x_407); +lean_dec(x_407); +x_2486 = l_Lean_nullKind___closed__2; +x_2487 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2487, 0, x_2486); +lean_ctor_set(x_2487, 1, x_2485); +x_2488 = l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__20; +x_2489 = lean_array_push(x_2488, x_2487); +x_2490 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2490, 0, x_6); +lean_ctor_set(x_2490, 1, x_2489); +if (lean_is_scalar(x_2478)) { + x_2491 = lean_alloc_ctor(1, 1, 0); +} else { + x_2491 = x_2478; +} +lean_ctor_set(x_2491, 0, x_2490); +x_2311 = x_2491; +x_2312 = x_2483; +goto block_2475; +block_2475: +{ +lean_object* x_2313; lean_object* x_2314; lean_object* x_2315; lean_object* x_2316; lean_object* x_2317; lean_object* x_2318; lean_object* x_2319; lean_object* x_2320; lean_object* x_2321; lean_object* x_2322; lean_object* x_2323; lean_object* x_2324; lean_object* x_2325; lean_object* x_2326; lean_object* x_2327; lean_object* x_2328; lean_object* x_2329; lean_object* x_2330; lean_object* x_2331; lean_object* x_2332; lean_object* x_2333; lean_object* x_2334; lean_object* x_2335; lean_object* x_2336; lean_object* x_2337; lean_object* x_2338; lean_object* x_2339; lean_object* x_2340; lean_object* x_2341; lean_object* x_2342; lean_object* x_2343; lean_object* x_2344; lean_object* x_2345; lean_object* x_2346; lean_object* x_2347; lean_object* x_2348; lean_object* x_2349; lean_object* x_2350; lean_object* x_2351; lean_object* x_2352; lean_object* x_2353; lean_object* x_2354; lean_object* x_2355; lean_object* x_2356; lean_object* x_2357; lean_object* x_2358; lean_object* x_2359; lean_object* x_2360; lean_object* x_2361; lean_object* x_2362; lean_object* x_2363; lean_object* x_2364; lean_object* x_2365; lean_object* x_2366; lean_object* x_2367; lean_object* x_2368; lean_object* x_2369; lean_object* x_2370; lean_object* x_2371; lean_object* x_2372; lean_object* x_2373; lean_object* x_2374; lean_object* x_2375; lean_object* x_2376; lean_object* x_2377; lean_object* x_2378; lean_object* x_2379; lean_object* x_2380; lean_object* x_2381; lean_object* x_2382; lean_object* x_2383; lean_object* x_2384; lean_object* x_2385; lean_object* x_2386; lean_object* x_2387; lean_object* x_2388; lean_object* x_2389; lean_object* x_2390; lean_object* x_2391; lean_object* x_2392; lean_object* x_2393; lean_object* x_2394; lean_object* x_2395; lean_object* x_2396; lean_object* x_2397; lean_object* x_2398; lean_object* x_2399; lean_object* x_2400; lean_object* x_2401; lean_object* x_2402; lean_object* x_2403; lean_object* x_2404; lean_object* x_2405; lean_object* x_2406; lean_object* x_2407; lean_object* x_2408; lean_object* x_2409; lean_object* x_2410; lean_object* x_2411; lean_object* x_2412; lean_object* x_2413; lean_object* x_2414; lean_object* x_2415; lean_object* x_2416; lean_object* x_2417; lean_object* x_2418; lean_object* x_2419; lean_object* x_2420; lean_object* x_2421; lean_object* x_2422; lean_object* x_2423; lean_object* x_2424; lean_object* x_2425; lean_object* x_2426; lean_object* x_2427; lean_object* x_2428; lean_object* x_2429; lean_object* x_2430; lean_object* x_2431; lean_object* x_2432; lean_object* x_2433; lean_object* x_2434; lean_object* x_2435; lean_object* x_2436; lean_object* x_2437; lean_object* x_2438; lean_object* x_2439; lean_object* x_2440; lean_object* x_2441; lean_object* x_2442; lean_object* x_2443; lean_object* x_2444; lean_object* x_2445; lean_object* x_2446; lean_object* x_2447; lean_object* x_2448; lean_object* x_2449; lean_object* x_2450; lean_object* x_2451; lean_object* x_2452; lean_object* x_2453; lean_object* x_2454; lean_object* x_2455; lean_object* x_2456; lean_object* x_2457; lean_object* x_2458; lean_object* x_2459; lean_object* x_2460; lean_object* x_2461; lean_object* x_2462; lean_object* x_2463; lean_object* x_2464; lean_object* x_2465; lean_object* x_2466; lean_object* x_2467; lean_object* x_2468; lean_object* x_2469; lean_object* x_2470; lean_object* x_2471; lean_object* x_2472; lean_object* x_2473; lean_object* x_2474; +x_2313 = lean_ctor_get(x_2311, 0); +lean_inc(x_2313); +lean_dec(x_2311); +x_2314 = l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_Elab_Command_mkSimpleDelab___spec__2(x_3, x_4, x_2312); +x_2315 = lean_ctor_get(x_2314, 0); +lean_inc(x_2315); +x_2316 = lean_ctor_get(x_2314, 1); +lean_inc(x_2316); +lean_dec(x_2314); +x_2317 = lean_ctor_get(x_2315, 0); +lean_inc(x_2317); +if (lean_is_exclusive(x_2315)) { + lean_ctor_release(x_2315, 0); + x_2318 = x_2315; +} else { + lean_dec_ref(x_2315); + x_2318 = lean_box(0); +} +x_2319 = l_Lean_Elab_Command_getCurrMacroScope(x_3, x_4, x_2316); +x_2320 = lean_ctor_get(x_2319, 0); +lean_inc(x_2320); +x_2321 = lean_ctor_get(x_2319, 1); +lean_inc(x_2321); +lean_dec(x_2319); +x_2322 = l_Lean_Elab_Command_getMainModule___rarg(x_4, x_2321); +x_2323 = lean_ctor_get(x_2322, 0); +lean_inc(x_2323); +x_2324 = lean_ctor_get(x_2322, 1); +lean_inc(x_2324); +if (lean_is_exclusive(x_2322)) { + lean_ctor_release(x_2322, 0); + lean_ctor_release(x_2322, 1); + x_2325 = x_2322; +} else { + lean_dec_ref(x_2322); + x_2325 = lean_box(0); +} +x_2326 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__11; +lean_inc(x_2317); +x_2327 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_2327, 0, x_2317); +lean_ctor_set(x_2327, 1, x_2326); +x_2328 = l_Array_empty___closed__1; +x_2329 = lean_array_push(x_2328, x_2327); +x_2330 = l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__4; +lean_inc(x_2320); +lean_inc(x_2323); +x_2331 = l_Lean_addMacroScope(x_2323, x_2330, x_2320); +x_2332 = lean_box(0); +x_2333 = l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__3; +lean_inc(x_2317); +x_2334 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_2334, 0, x_2317); +lean_ctor_set(x_2334, 1, x_2333); +lean_ctor_set(x_2334, 2, x_2331); +lean_ctor_set(x_2334, 3, x_2332); +x_2335 = lean_array_push(x_2328, x_2334); +x_2336 = lean_mk_syntax_ident(x_1933); +x_2337 = lean_array_push(x_2328, x_2336); +x_2338 = l_Lean_nullKind___closed__2; +x_2339 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2339, 0, x_2338); +lean_ctor_set(x_2339, 1, x_2337); +x_2340 = lean_array_push(x_2335, x_2339); +x_2341 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__15; +x_2342 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2342, 0, x_2341); +lean_ctor_set(x_2342, 1, x_2340); +x_2343 = l_myMacro____x40_Init_NotationExtra___hyg_5658____closed__24; +x_2344 = lean_array_push(x_2343, x_2342); +x_2345 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__13; +x_2346 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2346, 0, x_2345); +lean_ctor_set(x_2346, 1, x_2344); +x_2347 = lean_array_push(x_2328, x_2346); +x_2348 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2348, 0, x_2338); +lean_ctor_set(x_2348, 1, x_2347); +x_2349 = lean_array_push(x_2329, x_2348); +x_2350 = l_term_x5b___x5d___closed__9; +lean_inc(x_2317); +x_2351 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_2351, 0, x_2317); +lean_ctor_set(x_2351, 1, x_2350); +x_2352 = lean_array_push(x_2349, x_2351); +x_2353 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__10; +x_2354 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2354, 0, x_2353); +lean_ctor_set(x_2354, 1, x_2352); +x_2355 = lean_array_push(x_2328, x_2354); +x_2356 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2356, 0, x_2338); +lean_ctor_set(x_2356, 1, x_2355); +x_2357 = l_myMacro____x40_Init_Notation___hyg_14470____closed__5; +x_2358 = lean_array_push(x_2357, x_2356); +x_2359 = l_myMacro____x40_Init_Notation___hyg_1398____closed__8; +x_2360 = lean_array_push(x_2358, x_2359); +x_2361 = lean_array_push(x_2360, x_2359); +x_2362 = lean_array_push(x_2361, x_2359); +x_2363 = lean_array_push(x_2362, x_2359); +x_2364 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__7; +x_2365 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2365, 0, x_2364); +lean_ctor_set(x_2365, 1, x_2363); +x_2366 = lean_array_push(x_2328, x_2365); +x_2367 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__20; +lean_inc(x_2317); +x_2368 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_2368, 0, x_2317); +lean_ctor_set(x_2368, 1, x_2367); +x_2369 = lean_array_push(x_2328, x_2368); +x_2370 = l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__8; +lean_inc(x_2320); +lean_inc(x_2323); +x_2371 = l_Lean_addMacroScope(x_2323, x_2370, x_2320); +x_2372 = l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__7; +lean_inc(x_2317); +x_2373 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_2373, 0, x_2317); +lean_ctor_set(x_2373, 1, x_2372); +lean_ctor_set(x_2373, 2, x_2371); +lean_ctor_set(x_2373, 3, x_2332); +x_2374 = lean_array_push(x_2328, x_2373); +x_2375 = lean_array_push(x_2374, x_2359); +x_2376 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__23; +x_2377 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2377, 0, x_2376); +lean_ctor_set(x_2377, 1, x_2375); +x_2378 = lean_array_push(x_2369, x_2377); +x_2379 = l_myMacro____x40_Init_Notation___hyg_15387____closed__9; +lean_inc(x_2317); +x_2380 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_2380, 0, x_2317); +lean_ctor_set(x_2380, 1, x_2379); +x_2381 = lean_array_push(x_2328, x_2380); +x_2382 = l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__13; +lean_inc(x_2320); +lean_inc(x_2323); +x_2383 = l_Lean_addMacroScope(x_2323, x_2382, x_2320); +x_2384 = l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__11; +x_2385 = l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__15; +lean_inc(x_2317); +x_2386 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_2386, 0, x_2317); +lean_ctor_set(x_2386, 1, x_2384); +lean_ctor_set(x_2386, 2, x_2383); +lean_ctor_set(x_2386, 3, x_2385); +x_2387 = lean_array_push(x_2381, x_2386); +x_2388 = l_Lean_expandExplicitBindersAux_loop___closed__4; +x_2389 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2389, 0, x_2388); +lean_ctor_set(x_2389, 1, x_2387); +x_2390 = lean_array_push(x_2328, x_2389); +x_2391 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2391, 0, x_2338); +lean_ctor_set(x_2391, 1, x_2390); +x_2392 = lean_array_push(x_2357, x_2391); +x_2393 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__25; +x_2394 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2394, 0, x_2393); +lean_ctor_set(x_2394, 1, x_2392); +x_2395 = lean_array_push(x_2378, x_2394); +x_2396 = l_myMacro____x40_Init_Notation___hyg_15956____closed__11; +lean_inc(x_2317); +x_2397 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_2397, 0, x_2317); +lean_ctor_set(x_2397, 1, x_2396); +x_2398 = lean_array_push(x_2328, x_2397); +x_2399 = l_myMacro____x40_Init_Notation___hyg_13868____closed__9; +lean_inc(x_2317); +x_2400 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_2400, 0, x_2317); +lean_ctor_set(x_2400, 1, x_2399); +x_2401 = lean_array_push(x_2328, x_2400); +x_2402 = l_myMacro____x40_Init_Notation___hyg_14470____closed__11; +lean_inc(x_2317); +x_2403 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_2403, 0, x_2317); +lean_ctor_set(x_2403, 1, x_2402); +x_2404 = lean_array_push(x_2328, x_2403); +x_2405 = l_Lean_Parser_Term_dynamicQuot___elambda__1___closed__11; +lean_inc(x_2317); +x_2406 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_2406, 0, x_2317); +lean_ctor_set(x_2406, 1, x_2405); +x_2407 = lean_array_push(x_2328, x_2406); +lean_inc(x_2407); +x_2408 = lean_array_push(x_2407, x_2313); +x_2409 = l_prec_x28___x29___closed__7; +lean_inc(x_2317); +x_2410 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_2410, 0, x_2317); +lean_ctor_set(x_2410, 1, x_2409); +lean_inc(x_2410); +x_2411 = lean_array_push(x_2408, x_2410); +x_2412 = l_Lean_Parser_Term_quot___elambda__1___closed__1; +x_2413 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2413, 0, x_2412); +lean_ctor_set(x_2413, 1, x_2411); +x_2414 = lean_array_push(x_2328, x_2413); +x_2415 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2415, 0, x_2338); +lean_ctor_set(x_2415, 1, x_2414); +lean_inc(x_2404); +x_2416 = lean_array_push(x_2404, x_2415); +x_2417 = l_myMacro____x40_Init_Notation___hyg_13868____closed__13; +lean_inc(x_2317); +x_2418 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_2418, 0, x_2317); +lean_ctor_set(x_2418, 1, x_2417); +lean_inc(x_2418); +x_2419 = lean_array_push(x_2416, x_2418); +x_2420 = lean_array_push(x_2407, x_1); +lean_inc(x_2410); +x_2421 = lean_array_push(x_2420, x_2410); +x_2422 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2422, 0, x_2412); +lean_ctor_set(x_2422, 1, x_2421); +x_2423 = lean_array_push(x_2419, x_2422); +x_2424 = l_myMacro____x40_Init_Notation___hyg_14470____closed__10; +x_2425 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2425, 0, x_2424); +lean_ctor_set(x_2425, 1, x_2423); +x_2426 = lean_array_push(x_2328, x_2425); +x_2427 = l_myMacro____x40_Init_Notation___hyg_14470____closed__14; +lean_inc(x_2317); +x_2428 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_2428, 0, x_2317); +lean_ctor_set(x_2428, 1, x_2427); +x_2429 = lean_array_push(x_2328, x_2428); +x_2430 = l_myMacro____x40_Init_Notation___hyg_14470____closed__13; +x_2431 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2431, 0, x_2430); +lean_ctor_set(x_2431, 1, x_2429); +x_2432 = lean_array_push(x_2328, x_2431); +x_2433 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2433, 0, x_2338); +lean_ctor_set(x_2433, 1, x_2432); +x_2434 = lean_array_push(x_2404, x_2433); +x_2435 = lean_array_push(x_2434, x_2418); +x_2436 = l_Lean_Elab_Command_elabMacroRulesAux___closed__13; +x_2437 = l_Lean_addMacroScope(x_2323, x_2436, x_2320); +x_2438 = l_Lean_Elab_Command_elabMacroRulesAux___closed__12; +x_2439 = l_Lean_Elab_Command_elabMacroRulesAux___closed__18; +lean_inc(x_2317); +x_2440 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_2440, 0, x_2317); +lean_ctor_set(x_2440, 1, x_2438); +lean_ctor_set(x_2440, 2, x_2437); +lean_ctor_set(x_2440, 3, x_2439); +x_2441 = lean_array_push(x_2328, x_2440); +x_2442 = l_prec_x28___x29___closed__3; +x_2443 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_2443, 0, x_2317); +lean_ctor_set(x_2443, 1, x_2442); +x_2444 = lean_array_push(x_2328, x_2443); +x_2445 = lean_array_push(x_2444, x_2359); +x_2446 = lean_array_push(x_2445, x_2410); +x_2447 = l_myMacro____x40_Init_Notation___hyg_13868____closed__8; +x_2448 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2448, 0, x_2447); +lean_ctor_set(x_2448, 1, x_2446); +x_2449 = lean_array_push(x_2328, x_2448); +x_2450 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2450, 0, x_2338); +lean_ctor_set(x_2450, 1, x_2449); +x_2451 = lean_array_push(x_2441, x_2450); +x_2452 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2452, 0, x_6); +lean_ctor_set(x_2452, 1, x_2451); +x_2453 = lean_array_push(x_2435, x_2452); +x_2454 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2454, 0, x_2424); +lean_ctor_set(x_2454, 1, x_2453); +x_2455 = lean_array_push(x_2426, x_2454); +x_2456 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2456, 0, x_2338); +lean_ctor_set(x_2456, 1, x_2455); +x_2457 = lean_array_push(x_2328, x_2456); +x_2458 = l_myMacro____x40_Init_Notation___hyg_14470____closed__8; +x_2459 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2459, 0, x_2458); +lean_ctor_set(x_2459, 1, x_2457); +x_2460 = lean_array_push(x_2401, x_2459); +x_2461 = l_myMacro____x40_Init_Notation___hyg_13868____closed__10; +x_2462 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2462, 0, x_2461); +lean_ctor_set(x_2462, 1, x_2460); +x_2463 = lean_array_push(x_2398, x_2462); +x_2464 = lean_array_push(x_2463, x_2359); +x_2465 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__33; +x_2466 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2466, 0, x_2465); +lean_ctor_set(x_2466, 1, x_2464); +x_2467 = lean_array_push(x_2395, x_2466); +x_2468 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__21; +x_2469 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2469, 0, x_2468); +lean_ctor_set(x_2469, 1, x_2467); +x_2470 = lean_array_push(x_2366, x_2469); +x_2471 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__5; +x_2472 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_2472, 0, x_2471); +lean_ctor_set(x_2472, 1, x_2470); +if (lean_is_scalar(x_2318)) { + x_2473 = lean_alloc_ctor(1, 1, 0); +} else { + x_2473 = x_2318; +} +lean_ctor_set(x_2473, 0, x_2472); +if (lean_is_scalar(x_2325)) { + x_2474 = lean_alloc_ctor(0, 2, 0); +} else { + x_2474 = x_2325; +} +lean_ctor_set(x_2474, 0, x_2473); +lean_ctor_set(x_2474, 1, x_2324); +return x_2474; +} +} +} +else +{ +lean_object* x_2492; lean_object* x_2493; +lean_dec(x_1933); +lean_dec(x_407); +lean_dec(x_1); +x_2492 = lean_box(0); +x_2493 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_2493, 0, x_2492); +lean_ctor_set(x_2493, 1, x_1932); +return x_2493; +} +} +} +} +} +else +{ +uint8_t x_2494; +lean_dec(x_420); +lean_dec(x_418); +lean_dec(x_407); +lean_dec(x_1); +x_2494 = !lean_is_exclusive(x_409); +if (x_2494 == 0) +{ +lean_object* x_2495; lean_object* x_2496; +x_2495 = lean_ctor_get(x_409, 0); +lean_dec(x_2495); +x_2496 = lean_box(0); +lean_ctor_set(x_409, 0, x_2496); +return x_409; +} +else +{ +lean_object* x_2497; lean_object* x_2498; lean_object* x_2499; +x_2497 = lean_ctor_get(x_409, 1); +lean_inc(x_2497); +lean_dec(x_409); +x_2498 = lean_box(0); +x_2499 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_2499, 0, x_2498); +lean_ctor_set(x_2499, 1, x_2497); +return x_2499; +} +} +} +else +{ +uint8_t x_2500; +lean_dec(x_419); +lean_dec(x_418); +lean_dec(x_411); +lean_dec(x_407); +lean_dec(x_1); +x_2500 = !lean_is_exclusive(x_409); +if (x_2500 == 0) +{ +lean_object* x_2501; lean_object* x_2502; +x_2501 = lean_ctor_get(x_409, 0); +lean_dec(x_2501); +x_2502 = lean_box(0); +lean_ctor_set(x_409, 0, x_2502); +return x_409; +} +else +{ +lean_object* x_2503; lean_object* x_2504; lean_object* x_2505; +x_2503 = lean_ctor_get(x_409, 1); +lean_inc(x_2503); +lean_dec(x_409); +x_2504 = lean_box(0); +x_2505 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_2505, 0, x_2504); +lean_ctor_set(x_2505, 1, x_2503); +return x_2505; +} +} +} } } } @@ -27255,6 +27961,61 @@ x_2 = lean_alloc_closure((void*)(l_Lean_Elab_Command_mkSimpleDelab___rarg___boxe return x_2; } } +lean_object* l_Lean_resolveGlobalName___at_Lean_Elab_Command_mkSimpleDelab___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +lean_object* x_5; +x_5 = l_Lean_resolveGlobalName___at_Lean_Elab_Command_mkSimpleDelab___spec__1(x_1, x_2, x_3, x_4); +lean_dec(x_3); +lean_dec(x_2); +return x_5; +} +} +lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_Elab_Command_mkSimpleDelab___spec__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; +x_4 = l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_Elab_Command_mkSimpleDelab___spec__2(x_1, x_2, x_3); +lean_dec(x_2); +lean_dec(x_1); +return x_4; +} +} +lean_object* l___private_Init_Data_Array_Basic_0__Array_allDiffAuxAux___at_Lean_Elab_Command_mkSimpleDelab___spec__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +uint8_t x_5; lean_object* x_6; +x_5 = l___private_Init_Data_Array_Basic_0__Array_allDiffAuxAux___at_Lean_Elab_Command_mkSimpleDelab___spec__4(x_1, x_2, x_3, x_4); +lean_dec(x_2); +lean_dec(x_1); +x_6 = lean_box(x_5); +return x_6; +} +} +lean_object* l___private_Init_Data_Array_Basic_0__Array_allDiffAux___at_Lean_Elab_Command_mkSimpleDelab___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_Array_Basic_0__Array_allDiffAux___at_Lean_Elab_Command_mkSimpleDelab___spec__3(x_1, x_2); +lean_dec(x_1); +x_4 = lean_box(x_3); +return x_4; +} +} +lean_object* l_Array_anyMUnsafe_any___at_Lean_Elab_Command_mkSimpleDelab___spec__5___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +size_t x_4; size_t x_5; uint8_t x_6; lean_object* x_7; +x_4 = lean_unbox_usize(x_2); +lean_dec(x_2); +x_5 = lean_unbox_usize(x_3); +lean_dec(x_3); +x_6 = l_Array_anyMUnsafe_any___at_Lean_Elab_Command_mkSimpleDelab___spec__5(x_1, x_4, x_5); +lean_dec(x_1); +x_7 = lean_box(x_6); +return x_7; +} +} lean_object* l_Lean_Elab_Command_mkSimpleDelab___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { @@ -31592,7 +32353,7 @@ x_491 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_491, 0, x_490); x_492 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_492, 0, x_491); -x_493 = l_Lean_throwErrorAt___at_Lean_Elab_Command_elabCommand___spec__7(x_489, x_492, x_12, x_13, x_462); +x_493 = l_Lean_throwErrorAt___at_Lean_Elab_Command_elabCommand___spec__8(x_489, x_492, x_12, x_13, x_462); lean_dec(x_489); x_494 = !lean_is_exclusive(x_493); if (x_494 == 0) @@ -31617,7 +32378,7 @@ else { lean_object* x_498; uint8_t x_499; lean_dec(x_12); -x_498 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_elabCommand___spec__9___rarg(x_462); +x_498 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_elabCommand___spec__10___rarg(x_462); x_499 = !lean_is_exclusive(x_498); if (x_499 == 0) { @@ -33037,7 +33798,7 @@ x_151 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_151, 0, x_150); x_152 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_152, 0, x_151); -x_153 = l_Lean_throwErrorAt___at_Lean_Elab_Command_elabCommand___spec__7(x_149, x_152, x_3, x_4, x_122); +x_153 = l_Lean_throwErrorAt___at_Lean_Elab_Command_elabCommand___spec__8(x_149, x_152, x_3, x_4, x_122); lean_dec(x_149); x_154 = !lean_is_exclusive(x_153); if (x_154 == 0) @@ -33062,7 +33823,7 @@ else { lean_object* x_158; uint8_t x_159; lean_dec(x_3); -x_158 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_elabCommand___spec__9___rarg(x_122); +x_158 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_elabCommand___spec__10___rarg(x_122); x_159 = !lean_is_exclusive(x_158); if (x_159 == 0) { @@ -33470,7 +34231,7 @@ x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; } } -static lean_object* _init_l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_16723____closed__1() { +static lean_object* _init_l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_17131____closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -33480,11 +34241,11 @@ x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_16723_(lean_object* x_1) { +lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_17131_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; -x_2 = l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_16723____closed__1; +x_2 = l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_17131____closed__1; x_3 = l_Lean_registerTraceClass(x_2, x_1); return x_3; } @@ -34324,7 +35085,7 @@ x_896 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_896, 0, x_895); x_897 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_897, 0, x_896); -x_898 = l_Lean_throwErrorAt___at_Lean_Elab_Command_elabCommand___spec__7(x_894, x_897, x_15, x_16, x_867); +x_898 = l_Lean_throwErrorAt___at_Lean_Elab_Command_elabCommand___spec__8(x_894, x_897, x_15, x_16, x_867); lean_dec(x_894); x_899 = !lean_is_exclusive(x_898); if (x_899 == 0) @@ -34349,7 +35110,7 @@ else { lean_object* x_903; uint8_t x_904; lean_dec(x_15); -x_903 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_elabCommand___spec__9___rarg(x_867); +x_903 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_elabCommand___spec__10___rarg(x_867); x_904 = !lean_is_exclusive(x_903); if (x_904 == 0) { @@ -34766,7 +35527,7 @@ x_38 = l_Lean_KernelException_toMessageData___closed__3; x_39 = lean_alloc_ctor(10, 2, 0); lean_ctor_set(x_39, 0, x_37); lean_ctor_set(x_39, 1, x_38); -x_40 = l_Lean_throwError___at_Lean_Elab_Command_elabCommand___spec__8(x_39, x_15, x_16, x_27); +x_40 = l_Lean_throwError___at_Lean_Elab_Command_elabCommand___spec__9(x_39, x_15, x_16, x_27); x_41 = !lean_is_exclusive(x_40); if (x_41 == 0) { @@ -35656,7 +36417,7 @@ x_503 = l_Lean_Elab_Command_expandElab___lambda__2___closed__40; x_504 = lean_alloc_ctor(10, 2, 0); lean_ctor_set(x_504, 0, x_502); lean_ctor_set(x_504, 1, x_503); -x_505 = l_Lean_throwErrorAt___at_Lean_Elab_Command_elabCommand___spec__7(x_3, x_504, x_15, x_16, x_27); +x_505 = l_Lean_throwErrorAt___at_Lean_Elab_Command_elabCommand___spec__8(x_3, x_504, x_15, x_16, x_27); x_506 = !lean_is_exclusive(x_505); if (x_506 == 0) { @@ -36578,7 +37339,7 @@ x_155 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_155, 0, x_154); x_156 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_156, 0, x_155); -x_157 = l_Lean_throwErrorAt___at_Lean_Elab_Command_elabCommand___spec__7(x_153, x_156, x_3, x_4, x_126); +x_157 = l_Lean_throwErrorAt___at_Lean_Elab_Command_elabCommand___spec__8(x_153, x_156, x_3, x_4, x_126); lean_dec(x_153); x_158 = !lean_is_exclusive(x_157); if (x_158 == 0) @@ -36603,7 +37364,7 @@ else { lean_object* x_162; uint8_t x_163; lean_dec(x_3); -x_162 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_elabCommand___spec__9___rarg(x_126); +x_162 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_elabCommand___spec__10___rarg(x_126); x_163 = !lean_is_exclusive(x_162); if (x_163 == 0) { @@ -37449,46 +38210,46 @@ lean_mark_persistent(l___regBuiltin_Lean_Elab_Command_expandMixfix___closed__1); res = l___regBuiltin_Lean_Elab_Command_expandMixfix(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l_Lean_Elab_Command_mkSimpleDelab_go___closed__1 = _init_l_Lean_Elab_Command_mkSimpleDelab_go___closed__1(); -lean_mark_persistent(l_Lean_Elab_Command_mkSimpleDelab_go___closed__1); -l_Lean_Elab_Command_mkSimpleDelab_go___closed__2 = _init_l_Lean_Elab_Command_mkSimpleDelab_go___closed__2(); -lean_mark_persistent(l_Lean_Elab_Command_mkSimpleDelab_go___closed__2); -l_Lean_Elab_Command_mkSimpleDelab_go___closed__3 = _init_l_Lean_Elab_Command_mkSimpleDelab_go___closed__3(); -lean_mark_persistent(l_Lean_Elab_Command_mkSimpleDelab_go___closed__3); -l_Lean_Elab_Command_mkSimpleDelab_go___closed__4 = _init_l_Lean_Elab_Command_mkSimpleDelab_go___closed__4(); -lean_mark_persistent(l_Lean_Elab_Command_mkSimpleDelab_go___closed__4); -l_Lean_Elab_Command_mkSimpleDelab_go___closed__5 = _init_l_Lean_Elab_Command_mkSimpleDelab_go___closed__5(); -lean_mark_persistent(l_Lean_Elab_Command_mkSimpleDelab_go___closed__5); -l_Lean_Elab_Command_mkSimpleDelab_go___closed__6 = _init_l_Lean_Elab_Command_mkSimpleDelab_go___closed__6(); -lean_mark_persistent(l_Lean_Elab_Command_mkSimpleDelab_go___closed__6); -l_Lean_Elab_Command_mkSimpleDelab_go___closed__7 = _init_l_Lean_Elab_Command_mkSimpleDelab_go___closed__7(); -lean_mark_persistent(l_Lean_Elab_Command_mkSimpleDelab_go___closed__7); -l_Lean_Elab_Command_mkSimpleDelab_go___closed__8 = _init_l_Lean_Elab_Command_mkSimpleDelab_go___closed__8(); -lean_mark_persistent(l_Lean_Elab_Command_mkSimpleDelab_go___closed__8); -l_Lean_Elab_Command_mkSimpleDelab_go___closed__9 = _init_l_Lean_Elab_Command_mkSimpleDelab_go___closed__9(); -lean_mark_persistent(l_Lean_Elab_Command_mkSimpleDelab_go___closed__9); -l_Lean_Elab_Command_mkSimpleDelab_go___closed__10 = _init_l_Lean_Elab_Command_mkSimpleDelab_go___closed__10(); -lean_mark_persistent(l_Lean_Elab_Command_mkSimpleDelab_go___closed__10); -l_Lean_Elab_Command_mkSimpleDelab_go___closed__11 = _init_l_Lean_Elab_Command_mkSimpleDelab_go___closed__11(); -lean_mark_persistent(l_Lean_Elab_Command_mkSimpleDelab_go___closed__11); -l_Lean_Elab_Command_mkSimpleDelab_go___closed__12 = _init_l_Lean_Elab_Command_mkSimpleDelab_go___closed__12(); -lean_mark_persistent(l_Lean_Elab_Command_mkSimpleDelab_go___closed__12); -l_Lean_Elab_Command_mkSimpleDelab_go___closed__13 = _init_l_Lean_Elab_Command_mkSimpleDelab_go___closed__13(); -lean_mark_persistent(l_Lean_Elab_Command_mkSimpleDelab_go___closed__13); -l_Lean_Elab_Command_mkSimpleDelab_go___closed__14 = _init_l_Lean_Elab_Command_mkSimpleDelab_go___closed__14(); -lean_mark_persistent(l_Lean_Elab_Command_mkSimpleDelab_go___closed__14); -l_Lean_Elab_Command_mkSimpleDelab_go___closed__15 = _init_l_Lean_Elab_Command_mkSimpleDelab_go___closed__15(); -lean_mark_persistent(l_Lean_Elab_Command_mkSimpleDelab_go___closed__15); -l_Lean_Elab_Command_mkSimpleDelab_go___closed__16 = _init_l_Lean_Elab_Command_mkSimpleDelab_go___closed__16(); -lean_mark_persistent(l_Lean_Elab_Command_mkSimpleDelab_go___closed__16); -l_Lean_Elab_Command_mkSimpleDelab_go___closed__17 = _init_l_Lean_Elab_Command_mkSimpleDelab_go___closed__17(); -lean_mark_persistent(l_Lean_Elab_Command_mkSimpleDelab_go___closed__17); -l_Lean_Elab_Command_mkSimpleDelab_go___closed__18 = _init_l_Lean_Elab_Command_mkSimpleDelab_go___closed__18(); -lean_mark_persistent(l_Lean_Elab_Command_mkSimpleDelab_go___closed__18); -l_Lean_Elab_Command_mkSimpleDelab_go___closed__19 = _init_l_Lean_Elab_Command_mkSimpleDelab_go___closed__19(); -lean_mark_persistent(l_Lean_Elab_Command_mkSimpleDelab_go___closed__19); -l_Lean_Elab_Command_mkSimpleDelab_go___closed__20 = _init_l_Lean_Elab_Command_mkSimpleDelab_go___closed__20(); -lean_mark_persistent(l_Lean_Elab_Command_mkSimpleDelab_go___closed__20); +l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__1 = _init_l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__1(); +lean_mark_persistent(l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__1); +l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__2 = _init_l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__2(); +lean_mark_persistent(l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__2); +l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__3 = _init_l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__3(); +lean_mark_persistent(l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__3); +l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__4 = _init_l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__4(); +lean_mark_persistent(l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__4); +l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__5 = _init_l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__5(); +lean_mark_persistent(l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__5); +l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__6 = _init_l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__6(); +lean_mark_persistent(l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__6); +l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__7 = _init_l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__7(); +lean_mark_persistent(l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__7); +l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__8 = _init_l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__8(); +lean_mark_persistent(l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__8); +l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__9 = _init_l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__9(); +lean_mark_persistent(l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__9); +l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__10 = _init_l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__10(); +lean_mark_persistent(l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__10); +l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__11 = _init_l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__11(); +lean_mark_persistent(l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__11); +l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__12 = _init_l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__12(); +lean_mark_persistent(l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__12); +l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__13 = _init_l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__13(); +lean_mark_persistent(l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__13); +l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__14 = _init_l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__14(); +lean_mark_persistent(l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__14); +l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__15 = _init_l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__15(); +lean_mark_persistent(l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__15); +l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__16 = _init_l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__16(); +lean_mark_persistent(l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__16); +l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__17 = _init_l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__17(); +lean_mark_persistent(l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__17); +l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__18 = _init_l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__18(); +lean_mark_persistent(l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__18); +l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__19 = _init_l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__19(); +lean_mark_persistent(l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__19); +l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__20 = _init_l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__20(); +lean_mark_persistent(l_Lean_Elab_Command_mkSimpleDelab___rarg___closed__20); l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___lambda__2___closed__1 = _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___lambda__2___closed__1(); lean_mark_persistent(l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___lambda__2___closed__1); l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___lambda__2___closed__2 = _init_l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___lambda__2___closed__2(); @@ -37515,9 +38276,9 @@ lean_mark_persistent(l___regBuiltin_Lean_Elab_Command_elabMacro___closed__1); res = l___regBuiltin_Lean_Elab_Command_elabMacro(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_16723____closed__1 = _init_l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_16723____closed__1(); -lean_mark_persistent(l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_16723____closed__1); -res = l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_16723_(lean_io_mk_world()); +l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_17131____closed__1 = _init_l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_17131____closed__1(); +lean_mark_persistent(l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_17131____closed__1); +res = l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_17131_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_Lean_Elab_Command_withExpectedType___closed__1 = _init_l_Lean_Elab_Command_withExpectedType___closed__1(); diff --git a/stage0/stdlib/Lean/Elab/Tactic/Basic.c b/stage0/stdlib/Lean/Elab/Tactic/Basic.c index adcf33cba9..ce7e2501e9 100644 --- a/stage0/stdlib/Lean/Elab/Tactic/Basic.c +++ b/stage0/stdlib/Lean/Elab/Tactic/Basic.c @@ -15,17 +15,15 @@ extern "C" { #endif lean_object* l_List_reverse___rarg(lean_object*); extern lean_object* l_Lean_Name_toString___closed__1; -lean_object* l_Std_PersistentHashMap_find_x3f___at_Lean_Elab_Tactic_evalTacticAux___spec__2___boxed(lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Tactic_tacticSeqBracketed___elambda__1___closed__2; lean_object* l_Lean_activateScoped___at_Lean_Elab_Tactic_evalOpen___spec__15___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_getMainTag___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_evalAssumption___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_throwError___at_Lean_Elab_Tactic_evalTacticAux___spec__12(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); size_t l_USize_add(size_t, size_t); lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_expandTacticMacroFns_loop___spec__3___rarg(lean_object*); lean_object* l___private_Lean_Elab_Open_0__Lean_Elab_OpenDecl_addOpenDecl___at_Lean_Elab_Tactic_evalOpen___spec__8(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Std_PersistentHashMap_findAtAux___at_Lean_Elab_Tactic_evalTacticAux___spec__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Tactic_revert___closed__2; -lean_object* l_Std_HashMapImp_find_x3f___at_Lean_Elab_Tactic_evalTacticAux___spec__5(lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Tactic_elabSetOption___closed__1; lean_object* l_Lean_registerTraceClass(lean_object*, lean_object*); lean_object* lean_erase_macro_scopes(lean_object*); @@ -54,17 +52,16 @@ uint8_t l_USize_decEq(size_t, size_t); lean_object* lean_array_uget(lean_object*, size_t); lean_object* lean_io_error_to_string(lean_object*); uint8_t l_Lean_Elab_isAbortExceptionId(lean_object*); +lean_object* l_Lean_Elab_logTrace___at_Lean_Elab_Tactic_evalTacticAux___spec__8(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Tactic_evalRevert___closed__1; lean_object* l_Array_qpartition_loop___at___private_Lean_Elab_Tactic_Basic_0__Lean_Elab_Tactic_sortFVarIds___spec__2___at___private_Lean_Elab_Tactic_Basic_0__Lean_Elab_Tactic_sortFVarIds___spec__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Tactic_Basic_0__Lean_Elab_Tactic_sortFVarIds_match__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_qsort_sort___at___private_Lean_Elab_Tactic_Basic_0__Lean_Elab_Tactic_sortFVarIds___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_1090____closed__1; -lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_evalTacticAux___spec__10___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_pruneSolvedGoals(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_evalChoiceAux___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_myMacro____x40_Init_Notation___hyg_14470____closed__4; extern lean_object* l_Lean_Parser_Tactic_first___closed__2; -lean_object* l_Lean_SMap_find_x3f___at_Lean_Elab_Tactic_evalTacticAux___spec__1(lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_expandTacticMacroFns_loop___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Tactic_Basic_0__Lean_Elab_Tactic_evalTacticUsing_loop_match__1(lean_object*); lean_object* l___private_Lean_Elab_InfoTree_0__Lean_Elab_getResetInfoTrees___at_Lean_Elab_Tactic_evalTactic___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -78,8 +75,10 @@ lean_object* l_Lean_Elab_Tactic_evalContradiction___rarg___lambda__1___boxed(lea lean_object* l_Lean_SourceInfo_fromRef(lean_object*); lean_object* l_Lean_Elab_Tactic_evalClear(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_expandTacticMacroFns_loop___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_ScopedEnvExtension_getState___at_Lean_Elab_Tactic_evalTacticAux___spec__1___boxed(lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_elabSetOption(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Tactic_intro___closed__4; +extern lean_object* l_Lean_instInhabitedKeyedDeclsAttribute___closed__4; lean_object* lean_array_uset(lean_object*, size_t, lean_object*); lean_object* l_Lean_Elab_Tactic_appendGoals___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_pruneSolvedGoals___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -110,6 +109,7 @@ lean_object* l___private_Lean_Elab_Tactic_Basic_0__Lean_Elab_Tactic_findTag_x3f( lean_object* l_List_filterAuxM___at_Lean_Elab_Tactic_pruneSolvedGoals___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_elabUsingElabFns___closed__4; lean_object* l_Lean_Elab_elabSetOption_setOption___at_Lean_Elab_Tactic_elabSetOption___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Std_PersistentHashMap_findAtAux___at_Lean_Elab_Tactic_evalTacticAux___spec__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Init_Meta_0__Lean_Syntax_isNatLitAux(lean_object*, lean_object*); uint8_t l_Lean_checkTraceOption(lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Tactic_failIfSuccess___closed__2; @@ -139,7 +139,6 @@ lean_object* l___regBuiltin_Lean_Elab_Tactic_evalCase___closed__1; extern lean_object* l_instReprBool___closed__1; lean_object* l_List_forIn_loop___at_Lean_Elab_Tactic_tagUntaggedGoals___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_saveAllState(lean_object*); -lean_object* l_Lean_Elab_log___at_Lean_Elab_Tactic_evalTacticAux___spec__8___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_subst(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_OpenDecl_elabOpenDecl___at_Lean_Elab_Tactic_evalOpen___spec__1___closed__1; lean_object* l___private_Lean_Elab_Tactic_Basic_0__Lean_Elab_Tactic_getIntrosSize_match__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*); @@ -156,6 +155,7 @@ lean_object* lean_array_get_size(lean_object*); lean_object* l_Lean_Elab_Tactic_tryCatch(lean_object*); lean_object* l_Lean_Elab_logAt___at_Lean_Elab_Tactic_evalOpen___spec__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_setGoals___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_ScopedEnvExtension_getState___at_Lean_KeyedDeclsAttribute_getValues___spec__1___rarg___closed__1; lean_object* lean_string_append(lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Tactic_Basic_0__Lean_Elab_Tactic_evalTacticUsing_loop_match__2(lean_object*); lean_object* l_List_rotateLeft___rarg(lean_object*, lean_object*); @@ -164,12 +164,12 @@ extern lean_object* l_Lean_Elab_logException___rarg___lambda__1___closed__2; uint8_t l_Lean_Name_isPrefixOf(lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_getGoals___boxed(lean_object*); lean_object* l_Lean_activateScoped___at_Lean_Elab_Tactic_evalOpen___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* l_Std_PersistentHashMap_findAux___at_Lean_Elab_Tactic_evalTacticAux___spec__3___boxed(lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Tactic_evalRotateRight(lean_object*); lean_object* l_Lean_Elab_Tactic_evalDone___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Tactic_Basic_0__Lean_Elab_Tactic_sortFVarIds___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Tactic_evalTacticSeq1Indented(lean_object*); lean_object* l_Lean_MetavarContext_renameMVar(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_logTrace___at_Lean_Elab_Tactic_evalTacticAux___spec__8___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_mkTacticAttribute___closed__4; lean_object* l_Lean_Elab_Tactic_evalTacticAux_match__1___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_elabSetOption___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -189,6 +189,7 @@ extern lean_object* l_Lean_Meta_throwTacticEx___rarg___closed__2; uint8_t l___private_Lean_Message_0__Lean_beqMessageSeverity____x40_Lean_Message___hyg_99_(uint8_t, uint8_t); lean_object* l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_Elab_Tactic_evalIntro___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_evalTacticAux___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*, lean_object*); lean_object* l_Lean_Elab_Tactic_evalContradiction___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_getMainModule___rarg(lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_done___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -196,6 +197,7 @@ uint8_t l_USize_decLt(size_t, size_t); lean_object* l___regBuiltin_Lean_Elab_Tactic_evalIntroMatch___closed__1; lean_object* l_Lean_Elab_Tactic_mkTacticAttribute___closed__1; lean_object* l_Lean_Elab_Tactic_getFVarId_match__1___rarg(lean_object*, lean_object*, lean_object*); +lean_object* l_Std_AssocList_find_x3f___at_Lean_Elab_Tactic_evalTacticAux___spec__7(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_expandMatchAltsIntoMatchTactic(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_throwErrorAt___at___private_Lean_Elab_Tactic_Basic_0__Lean_Elab_Tactic_evalTacticUsing_loop___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_liftMetaMAtMain(lean_object*); @@ -214,10 +216,12 @@ lean_object* l___private_Lean_Elab_Open_0__Lean_Elab_OpenDecl_elabOpenOnly___at_ lean_object* l_Lean_Elab_Tactic_instMonadExceptExceptionTacticM___closed__2; lean_object* l___regBuiltin_Lean_Elab_Tactic_elabSetOption(lean_object*); extern lean_object* l_Lean_Parser_Tactic_clear___closed__2; +lean_object* l_Lean_SMap_find_x3f___at_Lean_Elab_Tactic_evalTacticAux___spec__2(lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_getMainGoal___closed__2; lean_object* l_Lean_Name_toStringWithSep(lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Tactic_evalRotateLeft___closed__1; lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalFirst___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_SMap_find_x3f___at_Lean_Elab_getMacros___spec__2(lean_object*, lean_object*); lean_object* l_Lean_throwError___at_Lean_Elab_Term_throwErrorIfErrors___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_qpartition_loop___at___private_Lean_Elab_Tactic_Basic_0__Lean_Elab_Tactic_sortFVarIds___spec__2___at___private_Lean_Elab_Tactic_Basic_0__Lean_Elab_Tactic_sortFVarIds___spec__8(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_withMVarContext___at_Lean_Elab_Tactic_evalClear___spec__1___at_Lean_Elab_Tactic_evalClear___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -245,6 +249,7 @@ lean_object* l___regBuiltin_Lean_Elab_Tactic_evalRotateLeft(lean_object*); lean_object* l_Lean_Elab_Tactic_TacticM_run_x27(lean_object*); lean_object* l___regBuiltin_Lean_Elab_Tactic_evalDone___closed__1; lean_object* l_Lean_ResolveName_resolveNamespace_x3f(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Std_PersistentHashMap_find_x3f___at_Lean_Elab_Tactic_evalTacticAux___spec__3(lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_17226____closed__5; lean_object* l___regBuiltin_Lean_Elab_Tactic_evalSkip___closed__1; lean_object* l_Lean_Elab_Tactic_evalContradiction___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -253,10 +258,8 @@ lean_object* l___regBuiltin_Lean_Elab_Tactic_evalClear___closed__1; lean_object* l___private_Lean_Elab_Tactic_Basic_0__Lean_Elab_Tactic_sortFVarIds___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_array_fget(lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_evalOpen___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Std_AssocList_find_x3f___at_Lean_Elab_Tactic_evalTacticAux___spec__6___boxed(lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Tactic_Basic_0__Lean_Elab_Tactic_getOptRotation___boxed(lean_object*); lean_object* l___regBuiltin_Lean_Elab_Tactic_evalOpen___closed__1; -lean_object* l_Lean_SMap_find_x3f___at_Lean_Elab_Tactic_evalTacticAux___spec__1___boxed(lean_object*, lean_object*); uint8_t lean_nat_dec_eq(lean_object*, lean_object*); lean_object* l_Lean_Meta_getMVarType(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_mkSorry(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -276,7 +279,6 @@ lean_object* l_Lean_Elab_Tactic_evalIntro___closed__3; lean_object* lean_nat_sub(lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Tactic_evalChoice(lean_object*); lean_object* l_Lean_Elab_Tactic_focus___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_SMap_find_x3f___at_Lean_Elab_getMacros___spec__1(lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_evalFirst_loop(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_choiceKind___closed__2; lean_object* lean_array_swap(lean_object*, lean_object*, lean_object*); @@ -293,6 +295,7 @@ extern lean_object* l_Lean_Parser_Tactic_traceState___closed__2; lean_object* l___private_Lean_Elab_Tactic_Basic_0__Lean_Elab_Tactic_evalTacticUsing_loop_match__3___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_TacticM_run(lean_object*); lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_getFVarIds___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_log___at_Lean_Elab_Tactic_evalTacticAux___spec__9___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Tactic_evalFailIfSuccess(lean_object*); lean_object* l_Lean_Elab_Tactic_closeUsingOrAdmit(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Tactic_evalFocus___closed__1; @@ -335,15 +338,18 @@ lean_object* l_Lean_Elab_Tactic_evalFirst(lean_object*, lean_object*, lean_objec lean_object* l_Lean_Elab_logAt___at_Lean_Elab_Tactic_evalTraceState___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_getGoals___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_throwError___at_Lean_Elab_Tactic_expandTacticMacroFns_loop___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Elab_logAt___at_Lean_Elab_Tactic_evalTacticAux___spec__9(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_evalTacticAux___spec__11___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_throwError___at_Lean_Elab_Tactic_elabSetOption___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Tactic_evalIntro___closed__1; size_t l_Lean_Name_hash(lean_object*); lean_object* l_Lean_Elab_Tactic_getMainGoal___closed__1; +lean_object* l_Std_HashMapImp_find_x3f___at_Lean_Elab_Tactic_evalTacticAux___spec__6___boxed(lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_instInhabitedSavedState; lean_object* l___private_Lean_Elab_Open_0__Lean_Elab_OpenDecl_elabOpenRenaming___at_Lean_Elab_Tactic_evalOpen___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Tactic_evalChoice___closed__1; +lean_object* l_Lean_Elab_logAt___at_Lean_Elab_Tactic_evalTacticAux___spec__10___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_tagUntaggedGoals_match__1___rarg(lean_object*, lean_object*); +lean_object* l_Lean_Elab_logAt___at_Lean_Elab_Tactic_evalTacticAux___spec__10(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Open_0__Lean_Elab_OpenDecl_elabOpenSimple___at_Lean_Elab_Tactic_evalOpen___spec__14(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Tactic_evalTacticSeq1Indented___closed__1; lean_object* l_Lean_Meta_withMVarContext___at_Lean_Elab_Tactic_evalClear___spec__1___at_Lean_Elab_Tactic_evalClear___spec__2___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*); @@ -402,7 +408,6 @@ lean_object* l_Lean_Elab_log___at_Lean_Elab_Tactic_evalOpen___spec__6(lean_objec lean_object* l_List_forIn_loop___at_Lean_Elab_Tactic_tagUntaggedGoals___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Open_0__Lean_Elab_OpenDecl_elabOpenOnly___at_Lean_Elab_Tactic_evalOpen___spec__12___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_Elab_Tactic_evalIntro___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l_Lean_instInhabitedKeyedDeclsAttribute___closed__1; lean_object* l_Lean_Elab_logAt___at_Lean_Elab_Tactic_evalOpen___spec__7(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_KernelException_toMessageData___closed__15; uint8_t l_Array_isEmpty___rarg(lean_object*); @@ -428,12 +433,13 @@ lean_object* l___private_Lean_Elab_Tactic_Basic_0__Lean_Elab_Tactic_sortFVarIds_ lean_object* l_Array_qpartition_loop___at___private_Lean_Elab_Tactic_Basic_0__Lean_Elab_Tactic_sortFVarIds___spec__2___at___private_Lean_Elab_Tactic_Basic_0__Lean_Elab_Tactic_sortFVarIds___spec__12___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_List_erase___at_Lean_Elab_Tactic_evalCase___spec__1(lean_object*, lean_object*); lean_object* l_Lean_resolveNamespace___at_Lean_Elab_Tactic_evalOpen___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Std_PersistentHashMap_findAux___at_Lean_Elab_Tactic_evalTacticAux___spec__4(lean_object*, size_t, lean_object*); extern lean_object* l_Lean_KernelException_toMessageData___closed__3; size_t lean_usize_of_nat(lean_object*); lean_object* l___regBuiltin_Lean_Elab_Tactic_evalFirst(lean_object*); lean_object* l_Lean_InternalExceptionId_getName(lean_object*, lean_object*); +lean_object* l_Lean_SMap_find_x3f___at_Lean_Elab_Tactic_evalTacticAux___spec__2___boxed(lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_tacticElabAttribute; -lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_evalTacticAux___spec__10(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_saveAllState___boxed(lean_object*); lean_object* l_Lean_addMacroScope(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_expandTacticMacroFns_loop_match__1(lean_object*); @@ -488,13 +494,12 @@ lean_object* l_Lean_Syntax_getSepArgs(lean_object*); lean_object* l_Lean_Elab_Tactic_evalFailIfSuccess___closed__1; lean_object* l_Lean_Elab_Tactic_evalRotateRight___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Tactic_evalRotateRight___closed__1; -lean_object* l_Std_PersistentHashMap_find_x3f___at_Lean_Elab_Tactic_evalTacticAux___spec__2(lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_liftMetaTacticAux_match__1___rarg(lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Tactic_Basic_0__Lean_Elab_Tactic_sortFVarIds_match__1(lean_object*); -lean_object* l_Std_PersistentHashMap_findAtAux___at_Lean_Elab_Tactic_evalTacticAux___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_getNumArgs(lean_object*); lean_object* l_Lean_throwError___at_Lean_Elab_Tactic_getMainGoal___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_evalParen(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Std_PersistentHashMap_findAtAux___at_Lean_Elab_Tactic_evalTacticAux___spec__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Elab_macroAttribute; lean_object* l_Lean_Elab_Tactic_liftMetaTactic(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Tactic_evalFocus(lean_object*); @@ -502,7 +507,9 @@ lean_object* l___private_Lean_Elab_Tactic_Basic_0__Lean_Elab_Tactic_sortFVarIds_ lean_object* lean_environment_main_module(lean_object*); lean_object* l___regBuiltin_Lean_Elab_Tactic_evalTraceState___closed__1; lean_object* l___private_Lean_Elab_InfoTree_0__Lean_Elab_getResetInfoTrees___at_Lean_Elab_Tactic_evalTactic___spec__1(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_log___at_Lean_Elab_Tactic_evalTacticAux___spec__9(lean_object*, uint8_t, 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_15387____closed__10; +lean_object* l_Lean_throwError___at_Lean_Elab_Tactic_evalTacticAux___spec__12___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_nat_dec_le(lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_ensureHasNoMVars___closed__2; lean_object* l_List_rotateRight___rarg(lean_object*, lean_object*); @@ -510,7 +517,6 @@ lean_object* l_Lean_Elab_Tactic_liftMetaTactic___lambda__1___boxed(lean_object*, lean_object* l_Lean_Elab_Tactic_evalTacticSeqBracketed___closed__1; lean_object* l___private_Lean_Elab_Open_0__Lean_Elab_OpenDecl_elabOpenHiding___at_Lean_Elab_Tactic_evalOpen___spec__10___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_evalIntro___closed__4; -lean_object* l_Lean_Elab_logTrace___at_Lean_Elab_Tactic_evalTacticAux___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* l_Lean_Elab_Tactic_evalFirst___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_getArgs(lean_object*); lean_object* l_Lean_Name_append(lean_object*, lean_object*); @@ -528,9 +534,11 @@ lean_object* l_Lean_Elab_Tactic_evalAssumption(lean_object*); lean_object* l_Lean_Elab_Tactic_saveBacktrackableState___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_evalIntro_introStep___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_evalCase___closed__2; +lean_object* lean_panic_fn(lean_object*, lean_object*); extern lean_object* l_Lean_Elab_Term_instInhabitedSavedState___closed__1; lean_object* l_Lean_Elab_Tactic_setGoals(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Tactic_contradiction___closed__2; +lean_object* l_Std_AssocList_find_x3f___at_Lean_Elab_Tactic_evalTacticAux___spec__7___boxed(lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_liftMetaTactic___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_Lean_Elab_Tactic_saveAllState___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Tactic_Basic_0__Lean_Elab_Tactic_evalTacticUsing_loop___closed__2; @@ -542,7 +550,6 @@ lean_object* l_Lean_Meta_withMVarContext___at_Lean_Elab_Tactic_withMainMVarConte lean_object* l_Lean_Elab_Tactic_tagUntaggedGoals(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_Elab_Tactic_evalIntro___spec__1___rarg___boxed(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Tactic_match___elambda__1___closed__1; -lean_object* l_Std_AssocList_find_x3f___at_Lean_Elab_Tactic_evalTacticAux___spec__6(lean_object*, lean_object*); lean_object* l_List_filterAuxM___at_Lean_Elab_Tactic_pruneSolvedGoals___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_evalFailIfSuccess(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_evalIntros_match__1(lean_object*); @@ -565,7 +572,6 @@ lean_object* l_Lean_addMessageContextFull___at_Lean_Meta_instAddMessageContextMe extern lean_object* l_Lean_Parser_Tactic_tactic___x3c_x3b_x3e_____closed__6; extern lean_object* l_Lean_instInhabitedName; lean_object* l_Lean_Elab_Tactic_ensureHasNoMVars(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_throwError___at_Lean_Elab_Tactic_evalTacticAux___spec__11___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_getFVarIds___spec__1(size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_evalIntro_introStep(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_List_forIn_loop___at_Lean_Elab_Tactic_tagUntaggedGoals___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*); @@ -575,6 +581,7 @@ lean_object* l___private_Lean_Elab_Tactic_Basic_0__Lean_Elab_Tactic_getIntrosSiz lean_object* l___regBuiltin_Lean_Elab_Tactic_evalTacticSeqBracketed___closed__1; lean_object* l_Lean_Elab_Tactic_evalAssumption___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_withMacroExpansionInfo___at_Lean_Elab_Tactic_adaptExpander___spec__1___at_Lean_Elab_Tactic_adaptExpander___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_ScopedEnvExtension_getState___rarg___closed__3; lean_object* l_Lean_Elab_Tactic_liftMetaTacticAux(lean_object*); lean_object* l_Lean_Elab_Tactic_adaptExpander(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_evalCase_match__1(lean_object*); @@ -583,7 +590,6 @@ lean_object* l_Lean_Elab_Tactic_getFVarIds(lean_object*, lean_object*, lean_obje lean_object* l_Lean_Elab_Tactic_evalIntro_introStep___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_log___at_Lean_Elab_Tactic_evalTraceState___spec__1(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Tactic_evalFirst___closed__1; -lean_object* l_Lean_Elab_log___at_Lean_Elab_Tactic_evalTacticAux___spec__8(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_evalOpen___spec__17___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Basic___hyg_4734_(lean_object*); lean_object* l_Lean_Meta_getMVarDecl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -608,6 +614,7 @@ lean_object* l___private_Lean_Elab_Tactic_Basic_0__Lean_Elab_Tactic_evalTacticUs lean_object* l_Lean_Syntax_getTailPos_x3f(lean_object*, uint8_t); uint8_t l_Lean_DataValue_sameCtor(lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Tactic_rotateRight___closed__2; +lean_object* l_Std_PersistentHashMap_find_x3f___at_Lean_Elab_Tactic_evalTacticAux___spec__3___boxed(lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Tactic_rotateLeft___closed__2; lean_object* l_Lean_Elab_Tactic_try_x3f(lean_object*); lean_object* l_List_findM_x3f___at___private_Lean_Elab_Tactic_Basic_0__Lean_Elab_Tactic_findTag_x3f___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -622,11 +629,11 @@ extern lean_object* l_Lean_Elab_unsupportedSyntaxExceptionId; extern lean_object* l_Lean_Parser_Tactic_tactic___x3c_x3b_x3e_____closed__5; lean_object* l___private_Lean_Elab_Tactic_Basic_0__Lean_Elab_Tactic_evalTacticUsing_loop_match__1___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_elabSetOption___at_Lean_Elab_Tactic_elabSetOption___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_throwError___at_Lean_Elab_Tactic_evalTacticAux___spec__11(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_BacktrackableState_restore___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_throwError___at_Lean_Elab_Tactic_evalOpen___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_evalSubst___closed__1; lean_object* l_Lean_Elab_Tactic_evalIntros(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Std_HashMapImp_find_x3f___at_Lean_Elab_Tactic_evalTacticAux___spec__6(lean_object*, lean_object*); extern lean_object* l_myMacro____x40_Init_Notation___hyg_14470____closed__6; lean_object* l_Lean_Syntax_getArg(lean_object*, lean_object*); extern lean_object* l_Lean_Core_instInhabitedState___closed__2; @@ -689,16 +696,16 @@ lean_object* l_Lean_Elab_Tactic_getCurrMacroScope___boxed(lean_object*, lean_obj lean_object* l_Lean_Elab_Tactic_withoutModifyingState___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_mkTacticAttribute___closed__2; lean_object* l_Lean_Elab_Tactic_getGoals(lean_object*); -lean_object* l_Lean_Elab_logTrace___at_Lean_Elab_Tactic_evalTacticAux___spec__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Elab_logAt___at_Lean_Elab_Tactic_evalTacticAux___spec__9___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Tactic_evalTacticSeq___closed__1; lean_object* l___regBuiltin_Lean_Elab_Tactic_evalSeq1___closed__1; -lean_object* l_Std_HashMapImp_find_x3f___at_Lean_Elab_Tactic_evalTacticAux___spec__5___boxed(lean_object*, lean_object*); extern lean_object* l_Array_forInUnsafe_loop___at_Lean_mkSepArray___spec__1___closed__1; lean_object* l_Lean_Elab_Term_reportUnsolvedGoals___closed__2; lean_object* l___private_Lean_Elab_InfoTree_0__Lean_Elab_getResetInfoTrees___at_Lean_Elab_Tactic_evalTactic___spec__1___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_ScopedEnvExtension_getState___at_Lean_Elab_getMacros___spec__1(lean_object*, lean_object*); +lean_object* l_Std_PersistentHashMap_findAux___at_Lean_Elab_Tactic_evalTacticAux___spec__4___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_mkTacticInfo(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_evalOpen___spec__13___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_ScopedEnvExtension_getState___at_Lean_Elab_Tactic_evalTacticAux___spec__1(lean_object*, lean_object*); lean_object* l_Lean_ScopedEnvExtension_activateScoped___rarg(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Command_openHiding___elambda__1___closed__2; lean_object* l_Lean_Elab_Tactic_TacticM_run_x27___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -723,7 +730,6 @@ lean_object* l_Lean_Elab_Tactic_liftMetaTactic___lambda__2___boxed(lean_object*, extern lean_object* l_myMacro____x40_Init_Notation___hyg_14470____closed__14; lean_object* l_Lean_throwError___at_Lean_Elab_Tactic_elabSetOption___spec__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_string_dec_eq(lean_object*, lean_object*); -lean_object* l_Std_PersistentHashMap_findAux___at_Lean_Elab_Tactic_evalTacticAux___spec__3(lean_object*, size_t, lean_object*); lean_object* l_Lean_Elab_Tactic_evalAllGoals(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_evalIntros___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_nat_dec_lt(lean_object*, lean_object*); @@ -3764,7 +3770,37 @@ return x_130; } } } -lean_object* l_Std_PersistentHashMap_findAtAux___at_Lean_Elab_Tactic_evalTacticAux___spec__4(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l_Lean_ScopedEnvExtension_getState___at_Lean_Elab_Tactic_evalTacticAux___spec__1(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_3 = lean_ctor_get(x_1, 1); +x_4 = l_Lean_PersistentEnvExtension_getState___rarg(x_3, x_2); +x_5 = lean_ctor_get(x_4, 0); +lean_inc(x_5); +lean_dec(x_4); +if (lean_obj_tag(x_5) == 0) +{ +lean_object* x_6; lean_object* x_7; lean_object* x_8; +x_6 = l_Lean_ScopedEnvExtension_getState___at_Lean_KeyedDeclsAttribute_getValues___spec__1___rarg___closed__1; +x_7 = l_Lean_ScopedEnvExtension_getState___rarg___closed__3; +x_8 = lean_panic_fn(x_6, x_7); +return x_8; +} +else +{ +lean_object* x_9; lean_object* x_10; +x_9 = lean_ctor_get(x_5, 0); +lean_inc(x_9); +lean_dec(x_5); +x_10 = lean_ctor_get(x_9, 0); +lean_inc(x_10); +lean_dec(x_9); +return x_10; +} +} +} +lean_object* l_Std_PersistentHashMap_findAtAux___at_Lean_Elab_Tactic_evalTacticAux___spec__5(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; uint8_t x_7; @@ -3806,7 +3842,7 @@ return x_15; } } } -lean_object* l_Std_PersistentHashMap_findAux___at_Lean_Elab_Tactic_evalTacticAux___spec__3(lean_object* x_1, size_t x_2, lean_object* x_3) { +lean_object* l_Std_PersistentHashMap_findAux___at_Lean_Elab_Tactic_evalTacticAux___spec__4(lean_object* x_1, size_t x_2, lean_object* x_3) { _start: { if (lean_obj_tag(x_1) == 0) @@ -3877,14 +3913,14 @@ x_21 = lean_ctor_get(x_1, 1); lean_inc(x_21); lean_dec(x_1); x_22 = lean_unsigned_to_nat(0u); -x_23 = l_Std_PersistentHashMap_findAtAux___at_Lean_Elab_Tactic_evalTacticAux___spec__4(x_20, x_21, lean_box(0), x_22, x_3); +x_23 = l_Std_PersistentHashMap_findAtAux___at_Lean_Elab_Tactic_evalTacticAux___spec__5(x_20, x_21, lean_box(0), x_22, x_3); lean_dec(x_21); lean_dec(x_20); return x_23; } } } -lean_object* l_Std_PersistentHashMap_find_x3f___at_Lean_Elab_Tactic_evalTacticAux___spec__2(lean_object* x_1, lean_object* x_2) { +lean_object* l_Std_PersistentHashMap_find_x3f___at_Lean_Elab_Tactic_evalTacticAux___spec__3(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; size_t x_4; lean_object* x_5; @@ -3892,11 +3928,11 @@ x_3 = lean_ctor_get(x_1, 0); lean_inc(x_3); lean_dec(x_1); x_4 = l_Lean_Name_hash(x_2); -x_5 = l_Std_PersistentHashMap_findAux___at_Lean_Elab_Tactic_evalTacticAux___spec__3(x_3, x_4, x_2); +x_5 = l_Std_PersistentHashMap_findAux___at_Lean_Elab_Tactic_evalTacticAux___spec__4(x_3, x_4, x_2); return x_5; } } -lean_object* l_Std_AssocList_find_x3f___at_Lean_Elab_Tactic_evalTacticAux___spec__6(lean_object* x_1, lean_object* x_2) { +lean_object* l_Std_AssocList_find_x3f___at_Lean_Elab_Tactic_evalTacticAux___spec__7(lean_object* x_1, lean_object* x_2) { _start: { if (lean_obj_tag(x_2) == 0) @@ -3928,7 +3964,7 @@ return x_9; } } } -lean_object* l_Std_HashMapImp_find_x3f___at_Lean_Elab_Tactic_evalTacticAux___spec__5(lean_object* x_1, lean_object* x_2) { +lean_object* l_Std_HashMapImp_find_x3f___at_Lean_Elab_Tactic_evalTacticAux___spec__6(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; lean_object* x_4; size_t x_5; size_t x_6; lean_object* x_7; lean_object* x_8; @@ -3938,12 +3974,12 @@ x_5 = l_Lean_Name_hash(x_2); x_6 = lean_usize_modn(x_5, x_4); lean_dec(x_4); x_7 = lean_array_uget(x_3, x_6); -x_8 = l_Std_AssocList_find_x3f___at_Lean_Elab_Tactic_evalTacticAux___spec__6(x_2, x_7); +x_8 = l_Std_AssocList_find_x3f___at_Lean_Elab_Tactic_evalTacticAux___spec__7(x_2, x_7); lean_dec(x_7); return x_8; } } -lean_object* l_Lean_SMap_find_x3f___at_Lean_Elab_Tactic_evalTacticAux___spec__1(lean_object* x_1, lean_object* x_2) { +lean_object* l_Lean_SMap_find_x3f___at_Lean_Elab_Tactic_evalTacticAux___spec__2(lean_object* x_1, lean_object* x_2) { _start: { uint8_t x_3; @@ -3956,11 +3992,11 @@ lean_inc(x_4); x_5 = lean_ctor_get(x_1, 1); lean_inc(x_5); lean_dec(x_1); -x_6 = l_Std_PersistentHashMap_find_x3f___at_Lean_Elab_Tactic_evalTacticAux___spec__2(x_5, x_2); +x_6 = l_Std_PersistentHashMap_find_x3f___at_Lean_Elab_Tactic_evalTacticAux___spec__3(x_5, x_2); if (lean_obj_tag(x_6) == 0) { lean_object* x_7; -x_7 = l_Std_HashMapImp_find_x3f___at_Lean_Elab_Tactic_evalTacticAux___spec__5(x_4, x_2); +x_7 = l_Std_HashMapImp_find_x3f___at_Lean_Elab_Tactic_evalTacticAux___spec__6(x_4, x_2); lean_dec(x_4); return x_7; } @@ -3991,13 +4027,13 @@ lean_object* x_11; lean_object* x_12; x_11 = lean_ctor_get(x_1, 0); lean_inc(x_11); lean_dec(x_1); -x_12 = l_Std_HashMapImp_find_x3f___at_Lean_Elab_Tactic_evalTacticAux___spec__5(x_11, x_2); +x_12 = l_Std_HashMapImp_find_x3f___at_Lean_Elab_Tactic_evalTacticAux___spec__6(x_11, x_2); lean_dec(x_11); return x_12; } } } -lean_object* l_Lean_Elab_logAt___at_Lean_Elab_Tactic_evalTacticAux___spec__9(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +lean_object* l_Lean_Elab_logAt___at_Lean_Elab_Tactic_evalTacticAux___spec__10(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { _start: { lean_object* x_13; uint8_t x_294; uint8_t x_295; @@ -4869,16 +4905,16 @@ return x_292; } } } -lean_object* l_Lean_Elab_log___at_Lean_Elab_Tactic_evalTacticAux___spec__8(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +lean_object* l_Lean_Elab_log___at_Lean_Elab_Tactic_evalTacticAux___spec__9(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { lean_object* x_12; lean_object* x_13; x_12 = lean_ctor_get(x_9, 3); -x_13 = l_Lean_Elab_logAt___at_Lean_Elab_Tactic_evalTacticAux___spec__9(x_12, x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_13 = l_Lean_Elab_logAt___at_Lean_Elab_Tactic_evalTacticAux___spec__10(x_12, x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); return x_13; } } -lean_object* l_Lean_Elab_logTrace___at_Lean_Elab_Tactic_evalTacticAux___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* l_Lean_Elab_logTrace___at_Lean_Elab_Tactic_evalTacticAux___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) { _start: { lean_object* x_12; uint8_t x_13; lean_object* x_14; @@ -4886,11 +4922,11 @@ x_12 = lean_alloc_ctor(11, 2, 0); lean_ctor_set(x_12, 0, x_1); lean_ctor_set(x_12, 1, x_2); x_13 = 0; -x_14 = l_Lean_Elab_log___at_Lean_Elab_Tactic_evalTacticAux___spec__8(x_12, x_13, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_14 = l_Lean_Elab_log___at_Lean_Elab_Tactic_evalTacticAux___spec__9(x_12, x_13, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); return x_14; } } -lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_evalTacticAux___spec__10(lean_object* x_1, size_t x_2, size_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { +lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_evalTacticAux___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, lean_object* x_12, lean_object* x_13) { _start: { uint8_t x_14; @@ -4973,7 +5009,7 @@ return x_26; } } } -lean_object* l_Lean_throwError___at_Lean_Elab_Tactic_evalTacticAux___spec__11(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +lean_object* l_Lean_throwError___at_Lean_Elab_Tactic_evalTacticAux___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) { _start: { lean_object* x_11; lean_object* x_12; uint8_t x_13; @@ -5107,7 +5143,7 @@ lean_dec(x_39); x_42 = l_Lean_Elab_Tactic_tacticElabAttribute; x_43 = lean_ctor_get(x_42, 2); lean_inc(x_43); -x_44 = l_Lean_PersistentEnvExtension_getState___rarg(x_43, x_38); +x_44 = l_Lean_ScopedEnvExtension_getState___at_Lean_Elab_Tactic_evalTacticAux___spec__1(x_43, x_38); lean_dec(x_38); lean_dec(x_43); x_45 = lean_ctor_get(x_44, 1); @@ -5115,7 +5151,7 @@ lean_inc(x_45); lean_dec(x_44); lean_inc(x_2); x_46 = l_Lean_Syntax_getKind(x_2); -x_47 = l_Lean_SMap_find_x3f___at_Lean_Elab_Tactic_evalTacticAux___spec__1(x_45, x_46); +x_47 = l_Lean_SMap_find_x3f___at_Lean_Elab_Tactic_evalTacticAux___spec__2(x_45, x_46); lean_dec(x_46); if (lean_obj_tag(x_47) == 0) { @@ -5140,7 +5176,7 @@ lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean lean_inc(x_2); x_51 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_51, 0, x_2); -x_52 = l_Lean_Elab_logTrace___at_Lean_Elab_Tactic_evalTacticAux___spec__7(x_33, x_51, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_26); +x_52 = l_Lean_Elab_logTrace___at_Lean_Elab_Tactic_evalTacticAux___spec__8(x_33, x_51, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_26); x_53 = lean_ctor_get(x_52, 1); lean_inc(x_53); lean_dec(x_52); @@ -5162,7 +5198,7 @@ lean_dec(x_58); x_61 = l_Lean_Elab_Tactic_tacticElabAttribute; x_62 = lean_ctor_get(x_61, 2); lean_inc(x_62); -x_63 = l_Lean_PersistentEnvExtension_getState___rarg(x_62, x_57); +x_63 = l_Lean_ScopedEnvExtension_getState___at_Lean_Elab_Tactic_evalTacticAux___spec__1(x_62, x_57); lean_dec(x_57); lean_dec(x_62); x_64 = lean_ctor_get(x_63, 1); @@ -5170,7 +5206,7 @@ lean_inc(x_64); lean_dec(x_63); lean_inc(x_2); x_65 = l_Lean_Syntax_getKind(x_2); -x_66 = l_Lean_SMap_find_x3f___at_Lean_Elab_Tactic_evalTacticAux___spec__1(x_64, x_65); +x_66 = l_Lean_SMap_find_x3f___at_Lean_Elab_Tactic_evalTacticAux___spec__2(x_64, x_65); lean_dec(x_65); if (lean_obj_tag(x_66) == 0) { @@ -5245,7 +5281,7 @@ x_77 = 0; x_78 = lean_usize_of_nat(x_71); lean_dec(x_71); x_79 = lean_box(0); -x_80 = l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_evalTacticAux___spec__10(x_70, x_77, x_78, x_79, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_26); +x_80 = l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_evalTacticAux___spec__11(x_70, x_77, x_78, x_79, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_26); lean_dec(x_70); return x_80; } @@ -5342,7 +5378,7 @@ lean_dec(x_104); x_107 = l_Lean_Elab_Tactic_tacticElabAttribute; x_108 = lean_ctor_get(x_107, 2); lean_inc(x_108); -x_109 = l_Lean_PersistentEnvExtension_getState___rarg(x_108, x_103); +x_109 = l_Lean_ScopedEnvExtension_getState___at_Lean_Elab_Tactic_evalTacticAux___spec__1(x_108, x_103); lean_dec(x_103); lean_dec(x_108); x_110 = lean_ctor_get(x_109, 1); @@ -5350,7 +5386,7 @@ lean_inc(x_110); lean_dec(x_109); lean_inc(x_2); x_111 = l_Lean_Syntax_getKind(x_2); -x_112 = l_Lean_SMap_find_x3f___at_Lean_Elab_Tactic_evalTacticAux___spec__1(x_110, x_111); +x_112 = l_Lean_SMap_find_x3f___at_Lean_Elab_Tactic_evalTacticAux___spec__2(x_110, x_111); lean_dec(x_111); if (lean_obj_tag(x_112) == 0) { @@ -5375,7 +5411,7 @@ lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_inc(x_2); x_116 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_116, 0, x_2); -x_117 = l_Lean_Elab_logTrace___at_Lean_Elab_Tactic_evalTacticAux___spec__7(x_98, x_116, x_4, x_5, x_94, x_7, x_8, x_9, x_10, x_11, x_26); +x_117 = l_Lean_Elab_logTrace___at_Lean_Elab_Tactic_evalTacticAux___spec__8(x_98, x_116, x_4, x_5, x_94, x_7, x_8, x_9, x_10, x_11, x_26); x_118 = lean_ctor_get(x_117, 1); lean_inc(x_118); lean_dec(x_117); @@ -5397,7 +5433,7 @@ lean_dec(x_123); x_126 = l_Lean_Elab_Tactic_tacticElabAttribute; x_127 = lean_ctor_get(x_126, 2); lean_inc(x_127); -x_128 = l_Lean_PersistentEnvExtension_getState___rarg(x_127, x_122); +x_128 = l_Lean_ScopedEnvExtension_getState___at_Lean_Elab_Tactic_evalTacticAux___spec__1(x_127, x_122); lean_dec(x_122); lean_dec(x_127); x_129 = lean_ctor_get(x_128, 1); @@ -5405,7 +5441,7 @@ lean_inc(x_129); lean_dec(x_128); lean_inc(x_2); x_130 = l_Lean_Syntax_getKind(x_2); -x_131 = l_Lean_SMap_find_x3f___at_Lean_Elab_Tactic_evalTacticAux___spec__1(x_129, x_130); +x_131 = l_Lean_SMap_find_x3f___at_Lean_Elab_Tactic_evalTacticAux___spec__2(x_129, x_130); lean_dec(x_130); if (lean_obj_tag(x_131) == 0) { @@ -5480,7 +5516,7 @@ x_142 = 0; x_143 = lean_usize_of_nat(x_136); lean_dec(x_136); x_144 = lean_box(0); -x_145 = l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_evalTacticAux___spec__10(x_135, x_142, x_143, x_144, x_4, x_5, x_94, x_7, x_8, x_9, x_10, x_11, x_26); +x_145 = l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_evalTacticAux___spec__11(x_135, x_142, x_143, x_144, x_4, x_5, x_94, x_7, x_8, x_9, x_10, x_11, x_26); lean_dec(x_135); return x_145; } @@ -5597,7 +5633,7 @@ lean_dec(x_171); x_174 = l_Lean_Elab_Tactic_tacticElabAttribute; x_175 = lean_ctor_get(x_174, 2); lean_inc(x_175); -x_176 = l_Lean_PersistentEnvExtension_getState___rarg(x_175, x_170); +x_176 = l_Lean_ScopedEnvExtension_getState___at_Lean_Elab_Tactic_evalTacticAux___spec__1(x_175, x_170); lean_dec(x_170); lean_dec(x_175); x_177 = lean_ctor_get(x_176, 1); @@ -5605,7 +5641,7 @@ lean_inc(x_177); lean_dec(x_176); lean_inc(x_2); x_178 = l_Lean_Syntax_getKind(x_2); -x_179 = l_Lean_SMap_find_x3f___at_Lean_Elab_Tactic_evalTacticAux___spec__1(x_177, x_178); +x_179 = l_Lean_SMap_find_x3f___at_Lean_Elab_Tactic_evalTacticAux___spec__2(x_177, x_178); lean_dec(x_178); if (lean_obj_tag(x_179) == 0) { @@ -5630,7 +5666,7 @@ lean_object* x_183; lean_object* x_184; lean_object* x_185; lean_object* x_186; lean_inc(x_2); x_183 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_183, 0, x_2); -x_184 = l_Lean_Elab_logTrace___at_Lean_Elab_Tactic_evalTacticAux___spec__7(x_165, x_183, x_4, x_5, x_161, x_7, x_8, x_9, x_10, x_11, x_148); +x_184 = l_Lean_Elab_logTrace___at_Lean_Elab_Tactic_evalTacticAux___spec__8(x_165, x_183, x_4, x_5, x_161, x_7, x_8, x_9, x_10, x_11, x_148); x_185 = lean_ctor_get(x_184, 1); lean_inc(x_185); lean_dec(x_184); @@ -5652,7 +5688,7 @@ lean_dec(x_190); x_193 = l_Lean_Elab_Tactic_tacticElabAttribute; x_194 = lean_ctor_get(x_193, 2); lean_inc(x_194); -x_195 = l_Lean_PersistentEnvExtension_getState___rarg(x_194, x_189); +x_195 = l_Lean_ScopedEnvExtension_getState___at_Lean_Elab_Tactic_evalTacticAux___spec__1(x_194, x_189); lean_dec(x_189); lean_dec(x_194); x_196 = lean_ctor_get(x_195, 1); @@ -5660,7 +5696,7 @@ lean_inc(x_196); lean_dec(x_195); lean_inc(x_2); x_197 = l_Lean_Syntax_getKind(x_2); -x_198 = l_Lean_SMap_find_x3f___at_Lean_Elab_Tactic_evalTacticAux___spec__1(x_196, x_197); +x_198 = l_Lean_SMap_find_x3f___at_Lean_Elab_Tactic_evalTacticAux___spec__2(x_196, x_197); lean_dec(x_197); if (lean_obj_tag(x_198) == 0) { @@ -5738,7 +5774,7 @@ x_211 = 0; x_212 = lean_usize_of_nat(x_203); lean_dec(x_203); x_213 = lean_box(0); -x_214 = l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_evalTacticAux___spec__10(x_202, x_211, x_212, x_213, x_4, x_5, x_161, x_7, x_8, x_9, x_10, x_11, x_148); +x_214 = l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_evalTacticAux___spec__11(x_202, x_211, x_212, x_213, x_4, x_5, x_161, x_7, x_8, x_9, x_10, x_11, x_148); lean_dec(x_202); return x_214; } @@ -5878,7 +5914,7 @@ lean_dec(x_248); x_251 = l_Lean_Elab_Tactic_tacticElabAttribute; x_252 = lean_ctor_get(x_251, 2); lean_inc(x_252); -x_253 = l_Lean_PersistentEnvExtension_getState___rarg(x_252, x_247); +x_253 = l_Lean_ScopedEnvExtension_getState___at_Lean_Elab_Tactic_evalTacticAux___spec__1(x_252, x_247); lean_dec(x_247); lean_dec(x_252); x_254 = lean_ctor_get(x_253, 1); @@ -5886,7 +5922,7 @@ lean_inc(x_254); lean_dec(x_253); lean_inc(x_2); x_255 = l_Lean_Syntax_getKind(x_2); -x_256 = l_Lean_SMap_find_x3f___at_Lean_Elab_Tactic_evalTacticAux___spec__1(x_254, x_255); +x_256 = l_Lean_SMap_find_x3f___at_Lean_Elab_Tactic_evalTacticAux___spec__2(x_254, x_255); lean_dec(x_255); if (lean_obj_tag(x_256) == 0) { @@ -5911,7 +5947,7 @@ lean_object* x_260; lean_object* x_261; lean_object* x_262; lean_object* x_263; lean_inc(x_2); x_260 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_260, 0, x_2); -x_261 = l_Lean_Elab_logTrace___at_Lean_Elab_Tactic_evalTacticAux___spec__7(x_242, x_260, x_4, x_5, x_238, x_7, x_8, x_9, x_10, x_11, x_224); +x_261 = l_Lean_Elab_logTrace___at_Lean_Elab_Tactic_evalTacticAux___spec__8(x_242, x_260, x_4, x_5, x_238, x_7, x_8, x_9, x_10, x_11, x_224); x_262 = lean_ctor_get(x_261, 1); lean_inc(x_262); lean_dec(x_261); @@ -5933,7 +5969,7 @@ lean_dec(x_267); x_270 = l_Lean_Elab_Tactic_tacticElabAttribute; x_271 = lean_ctor_get(x_270, 2); lean_inc(x_271); -x_272 = l_Lean_PersistentEnvExtension_getState___rarg(x_271, x_266); +x_272 = l_Lean_ScopedEnvExtension_getState___at_Lean_Elab_Tactic_evalTacticAux___spec__1(x_271, x_266); lean_dec(x_266); lean_dec(x_271); x_273 = lean_ctor_get(x_272, 1); @@ -5941,7 +5977,7 @@ lean_inc(x_273); lean_dec(x_272); lean_inc(x_2); x_274 = l_Lean_Syntax_getKind(x_2); -x_275 = l_Lean_SMap_find_x3f___at_Lean_Elab_Tactic_evalTacticAux___spec__1(x_273, x_274); +x_275 = l_Lean_SMap_find_x3f___at_Lean_Elab_Tactic_evalTacticAux___spec__2(x_273, x_274); lean_dec(x_274); if (lean_obj_tag(x_275) == 0) { @@ -6028,7 +6064,7 @@ x_288 = 0; x_289 = lean_usize_of_nat(x_280); lean_dec(x_280); x_290 = lean_box(0); -x_291 = l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_evalTacticAux___spec__10(x_279, x_288, x_289, x_290, x_4, x_5, x_238, x_7, x_8, x_9, x_10, x_11, x_224); +x_291 = l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_evalTacticAux___spec__11(x_279, x_288, x_289, x_290, x_4, x_5, x_238, x_7, x_8, x_9, x_10, x_11, x_224); lean_dec(x_279); return x_291; } @@ -6213,7 +6249,7 @@ lean_dec(x_337); x_340 = l_Lean_Elab_Tactic_tacticElabAttribute; x_341 = lean_ctor_get(x_340, 2); lean_inc(x_341); -x_342 = l_Lean_PersistentEnvExtension_getState___rarg(x_341, x_336); +x_342 = l_Lean_ScopedEnvExtension_getState___at_Lean_Elab_Tactic_evalTacticAux___spec__1(x_341, x_336); lean_dec(x_336); lean_dec(x_341); x_343 = lean_ctor_get(x_342, 1); @@ -6221,7 +6257,7 @@ lean_inc(x_343); lean_dec(x_342); lean_inc(x_2); x_344 = l_Lean_Syntax_getKind(x_2); -x_345 = l_Lean_SMap_find_x3f___at_Lean_Elab_Tactic_evalTacticAux___spec__1(x_343, x_344); +x_345 = l_Lean_SMap_find_x3f___at_Lean_Elab_Tactic_evalTacticAux___spec__2(x_343, x_344); lean_dec(x_344); if (lean_obj_tag(x_345) == 0) { @@ -6246,7 +6282,7 @@ lean_object* x_349; lean_object* x_350; lean_object* x_351; lean_object* x_352; lean_inc(x_2); x_349 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_349, 0, x_2); -x_350 = l_Lean_Elab_logTrace___at_Lean_Elab_Tactic_evalTacticAux___spec__7(x_331, x_349, x_4, x_5, x_327, x_7, x_8, x_9, x_301, x_11, x_313); +x_350 = l_Lean_Elab_logTrace___at_Lean_Elab_Tactic_evalTacticAux___spec__8(x_331, x_349, x_4, x_5, x_327, x_7, x_8, x_9, x_301, x_11, x_313); x_351 = lean_ctor_get(x_350, 1); lean_inc(x_351); lean_dec(x_350); @@ -6268,7 +6304,7 @@ lean_dec(x_356); x_359 = l_Lean_Elab_Tactic_tacticElabAttribute; x_360 = lean_ctor_get(x_359, 2); lean_inc(x_360); -x_361 = l_Lean_PersistentEnvExtension_getState___rarg(x_360, x_355); +x_361 = l_Lean_ScopedEnvExtension_getState___at_Lean_Elab_Tactic_evalTacticAux___spec__1(x_360, x_355); lean_dec(x_355); lean_dec(x_360); x_362 = lean_ctor_get(x_361, 1); @@ -6276,7 +6312,7 @@ lean_inc(x_362); lean_dec(x_361); lean_inc(x_2); x_363 = l_Lean_Syntax_getKind(x_2); -x_364 = l_Lean_SMap_find_x3f___at_Lean_Elab_Tactic_evalTacticAux___spec__1(x_362, x_363); +x_364 = l_Lean_SMap_find_x3f___at_Lean_Elab_Tactic_evalTacticAux___spec__2(x_362, x_363); lean_dec(x_363); if (lean_obj_tag(x_364) == 0) { @@ -6363,7 +6399,7 @@ x_377 = 0; x_378 = lean_usize_of_nat(x_369); lean_dec(x_369); x_379 = lean_box(0); -x_380 = l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_evalTacticAux___spec__10(x_368, x_377, x_378, x_379, x_4, x_5, x_327, x_7, x_8, x_9, x_301, x_11, x_313); +x_380 = l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_evalTacticAux___spec__11(x_368, x_377, x_378, x_379, x_4, x_5, x_327, x_7, x_8, x_9, x_301, x_11, x_313); lean_dec(x_368); return x_380; } @@ -6423,7 +6459,7 @@ lean_object* x_19; lean_object* x_20; uint8_t x_21; lean_dec(x_12); lean_dec(x_1); x_19 = l_Lean_withIncRecDepth___rarg___lambda__2___closed__2; -x_20 = l_Lean_throwError___at_Lean_Elab_Tactic_evalTacticAux___spec__11(x_19, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_20 = l_Lean_throwError___at_Lean_Elab_Tactic_evalTacticAux___spec__12(x_19, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); @@ -6501,7 +6537,7 @@ lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean lean_dec(x_26); lean_dec(x_1); x_38 = l_Lean_withIncRecDepth___rarg___lambda__2___closed__2; -x_39 = l_Lean_throwError___at_Lean_Elab_Tactic_evalTacticAux___spec__11(x_38, x_2, x_3, x_4, x_5, x_6, x_7, x_34, x_9, x_10); +x_39 = l_Lean_throwError___at_Lean_Elab_Tactic_evalTacticAux___spec__12(x_38, x_2, x_3, x_4, x_5, x_6, x_7, x_34, x_9, x_10); lean_dec(x_9); lean_dec(x_34); lean_dec(x_7); @@ -6552,13 +6588,13 @@ lean_dec(x_13); x_16 = l_Lean_Elab_macroAttribute; x_17 = lean_ctor_get(x_16, 2); lean_inc(x_17); -x_18 = l_Lean_PersistentEnvExtension_getState___rarg(x_17, x_15); +x_18 = l_Lean_ScopedEnvExtension_getState___at_Lean_Elab_getMacros___spec__1(x_17, x_15); lean_dec(x_15); lean_dec(x_17); x_19 = lean_ctor_get(x_18, 1); lean_inc(x_19); lean_dec(x_18); -x_20 = l_Lean_SMap_find_x3f___at_Lean_Elab_getMacros___spec__1(x_19, x_11); +x_20 = l_Lean_SMap_find_x3f___at_Lean_Elab_getMacros___spec__2(x_19, x_11); lean_dec(x_11); if (lean_obj_tag(x_20) == 0) { @@ -6667,73 +6703,83 @@ lean_dec(x_1); return x_4; } } -lean_object* l_Std_PersistentHashMap_findAtAux___at_Lean_Elab_Tactic_evalTacticAux___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* l_Lean_ScopedEnvExtension_getState___at_Lean_Elab_Tactic_evalTacticAux___spec__1___boxed(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; +x_3 = l_Lean_ScopedEnvExtension_getState___at_Lean_Elab_Tactic_evalTacticAux___spec__1(x_1, x_2); +lean_dec(x_2); +lean_dec(x_1); +return x_3; +} +} +lean_object* l_Std_PersistentHashMap_findAtAux___at_Lean_Elab_Tactic_evalTacticAux___spec__5___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_Std_PersistentHashMap_findAtAux___at_Lean_Elab_Tactic_evalTacticAux___spec__4(x_1, x_2, x_3, x_4, x_5); +x_6 = l_Std_PersistentHashMap_findAtAux___at_Lean_Elab_Tactic_evalTacticAux___spec__5(x_1, x_2, x_3, x_4, x_5); lean_dec(x_5); lean_dec(x_2); lean_dec(x_1); return x_6; } } -lean_object* l_Std_PersistentHashMap_findAux___at_Lean_Elab_Tactic_evalTacticAux___spec__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Std_PersistentHashMap_findAux___at_Lean_Elab_Tactic_evalTacticAux___spec__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { size_t x_4; lean_object* x_5; x_4 = lean_unbox_usize(x_2); lean_dec(x_2); -x_5 = l_Std_PersistentHashMap_findAux___at_Lean_Elab_Tactic_evalTacticAux___spec__3(x_1, x_4, x_3); +x_5 = l_Std_PersistentHashMap_findAux___at_Lean_Elab_Tactic_evalTacticAux___spec__4(x_1, x_4, x_3); lean_dec(x_3); return x_5; } } -lean_object* l_Std_PersistentHashMap_find_x3f___at_Lean_Elab_Tactic_evalTacticAux___spec__2___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l_Std_PersistentHashMap_find_x3f___at_Lean_Elab_Tactic_evalTacticAux___spec__3___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l_Std_PersistentHashMap_find_x3f___at_Lean_Elab_Tactic_evalTacticAux___spec__2(x_1, x_2); +x_3 = l_Std_PersistentHashMap_find_x3f___at_Lean_Elab_Tactic_evalTacticAux___spec__3(x_1, x_2); lean_dec(x_2); return x_3; } } -lean_object* l_Std_AssocList_find_x3f___at_Lean_Elab_Tactic_evalTacticAux___spec__6___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l_Std_AssocList_find_x3f___at_Lean_Elab_Tactic_evalTacticAux___spec__7___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l_Std_AssocList_find_x3f___at_Lean_Elab_Tactic_evalTacticAux___spec__6(x_1, x_2); +x_3 = l_Std_AssocList_find_x3f___at_Lean_Elab_Tactic_evalTacticAux___spec__7(x_1, x_2); lean_dec(x_2); lean_dec(x_1); return x_3; } } -lean_object* l_Std_HashMapImp_find_x3f___at_Lean_Elab_Tactic_evalTacticAux___spec__5___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l_Std_HashMapImp_find_x3f___at_Lean_Elab_Tactic_evalTacticAux___spec__6___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l_Std_HashMapImp_find_x3f___at_Lean_Elab_Tactic_evalTacticAux___spec__5(x_1, x_2); +x_3 = l_Std_HashMapImp_find_x3f___at_Lean_Elab_Tactic_evalTacticAux___spec__6(x_1, x_2); lean_dec(x_2); lean_dec(x_1); return x_3; } } -lean_object* l_Lean_SMap_find_x3f___at_Lean_Elab_Tactic_evalTacticAux___spec__1___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l_Lean_SMap_find_x3f___at_Lean_Elab_Tactic_evalTacticAux___spec__2___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l_Lean_SMap_find_x3f___at_Lean_Elab_Tactic_evalTacticAux___spec__1(x_1, x_2); +x_3 = l_Lean_SMap_find_x3f___at_Lean_Elab_Tactic_evalTacticAux___spec__2(x_1, x_2); lean_dec(x_2); return x_3; } } -lean_object* l_Lean_Elab_logAt___at_Lean_Elab_Tactic_evalTacticAux___spec__9___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +lean_object* l_Lean_Elab_logAt___at_Lean_Elab_Tactic_evalTacticAux___spec__10___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { _start: { uint8_t x_13; lean_object* x_14; x_13 = lean_unbox(x_3); lean_dec(x_3); -x_14 = l_Lean_Elab_logAt___at_Lean_Elab_Tactic_evalTacticAux___spec__9(x_1, x_2, x_13, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +x_14 = l_Lean_Elab_logAt___at_Lean_Elab_Tactic_evalTacticAux___spec__10(x_1, x_2, x_13, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); @@ -6746,13 +6792,13 @@ lean_dec(x_1); return x_14; } } -lean_object* l_Lean_Elab_log___at_Lean_Elab_Tactic_evalTacticAux___spec__8___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +lean_object* l_Lean_Elab_log___at_Lean_Elab_Tactic_evalTacticAux___spec__9___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { uint8_t x_12; lean_object* x_13; x_12 = lean_unbox(x_2); lean_dec(x_2); -x_13 = l_Lean_Elab_log___at_Lean_Elab_Tactic_evalTacticAux___spec__8(x_1, x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_13 = l_Lean_Elab_log___at_Lean_Elab_Tactic_evalTacticAux___spec__9(x_1, x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); @@ -6764,11 +6810,11 @@ lean_dec(x_3); return x_13; } } -lean_object* l_Lean_Elab_logTrace___at_Lean_Elab_Tactic_evalTacticAux___spec__7___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +lean_object* l_Lean_Elab_logTrace___at_Lean_Elab_Tactic_evalTacticAux___spec__8___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { lean_object* x_12; -x_12 = l_Lean_Elab_logTrace___at_Lean_Elab_Tactic_evalTacticAux___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 = l_Lean_Elab_logTrace___at_Lean_Elab_Tactic_evalTacticAux___spec__8(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); @@ -6780,7 +6826,7 @@ lean_dec(x_3); return x_12; } } -lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_evalTacticAux___spec__10___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { +lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_evalTacticAux___spec__11___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { _start: { size_t x_14; size_t x_15; lean_object* x_16; @@ -6788,16 +6834,16 @@ x_14 = lean_unbox_usize(x_2); lean_dec(x_2); x_15 = lean_unbox_usize(x_3); lean_dec(x_3); -x_16 = l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_evalTacticAux___spec__10(x_1, x_14, x_15, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +x_16 = l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_evalTacticAux___spec__11(x_1, x_14, x_15, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); lean_dec(x_1); return x_16; } } -lean_object* l_Lean_throwError___at_Lean_Elab_Tactic_evalTacticAux___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* l_Lean_throwError___at_Lean_Elab_Tactic_evalTacticAux___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) { _start: { lean_object* x_11; -x_11 = l_Lean_throwError___at_Lean_Elab_Tactic_evalTacticAux___spec__11(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_11 = l_Lean_throwError___at_Lean_Elab_Tactic_evalTacticAux___spec__12(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); @@ -11313,7 +11359,7 @@ x_12 = lean_ctor_get(x_1, 1); lean_inc(x_12); lean_dec(x_1); x_13 = 2; -x_14 = l_Lean_Elab_logAt___at_Lean_Elab_Tactic_evalTacticAux___spec__9(x_11, x_12, x_13, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_14 = l_Lean_Elab_logAt___at_Lean_Elab_Tactic_evalTacticAux___spec__10(x_11, x_12, x_13, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); lean_dec(x_11); return x_14; } @@ -11358,7 +11404,7 @@ x_29 = lean_alloc_ctor(10, 2, 0); lean_ctor_set(x_29, 0, x_27); lean_ctor_set(x_29, 1, x_28); x_30 = 2; -x_31 = l_Lean_Elab_log___at_Lean_Elab_Tactic_evalTacticAux___spec__8(x_29, x_30, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_24); +x_31 = l_Lean_Elab_log___at_Lean_Elab_Tactic_evalTacticAux___spec__9(x_29, x_30, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_24); return x_31; } else @@ -11453,7 +11499,7 @@ x_57 = lean_alloc_ctor(10, 2, 0); lean_ctor_set(x_57, 0, x_55); lean_ctor_set(x_57, 1, x_56); x_58 = 2; -x_59 = l_Lean_Elab_log___at_Lean_Elab_Tactic_evalTacticAux___spec__8(x_57, x_58, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_52); +x_59 = l_Lean_Elab_log___at_Lean_Elab_Tactic_evalTacticAux___spec__9(x_57, x_58, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_52); return x_59; } else @@ -12422,7 +12468,7 @@ x_21 = 0; x_22 = lean_usize_of_nat(x_14); lean_dec(x_14); x_23 = lean_box(0); -x_24 = l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_evalTacticAux___spec__10(x_13, x_21, x_22, x_23, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_24 = l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_evalTacticAux___spec__11(x_13, x_21, x_22, x_23, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); lean_dec(x_13); return x_24; } diff --git a/stage0/stdlib/Lean/Elab/Tactic/Induction.c b/stage0/stdlib/Lean/Elab/Tactic/Induction.c index 4dd7bcd13b..2657754674 100644 --- a/stage0/stdlib/Lean/Elab/Tactic/Induction.c +++ b/stage0/stdlib/Lean/Elab/Tactic/Induction.c @@ -51,6 +51,7 @@ lean_object* l_Lean_resolveGlobalConst___at___private_Lean_Elab_Tactic_Induction 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_Lean_Elab_logTrace___at_Lean_Elab_Tactic_evalTacticAux___spec__8(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_throwError___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_elabTaggedTerm___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_1090____closed__1; lean_object* l_Lean_Elab_Tactic_evalInduction___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*); @@ -207,7 +208,6 @@ lean_object* l_Lean_Elab_Tactic_ElimApp_State_targetPos___default; lean_object* l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_getAltVarNames___boxed(lean_object*); lean_object* l_Lean_resolveGlobalName___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_getElimNameInfo___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_ElimApp_mkElimApp_loop_match__1(lean_object*); -lean_object* l_Lean_Elab_logAt___at_Lean_Elab_Tactic_evalTacticAux___spec__9(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_evalInduction___spec__3(size_t, size_t, lean_object*); lean_object* l_Lean_resolveGlobalConst___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_getElimNameInfo___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_getElimNameInfo___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -215,6 +215,7 @@ lean_object* l_Lean_Elab_Tactic_ElimApp_evalAlts___lambda__2___boxed(lean_object lean_object* l_Lean_Elab_Tactic_evalInduction_match__1(lean_object*); lean_object* l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_getFType___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_ElimApp_mkElimApp_match__1___rarg(lean_object*, lean_object*); +lean_object* l_Lean_Elab_logAt___at_Lean_Elab_Tactic_evalTacticAux___spec__10(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Array_forInUnsafe_loop___at_Lean_pushScope___spec__1___rarg___lambda__1___closed__1; lean_object* l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_getElimNameInfo___closed__1; lean_object* l_Lean_throwError___at_Lean_Elab_Tactic_ElimApp_evalAlts___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -320,6 +321,7 @@ lean_object* l_Lean_Expr_getAppNumArgsAux(lean_object*, lean_object*); lean_object* l_Array_anyMUnsafe_any___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_resolveGlobalConstNoOverload___rarg___lambda__1___closed__2; lean_object* l_Lean_Expr_bindingName_x21(lean_object*); +lean_object* l_Lean_Elab_log___at_Lean_Elab_Tactic_evalTacticAux___spec__9(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_evalCases___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_ElimApp_evalAlts___spec__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Syntax_hasArgs(lean_object*); @@ -332,7 +334,6 @@ lean_object* l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_generali lean_object* l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_getAltName(lean_object*); lean_object* l_Lean_Elab_Tactic_ElimApp_mkElimApp_loop___closed__2; lean_object* l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_getAltsOfInductionAlts___boxed(lean_object*); -lean_object* l_Lean_Elab_logTrace___at_Lean_Elab_Tactic_evalTacticAux___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* l_Lean_Syntax_getArgs(lean_object*); lean_object* l_ReaderT_bind___at_Lean_Elab_Tactic_liftMetaTacticAux___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_resolveGlobalConstNoOverload___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_getElimNameInfo___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -376,7 +377,6 @@ lean_object* l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_elabTagg lean_object* l_Lean_Elab_Tactic_isHoleRHS___boxed(lean_object*); lean_object* l_Lean_Elab_Tactic_getFVarIds(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_evalInduction___spec__3___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Elab_log___at_Lean_Elab_Tactic_evalTacticAux___spec__8(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_ElimApp_mkElimApp_loop___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*); uint8_t l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_altHasExplicitModifier(lean_object*); lean_object* l___regBuiltin_Lean_Elab_Tactic_evalCases___closed__1; @@ -5275,7 +5275,7 @@ x_77 = lean_alloc_ctor(10, 2, 0); lean_ctor_set(x_77, 0, x_75); lean_ctor_set(x_77, 1, x_76); x_78 = 2; -x_79 = l_Lean_Elab_log___at_Lean_Elab_Tactic_evalTacticAux___spec__8(x_77, x_78, x_13, x_14, x_15, x_16, x_17, x_18, x_19, x_20, x_60); +x_79 = l_Lean_Elab_log___at_Lean_Elab_Tactic_evalTacticAux___spec__9(x_77, x_78, x_13, x_14, x_15, x_16, x_17, x_18, x_19, x_20, x_60); x_80 = lean_ctor_get(x_79, 1); lean_inc(x_80); lean_dec(x_79); @@ -5440,7 +5440,7 @@ x_121 = lean_alloc_ctor(10, 2, 0); lean_ctor_set(x_121, 0, x_119); lean_ctor_set(x_121, 1, x_120); x_122 = 2; -x_123 = l_Lean_Elab_log___at_Lean_Elab_Tactic_evalTacticAux___spec__8(x_121, x_122, x_13, x_14, x_15, x_16, x_17, x_18, x_19, x_20, x_103); +x_123 = l_Lean_Elab_log___at_Lean_Elab_Tactic_evalTacticAux___spec__9(x_121, x_122, x_13, x_14, x_15, x_16, x_17, x_18, x_19, x_20, x_103); x_124 = lean_ctor_get(x_123, 1); lean_inc(x_124); lean_dec(x_123); @@ -5835,7 +5835,7 @@ x_202 = lean_alloc_ctor(10, 2, 0); lean_ctor_set(x_202, 0, x_200); lean_ctor_set(x_202, 1, x_201); x_203 = 2; -x_204 = l_Lean_Elab_log___at_Lean_Elab_Tactic_evalTacticAux___spec__8(x_202, x_203, x_13, x_14, x_15, x_16, x_17, x_18, x_19, x_20, x_21); +x_204 = l_Lean_Elab_log___at_Lean_Elab_Tactic_evalTacticAux___spec__9(x_202, x_203, x_13, x_14, x_15, x_16, x_17, x_18, x_19, x_20, x_21); x_205 = lean_ctor_get(x_204, 0); lean_inc(x_205); x_206 = lean_ctor_get(x_204, 1); @@ -6043,7 +6043,7 @@ x_263 = lean_alloc_ctor(10, 2, 0); lean_ctor_set(x_263, 0, x_261); lean_ctor_set(x_263, 1, x_262); x_264 = 2; -x_265 = l_Lean_Elab_log___at_Lean_Elab_Tactic_evalTacticAux___spec__8(x_263, x_264, x_13, x_14, x_15, x_16, x_17, x_18, x_234, x_20, x_21); +x_265 = l_Lean_Elab_log___at_Lean_Elab_Tactic_evalTacticAux___spec__9(x_263, x_264, x_13, x_14, x_15, x_16, x_17, x_18, x_234, x_20, x_21); x_266 = lean_ctor_get(x_265, 0); lean_inc(x_266); x_267 = lean_ctor_get(x_265, 1); @@ -6928,7 +6928,7 @@ x_15 = lean_unsigned_to_nat(0u); x_16 = lean_array_get(x_14, x_2, x_15); x_17 = l_Lean_Elab_Tactic_ElimApp_evalAlts___lambda__2___closed__3; x_18 = 2; -x_19 = l_Lean_Elab_logAt___at_Lean_Elab_Tactic_evalTacticAux___spec__9(x_16, x_17, x_18, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +x_19 = l_Lean_Elab_logAt___at_Lean_Elab_Tactic_evalTacticAux___spec__10(x_16, x_17, x_18, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); lean_dec(x_16); x_20 = lean_ctor_get(x_19, 0); lean_inc(x_20); @@ -7444,7 +7444,7 @@ else lean_object* x_16; lean_object* x_17; x_16 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_16, 0, x_2); -x_17 = l_Lean_Elab_logTrace___at_Lean_Elab_Tactic_evalTacticAux___spec__7(x_1, x_16, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +x_17 = l_Lean_Elab_logTrace___at_Lean_Elab_Tactic_evalTacticAux___spec__8(x_1, x_16, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); return x_17; } } diff --git a/stage0/stdlib/Lean/Elab/Term.c b/stage0/stdlib/Lean/Elab/Term.c index 835ef29b8d..bc68c04cc7 100644 --- a/stage0/stdlib/Lean/Elab/Term.c +++ b/stage0/stdlib/Lean/Elab/Term.c @@ -175,6 +175,7 @@ lean_object* l_Lean_Meta_withLCtx___at_Lean_Elab_Term_elabSyntheticHole___spec__ lean_object* l___regBuiltin_Lean_Elab_Term_elabQuotedName___closed__1; lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_tryLiftAndCoe_match__2(lean_object*); lean_object* l_Lean_Elab_log___at___private_Lean_Elab_Term_0__Lean_Elab_Term_exceptionToSorry___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_instInhabitedKeyedDeclsAttribute___closed__4; lean_object* lean_array_uset(lean_object*, size_t, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Term_elabEnsureTypeOf___closed__1; lean_object* l_Lean_Elab_Term_elabNumLit___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -240,6 +241,7 @@ uint8_t l_Lean_checkTraceOption(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_mkTermInfo_match__2___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_mkExplicitBinder___closed__2; lean_object* l_Lean_Elab_Term_elabTypeStx___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Std_AssocList_find_x3f___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabUsingElabFns___spec__7(lean_object*, lean_object*); lean_object* l_Lean_evalConst___at_Lean_Elab_Term_evalExpr___spec__13___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Std_PersistentArray_append___rarg(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_mkAuxName_match__1___rarg(lean_object*, lean_object*, lean_object*); @@ -265,7 +267,6 @@ uint8_t lean_name_eq(lean_object*, lean_object*); lean_object* l_Lean_throwError___at_Lean_Elab_Term_mkAuxName___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_throwError___at_Lean_Elab_Term_elabOpen___spec__4___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_Term_0__Lean_Elab_Term_useImplicitLambda_x3f_match__1___rarg(lean_object*, lean_object*, lean_object*); -lean_object* l_Std_PersistentHashMap_findAux___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabUsingElabFns___spec__3___boxed(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_MessageData_nil; lean_object* l_Lean_Elab_logAt___at_Lean_Elab_Term_traceAtCmdPos___spec__3(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Declaration_foldExprM___at_Lean_Elab_Term_evalExpr___spec__9___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -289,6 +290,7 @@ lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_elabTermAux_match__1(l lean_object* l___private_Lean_Elab_Open_0__Lean_Elab_OpenDecl_elabOpenSimple___at_Lean_Elab_Term_elabOpen___spec__14(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_rawNatLit___closed__2; lean_object* lean_local_ctx_find_from_user_name(lean_object*, lean_object*); +lean_object* l_Std_PersistentHashMap_findAtAux___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabUsingElabFns___spec__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_getMVarDecl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_withLCtx___at_Lean_Elab_Term_elabSyntheticHole___spec__1___at_Lean_Elab_Term_elabSyntheticHole___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_postponeElabTerm(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -302,6 +304,7 @@ lean_object* l_Lean_Elab_Term_resolveName_x27_match__6___rarg(lean_object*, lean lean_object* l_Lean_Elab_withMacroExpansionInfo___at_Lean_Elab_Term_withMacroExpansion___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_elabTermAux___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_instMonadLogTermElabM___closed__1; +extern lean_object* l_Lean_ScopedEnvExtension_getState___at_Lean_KeyedDeclsAttribute_getValues___spec__1___rarg___closed__1; lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Term_addAutoBoundImplicits___spec__1___closed__3; extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19364____closed__5; lean_object* l_Lean_throwError___at_Lean_Elab_Term_throwMVarError___spec__1(lean_object*); @@ -365,6 +368,7 @@ extern lean_object* l_myMacro____x40_Init_Coe___hyg_166____closed__4; uint8_t l___private_Lean_Message_0__Lean_beqMessageSeverity____x40_Lean_Message___hyg_99_(uint8_t, uint8_t); lean_object* l_Lean_Elab_Term_instToStringMVarErrorKind_match__1(lean_object*); lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_elabTermAux___lambda__2___closed__3; +lean_object* l_Lean_ScopedEnvExtension_getState___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabUsingElabFns___spec__1(lean_object*, lean_object*); lean_object* l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Std_instInhabitedPersistentArray___closed__1; lean_object* l_Lean_Elab_Term_elabScientificLit___closed__1; @@ -427,7 +431,6 @@ extern lean_object* l_Lean_Elab_logDbgTrace___rarg___closed__1; lean_object* l_Lean_Elab_Term_elabBadCDot___rarg(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__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_throwError___at_Lean_Elab_Term_throwErrorIfErrors___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Std_PersistentHashMap_find_x3f___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabUsingElabFns___spec__2___boxed(lean_object*, lean_object*); lean_object* l_Std_HashSetImp_moveEntries___at___private_Lean_Elab_Term_0__Lean_Elab_Term_throwStuckAtUniverseCnstr___spec__6(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_isLetRecAuxMVar___closed__4; extern lean_object* l_Lean_maxRecDepth; @@ -476,6 +479,7 @@ lean_object* l_Lean_Elab_Term_tryPostponeIfNoneOrMVar(lean_object*, lean_object* lean_object* l_Lean_ResolveName_resolveNamespace_x3f(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_List_forIn_loop___at_Lean_Elab_Term_resolveName_x27___spec__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_logTrace___at_Lean_Elab_Term_traceAtCmdPos___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Std_PersistentHashMap_findAux___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabUsingElabFns___spec__4___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabLevel(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_mkTermElabAttributeUnsafe(lean_object*); lean_object* l_Std_PersistentArray_forMAux___at_Lean_Elab_Term_instMetaEvalTermElabM___spec__9___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -521,7 +525,6 @@ uint8_t l_Array_anyMUnsafe_any___at___private_Lean_Elab_Term_0__Lean_Elab_Term_i lean_object* l_Lean_Elab_Term_withMacroExpansion(lean_object*); lean_object* l_Lean_Elab_Term_getMessageLog(lean_object*); lean_object* l_Lean_throwErrorAt___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabTermAux___spec__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Std_AssocList_find_x3f___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabUsingElabFns___spec__6(lean_object*, lean_object*); lean_object* lean_st_ref_take(lean_object*, lean_object*); lean_object* l_Lean_getOptionDecl(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_MVarErrorInfo_logError___closed__2; @@ -642,6 +645,7 @@ lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Term_addAutoBoundImplicits_ lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_elabOptLevel(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_tryCoe___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Meta_isCoeDecl___closed__34; +lean_object* l_Std_PersistentHashMap_find_x3f___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabUsingElabFns___spec__3___boxed(lean_object*, lean_object*); uint8_t l_Lean_MetavarContext_isWellFormed(lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Elab_Term_blockImplicitLambda(lean_object*); lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Term_elabOpen___spec__11___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -696,6 +700,7 @@ lean_object* l_Lean_Core_getMaxHeartbeats(lean_object*); lean_object* l_Lean_Expr_setAppPPExplicitForExposingMVars(lean_object*); lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_1070_(lean_object*); lean_object* l_Std_PersistentArray_forMAux___at_Lean_Elab_Term_instMetaEvalTermElabM___spec__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Std_PersistentHashMap_find_x3f___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabUsingElabFns___spec__3(lean_object*, lean_object*); lean_object* l_Lean_Meta_withLocalDecl___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabImplicitLambda___spec__1___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabImplicitLambda___spec__2___lambda__1(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_getId(lean_object*); extern lean_object* l_Lean_Parser_Tactic_letrec___closed__1; @@ -705,7 +710,6 @@ lean_object* l_Lean_Elab_Term_mkTypeMismatchError(lean_object*, lean_object*, le lean_object* l_Lean_Elab_throwPostpone___at_Lean_Elab_Term_tryPostpone___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_format_pretty(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_State_levelNames___default; -lean_object* l_Std_PersistentHashMap_findAtAux___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabUsingElabFns___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_throwError___at_Lean_Elab_Term_synthesizeInst___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Array_contains___at_Lean_findField_x3f___spec__1(lean_object*, lean_object*); lean_object* l_Std_PersistentArray_forInAux___at_Lean_Elab_Term_addAutoBoundImplicits___spec__3___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -743,7 +747,6 @@ lean_object* l_Lean_Elab_Term_isMonadApp_match__1(lean_object*); lean_object* l_Lean_Elab_Term_mkTermElabAttribute(lean_object*); lean_object* l_Lean_Meta_forallTelescope___at___private_Lean_Elab_Term_0__Lean_Elab_Term_tryPureCoe_x3f___spec__1___at___private_Lean_Elab_Term_0__Lean_Elab_Term_tryPureCoe_x3f___spec__2___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_numLitKind___closed__2; -lean_object* l_Std_AssocList_find_x3f___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabUsingElabFns___spec__6___boxed(lean_object*, lean_object*); lean_object* l_Lean_printTraces___at_Lean_Core_instMetaEvalCoreM___spec__1(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_setEnv___at_Lean_Elab_Term_evalExpr___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint32_t lean_string_utf8_get(lean_object*, lean_object*); @@ -759,6 +762,7 @@ lean_object* lean_expr_dbg_to_string(lean_object*); lean_object* l_Lean_Elab_Term_getMessageLog___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_synthesizeInstMVarCore___lambda__1___closed__2; lean_object* l_Lean_Elab_Term_resolveName_x27_match__5(lean_object*); +lean_object* l_Std_PersistentHashMap_findAtAux___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabUsingElabFns___spec__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_anyMUnsafe_any___at_Lean_Elab_Term_logUnassignedUsingErrorInfos___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabLevel___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MetavarContext_localDeclDependsOn(lean_object*, lean_object*, lean_object*); @@ -770,13 +774,13 @@ lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_tryLiftAndCoe_match__1 lean_object* l_Lean_Meta_getMVarsAtDecl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); size_t lean_usize_modn(size_t, lean_object*); lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_exceptionToSorry___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Std_AssocList_find_x3f___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabUsingElabFns___spec__7___boxed(lean_object*, lean_object*); lean_object* l_Std_Range_forIn_loop___at___private_Lean_Elab_Term_0__Lean_Elab_Term_throwStuckAtUniverseCnstr___spec__14(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_FileMap_toPosition(lean_object*, lean_object*); lean_object* l___private_Init_Util_0__mkPanicMessageWithDecl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_throwPostpone___at_Lean_Elab_Term_tryPostpone___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_maxCoeSize; lean_object* l_Lean_Elab_Term_instMonadInfoTreeTermElabM___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l_Lean_instInhabitedKeyedDeclsAttribute___closed__1; extern lean_object* l_Lean_KernelException_toMessageData___closed__15; lean_object* l___private_Lean_Util_Trace_0__Lean_withNestedTracesFinalizer___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_Lean_Elab_Term_liftLevelM(lean_object*); @@ -935,6 +939,7 @@ lean_object* l_Lean_Elab_Term_resolveName_match__1___rarg(lean_object*, lean_obj lean_object* l_Lean_Elab_Term_isLetRecAuxMVar___closed__2; lean_object* l___regBuiltin_Lean_Elab_Term_elabCharLit___closed__1; lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_throwStuckAtUniverseCnstr___closed__4; +lean_object* l_Std_HashMapImp_find_x3f___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabUsingElabFns___spec__6___boxed(lean_object*, lean_object*); extern lean_object* l_Lean_Syntax_mkApp___closed__1; uint8_t l_UInt32_decEq(uint32_t, uint32_t); size_t lean_ptr_addr(lean_object*); @@ -951,7 +956,6 @@ lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_mkSomeContext; lean_object* l_Lean_Elab_Term_mkFreshBinderName(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_isLocalIdent_x3f_match__2(lean_object*); uint8_t l_Array_anyMUnsafe_any___at_Lean_Elab_Term_logUnassignedUsingErrorInfos___spec__2(lean_object*, lean_object*, size_t, size_t); -lean_object* l_Std_PersistentHashMap_findAux___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabUsingElabFns___spec__3(lean_object*, size_t, lean_object*); lean_object* l_Lean_Meta_trySynthInstance(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_mkTermElabAttributeUnsafe___closed__8; lean_object* l_Lean_Elab_Term_addAutoBoundImplicits___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -972,6 +976,7 @@ lean_object* l___regBuiltin_Lean_Elab_Term_elabNumLit___closed__1; lean_object* l_Lean_Elab_Term_isLetRecAuxMVar___closed__1; lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_elabImplicitLambdaAux___closed__2; lean_object* l_List_mapM___at_Lean_Elab_Term_resolveName_x27___spec__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_ScopedEnvExtension_getState___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabUsingElabFns___spec__1___boxed(lean_object*, lean_object*); lean_object* l_Lean_mkLevelSucc(lean_object*); lean_object* l_Lean_Elab_Term_resolveId_x3f_match__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_traceAtCmdPos(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -984,6 +989,7 @@ lean_object* l___private_Lean_Elab_InfoTree_0__Lean_Elab_getResetInfoTrees___at_ lean_object* l_Lean_Elab_Term_tryCoeThunk_x3f_match__1(lean_object*); extern lean_object* l_Lean_resetTraceState___rarg___lambda__1___closed__1; lean_object* l_List_map___at_Lean_MessageData_instCoeListExprMessageData___spec__1(lean_object*); +lean_object* l_Lean_SMap_find_x3f___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabUsingElabFns___spec__2(lean_object*, lean_object*); lean_object* l_Lean_throwError___at_Lean_Elab_Term_throwTypeMismatchError___spec__1(lean_object*); lean_object* l_Lean_Elab_elabSetOption___at_Lean_Elab_Term_elabSetOption___spec__1___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_Lean_Elab_Term_resolveName_x27___spec__6___closed__1; @@ -1073,7 +1079,6 @@ extern lean_object* l_Lean_Elab_elabSetOption_setOption___rarg___lambda__4___clo lean_object* l_Lean_Elab_Term_instMonadInfoTreeTermElabM___closed__2; lean_object* l_Lean_Elab_Term_withDeclName___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_logAt___at_Lean_Elab_Term_traceAtCmdPos___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Std_HashMapImp_find_x3f___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabUsingElabFns___spec__5(lean_object*, lean_object*); lean_object* l_Lean_throwError___at_Lean_Elab_Term_throwErrorIfErrors___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_addAndCompile___at_Lean_Elab_Term_evalExpr___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_mkAuxName_match__1(lean_object*); @@ -1152,11 +1157,13 @@ extern lean_object* l_Lean_Meta_mkSorry___closed__3; lean_object* l_Lean_Meta_withLCtx___at_Lean_Elab_Term_elabSyntheticHole___spec__1(lean_object*); lean_object* lean_expr_update_lambda(lean_object*, uint8_t, lean_object*, lean_object*); lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Term_elabOpen___spec__9___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_SMap_find_x3f___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabUsingElabFns___spec__2___boxed(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_withFreshMacroScope___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Meta_throwLetTypeMismatchMessage___rarg___closed__7; lean_object* l_Lean_Elab_Term_resolveName_x27_match__3___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_TermElabM_toIO_match__1(lean_object*, lean_object*); uint8_t l_Lean_Syntax_isNone(lean_object*); +lean_object* l_Std_PersistentHashMap_findAux___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabUsingElabFns___spec__4(lean_object*, size_t, lean_object*); lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_tryCoeSort___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_inferType(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_InfoTree_0__Lean_Elab_getResetInfoTrees___at_Lean_Elab_Term_withMacroExpansion___spec__2___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1165,6 +1172,7 @@ lean_object* l_Lean_Elab_Term_evalExpr___rarg(lean_object*, lean_object*, lean_o lean_object* l_Lean_throwError___at_Lean_Elab_Term_resolveId_x3f___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_instInhabitedMessageData___closed__1; lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_elabImplicitLambda_match__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_ScopedEnvExtension_getState___rarg___closed__3; lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_throwStuckAtUniverseCnstr_exposeRelevantUniverses_match__1(lean_object*); lean_object* l_Lean_Meta_isExprDefEq(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MessageLog_forM___at_Lean_Elab_Term_instMetaEvalTermElabM___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1228,6 +1236,7 @@ lean_object* l_Lean_Elab_Term_TermElabM_toIO_match__1___rarg(lean_object*, lean_ lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_mkTacticMVar(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Command_openSimple___elambda__1___closed__2; lean_object* l_Lean_Elab_Term_getLevelNames___boxed(lean_object*); +lean_object* l_Std_HashMapImp_find_x3f___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabUsingElabFns___spec__6(lean_object*, lean_object*); lean_object* l_Lean_Elab_elabSetOption_setOption___at_Lean_Elab_Term_elabSetOption___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_setMessageLog___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_indentD(lean_object*); @@ -1289,7 +1298,6 @@ lean_object* l_Lean_Elab_Term_instMonadQuotationTermElabM___lambda__1(lean_objec lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_tryLiftAndCoe___closed__1; lean_object* l_Lean_Elab_Term_mkTermInfo___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_instMonadInfoTreeTermElabM___closed__3; -lean_object* l_Lean_SMap_find_x3f___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabUsingElabFns___spec__1(lean_object*, lean_object*); extern lean_object* l_Lean_maxRecDepth___closed__1; lean_object* l_Lean_Elab_Term_resolveName_x27_match__5___rarg(lean_object*, lean_object*); lean_object* l_Lean_mkNatLit(lean_object*); @@ -1318,7 +1326,6 @@ extern lean_object* l_Lean_Elab_throwAutoBoundImplicitLocal___rarg___closed__2; lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_applyAttributesCore_match__2___rarg(lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_throwStuckAtUniverseCnstr(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Std_PersistentArray_anyM___at_Lean_MessageLog_hasErrors___spec__1(lean_object*); -lean_object* l_Std_HashMapImp_find_x3f___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabUsingElabFns___spec__5___boxed(lean_object*, lean_object*); lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Term_0__Lean_Elab_Term_applyAttributesCore___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_mkInstMVar___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_registerCustomErrorIfMVar_match__1(lean_object*); @@ -1352,7 +1359,6 @@ lean_object* l_Lean_Elab_pushInfoTree___at_Lean_Elab_Term_addTermInfo___spec__1_ lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Elab_Term_instMetaEvalTermElabM___spec__10___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_tryPostponeIfHasMVars(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_resolveName___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Std_PersistentHashMap_find_x3f___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabUsingElabFns___spec__2(lean_object*, lean_object*); lean_object* lean_usize_to_nat(size_t); lean_object* l_List_foldlM___at_Lean_Elab_Term_evalExpr___spec__10(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_expr_update_app(lean_object*, lean_object*, lean_object*); @@ -1391,7 +1397,6 @@ lean_object* l_Lean_Elab_Term_setLevelNames___boxed(lean_object*, lean_object*, lean_object* l_Lean_Elab_Term_isLocalIdent_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabSetOption___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkConst(lean_object*, lean_object*); -lean_object* l_Lean_SMap_find_x3f___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabUsingElabFns___spec__1___boxed(lean_object*, lean_object*); lean_object* l_Lean_mkSimpleThunk(lean_object*); lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_throwStuckAtUniverseCnstr_mkMessage_match__1___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_registerSyntheticMVar___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1473,7 +1478,6 @@ lean_object* l_Lean_Elab_Term_elabNumLit(lean_object*, lean_object*, lean_object uint8_t lean_nat_dec_lt(lean_object*, lean_object*); extern lean_object* l_myMacro____x40_Init_Notation___hyg_13868____closed__10; lean_object* l_Lean_Elab_throwUnsupportedSyntax___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabTermAux___spec__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Std_PersistentHashMap_findAtAux___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabUsingElabFns___spec__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabCharLit_match__1(lean_object*); lean_object* l_Std_HashSetImp_contains___at___private_Lean_Elab_Term_0__Lean_Elab_Term_throwStuckAtUniverseCnstr___spec__2___boxed(lean_object*, lean_object*); extern lean_object* l_Lean_Elab_instInhabitedInfoState___closed__1; @@ -22795,7 +22799,37 @@ x_2 = lean_alloc_closure((void*)(l___private_Lean_Elab_Term_0__Lean_Elab_Term_el return x_2; } } -lean_object* l_Std_PersistentHashMap_findAtAux___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabUsingElabFns___spec__4(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l_Lean_ScopedEnvExtension_getState___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabUsingElabFns___spec__1(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_3 = lean_ctor_get(x_1, 1); +x_4 = l_Lean_PersistentEnvExtension_getState___rarg(x_3, x_2); +x_5 = lean_ctor_get(x_4, 0); +lean_inc(x_5); +lean_dec(x_4); +if (lean_obj_tag(x_5) == 0) +{ +lean_object* x_6; lean_object* x_7; lean_object* x_8; +x_6 = l_Lean_ScopedEnvExtension_getState___at_Lean_KeyedDeclsAttribute_getValues___spec__1___rarg___closed__1; +x_7 = l_Lean_ScopedEnvExtension_getState___rarg___closed__3; +x_8 = lean_panic_fn(x_6, x_7); +return x_8; +} +else +{ +lean_object* x_9; lean_object* x_10; +x_9 = lean_ctor_get(x_5, 0); +lean_inc(x_9); +lean_dec(x_5); +x_10 = lean_ctor_get(x_9, 0); +lean_inc(x_10); +lean_dec(x_9); +return x_10; +} +} +} +lean_object* l_Std_PersistentHashMap_findAtAux___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabUsingElabFns___spec__5(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; uint8_t x_7; @@ -22837,7 +22871,7 @@ return x_15; } } } -lean_object* l_Std_PersistentHashMap_findAux___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabUsingElabFns___spec__3(lean_object* x_1, size_t x_2, lean_object* x_3) { +lean_object* l_Std_PersistentHashMap_findAux___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabUsingElabFns___spec__4(lean_object* x_1, size_t x_2, lean_object* x_3) { _start: { if (lean_obj_tag(x_1) == 0) @@ -22908,14 +22942,14 @@ x_21 = lean_ctor_get(x_1, 1); lean_inc(x_21); lean_dec(x_1); x_22 = lean_unsigned_to_nat(0u); -x_23 = l_Std_PersistentHashMap_findAtAux___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabUsingElabFns___spec__4(x_20, x_21, lean_box(0), x_22, x_3); +x_23 = l_Std_PersistentHashMap_findAtAux___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabUsingElabFns___spec__5(x_20, x_21, lean_box(0), x_22, x_3); lean_dec(x_21); lean_dec(x_20); return x_23; } } } -lean_object* l_Std_PersistentHashMap_find_x3f___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabUsingElabFns___spec__2(lean_object* x_1, lean_object* x_2) { +lean_object* l_Std_PersistentHashMap_find_x3f___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabUsingElabFns___spec__3(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; size_t x_4; lean_object* x_5; @@ -22923,11 +22957,11 @@ x_3 = lean_ctor_get(x_1, 0); lean_inc(x_3); lean_dec(x_1); x_4 = l_Lean_Name_hash(x_2); -x_5 = l_Std_PersistentHashMap_findAux___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabUsingElabFns___spec__3(x_3, x_4, x_2); +x_5 = l_Std_PersistentHashMap_findAux___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabUsingElabFns___spec__4(x_3, x_4, x_2); return x_5; } } -lean_object* l_Std_AssocList_find_x3f___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabUsingElabFns___spec__6(lean_object* x_1, lean_object* x_2) { +lean_object* l_Std_AssocList_find_x3f___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabUsingElabFns___spec__7(lean_object* x_1, lean_object* x_2) { _start: { if (lean_obj_tag(x_2) == 0) @@ -22959,7 +22993,7 @@ return x_9; } } } -lean_object* l_Std_HashMapImp_find_x3f___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabUsingElabFns___spec__5(lean_object* x_1, lean_object* x_2) { +lean_object* l_Std_HashMapImp_find_x3f___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabUsingElabFns___spec__6(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; lean_object* x_4; size_t x_5; size_t x_6; lean_object* x_7; lean_object* x_8; @@ -22969,12 +23003,12 @@ x_5 = l_Lean_Name_hash(x_2); x_6 = lean_usize_modn(x_5, x_4); lean_dec(x_4); x_7 = lean_array_uget(x_3, x_6); -x_8 = l_Std_AssocList_find_x3f___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabUsingElabFns___spec__6(x_2, x_7); +x_8 = l_Std_AssocList_find_x3f___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabUsingElabFns___spec__7(x_2, x_7); lean_dec(x_7); return x_8; } } -lean_object* l_Lean_SMap_find_x3f___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabUsingElabFns___spec__1(lean_object* x_1, lean_object* x_2) { +lean_object* l_Lean_SMap_find_x3f___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabUsingElabFns___spec__2(lean_object* x_1, lean_object* x_2) { _start: { uint8_t x_3; @@ -22987,11 +23021,11 @@ lean_inc(x_4); x_5 = lean_ctor_get(x_1, 1); lean_inc(x_5); lean_dec(x_1); -x_6 = l_Std_PersistentHashMap_find_x3f___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabUsingElabFns___spec__2(x_5, x_2); +x_6 = l_Std_PersistentHashMap_find_x3f___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabUsingElabFns___spec__3(x_5, x_2); if (lean_obj_tag(x_6) == 0) { lean_object* x_7; -x_7 = l_Std_HashMapImp_find_x3f___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabUsingElabFns___spec__5(x_4, x_2); +x_7 = l_Std_HashMapImp_find_x3f___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabUsingElabFns___spec__6(x_4, x_2); lean_dec(x_4); return x_7; } @@ -23022,7 +23056,7 @@ lean_object* x_11; lean_object* x_12; x_11 = lean_ctor_get(x_1, 0); lean_inc(x_11); lean_dec(x_1); -x_12 = l_Std_HashMapImp_find_x3f___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabUsingElabFns___spec__5(x_11, x_2); +x_12 = l_Std_HashMapImp_find_x3f___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabUsingElabFns___spec__6(x_11, x_2); lean_dec(x_11); return x_12; } @@ -23084,7 +23118,7 @@ lean_dec(x_15); x_18 = l_Lean_Elab_Term_termElabAttribute; x_19 = lean_ctor_get(x_18, 2); lean_inc(x_19); -x_20 = l_Lean_PersistentEnvExtension_getState___rarg(x_19, x_17); +x_20 = l_Lean_ScopedEnvExtension_getState___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabUsingElabFns___spec__1(x_19, x_17); lean_dec(x_17); lean_dec(x_19); x_21 = lean_ctor_get(x_20, 1); @@ -23092,7 +23126,7 @@ lean_inc(x_21); lean_dec(x_20); lean_inc(x_1); x_22 = l_Lean_Syntax_getKind(x_1); -x_23 = l_Lean_SMap_find_x3f___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabUsingElabFns___spec__1(x_21, x_22); +x_23 = l_Lean_SMap_find_x3f___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabUsingElabFns___spec__2(x_21, x_22); if (lean_obj_tag(x_23) == 0) { lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; @@ -23138,62 +23172,72 @@ return x_36; } } } -lean_object* l_Std_PersistentHashMap_findAtAux___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabUsingElabFns___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* l_Lean_ScopedEnvExtension_getState___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabUsingElabFns___spec__1___boxed(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; +x_3 = l_Lean_ScopedEnvExtension_getState___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabUsingElabFns___spec__1(x_1, x_2); +lean_dec(x_2); +lean_dec(x_1); +return x_3; +} +} +lean_object* l_Std_PersistentHashMap_findAtAux___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabUsingElabFns___spec__5___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_Std_PersistentHashMap_findAtAux___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabUsingElabFns___spec__4(x_1, x_2, x_3, x_4, x_5); +x_6 = l_Std_PersistentHashMap_findAtAux___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabUsingElabFns___spec__5(x_1, x_2, x_3, x_4, x_5); lean_dec(x_5); lean_dec(x_2); lean_dec(x_1); return x_6; } } -lean_object* l_Std_PersistentHashMap_findAux___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabUsingElabFns___spec__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Std_PersistentHashMap_findAux___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabUsingElabFns___spec__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { size_t x_4; lean_object* x_5; x_4 = lean_unbox_usize(x_2); lean_dec(x_2); -x_5 = l_Std_PersistentHashMap_findAux___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabUsingElabFns___spec__3(x_1, x_4, x_3); +x_5 = l_Std_PersistentHashMap_findAux___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabUsingElabFns___spec__4(x_1, x_4, x_3); lean_dec(x_3); return x_5; } } -lean_object* l_Std_PersistentHashMap_find_x3f___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabUsingElabFns___spec__2___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l_Std_PersistentHashMap_find_x3f___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabUsingElabFns___spec__3___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l_Std_PersistentHashMap_find_x3f___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabUsingElabFns___spec__2(x_1, x_2); +x_3 = l_Std_PersistentHashMap_find_x3f___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabUsingElabFns___spec__3(x_1, x_2); lean_dec(x_2); return x_3; } } -lean_object* l_Std_AssocList_find_x3f___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabUsingElabFns___spec__6___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l_Std_AssocList_find_x3f___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabUsingElabFns___spec__7___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l_Std_AssocList_find_x3f___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabUsingElabFns___spec__6(x_1, x_2); +x_3 = l_Std_AssocList_find_x3f___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabUsingElabFns___spec__7(x_1, x_2); lean_dec(x_2); lean_dec(x_1); return x_3; } } -lean_object* l_Std_HashMapImp_find_x3f___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabUsingElabFns___spec__5___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l_Std_HashMapImp_find_x3f___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabUsingElabFns___spec__6___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l_Std_HashMapImp_find_x3f___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabUsingElabFns___spec__5(x_1, x_2); +x_3 = l_Std_HashMapImp_find_x3f___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabUsingElabFns___spec__6(x_1, x_2); lean_dec(x_2); lean_dec(x_1); return x_3; } } -lean_object* l_Lean_SMap_find_x3f___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabUsingElabFns___spec__1___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l_Lean_SMap_find_x3f___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabUsingElabFns___spec__2___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l_Lean_SMap_find_x3f___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabUsingElabFns___spec__1(x_1, x_2); +x_3 = l_Lean_SMap_find_x3f___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabUsingElabFns___spec__2(x_1, x_2); lean_dec(x_2); return x_3; } diff --git a/stage0/stdlib/Lean/Elab/Util.c b/stage0/stdlib/Lean/Elab/Util.c index 898009aef6..ef09732858 100644 --- a/stage0/stdlib/Lean/Elab/Util.c +++ b/stage0/stdlib/Lean/Elab/Util.c @@ -25,11 +25,9 @@ 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*); extern lean_object* l_Std_Format_format_unicode___closed__1; lean_object* l_Lean_Elab_mkMacroAttribute(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*); lean_object* l_Lean_MacroScopesView_format___boxed(lean_object*, lean_object*); -lean_object* l_Std_PersistentHashMap_find_x3f___at_Lean_Elab_getMacros___spec__2___boxed(lean_object*, lean_object*); lean_object* l_String_toFormat(lean_object*); extern lean_object* l_Lean_Parser_Syntax_addPrec___closed__2; lean_object* lean_name_mk_string(lean_object*, lean_object*); @@ -39,46 +37,48 @@ lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_275____closed__1; lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_1090____closed__1; uint8_t l_Lean_Option_get___at_Lean_Elab_addMacroStack___spec__1(lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Command_namedPrio___elambda__1___closed__2; -lean_object* l_Std_HashMapImp_find_x3f___at_Lean_Elab_getMacros___spec__5___boxed(lean_object*, lean_object*); +extern lean_object* l_Lean_instInhabitedKeyedDeclsAttribute___closed__4; lean_object* l_Lean_Elab_mkMacroAttributeUnsafe___closed__3; -lean_object* l_Std_HashMapImp_find_x3f___at_Lean_Elab_getMacros___spec__5(lean_object*, lean_object*); lean_object* l_Lean_MacroScopesView_format(lean_object*, lean_object*); -lean_object* l_Std_PersistentHashMap_find_x3f___at_Lean_Elab_getMacros___spec__2(lean_object*, lean_object*); lean_object* l_Lean_Elab_addMacroStack___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_liftMacroM_match__1(lean_object*, lean_object*); -lean_object* l_Lean_SMap_find_x3f___at_Lean_Elab_getMacros___spec__1___boxed(lean_object*, lean_object*); lean_object* l_Lean_Elab_liftMacroM___rarg___lambda__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Std_PersistentHashMap_findAux___at_Lean_Elab_getMacros___spec__4___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_1090____closed__2; lean_object* lean_st_ref_get(lean_object*, lean_object*); lean_object* l_Lean_Elab_liftMacroM___rarg___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_name_eq(lean_object*, lean_object*); lean_object* l_Lean_Elab_throwUnsupportedSyntax___rarg(lean_object*); lean_object* l_Lean_Elab_mkUnusedBaseName___rarg(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Std_PersistentHashMap_findAux___at_Lean_Elab_getMacros___spec__4(lean_object*, size_t, lean_object*); lean_object* l_Lean_Elab_mkElabAttribute___rarg___closed__1; lean_object* lean_array_get_size(lean_object*); +extern lean_object* l_Lean_ScopedEnvExtension_getState___at_Lean_KeyedDeclsAttribute_getValues___spec__1___rarg___closed__1; lean_object* lean_string_append(lean_object*, lean_object*); lean_object* l_List_foldl___at_Lean_Elab_addMacroStack___spec__2(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_adaptMacro___rarg___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_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_580____at_Lean_Elab_getBetterRef___spec__1___boxed(lean_object*, lean_object*); lean_object* l_Lean_Elab_instMonadMacroAdapter___rarg___lambda__1(lean_object*, lean_object*, lean_object*); size_t l_USize_shiftRight(size_t, size_t); +lean_object* l_Std_AssocList_find_x3f___at_Lean_Elab_getMacros___spec__7(lean_object*, lean_object*); lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_275____closed__4; lean_object* l_Lean_Elab_expandOptNamedName___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_addMacroStack___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_nat_add(lean_object*, lean_object*); +lean_object* l_Lean_SMap_find_x3f___at_Lean_Elab_getMacros___spec__2(lean_object*, lean_object*); extern lean_object* l_Lean_mkAttributeImplOfConstant___closed__1; -lean_object* l_Std_PersistentHashMap_findAux___at_Lean_Elab_getMacros___spec__3(lean_object*, size_t, lean_object*); lean_object* l___private_Lean_Elab_Util_0__Lean_Elab_evalSyntaxConstantUnsafe(lean_object*, lean_object*, lean_object*); 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*); 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_ScopedEnvExtension_getState___at_Lean_Elab_getMacros___spec__1___boxed(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*); -lean_object* l_Lean_SMap_find_x3f___at_Lean_Elab_getMacros___spec__1(lean_object*, lean_object*); lean_object* l_Lean_Elab_getMacros_match__1___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_syntaxNodeKindOfAttrParam___closed__2; +lean_object* l_Std_PersistentHashMap_find_x3f___at_Lean_Elab_getMacros___spec__3___boxed(lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Util_0__Lean_Elab_expandMacroFns(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_liftMacroM___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_checkSyntaxNodeKindAtNamespaces___boxed(lean_object*, lean_object*, lean_object*, lean_object*); @@ -90,6 +90,7 @@ lean_object* l_Lean_Syntax_prettyPrint_match__1(lean_object*); extern lean_object* l_Lean_Parser_Syntax_addPrec___closed__5; lean_object* l_Lean_Name_appendIndexAfter(lean_object*, lean_object*); lean_object* l_Lean_Elab_mkUnusedBaseName___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Std_HashMapImp_find_x3f___at_Lean_Elab_getMacros___spec__6___boxed(lean_object*, lean_object*); lean_object* l_Lean_Elab_checkSyntaxNodeKindAtNamespacesAux(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_instMonadMacroAdapter(lean_object*, lean_object*); size_t l_Lean_Name_hash(lean_object*); @@ -113,7 +114,6 @@ 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*); lean_object* l_Lean_Option_get___at_Lean_Elab_addMacroStack___spec__1___boxed(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*); lean_object* l_Lean_Elab_mkElabAttribute___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -121,18 +121,19 @@ lean_object* l_Lean_Elab_mkMacroAttributeUnsafe___closed__9; lean_object* l___private_Lean_Elab_Util_0__Lean_Elab_expandMacroFns_match__1___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_throwErrorAt___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_liftMacroM(lean_object*, lean_object*); -lean_object* l_Std_PersistentHashMap_findAtAux___at_Lean_Elab_getMacros___spec__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Util_0__Lean_Elab_evalSyntaxConstantUnsafe___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_getBetterRef___lambda__1___boxed(lean_object*); lean_object* l_Lean_Syntax_prettyPrint_match__1___rarg(lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Util_0__Lean_Elab_expandMacroFns_match__1(lean_object*); extern lean_object* l_Lean_KernelException_toMessageData___closed__3; +lean_object* l_Lean_SMap_find_x3f___at_Lean_Elab_getMacros___spec__2___boxed(lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Util_0__Lean_Elab_evalSyntaxConstantUnsafe___closed__1; size_t l_USize_land(size_t, size_t); lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_275____closed__3; lean_object* l_Lean_Environment_evalConstCheck___rarg(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Command_namedName___elambda__1___closed__2; lean_object* l_Lean_Elab_addMacroStack___rarg___lambda__1___closed__3; +lean_object* l_Std_PersistentHashMap_findAtAux___at_Lean_Elab_getMacros___spec__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Std_fmt___at_Lean_Level_PP_Result_format___spec__1(lean_object*); lean_object* l_Lean_Syntax_unsetTrailing(lean_object*); lean_object* l_Lean_Elab_syntaxNodeKindOfAttrParam___closed__1; @@ -157,9 +158,9 @@ lean_object* l_Lean_Elab_getBetterRef_match__2(lean_object*); uint8_t l_Lean_Parser_isValidSyntaxNodeKind(lean_object*, lean_object*); extern lean_object* l_Lean_getSanitizeNames___closed__2; lean_object* l_Lean_Elab_mkUnusedBaseName___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* lean_panic_fn(lean_object*, lean_object*); extern lean_object* l_Lean_getSanitizeNames___closed__1; lean_object* l_Lean_throwError___at_Lean_Attribute_Builtin_getId___spec__2(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Std_PersistentHashMap_findAux___at_Lean_Elab_getMacros___spec__3___boxed(lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Util_0__Lean_Elab_expandMacro_x3f(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_evalSyntaxConstant(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_pp_macroStack; @@ -167,9 +168,11 @@ lean_object* l_Lean_Elab_adaptMacro___rarg(lean_object*, lean_object*, lean_obje lean_object* l_Lean_Elab_getBetterRef___closed__1; lean_object* l_Lean_Elab_getBetterRef___boxed(lean_object*, lean_object*); lean_object* l_List_foldl___at_Lean_Elab_addMacroStack___spec__2___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l_Std_AssocList_find_x3f___at_Lean_Elab_getMacros___spec__7___boxed(lean_object*, lean_object*); lean_object* l_List_foldl___at_Lean_MacroScopesView_review___spec__1(lean_object*, lean_object*); uint8_t l_Lean_Syntax_isNone(lean_object*); lean_object* l_Lean_KVMap_findCore(lean_object*, lean_object*); +extern lean_object* l_Lean_ScopedEnvExtension_getState___rarg___closed__3; lean_object* l_Lean_Elab_checkSyntaxNodeKindAtNamespacesAux_match__1(lean_object*); lean_object* l_Lean_Elab_getBetterRef_match__1(lean_object*); uint8_t l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_580____at_Lean_Elab_getBetterRef___spec__1(lean_object*, lean_object*); @@ -180,6 +183,7 @@ lean_object* l_List_foldl___at_Lean_Elab_addMacroStack___spec__2___closed__2; lean_object* l_Lean_Elab_expandOptNamedPrio___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_checkSyntaxNodeKind___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_indentD(lean_object*); +lean_object* l_Std_HashMapImp_find_x3f___at_Lean_Elab_getMacros___spec__6(lean_object*, lean_object*); lean_object* l_Lean_Elab_getMacros_match__1(lean_object*); lean_object* l_Lean_Elab_adaptMacro___rarg___lambda__4(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_checkSyntaxNodeKind(lean_object*, lean_object*, lean_object*, lean_object*); @@ -189,15 +193,17 @@ lean_object* l_Lean_Elab_getBetterRef_match__1___rarg(lean_object*, lean_object* lean_object* l_Lean_Elab_mkMacroAttributeUnsafe___closed__2; lean_object* l_unsafeCast(lean_object*, lean_object*, lean_object*); uint8_t l_List_isEmpty___rarg(lean_object*); -lean_object* l_Std_AssocList_find_x3f___at_Lean_Elab_getMacros___spec__6(lean_object*, lean_object*); lean_object* l_Lean_KeyedDeclsAttribute_init___rarg(lean_object*, lean_object*, lean_object*); lean_object* lean_usize_to_nat(size_t); lean_object* l_Lean_Elab_liftMacroM___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_addMacroStack___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Std_PersistentHashMap_find_x3f___at_Lean_Elab_getMacros___spec__3(lean_object*, lean_object*); lean_object* l_Lean_Elab_addMacroStack___rarg___lambda__1___closed__1; lean_object* l_Lean_Elab_addMacroStack___rarg___lambda__1___closed__2; +lean_object* l_Lean_ScopedEnvExtension_getState___at_Lean_Elab_getMacros___spec__1(lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Util_0__Lean_Elab_expandMacroFns_match__2___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_liftMacroM_match__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Std_PersistentHashMap_findAtAux___at_Lean_Elab_getMacros___spec__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_syntaxNodeKindOfAttrParam(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_evalPrio(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_mkMacroAttributeUnsafe___closed__4; @@ -205,7 +211,6 @@ lean_object* l_Lean_Elab_mkMacroAttributeUnsafe___closed__8; lean_object* l_Lean_Syntax_formatStxAux(lean_object*, uint8_t, lean_object*, lean_object*); lean_object* l_Lean_Syntax_reprint(lean_object*); lean_object* l_Lean_Elab_addMacroStack_match__1(lean_object*); -lean_object* l_Std_AssocList_find_x3f___at_Lean_Elab_getMacros___spec__6___boxed(lean_object*, lean_object*); lean_object* l_Lean_Elab_mkUnusedBaseName(lean_object*); lean_object* l_Lean_Elab_getBetterRef(lean_object*, lean_object*); uint8_t lean_nat_dec_lt(lean_object*, lean_object*); @@ -1679,7 +1684,37 @@ x_2 = lean_alloc_closure((void*)(l_Lean_Elab_getMacros_match__1___rarg), 3, 0); return x_2; } } -lean_object* l_Std_PersistentHashMap_findAtAux___at_Lean_Elab_getMacros___spec__4(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l_Lean_ScopedEnvExtension_getState___at_Lean_Elab_getMacros___spec__1(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_3 = lean_ctor_get(x_1, 1); +x_4 = l_Lean_PersistentEnvExtension_getState___rarg(x_3, x_2); +x_5 = lean_ctor_get(x_4, 0); +lean_inc(x_5); +lean_dec(x_4); +if (lean_obj_tag(x_5) == 0) +{ +lean_object* x_6; lean_object* x_7; lean_object* x_8; +x_6 = l_Lean_ScopedEnvExtension_getState___at_Lean_KeyedDeclsAttribute_getValues___spec__1___rarg___closed__1; +x_7 = l_Lean_ScopedEnvExtension_getState___rarg___closed__3; +x_8 = lean_panic_fn(x_6, x_7); +return x_8; +} +else +{ +lean_object* x_9; lean_object* x_10; +x_9 = lean_ctor_get(x_5, 0); +lean_inc(x_9); +lean_dec(x_5); +x_10 = lean_ctor_get(x_9, 0); +lean_inc(x_10); +lean_dec(x_9); +return x_10; +} +} +} +lean_object* l_Std_PersistentHashMap_findAtAux___at_Lean_Elab_getMacros___spec__5(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; uint8_t x_7; @@ -1721,7 +1756,7 @@ return x_15; } } } -lean_object* l_Std_PersistentHashMap_findAux___at_Lean_Elab_getMacros___spec__3(lean_object* x_1, size_t x_2, lean_object* x_3) { +lean_object* l_Std_PersistentHashMap_findAux___at_Lean_Elab_getMacros___spec__4(lean_object* x_1, size_t x_2, lean_object* x_3) { _start: { if (lean_obj_tag(x_1) == 0) @@ -1792,14 +1827,14 @@ x_21 = lean_ctor_get(x_1, 1); lean_inc(x_21); lean_dec(x_1); x_22 = lean_unsigned_to_nat(0u); -x_23 = l_Std_PersistentHashMap_findAtAux___at_Lean_Elab_getMacros___spec__4(x_20, x_21, lean_box(0), x_22, x_3); +x_23 = l_Std_PersistentHashMap_findAtAux___at_Lean_Elab_getMacros___spec__5(x_20, x_21, lean_box(0), x_22, x_3); lean_dec(x_21); lean_dec(x_20); return x_23; } } } -lean_object* l_Std_PersistentHashMap_find_x3f___at_Lean_Elab_getMacros___spec__2(lean_object* x_1, lean_object* x_2) { +lean_object* l_Std_PersistentHashMap_find_x3f___at_Lean_Elab_getMacros___spec__3(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; size_t x_4; lean_object* x_5; @@ -1807,11 +1842,11 @@ x_3 = lean_ctor_get(x_1, 0); lean_inc(x_3); lean_dec(x_1); x_4 = l_Lean_Name_hash(x_2); -x_5 = l_Std_PersistentHashMap_findAux___at_Lean_Elab_getMacros___spec__3(x_3, x_4, x_2); +x_5 = l_Std_PersistentHashMap_findAux___at_Lean_Elab_getMacros___spec__4(x_3, x_4, x_2); return x_5; } } -lean_object* l_Std_AssocList_find_x3f___at_Lean_Elab_getMacros___spec__6(lean_object* x_1, lean_object* x_2) { +lean_object* l_Std_AssocList_find_x3f___at_Lean_Elab_getMacros___spec__7(lean_object* x_1, lean_object* x_2) { _start: { if (lean_obj_tag(x_2) == 0) @@ -1843,7 +1878,7 @@ return x_9; } } } -lean_object* l_Std_HashMapImp_find_x3f___at_Lean_Elab_getMacros___spec__5(lean_object* x_1, lean_object* x_2) { +lean_object* l_Std_HashMapImp_find_x3f___at_Lean_Elab_getMacros___spec__6(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; lean_object* x_4; size_t x_5; size_t x_6; lean_object* x_7; lean_object* x_8; @@ -1853,12 +1888,12 @@ x_5 = l_Lean_Name_hash(x_2); x_6 = lean_usize_modn(x_5, x_4); lean_dec(x_4); x_7 = lean_array_uget(x_3, x_6); -x_8 = l_Std_AssocList_find_x3f___at_Lean_Elab_getMacros___spec__6(x_2, x_7); +x_8 = l_Std_AssocList_find_x3f___at_Lean_Elab_getMacros___spec__7(x_2, x_7); lean_dec(x_7); return x_8; } } -lean_object* l_Lean_SMap_find_x3f___at_Lean_Elab_getMacros___spec__1(lean_object* x_1, lean_object* x_2) { +lean_object* l_Lean_SMap_find_x3f___at_Lean_Elab_getMacros___spec__2(lean_object* x_1, lean_object* x_2) { _start: { uint8_t x_3; @@ -1871,11 +1906,11 @@ lean_inc(x_4); x_5 = lean_ctor_get(x_1, 1); lean_inc(x_5); lean_dec(x_1); -x_6 = l_Std_PersistentHashMap_find_x3f___at_Lean_Elab_getMacros___spec__2(x_5, x_2); +x_6 = l_Std_PersistentHashMap_find_x3f___at_Lean_Elab_getMacros___spec__3(x_5, x_2); if (lean_obj_tag(x_6) == 0) { lean_object* x_7; -x_7 = l_Std_HashMapImp_find_x3f___at_Lean_Elab_getMacros___spec__5(x_4, x_2); +x_7 = l_Std_HashMapImp_find_x3f___at_Lean_Elab_getMacros___spec__6(x_4, x_2); lean_dec(x_4); return x_7; } @@ -1906,7 +1941,7 @@ lean_object* x_11; lean_object* x_12; x_11 = lean_ctor_get(x_1, 0); lean_inc(x_11); lean_dec(x_1); -x_12 = l_Std_HashMapImp_find_x3f___at_Lean_Elab_getMacros___spec__5(x_11, x_2); +x_12 = l_Std_HashMapImp_find_x3f___at_Lean_Elab_getMacros___spec__6(x_11, x_2); lean_dec(x_11); return x_12; } @@ -1921,12 +1956,12 @@ x_5 = l_Lean_Syntax_getKind(x_2); x_6 = l_Lean_Elab_macroAttribute; x_7 = lean_ctor_get(x_6, 2); lean_inc(x_7); -x_8 = l_Lean_PersistentEnvExtension_getState___rarg(x_7, x_1); +x_8 = l_Lean_ScopedEnvExtension_getState___at_Lean_Elab_getMacros___spec__1(x_7, x_1); lean_dec(x_7); x_9 = lean_ctor_get(x_8, 1); lean_inc(x_9); lean_dec(x_8); -x_10 = l_Lean_SMap_find_x3f___at_Lean_Elab_getMacros___spec__1(x_9, x_5); +x_10 = l_Lean_SMap_find_x3f___at_Lean_Elab_getMacros___spec__2(x_9, x_5); lean_dec(x_5); if (lean_obj_tag(x_10) == 0) { @@ -1950,62 +1985,72 @@ return x_14; } } } -lean_object* l_Std_PersistentHashMap_findAtAux___at_Lean_Elab_getMacros___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* l_Lean_ScopedEnvExtension_getState___at_Lean_Elab_getMacros___spec__1___boxed(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; +x_3 = l_Lean_ScopedEnvExtension_getState___at_Lean_Elab_getMacros___spec__1(x_1, x_2); +lean_dec(x_2); +lean_dec(x_1); +return x_3; +} +} +lean_object* l_Std_PersistentHashMap_findAtAux___at_Lean_Elab_getMacros___spec__5___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_Std_PersistentHashMap_findAtAux___at_Lean_Elab_getMacros___spec__4(x_1, x_2, x_3, x_4, x_5); +x_6 = l_Std_PersistentHashMap_findAtAux___at_Lean_Elab_getMacros___spec__5(x_1, x_2, x_3, x_4, x_5); lean_dec(x_5); lean_dec(x_2); lean_dec(x_1); return x_6; } } -lean_object* l_Std_PersistentHashMap_findAux___at_Lean_Elab_getMacros___spec__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Std_PersistentHashMap_findAux___at_Lean_Elab_getMacros___spec__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { size_t x_4; lean_object* x_5; x_4 = lean_unbox_usize(x_2); lean_dec(x_2); -x_5 = l_Std_PersistentHashMap_findAux___at_Lean_Elab_getMacros___spec__3(x_1, x_4, x_3); +x_5 = l_Std_PersistentHashMap_findAux___at_Lean_Elab_getMacros___spec__4(x_1, x_4, x_3); lean_dec(x_3); return x_5; } } -lean_object* l_Std_PersistentHashMap_find_x3f___at_Lean_Elab_getMacros___spec__2___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l_Std_PersistentHashMap_find_x3f___at_Lean_Elab_getMacros___spec__3___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l_Std_PersistentHashMap_find_x3f___at_Lean_Elab_getMacros___spec__2(x_1, x_2); +x_3 = l_Std_PersistentHashMap_find_x3f___at_Lean_Elab_getMacros___spec__3(x_1, x_2); lean_dec(x_2); return x_3; } } -lean_object* l_Std_AssocList_find_x3f___at_Lean_Elab_getMacros___spec__6___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l_Std_AssocList_find_x3f___at_Lean_Elab_getMacros___spec__7___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l_Std_AssocList_find_x3f___at_Lean_Elab_getMacros___spec__6(x_1, x_2); +x_3 = l_Std_AssocList_find_x3f___at_Lean_Elab_getMacros___spec__7(x_1, x_2); lean_dec(x_2); lean_dec(x_1); return x_3; } } -lean_object* l_Std_HashMapImp_find_x3f___at_Lean_Elab_getMacros___spec__5___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l_Std_HashMapImp_find_x3f___at_Lean_Elab_getMacros___spec__6___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l_Std_HashMapImp_find_x3f___at_Lean_Elab_getMacros___spec__5(x_1, x_2); +x_3 = l_Std_HashMapImp_find_x3f___at_Lean_Elab_getMacros___spec__6(x_1, x_2); lean_dec(x_2); lean_dec(x_1); return x_3; } } -lean_object* l_Lean_SMap_find_x3f___at_Lean_Elab_getMacros___spec__1___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l_Lean_SMap_find_x3f___at_Lean_Elab_getMacros___spec__2___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l_Lean_SMap_find_x3f___at_Lean_Elab_getMacros___spec__1(x_1, x_2); +x_3 = l_Lean_SMap_find_x3f___at_Lean_Elab_getMacros___spec__2(x_1, x_2); lean_dec(x_2); return x_3; } diff --git a/stage0/stdlib/Lean/KeyedDeclsAttribute.c b/stage0/stdlib/Lean/KeyedDeclsAttribute.c index 97cd92b8fd..d700904710 100644 --- a/stage0/stdlib/Lean/KeyedDeclsAttribute.c +++ b/stage0/stdlib/Lean/KeyedDeclsAttribute.c @@ -1,6 +1,6 @@ // Lean compiler output // Module: Lean.KeyedDeclsAttribute -// Imports: Init Lean.Attributes Lean.Compiler.InitAttr Lean.ToExpr +// Imports: Init Lean.Attributes Lean.Compiler.InitAttr Lean.ToExpr Lean.ScopedEnvExtension #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -13,9 +13,9 @@ #ifdef __cplusplus extern "C" { #endif -lean_object* l_List_reverse___rarg(lean_object*); +lean_object* l_Std_AssocList_find_x3f___at_Lean_KeyedDeclsAttribute_getValues___spec__7___rarg(lean_object*, lean_object*); extern lean_object* l_Lean_Name_toString___closed__1; -lean_object* l_Lean_KeyedDeclsAttribute_init___rarg___lambda__2___boxed(lean_object*); +lean_object* l_Lean_KeyedDeclsAttribute_init___rarg___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_addMessageContextPartial___at_Lean_Core_instAddMessageContextCoreM___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_KeyedDeclsAttribute_instInhabitedDef(lean_object*); lean_object* l_Std_PersistentHashMap_insert___at_Lean_KeyedDeclsAttribute_Table_insert___spec__10___rarg(lean_object*, lean_object*, lean_object*); @@ -23,179 +23,169 @@ size_t l_USize_add(size_t, size_t); lean_object* l_Std_AssocList_foldlM___at_Lean_KeyedDeclsAttribute_Table_insert___spec__18___rarg(lean_object*, lean_object*); lean_object* l_Lean_KeyedDeclsAttribute_declareBuiltin___rarg___closed__3; lean_object* l_Std_HashMapImp_find_x3f___at_Lean_KeyedDeclsAttribute_Table_insert___spec__5___rarg(lean_object*, lean_object*); -lean_object* l_Std_AssocList_find_x3f___at_Lean_KeyedDeclsAttribute_getValues___spec__6___rarg(lean_object*, lean_object*); +lean_object* l_Lean_KeyedDeclsAttribute_init_match__2(lean_object*); extern lean_object* l___private_Lean_Environment_0__Lean_Environment_throwUnexpectedType___rarg___closed__1; lean_object* l_Lean_KeyedDeclsAttribute_declareBuiltin(lean_object*); lean_object* l_Lean_stringToMessageData(lean_object*); lean_object* l_Std_mkHashMap___at_Lean_KeyedDeclsAttribute_instInhabitedExtensionState___spec__1___rarg(lean_object*); -lean_object* l_Lean_setEnv___at_Lean_KeyedDeclsAttribute_init___spec__8(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Std_AssocList_replace___at_Lean_KeyedDeclsAttribute_Table_insert___spec__30___rarg(lean_object*, lean_object*, lean_object*); -lean_object* lean_mk_empty_array_with_capacity(lean_object*); lean_object* l_IO_mkRef___at_Lean_KeyedDeclsAttribute_init___spec__2(lean_object*); lean_object* l_Lean_KeyedDeclsAttribute_init___rarg___closed__4; -lean_object* l_Lean_throwError___at_Lean_KeyedDeclsAttribute_init___spec__7(lean_object*); +lean_object* l_Lean_throwError___at_Lean_KeyedDeclsAttribute_init___spec__7(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Std_HashMapImp_expand___at_Lean_KeyedDeclsAttribute_Table_insert___spec__27(lean_object*); extern lean_object* l_Lean_Parser_Syntax_addPrec___closed__2; lean_object* l_Lean_KeyedDeclsAttribute_declareBuiltin___rarg___closed__9; -lean_object* l_Std_PersistentHashMap_findAux___at_Lean_KeyedDeclsAttribute_getValues___spec__3(lean_object*); lean_object* lean_name_mk_string(lean_object*, lean_object*); -lean_object* l_Std_AssocList_find_x3f___at_Lean_KeyedDeclsAttribute_getValues___spec__6___rarg___boxed(lean_object*, lean_object*); -uint8_t l_USize_decEq(size_t, size_t); lean_object* lean_array_uget(lean_object*, size_t); lean_object* lean_io_error_to_string(lean_object*); lean_object* l_Lean_SMap_find_x3f___at_Lean_KeyedDeclsAttribute_Table_insert___spec__1(lean_object*); lean_object* l_Lean_KeyedDeclsAttribute_Def_evalKey___default___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_KeyedDeclsAttribute_instInhabitedDef___lambda__1(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_registerPersistentEnvExtensionUnsafe___at_Lean_KeyedDeclsAttribute_init___spec__3___rarg(lean_object*, lean_object*); +lean_object* l_Lean_KeyedDeclsAttribute_init___rarg___lambda__8(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); +lean_object* l_Std_PersistentHashMap_findAtAux___at_Lean_KeyedDeclsAttribute_getValues___spec__5(lean_object*); extern lean_object* l_Lean_LocalContext_fvarIdToDecl___default___closed__1; lean_object* l_Lean_KeyedDeclsAttribute_declareBuiltin___rarg___closed__8; lean_object* l_Std_PersistentHashMap_insertAtCollisionNodeAux___at_Lean_KeyedDeclsAttribute_Table_insert___spec__13___rarg(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_throwError___at_Lean_KeyedDeclsAttribute_init___spec__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_instInhabitedKeyedDeclsAttribute___closed__4; lean_object* lean_array_uset(lean_object*, size_t, lean_object*); -lean_object* l_Array_forInUnsafe_loop___at___private_Lean_KeyedDeclsAttribute_0__Lean_KeyedDeclsAttribute_addImported___spec__1(lean_object*); lean_object* l_Lean_KeyedDeclsAttribute_init___rarg___closed__1; -extern lean_object* l_Lean_registerInternalExceptionId___closed__2; +lean_object* l_Lean_ScopedEnvExtension_getState___at_Lean_KeyedDeclsAttribute_getValues___spec__1(lean_object*); lean_object* l_Std_AssocList_contains___at_Lean_KeyedDeclsAttribute_Table_insert___spec__26___rarg___boxed(lean_object*, lean_object*); -lean_object* l_Std_HashMapImp_find_x3f___at_Lean_KeyedDeclsAttribute_getValues___spec__7___rarg(lean_object*, lean_object*); -extern lean_object* l_Std_Format_join___closed__1; size_t l_USize_sub(size_t, size_t); lean_object* l_Lean_KeyedDeclsAttribute_getValues(lean_object*); lean_object* l_Std_PersistentHashMap_findAtAux___at_Lean_KeyedDeclsAttribute_Table_insert___spec__4___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_KeyedDeclsAttribute_Def_builtinName___default; lean_object* lean_st_ref_get(lean_object*, lean_object*); -lean_object* l_Lean_KeyedDeclsAttribute_init___rarg___lambda__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_instInhabitedParserDescr___closed__1; uint8_t lean_name_eq(lean_object*, lean_object*); +lean_object* l_Std_PersistentHashMap_findAtAux___at_Lean_KeyedDeclsAttribute_getValues___spec__5___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_setEnv___at_Lean_KeyedDeclsAttribute_init___spec__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_getConstInfo___at_Lean_registerInitAttrUnsafe___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_ScopedEnvExtension_getState___at_Lean_KeyedDeclsAttribute_getValues___spec__1___rarg___boxed(lean_object*, lean_object*); lean_object* lean_array_push(lean_object*, lean_object*); lean_object* lean_array_get_size(lean_object*); lean_object* l_Std_PersistentHashMap_getCollisionNodeSize___rarg(lean_object*); +lean_object* l_Lean_ScopedEnvExtension_getState___at_Lean_KeyedDeclsAttribute_getValues___spec__1___rarg___closed__1; lean_object* lean_string_append(lean_object*, lean_object*); -lean_object* l_Lean_ofExcept___at_Lean_KeyedDeclsAttribute_init___spec__6(lean_object*); -lean_object* l_Std_HashMapImp_find_x3f___at_Lean_KeyedDeclsAttribute_getValues___spec__7___rarg___boxed(lean_object*, lean_object*); lean_object* l_Lean_throwError___at_Lean_registerTagAttribute___spec__5(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Std_AssocList_find_x3f___at_Lean_KeyedDeclsAttribute_Table_insert___spec__8___rarg(lean_object*, lean_object*); -lean_object* l_Std_PersistentHashMap_find_x3f___at_Lean_KeyedDeclsAttribute_getValues___spec__2(lean_object*); -lean_object* l___private_Lean_KeyedDeclsAttribute_0__Lean_KeyedDeclsAttribute_addExtensionEntry___rarg(lean_object*, lean_object*); -lean_object* l_Lean_evalConstCheck___at_Lean_KeyedDeclsAttribute_init___spec__5___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_KeyedDeclsAttribute_init___rarg___lambda__7___closed__4; lean_object* l_Lean_KeyedDeclsAttribute_init(lean_object*); +lean_object* l_Std_HashMapImp_find_x3f___at_Lean_KeyedDeclsAttribute_getValues___spec__6(lean_object*); lean_object* l_Lean_setEnv___at_Lean_registerTagAttribute___spec__4(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_throwError___at_Lean_KeyedDeclsAttribute_init___spec__7___rarg(lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Applicative_seqRight___default___rarg___closed__1; lean_object* l_Lean_SMap_insert___at_Lean_KeyedDeclsAttribute_Table_insert___spec__9___rarg(lean_object*, lean_object*, lean_object*); size_t l_USize_shiftRight(size_t, size_t); +lean_object* l_Lean_KeyedDeclsAttribute_instInhabitedOLeanEntry; +lean_object* l_Lean_ofExcept___at_Lean_KeyedDeclsAttribute_init___spec__4___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Std_AssocList_find_x3f___at_Lean_KeyedDeclsAttribute_Table_insert___spec__8___rarg___boxed(lean_object*, lean_object*); lean_object* l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Std_PersistentHashMap_find_x3f___at_Lean_KeyedDeclsAttribute_Table_insert___spec__2(lean_object*); -uint8_t l_USize_decLt(size_t, size_t); -lean_object* l_Lean_KeyedDeclsAttribute_init___rarg___lambda__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_KeyedDeclsAttribute_init___rarg___lambda__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_KeyedDeclsAttribute_Table_insert_match__1___rarg(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_throwError___at_Lean_KeyedDeclsAttribute_init___spec__9(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Std_mkHashMap___at_Lean_KeyedDeclsAttribute_ExtensionState_table___default___spec__1___rarg(lean_object*); lean_object* l_Lean_KeyedDeclsAttribute_declareBuiltin___rarg___closed__5; -lean_object* l___private_Lean_KeyedDeclsAttribute_0__Lean_KeyedDeclsAttribute_mkInitial___rarg___boxed(lean_object*, lean_object*); lean_object* l_Lean_KeyedDeclsAttribute_addBuiltin(lean_object*); lean_object* l_Lean_KeyedDeclsAttribute_ExtensionState_table___default___closed__2; lean_object* lean_nat_add(lean_object*, lean_object*); -lean_object* l_Std_PersistentHashMap_find_x3f___at_Lean_KeyedDeclsAttribute_getValues___spec__2___rarg___boxed(lean_object*, lean_object*); -lean_object* l_Std_AssocList_find_x3f___at_Lean_KeyedDeclsAttribute_getValues___spec__8(lean_object*); +extern lean_object* l_Lean_ScopedEnvExtension_instInhabitedDescr___rarg___closed__1; extern lean_object* l_Lean_instInhabitedException___closed__1; lean_object* l_Lean_KeyedDeclsAttribute_instInhabitedExtensionState___closed__1; lean_object* l_Std_PersistentHashMap_insertAux___at_Lean_KeyedDeclsAttribute_Table_insert___spec__11(lean_object*); lean_object* l_Lean_Name_toStringWithSep(lean_object*, lean_object*); +lean_object* l_Lean_throwError___at_Lean_KeyedDeclsAttribute_init___spec__5___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkAppN(lean_object*, lean_object*); -lean_object* l___private_Lean_KeyedDeclsAttribute_0__Lean_KeyedDeclsAttribute_addImported___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_registerTagAttribute___closed__5; lean_object* l_Std_HashMapImp_find_x3f___at_Lean_KeyedDeclsAttribute_Table_insert___spec__7___rarg(lean_object*, lean_object*); +lean_object* l_Lean_KeyedDeclsAttribute_init___rarg___lambda__7(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Std_HashMapImp_find_x3f___at_Lean_KeyedDeclsAttribute_Table_insert___spec__7(lean_object*); +lean_object* l_Lean_evalConstCheck___at_Lean_KeyedDeclsAttribute_init___spec__3___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_fget(lean_object*, lean_object*); -lean_object* l_Std_AssocList_find_x3f___at_Lean_KeyedDeclsAttribute_getValues___spec__6(lean_object*); +lean_object* l_Lean_instInhabitedKeyedDeclsAttribute___closed__3; uint8_t l___private_Lean_Attributes_0__Lean_beqAttributeKind____x40_Lean_Attributes___hyg_115_(uint8_t, uint8_t); -lean_object* l_Lean_SMap_find_x3f___at_Lean_KeyedDeclsAttribute_getValues___spec__1___rarg(lean_object*, lean_object*); lean_object* l_Lean_KeyedDeclsAttribute_instInhabitedDef___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_ScopedEnvExtension_getState___at_Lean_KeyedDeclsAttribute_getValues___spec__1___rarg(lean_object*, lean_object*); lean_object* l_Lean_KeyedDeclsAttribute_Table_insert(lean_object*); +lean_object* l_Lean_SMap_find_x3f___at_Lean_KeyedDeclsAttribute_getValues___spec__2(lean_object*); lean_object* l_Lean_MessageData_toString(lean_object*, lean_object*); lean_object* lean_st_ref_take(lean_object*, lean_object*); -lean_object* l___private_Lean_KeyedDeclsAttribute_0__Lean_KeyedDeclsAttribute_mkInitial(lean_object*); extern lean_object* l_Std_PersistentHashMap_insertAux___rarg___closed__3; lean_object* l_Lean_KeyedDeclsAttribute_ExtensionState_table___default___closed__1; -lean_object* l___private_Lean_KeyedDeclsAttribute_0__Lean_KeyedDeclsAttribute_addImported_match__1(lean_object*, lean_object*); +lean_object* l_EStateM_bind___rarg(lean_object*, lean_object*, lean_object*); +lean_object* l_IO_FS_Stream_ofBuffer___lambda__1___boxed(lean_object*, lean_object*); lean_object* l_Std_mkHashMap___at_Lean_KeyedDeclsAttribute_init___spec__1___rarg(lean_object*); lean_object* l_Lean_KeyedDeclsAttribute_declareBuiltin___rarg___closed__6; extern lean_object* l_myMacro____x40_Init_System_IO___hyg_2554____closed__17; lean_object* l_Std_HashMapImp_insert___at_Lean_KeyedDeclsAttribute_Table_insert___spec__14___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Std_HashMapImp_find_x3f___at_Lean_KeyedDeclsAttribute_Table_insert___spec__5(lean_object*); -lean_object* l_Lean_evalConstCheck___at_Lean_KeyedDeclsAttribute_init___spec__5(lean_object*); +lean_object* l_Std_AssocList_find_x3f___at_Lean_KeyedDeclsAttribute_getValues___spec__7___rarg___boxed(lean_object*, lean_object*); lean_object* l_Std_AssocList_replace___at_Lean_KeyedDeclsAttribute_Table_insert___spec__19___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Std_AssocList_find_x3f___at_Lean_KeyedDeclsAttribute_Table_insert___spec__6(lean_object*); lean_object* l_Lean_KernelException_toMessageData(lean_object*, lean_object*); lean_object* l_Lean_KeyedDeclsAttribute_init___rarg___closed__3; +lean_object* l_Lean_ofExcept___at_Lean_KeyedDeclsAttribute_init___spec__4(lean_object*); +lean_object* l_Std_HashMapImp_find_x3f___at_Lean_KeyedDeclsAttribute_getValues___spec__6___rarg___boxed(lean_object*, lean_object*); lean_object* l_Lean_KeyedDeclsAttribute_declareBuiltin___rarg___closed__4; -lean_object* l_Std_PersistentHashMap_findAtAux___at_Lean_KeyedDeclsAttribute_getValues___spec__4___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_instInhabitedPersistentEnvExtension___closed__2; +lean_object* l_Lean_setEnv___at_Lean_KeyedDeclsAttribute_init___spec__6(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_KeyedDeclsAttribute_Def_evalKey___default___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_get(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_KeyedDeclsAttribute_Def_evalKey___default___boxed(lean_object*); -lean_object* l_Std_AssocList_find_x3f___at_Lean_KeyedDeclsAttribute_getValues___spec__8___rarg(lean_object*, lean_object*); -lean_object* l_Lean_KeyedDeclsAttribute_init___rarg___lambda__5___closed__4; lean_object* lean_array_fset(lean_object*, lean_object*, lean_object*); lean_object* l_Std_PersistentHashMap_insertAux_traverse___at_Lean_KeyedDeclsAttribute_Table_insert___spec__23___rarg(size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Std_mkHashMapImp___rarg(lean_object*); lean_object* l_Lean_KeyedDeclsAttribute_addBuiltin___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_KeyedDeclsAttribute_init___rarg___closed__5; lean_object* l_Lean_KeyedDeclsAttribute_declareBuiltin_match__1___rarg(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Lean_KeyedDeclsAttribute_0__Lean_KeyedDeclsAttribute_addExtensionEntry(lean_object*); lean_object* l_Std_mkHashMap___at_Lean_KeyedDeclsAttribute_instInhabitedExtensionState___spec__1(lean_object*); lean_object* l_Std_HashMapImp_moveEntries___at_Lean_KeyedDeclsAttribute_Table_insert___spec__17(lean_object*); lean_object* l_Lean_KeyedDeclsAttribute_declareBuiltin___rarg___closed__1; lean_object* l_Lean_Name_toExprAux(lean_object*); size_t l_Lean_Name_hash(lean_object*); +lean_object* l_Std_PersistentHashMap_find_x3f___at_Lean_KeyedDeclsAttribute_getValues___spec__3___rarg(lean_object*, lean_object*); lean_object* l_Std_AssocList_replace___at_Lean_KeyedDeclsAttribute_Table_insert___spec__19(lean_object*); -lean_object* l_Lean_registerPersistentEnvExtensionUnsafe___at_Lean_KeyedDeclsAttribute_init___spec__3(lean_object*); lean_object* lean_st_mk_ref(lean_object*, lean_object*); -lean_object* l_Array_forInUnsafe_loop___at___private_Lean_KeyedDeclsAttribute_0__Lean_KeyedDeclsAttribute_addImported___spec__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_KeyedDeclsAttribute_declareBuiltin___rarg___closed__10; -lean_object* l___private_Lean_KeyedDeclsAttribute_0__Lean_KeyedDeclsAttribute_addImported_match__1___rarg(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_registerPersistentEnvExtensionUnsafe___rarg___lambda__2(lean_object*, lean_object*, lean_object*); +lean_object* l_Std_PersistentHashMap_findAux___at_Lean_KeyedDeclsAttribute_getValues___spec__4___rarg(lean_object*, size_t, lean_object*); lean_object* l_Std_AssocList_find_x3f___at_Lean_KeyedDeclsAttribute_Table_insert___spec__8(lean_object*); +lean_object* l_Std_AssocList_find_x3f___at_Lean_KeyedDeclsAttribute_getValues___spec__9(lean_object*); lean_object* l_Lean_KeyedDeclsAttribute_instInhabitedExtensionState___closed__2; -lean_object* l_Array_forInUnsafe_loop___at___private_Lean_KeyedDeclsAttribute_0__Lean_KeyedDeclsAttribute_addImported___spec__2___rarg(lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*); +lean_object* l_Std_AssocList_find_x3f___at_Lean_KeyedDeclsAttribute_getValues___spec__9___rarg___boxed(lean_object*, lean_object*); lean_object* l_Std_HashMapImp_expand___at_Lean_KeyedDeclsAttribute_Table_insert___spec__16(lean_object*); +lean_object* l_Lean_SMap_find_x3f___at_Lean_KeyedDeclsAttribute_getValues___spec__2___rarg___boxed(lean_object*, lean_object*); lean_object* l_Lean_KeyedDeclsAttribute_getValues___rarg(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_KeyedDeclsAttribute_init___rarg___lambda__5___closed__3; -lean_object* l_Lean_SMap_find_x3f___at_Lean_KeyedDeclsAttribute_getValues___spec__1___rarg___boxed(lean_object*, lean_object*); -extern lean_object* l_Lean_persistentEnvExtensionsRef; +lean_object* l_Std_PersistentHashMap_find_x3f___at_Lean_KeyedDeclsAttribute_getValues___spec__3(lean_object*); lean_object* l_Std_AssocList_contains___at_Lean_KeyedDeclsAttribute_Table_insert___spec__15(lean_object*); lean_object* l_Lean_SMap_find_x3f___at_Lean_KeyedDeclsAttribute_Table_insert___spec__1___rarg___boxed(lean_object*, lean_object*); -lean_object* l_Std_PersistentHashMap_findAux___at_Lean_KeyedDeclsAttribute_getValues___spec__3___rarg___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Std_PersistentHashMap_insertAux_traverse___at_Lean_KeyedDeclsAttribute_Table_insert___spec__23(lean_object*); -lean_object* l_Lean_KeyedDeclsAttribute_init___rarg___lambda__5___closed__5; size_t lean_usize_modn(size_t, lean_object*); extern lean_object* l_myMacro____x40_Init_System_IO___hyg_2554____closed__5; lean_object* l_Lean_registerBuiltinAttribute(lean_object*, lean_object*); +lean_object* l_Std_HashMapImp_find_x3f___at_Lean_KeyedDeclsAttribute_getValues___spec__8(lean_object*); lean_object* l_Lean_instInhabitedKeyedDeclsAttribute___closed__1; -lean_object* l_Lean_KeyedDeclsAttribute_init___rarg___lambda__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_KeyedDeclsAttribute_init___rarg___lambda__4(lean_object*, lean_object*); +lean_object* l_Std_HashMapImp_find_x3f___at_Lean_KeyedDeclsAttribute_getValues___spec__8___rarg(lean_object*, lean_object*); lean_object* l_Lean_KeyedDeclsAttribute_instInhabitedExtensionState(lean_object*); uint8_t l_Std_AssocList_contains___at_Lean_KeyedDeclsAttribute_Table_insert___spec__15___rarg(lean_object*, lean_object*); -lean_object* l_Lean_ofExcept___at_Lean_KeyedDeclsAttribute_init___spec__6___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); size_t l_USize_mul(size_t, size_t); lean_object* l_IO_mkRef___at_Lean_KeyedDeclsAttribute_init___spec__2___rarg(lean_object*, lean_object*); lean_object* l_Lean_SMap_insert___at_Lean_KeyedDeclsAttribute_Table_insert___spec__20___rarg(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_setEnv___at_Lean_KeyedDeclsAttribute_init___spec__8___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_KeyedDeclsAttribute_Table_insert_match__1(lean_object*, lean_object*); -lean_object* l_Std_HashMapImp_find_x3f___at_Lean_KeyedDeclsAttribute_getValues___spec__5___rarg(lean_object*, lean_object*); lean_object* l_Lean_instInhabitedKeyedDeclsAttribute(lean_object*); lean_object* l_Lean_KeyedDeclsAttribute_Table_insert___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Std_PersistentHashMap_insert___at_Lean_KeyedDeclsAttribute_Table_insert___spec__21(lean_object*); lean_object* l_Std_AssocList_replace___at_Lean_KeyedDeclsAttribute_Table_insert___spec__30(lean_object*); lean_object* l_Std_mkHashMap___at_Lean_KeyedDeclsAttribute_init___spec__1(lean_object*); -size_t lean_usize_of_nat(lean_object*); lean_object* l_Lean_KeyedDeclsAttribute_init___rarg___closed__2; extern lean_object* l_Lean_registerTagAttribute___lambda__6___closed__2; lean_object* l_Lean_ConstantInfo_type(lean_object*); lean_object* l_Std_PersistentHashMap_findAtAux___at_Lean_KeyedDeclsAttribute_Table_insert___spec__4(lean_object*); lean_object* l_Std_PersistentHashMap_insertAtCollisionNodeAux___at_Lean_KeyedDeclsAttribute_Table_insert___spec__13(lean_object*); -lean_object* l_Lean_PersistentEnvExtension_addEntry___rarg(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_KeyedDeclsAttribute_init___rarg___lambda__7___closed__2; size_t l_USize_land(size_t, size_t); lean_object* l_Lean_Environment_evalConstCheck___rarg(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Lean_KeyedDeclsAttribute_0__Lean_KeyedDeclsAttribute_addImported(lean_object*); +lean_object* l_Std_PersistentHashMap_find_x3f___at_Lean_KeyedDeclsAttribute_getValues___spec__3___rarg___boxed(lean_object*, lean_object*); lean_object* l_Lean_ParametricAttribute_setParam___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Std_PersistentHashMap_insertAux___at_Lean_KeyedDeclsAttribute_Table_insert___spec__22___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Std_HashMapImp_insert___at_Lean_KeyedDeclsAttribute_Table_insert___spec__25___rarg(lean_object*, lean_object*, lean_object*); @@ -208,56 +198,56 @@ lean_object* l_Std_HashMapImp_find_x3f___at_Lean_KeyedDeclsAttribute_Table_inser lean_object* l_Lean_KeyedDeclsAttribute_declareBuiltin___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_KeyedDeclsAttribute_Def_evalKey___default(uint8_t); lean_object* l_Lean_SMap_insert___at_Lean_KeyedDeclsAttribute_Table_insert___spec__20(lean_object*); -extern lean_object* l_Lean_registerPersistentEnvExtensionUnsafe___rarg___closed__1; -lean_object* l_Std_HashMapImp_find_x3f___at_Lean_KeyedDeclsAttribute_getValues___spec__5(lean_object*); -lean_object* l_List_redLength___rarg(lean_object*); -lean_object* l_Std_HashMapImp_find_x3f___at_Lean_KeyedDeclsAttribute_getValues___spec__7(lean_object*); +lean_object* l_Lean_KeyedDeclsAttribute_init___rarg___lambda__7___closed__1; lean_object* l_Std_PersistentHashMap_insertAux_traverse___at_Lean_KeyedDeclsAttribute_Table_insert___spec__23___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Std_PersistentHashMap_insert___at_Lean_KeyedDeclsAttribute_Table_insert___spec__21___rarg(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_registerTagAttribute___lambda__5___closed__2; lean_object* l_Std_PersistentHashMap_findAtAux___at_Lean_KeyedDeclsAttribute_Table_insert___spec__4___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Std_PersistentHashMap_insertAux_traverse___at_Lean_KeyedDeclsAttribute_Table_insert___spec__12(lean_object*); lean_object* l_Std_PersistentHashMap_findAux___at_Lean_KeyedDeclsAttribute_Table_insert___spec__3(lean_object*); -extern lean_object* l_Lean_registerSimplePersistentEnvExtension___rarg___lambda__4___closed__2; +lean_object* l_Std_AssocList_find_x3f___at_Lean_KeyedDeclsAttribute_getValues___spec__9___rarg(lean_object*, lean_object*); +lean_object* l_Lean_ofExcept___at_Lean_KeyedDeclsAttribute_init___spec__4___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Std_HashMapImp_expand___at_Lean_KeyedDeclsAttribute_Table_insert___spec__27___rarg(lean_object*, lean_object*); uint8_t lean_nat_dec_le(lean_object*, lean_object*); uint8_t l_USize_decLe(size_t, size_t); +lean_object* l_Lean_KeyedDeclsAttribute_init___rarg___lambda__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkApp(lean_object*, lean_object*); -lean_object* l_Lean_KeyedDeclsAttribute_init___rarg___lambda__1(lean_object*); +lean_object* l_Lean_KeyedDeclsAttribute_instInhabitedOLeanEntry___closed__1; +lean_object* l_Lean_KeyedDeclsAttribute_init___rarg___lambda__1(lean_object*, lean_object*); lean_object* l_Lean_KeyedDeclsAttribute_ExtensionState_table___default(lean_object*); lean_object* l_Lean_Name_append(lean_object*, lean_object*); -lean_object* l_Lean_throwError___at_Lean_KeyedDeclsAttribute_init___spec__9___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Environment_addAndCompile(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_instInhabitedKeyedDeclsAttribute___closed__2; lean_object* l_Std_PersistentHashMap_insertAtCollisionNodeAux___at_Lean_KeyedDeclsAttribute_Table_insert___spec__24(lean_object*); uint8_t l_Lean_Name_isAnonymous(lean_object*); -lean_object* l_Std_HashMapImp_find_x3f___at_Lean_KeyedDeclsAttribute_getValues___spec__5___rarg___boxed(lean_object*, lean_object*); -lean_object* l___private_Lean_KeyedDeclsAttribute_0__Lean_KeyedDeclsAttribute_mkInitial___rarg(lean_object*, lean_object*); -lean_object* l_Lean_ofExcept___at_Lean_KeyedDeclsAttribute_init___spec__6___rarg(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_registerScopedEnvExtensionUnsafe___rarg(lean_object*, lean_object*); +lean_object* l_Lean_KeyedDeclsAttribute_init_match__2___rarg(lean_object*, lean_object*, lean_object*); +lean_object* lean_panic_fn(lean_object*, lean_object*); extern lean_object* l_Std_PersistentHashMap_mkCollisionNode___rarg___closed__1; lean_object* l_Std_HashMapImp_expand___at_Lean_KeyedDeclsAttribute_Table_insert___spec__16___rarg(lean_object*, lean_object*); +lean_object* l_Lean_instInhabitedKeyedDeclsAttribute___lambda__1___boxed(lean_object*); lean_object* l_Lean_KeyedDeclsAttribute_init___rarg___closed__6; lean_object* l_IO_ofExcept___at_Lean_KeyedDeclsAttribute_declareBuiltin___spec__1___boxed(lean_object*, lean_object*); lean_object* l_Std_AssocList_foldlM___at_Lean_KeyedDeclsAttribute_Table_insert___spec__18(lean_object*); +lean_object* l_Lean_instInhabitedKeyedDeclsAttribute___lambda__1(lean_object*); extern lean_object* l_Lean_regularInitAttr; lean_object* l_Lean_KeyedDeclsAttribute_init_match__1___rarg(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_instInhabitedPersistentEnvExtension___closed__5; lean_object* l_Lean_KeyedDeclsAttribute_declareBuiltin___rarg___closed__11; -lean_object* l_Lean_SMap_find_x3f___at_Lean_KeyedDeclsAttribute_getValues___spec__1(lean_object*); lean_object* lean_nat_mul(lean_object*, lean_object*); -lean_object* l_Std_fmt___at_Lean_Level_PP_Result_format___spec__2(lean_object*); -lean_object* l_Lean_throwError___at_Lean_KeyedDeclsAttribute_init___spec__7___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_KeyedDeclsAttribute_init___rarg___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Std_PersistentHashMap_find_x3f___at_Lean_KeyedDeclsAttribute_getValues___spec__2___rarg(lean_object*, lean_object*); +lean_object* l_Lean_KeyedDeclsAttribute_init___rarg___lambda__3___boxed(lean_object*); lean_object* lean_st_ref_set(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_KeyedDeclsAttribute_instInhabitedDef___closed__2; -lean_object* l_Lean_evalConstCheck___at_Lean_KeyedDeclsAttribute_init___spec__5___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_KeyedDeclsAttribute_init___rarg___lambda__7___closed__3; lean_object* l_Std_PersistentHashMap_insertAux_traverse___at_Lean_KeyedDeclsAttribute_Table_insert___spec__12___rarg(size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -uint8_t l_Array_anyMUnsafe_any___at_Lean_KeyedDeclsAttribute_init___spec__4___rarg(lean_object*, lean_object*, size_t, size_t); -lean_object* l_List_toArrayAux___rarg(lean_object*, lean_object*); +lean_object* l_Lean_throwError___at_Lean_KeyedDeclsAttribute_init___spec__5___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Std_PersistentHashMap_insertAux_traverse___at_Lean_KeyedDeclsAttribute_Table_insert___spec__12___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_KeyedDeclsAttribute_instInhabitedDef___closed__1; -lean_object* l_Lean_KeyedDeclsAttribute_init___rarg___lambda__5___closed__2; +extern lean_object* l_Lean_ScopedEnvExtension_getState___rarg___closed__3; +lean_object* l_Std_HashMapImp_find_x3f___at_Lean_KeyedDeclsAttribute_getValues___spec__8___rarg___boxed(lean_object*, lean_object*); +lean_object* l_Lean_evalConstCheck___at_Lean_KeyedDeclsAttribute_init___spec__3(lean_object*); lean_object* l_Std_AssocList_contains___at_Lean_KeyedDeclsAttribute_Table_insert___spec__26(lean_object*); +extern lean_object* l_Lean_EnvExtensionInterfaceUnsafe_instInhabitedExt___closed__1; lean_object* lean_mk_array(lean_object*, lean_object*); extern size_t l_Std_PersistentHashMap_insertAux___rarg___closed__2; lean_object* l_Std_AssocList_contains___at_Lean_KeyedDeclsAttribute_Table_insert___spec__15___rarg___boxed(lean_object*, lean_object*); @@ -265,32 +255,35 @@ lean_object* l_Lean_KeyedDeclsAttribute_declareBuiltin___rarg___closed__12; lean_object* l_Lean_PersistentEnvExtension_getState___rarg(lean_object*, lean_object*); lean_object* l_Std_PersistentHashMap_insertAtCollisionNodeAux___at_Lean_KeyedDeclsAttribute_Table_insert___spec__24___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Std_mkHashMap___at_Lean_KeyedDeclsAttribute_ExtensionState_table___default___spec__1(lean_object*); -lean_object* l_Lean_KeyedDeclsAttribute_init___rarg___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_KeyedDeclsAttribute_init___rarg___lambda__3(lean_object*); lean_object* l_Std_HashMapImp_insert___at_Lean_KeyedDeclsAttribute_Table_insert___spec__25(lean_object*); -lean_object* l_Array_forInUnsafe_loop___at___private_Lean_KeyedDeclsAttribute_0__Lean_KeyedDeclsAttribute_addImported___spec__2___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_KeyedDeclsAttribute_init___rarg___lambda__5___closed__1; +lean_object* l_Lean_KeyedDeclsAttribute_init___rarg___lambda__8___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_ScopedEnvExtension_addEntry___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Std_HashMapImp_moveEntries___at_Lean_KeyedDeclsAttribute_Table_insert___spec__17___rarg(lean_object*, lean_object*, lean_object*); -lean_object* l_Array_anyMUnsafe_any___at_Lean_KeyedDeclsAttribute_init___spec__4(lean_object*); lean_object* l_Std_PersistentHashMap_findAux___at_Lean_KeyedDeclsAttribute_Table_insert___spec__3___rarg___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_KeyedDeclsAttribute_instInhabitedExtensionState___closed__3; -lean_object* l_Lean_KeyedDeclsAttribute_init___rarg___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* l_Lean_KeyedDeclsAttribute_init___rarg___lambda__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Std_PersistentHashMap_insertAux___at_Lean_KeyedDeclsAttribute_Table_insert___spec__11___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_KeyedDeclsAttribute_init___rarg___lambda__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_KeyedDeclsAttribute_init___rarg___lambda__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); +lean_object* l_Std_HashMapImp_find_x3f___at_Lean_KeyedDeclsAttribute_getValues___spec__6___rarg(lean_object*, lean_object*); +lean_object* l_Lean_SMap_find_x3f___at_Lean_KeyedDeclsAttribute_getValues___spec__2___rarg(lean_object*, lean_object*); lean_object* l_Std_PersistentHashMap_find_x3f___at_Lean_KeyedDeclsAttribute_Table_insert___spec__2___rarg___boxed(lean_object*, lean_object*); +lean_object* l_Std_AssocList_find_x3f___at_Lean_KeyedDeclsAttribute_getValues___spec__7(lean_object*); +lean_object* l_Std_PersistentHashMap_findAux___at_Lean_KeyedDeclsAttribute_getValues___spec__4(lean_object*); +lean_object* l_Lean_KeyedDeclsAttribute_init___rarg___lambda__7___closed__5; lean_object* l_Std_PersistentHashMap_insertAux___at_Lean_KeyedDeclsAttribute_Table_insert___spec__22(lean_object*); lean_object* l_Std_AssocList_find_x3f___at_Lean_KeyedDeclsAttribute_Table_insert___spec__6___rarg(lean_object*, lean_object*); lean_object* l_Std_PersistentHashMap_insertAux___at_Lean_KeyedDeclsAttribute_Table_insert___spec__11___rarg(lean_object*, size_t, size_t, lean_object*, lean_object*); lean_object* l_Std_HashMapImp_moveEntries___at_Lean_KeyedDeclsAttribute_Table_insert___spec__28(lean_object*); -lean_object* l_List_lengthAux___rarg(lean_object*, lean_object*); +lean_object* l_Lean_evalConstCheck___at_Lean_KeyedDeclsAttribute_init___spec__3___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_SMap_find_x3f___at_Lean_KeyedDeclsAttribute_Table_insert___spec__1___rarg(lean_object*, lean_object*); -lean_object* l_Lean_KeyedDeclsAttribute_init___rarg___lambda__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_KeyedDeclsAttribute_init___rarg___lambda__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_KeyedDeclsAttribute_init___rarg(lean_object*, lean_object*, lean_object*); -lean_object* l_Std_AssocList_find_x3f___at_Lean_KeyedDeclsAttribute_getValues___spec__8___rarg___boxed(lean_object*, lean_object*); lean_object* lean_usize_to_nat(size_t); uint8_t l_Std_AssocList_contains___at_Lean_KeyedDeclsAttribute_Table_insert___spec__26___rarg(lean_object*, lean_object*); -lean_object* l_Std_PersistentHashMap_findAtAux___at_Lean_KeyedDeclsAttribute_getValues___spec__4(lean_object*); -lean_object* l_Lean_KeyedDeclsAttribute_init_match__1(lean_object*); +lean_object* l_Lean_KeyedDeclsAttribute_init_match__1(lean_object*, lean_object*); lean_object* l_Lean_KeyedDeclsAttribute_declareBuiltin___rarg___closed__2; +lean_object* l_Lean_throwError___at_Lean_KeyedDeclsAttribute_init___spec__5(lean_object*); lean_object* l_Std_HashMapImp_moveEntries___at_Lean_KeyedDeclsAttribute_Table_insert___spec__28___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Std_AssocList_foldlM___at_Lean_KeyedDeclsAttribute_Table_insert___spec__29(lean_object*); lean_object* l_IO_ofExcept___at_Lean_KeyedDeclsAttribute_declareBuiltin___spec__1(lean_object*, lean_object*); @@ -300,16 +293,12 @@ lean_object* l_Std_AssocList_find_x3f___at_Lean_KeyedDeclsAttribute_Table_insert lean_object* l_Std_PersistentHashMap_insertAux___at_Lean_KeyedDeclsAttribute_Table_insert___spec__22___rarg(lean_object*, size_t, size_t, lean_object*, lean_object*); lean_object* l_Std_PersistentHashMap_find_x3f___at_Lean_KeyedDeclsAttribute_Table_insert___spec__2___rarg(lean_object*, lean_object*); lean_object* l_Std_HashMapImp_find_x3f___at_Lean_KeyedDeclsAttribute_Table_insert___spec__5___rarg___boxed(lean_object*, lean_object*); -lean_object* l_Array_forInUnsafe_loop___at___private_Lean_KeyedDeclsAttribute_0__Lean_KeyedDeclsAttribute_addImported___spec__2(lean_object*); -lean_object* l___private_Lean_KeyedDeclsAttribute_0__Lean_KeyedDeclsAttribute_addImported___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_KeyedDeclsAttribute_init___rarg___lambda__2(lean_object*); +lean_object* l_Std_PersistentHashMap_findAtAux___at_Lean_KeyedDeclsAttribute_getValues___spec__5___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Std_PersistentHashMap_findAux___at_Lean_KeyedDeclsAttribute_getValues___spec__4___rarg___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_KeyedDeclsAttribute_init___rarg___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Std_HashMapImp_insert___at_Lean_KeyedDeclsAttribute_Table_insert___spec__14(lean_object*); -lean_object* l_Std_PersistentHashMap_findAtAux___at_Lean_KeyedDeclsAttribute_getValues___spec__4___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Std_AssocList_foldlM___at_Lean_KeyedDeclsAttribute_Table_insert___spec__29___rarg(lean_object*, lean_object*); lean_object* l_Std_PersistentHashMap_mkCollisionNode___rarg(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_anyMUnsafe_any___at_Lean_KeyedDeclsAttribute_init___spec__4___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Std_PersistentHashMap_findAux___at_Lean_KeyedDeclsAttribute_getValues___spec__3___rarg(lean_object*, size_t, lean_object*); -lean_object* l_Array_forInUnsafe_loop___at___private_Lean_KeyedDeclsAttribute_0__Lean_KeyedDeclsAttribute_addImported___spec__1___rarg(lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*); lean_object* l_Std_PersistentHashMap_insert___at_Lean_KeyedDeclsAttribute_Table_insert___spec__10(lean_object*); uint8_t lean_nat_dec_lt(lean_object*, lean_object*); lean_object* l_Lean_Attribute_Builtin_getId(lean_object*, lean_object*, lean_object*, lean_object*); @@ -412,6 +401,25 @@ lean_dec(x_2); return x_7; } } +static lean_object* _init_l_Lean_KeyedDeclsAttribute_instInhabitedOLeanEntry___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_box(0); +x_2 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_2, 0, x_1); +lean_ctor_set(x_2, 1, x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_KeyedDeclsAttribute_instInhabitedOLeanEntry() { +_start: +{ +lean_object* x_1; +x_1 = l_Lean_KeyedDeclsAttribute_instInhabitedOLeanEntry___closed__1; +return x_1; +} +} static lean_object* _init_l_Lean_KeyedDeclsAttribute_ExtensionState_newEntries___default() { _start: { @@ -526,13 +534,61 @@ x_2 = l_Lean_KeyedDeclsAttribute_instInhabitedExtensionState___closed__3; return x_2; } } +lean_object* l_Lean_instInhabitedKeyedDeclsAttribute___lambda__1(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = l_Lean_KeyedDeclsAttribute_instInhabitedOLeanEntry___closed__1; +return x_2; +} +} static lean_object* _init_l_Lean_instInhabitedKeyedDeclsAttribute___closed__1() { _start: { +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_instInhabitedKeyedDeclsAttribute___lambda__1___boxed), 1, 0); +return x_1; +} +} +static lean_object* _init_l_Lean_instInhabitedKeyedDeclsAttribute___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; +x_1 = lean_box(0); +x_2 = l_Lean_EnvExtensionInterfaceUnsafe_instInhabitedExt___closed__1; +x_3 = l_Lean_ScopedEnvExtension_instInhabitedDescr___rarg___closed__1; +x_4 = l_Lean_instInhabitedKeyedDeclsAttribute___closed__1; +x_5 = l_Lean_instInhabitedPersistentEnvExtension___closed__2; +x_6 = l_Applicative_seqRight___default___rarg___closed__1; +x_7 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_7, 0, x_1); +lean_ctor_set(x_7, 1, x_2); +lean_ctor_set(x_7, 2, x_3); +lean_ctor_set(x_7, 3, x_4); +lean_ctor_set(x_7, 4, x_5); +lean_ctor_set(x_7, 5, x_6); +return x_7; +} +} +static lean_object* _init_l_Lean_instInhabitedKeyedDeclsAttribute___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_instInhabitedKeyedDeclsAttribute___closed__2; +x_2 = l_Lean_instInhabitedPersistentEnvExtension___closed__5; +x_3 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set(x_3, 1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_instInhabitedKeyedDeclsAttribute___closed__4() { +_start: +{ lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; x_1 = l_Lean_KeyedDeclsAttribute_instInhabitedDef___closed__2; x_2 = lean_box(0); -x_3 = l_Lean_instInhabitedPersistentEnvExtension___closed__5; +x_3 = l_Lean_instInhabitedKeyedDeclsAttribute___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); @@ -544,7 +600,16 @@ lean_object* l_Lean_instInhabitedKeyedDeclsAttribute(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = l_Lean_instInhabitedKeyedDeclsAttribute___closed__1; +x_2 = l_Lean_instInhabitedKeyedDeclsAttribute___closed__4; +return x_2; +} +} +lean_object* l_Lean_instInhabitedKeyedDeclsAttribute___lambda__1___boxed(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = l_Lean_instInhabitedKeyedDeclsAttribute___lambda__1(x_1); +lean_dec(x_1); return x_2; } } @@ -3111,398 +3176,6 @@ x_4 = lean_box(x_3); return x_4; } } -lean_object* l___private_Lean_KeyedDeclsAttribute_0__Lean_KeyedDeclsAttribute_mkInitial___rarg(lean_object* x_1, lean_object* x_2) { -_start: -{ -lean_object* x_3; uint8_t x_4; -x_3 = lean_st_ref_get(x_1, x_2); -x_4 = !lean_is_exclusive(x_3); -if (x_4 == 0) -{ -lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_5 = lean_ctor_get(x_3, 0); -x_6 = lean_box(0); -x_7 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_7, 0, x_6); -lean_ctor_set(x_7, 1, x_5); -lean_ctor_set(x_3, 0, x_7); -return x_3; -} -else -{ -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_3, 0); -x_9 = lean_ctor_get(x_3, 1); -lean_inc(x_9); -lean_inc(x_8); -lean_dec(x_3); -x_10 = lean_box(0); -x_11 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_11, 0, x_10); -lean_ctor_set(x_11, 1, x_8); -x_12 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_12, 0, x_11); -lean_ctor_set(x_12, 1, x_9); -return x_12; -} -} -} -lean_object* l___private_Lean_KeyedDeclsAttribute_0__Lean_KeyedDeclsAttribute_mkInitial(lean_object* x_1) { -_start: -{ -lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l___private_Lean_KeyedDeclsAttribute_0__Lean_KeyedDeclsAttribute_mkInitial___rarg___boxed), 2, 0); -return x_2; -} -} -lean_object* l___private_Lean_KeyedDeclsAttribute_0__Lean_KeyedDeclsAttribute_mkInitial___rarg___boxed(lean_object* x_1, lean_object* x_2) { -_start: -{ -lean_object* x_3; -x_3 = l___private_Lean_KeyedDeclsAttribute_0__Lean_KeyedDeclsAttribute_mkInitial___rarg(x_1, x_2); -lean_dec(x_1); -return x_3; -} -} -lean_object* l___private_Lean_KeyedDeclsAttribute_0__Lean_KeyedDeclsAttribute_addImported_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_ctor_get(x_1, 0); -lean_inc(x_4); -lean_dec(x_1); -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___private_Lean_KeyedDeclsAttribute_0__Lean_KeyedDeclsAttribute_addImported_match__1(lean_object* x_1, lean_object* x_2) { -_start: -{ -lean_object* x_3; -x_3 = lean_alloc_closure((void*)(l___private_Lean_KeyedDeclsAttribute_0__Lean_KeyedDeclsAttribute_addImported_match__1___rarg), 3, 0); -return x_3; -} -} -lean_object* l_Array_forInUnsafe_loop___at___private_Lean_KeyedDeclsAttribute_0__Lean_KeyedDeclsAttribute_addImported___spec__1___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, size_t x_4, size_t x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { -_start: -{ -uint8_t x_9; -x_9 = x_5 < x_4; -if (x_9 == 0) -{ -lean_object* x_10; -lean_dec(x_2); -lean_dec(x_1); -x_10 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_10, 0, x_6); -lean_ctor_set(x_10, 1, x_8); -return x_10; -} -else -{ -lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; -x_11 = lean_array_uget(x_3, x_5); -x_12 = lean_ctor_get(x_2, 0); -lean_inc(x_12); -x_13 = lean_ctor_get(x_2, 1); -lean_inc(x_13); -x_14 = lean_ctor_get(x_1, 3); -lean_inc(x_14); -x_15 = lean_ctor_get(x_11, 1); -lean_inc(x_15); -x_16 = l_Lean_Environment_evalConstCheck___rarg(x_12, x_13, x_14, x_15); -lean_dec(x_13); -if (lean_obj_tag(x_16) == 0) -{ -lean_object* x_17; lean_object* x_18; lean_object* x_19; -lean_dec(x_11); -lean_dec(x_6); -lean_dec(x_2); -lean_dec(x_1); -x_17 = lean_ctor_get(x_16, 0); -lean_inc(x_17); -lean_dec(x_16); -x_18 = lean_alloc_ctor(18, 1, 0); -lean_ctor_set(x_18, 0, x_17); -x_19 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_19, 0, x_18); -lean_ctor_set(x_19, 1, x_8); -return x_19; -} -else -{ -lean_object* x_20; lean_object* x_21; lean_object* x_22; size_t x_23; size_t x_24; -x_20 = lean_ctor_get(x_16, 0); -lean_inc(x_20); -lean_dec(x_16); -x_21 = lean_ctor_get(x_11, 0); -lean_inc(x_21); -lean_dec(x_11); -x_22 = l_Lean_KeyedDeclsAttribute_Table_insert___rarg(x_6, x_21, x_20); -x_23 = 1; -x_24 = x_5 + x_23; -x_5 = x_24; -x_6 = x_22; -goto _start; -} -} -} -} -lean_object* l_Array_forInUnsafe_loop___at___private_Lean_KeyedDeclsAttribute_0__Lean_KeyedDeclsAttribute_addImported___spec__1(lean_object* x_1) { -_start: -{ -lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Array_forInUnsafe_loop___at___private_Lean_KeyedDeclsAttribute_0__Lean_KeyedDeclsAttribute_addImported___spec__1___rarg___boxed), 8, 0); -return x_2; -} -} -lean_object* l_Array_forInUnsafe_loop___at___private_Lean_KeyedDeclsAttribute_0__Lean_KeyedDeclsAttribute_addImported___spec__2___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, size_t x_4, size_t x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { -_start: -{ -uint8_t x_9; -x_9 = x_5 < x_4; -if (x_9 == 0) -{ -lean_object* x_10; -lean_dec(x_2); -lean_dec(x_1); -x_10 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_10, 0, x_6); -lean_ctor_set(x_10, 1, x_8); -return x_10; -} -else -{ -lean_object* x_11; lean_object* x_12; size_t x_13; size_t x_14; lean_object* x_15; -x_11 = lean_array_uget(x_3, x_5); -x_12 = lean_array_get_size(x_11); -x_13 = lean_usize_of_nat(x_12); -lean_dec(x_12); -x_14 = 0; -lean_inc(x_2); -lean_inc(x_1); -x_15 = l_Array_forInUnsafe_loop___at___private_Lean_KeyedDeclsAttribute_0__Lean_KeyedDeclsAttribute_addImported___spec__1___rarg(x_1, x_2, x_11, x_13, x_14, x_6, x_7, x_8); -lean_dec(x_11); -if (lean_obj_tag(x_15) == 0) -{ -lean_object* x_16; lean_object* x_17; size_t x_18; size_t x_19; -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 = 1; -x_19 = x_5 + x_18; -x_5 = x_19; -x_6 = x_16; -x_8 = x_17; -goto _start; -} -else -{ -uint8_t x_21; -lean_dec(x_2); -lean_dec(x_1); -x_21 = !lean_is_exclusive(x_15); -if (x_21 == 0) -{ -return x_15; -} -else -{ -lean_object* x_22; lean_object* x_23; lean_object* x_24; -x_22 = lean_ctor_get(x_15, 0); -x_23 = lean_ctor_get(x_15, 1); -lean_inc(x_23); -lean_inc(x_22); -lean_dec(x_15); -x_24 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_24, 0, x_22); -lean_ctor_set(x_24, 1, x_23); -return x_24; -} -} -} -} -} -lean_object* l_Array_forInUnsafe_loop___at___private_Lean_KeyedDeclsAttribute_0__Lean_KeyedDeclsAttribute_addImported___spec__2(lean_object* x_1) { -_start: -{ -lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Array_forInUnsafe_loop___at___private_Lean_KeyedDeclsAttribute_0__Lean_KeyedDeclsAttribute_addImported___spec__2___rarg___boxed), 8, 0); -return x_2; -} -} -lean_object* l___private_Lean_KeyedDeclsAttribute_0__Lean_KeyedDeclsAttribute_addImported___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; size_t x_10; size_t x_11; lean_object* x_12; -x_6 = lean_st_ref_get(x_2, x_5); -x_7 = lean_ctor_get(x_6, 0); -lean_inc(x_7); -x_8 = lean_ctor_get(x_6, 1); -lean_inc(x_8); -lean_dec(x_6); -x_9 = lean_array_get_size(x_3); -x_10 = lean_usize_of_nat(x_9); -lean_dec(x_9); -x_11 = 0; -lean_inc(x_4); -x_12 = l_Array_forInUnsafe_loop___at___private_Lean_KeyedDeclsAttribute_0__Lean_KeyedDeclsAttribute_addImported___spec__2___rarg(x_1, x_4, x_3, x_10, x_11, x_7, x_4, x_8); -lean_dec(x_4); -if (lean_obj_tag(x_12) == 0) -{ -uint8_t x_13; -x_13 = !lean_is_exclusive(x_12); -if (x_13 == 0) -{ -lean_object* x_14; lean_object* x_15; lean_object* x_16; -x_14 = lean_ctor_get(x_12, 0); -x_15 = lean_box(0); -x_16 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_16, 0, x_15); -lean_ctor_set(x_16, 1, x_14); -lean_ctor_set(x_12, 0, x_16); -return x_12; -} -else -{ -lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; -x_17 = lean_ctor_get(x_12, 0); -x_18 = lean_ctor_get(x_12, 1); -lean_inc(x_18); -lean_inc(x_17); -lean_dec(x_12); -x_19 = lean_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_17); -x_21 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_21, 0, x_20); -lean_ctor_set(x_21, 1, x_18); -return x_21; -} -} -else -{ -uint8_t x_22; -x_22 = !lean_is_exclusive(x_12); -if (x_22 == 0) -{ -return x_12; -} -else -{ -lean_object* x_23; lean_object* x_24; lean_object* x_25; -x_23 = lean_ctor_get(x_12, 0); -x_24 = lean_ctor_get(x_12, 1); -lean_inc(x_24); -lean_inc(x_23); -lean_dec(x_12); -x_25 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_25, 0, x_23); -lean_ctor_set(x_25, 1, x_24); -return x_25; -} -} -} -} -lean_object* l___private_Lean_KeyedDeclsAttribute_0__Lean_KeyedDeclsAttribute_addImported(lean_object* x_1) { -_start: -{ -lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l___private_Lean_KeyedDeclsAttribute_0__Lean_KeyedDeclsAttribute_addImported___rarg___boxed), 5, 0); -return x_2; -} -} -lean_object* l_Array_forInUnsafe_loop___at___private_Lean_KeyedDeclsAttribute_0__Lean_KeyedDeclsAttribute_addImported___spec__1___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { -_start: -{ -size_t x_9; size_t x_10; lean_object* x_11; -x_9 = lean_unbox_usize(x_4); -lean_dec(x_4); -x_10 = lean_unbox_usize(x_5); -lean_dec(x_5); -x_11 = l_Array_forInUnsafe_loop___at___private_Lean_KeyedDeclsAttribute_0__Lean_KeyedDeclsAttribute_addImported___spec__1___rarg(x_1, x_2, x_3, x_9, x_10, x_6, x_7, x_8); -lean_dec(x_7); -lean_dec(x_3); -return x_11; -} -} -lean_object* l_Array_forInUnsafe_loop___at___private_Lean_KeyedDeclsAttribute_0__Lean_KeyedDeclsAttribute_addImported___spec__2___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { -_start: -{ -size_t x_9; size_t x_10; lean_object* x_11; -x_9 = lean_unbox_usize(x_4); -lean_dec(x_4); -x_10 = lean_unbox_usize(x_5); -lean_dec(x_5); -x_11 = l_Array_forInUnsafe_loop___at___private_Lean_KeyedDeclsAttribute_0__Lean_KeyedDeclsAttribute_addImported___spec__2___rarg(x_1, x_2, x_3, x_9, x_10, x_6, x_7, x_8); -lean_dec(x_7); -lean_dec(x_3); -return x_11; -} -} -lean_object* l___private_Lean_KeyedDeclsAttribute_0__Lean_KeyedDeclsAttribute_addImported___rarg___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___private_Lean_KeyedDeclsAttribute_0__Lean_KeyedDeclsAttribute_addImported___rarg(x_1, x_2, x_3, x_4, x_5); -lean_dec(x_3); -lean_dec(x_2); -return x_6; -} -} -lean_object* l___private_Lean_KeyedDeclsAttribute_0__Lean_KeyedDeclsAttribute_addExtensionEntry___rarg(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_9; lean_object* x_10; -x_3 = lean_ctor_get(x_2, 0); -lean_inc(x_3); -x_4 = lean_ctor_get(x_2, 1); -lean_inc(x_4); -lean_dec(x_2); -x_5 = lean_ctor_get(x_1, 0); -lean_inc(x_5); -lean_inc(x_3); -x_6 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_6, 0, x_3); -lean_ctor_set(x_6, 1, x_5); -x_7 = lean_ctor_get(x_1, 1); -lean_inc(x_7); -lean_dec(x_1); -x_8 = lean_ctor_get(x_3, 0); -lean_inc(x_8); -lean_dec(x_3); -x_9 = l_Lean_KeyedDeclsAttribute_Table_insert___rarg(x_7, x_8, x_4); -x_10 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_10, 0, x_6); -lean_ctor_set(x_10, 1, x_9); -return x_10; -} -} -lean_object* l___private_Lean_KeyedDeclsAttribute_0__Lean_KeyedDeclsAttribute_addExtensionEntry(lean_object* x_1) { -_start: -{ -lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l___private_Lean_KeyedDeclsAttribute_0__Lean_KeyedDeclsAttribute_addExtensionEntry___rarg), 2, 0); -return x_2; -} -} lean_object* l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { @@ -3885,6 +3558,39 @@ return x_3; lean_object* l_Lean_KeyedDeclsAttribute_init_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_ctor_get(x_1, 0); +lean_inc(x_4); +lean_dec(x_1); +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_KeyedDeclsAttribute_init_match__1(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; +x_3 = lean_alloc_closure((void*)(l_Lean_KeyedDeclsAttribute_init_match__1___rarg), 3, 0); +return x_3; +} +} +lean_object* l_Lean_KeyedDeclsAttribute_init_match__2___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ if (lean_obj_tag(x_1) == 4) { lean_object* x_4; lean_object* x_5; uint64_t x_6; lean_object* x_7; lean_object* x_8; @@ -3908,11 +3614,11 @@ return x_9; } } } -lean_object* l_Lean_KeyedDeclsAttribute_init_match__1(lean_object* x_1) { +lean_object* l_Lean_KeyedDeclsAttribute_init_match__2(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Lean_KeyedDeclsAttribute_init_match__1___rarg), 3, 0); +x_2 = lean_alloc_closure((void*)(l_Lean_KeyedDeclsAttribute_init_match__2___rarg), 3, 0); return x_2; } } @@ -3965,211 +3671,7 @@ x_2 = lean_alloc_closure((void*)(l_IO_mkRef___at_Lean_KeyedDeclsAttribute_init__ return x_2; } } -uint8_t l_Array_anyMUnsafe_any___at_Lean_KeyedDeclsAttribute_init___spec__4___rarg(lean_object* x_1, lean_object* x_2, size_t x_3, size_t x_4) { -_start: -{ -uint8_t x_5; -x_5 = x_3 == x_4; -if (x_5 == 0) -{ -lean_object* x_6; lean_object* x_7; lean_object* x_8; uint8_t x_9; -x_6 = lean_array_uget(x_2, x_3); -x_7 = lean_ctor_get(x_6, 1); -lean_inc(x_7); -lean_dec(x_6); -x_8 = lean_ctor_get(x_1, 0); -x_9 = lean_name_eq(x_7, x_8); -lean_dec(x_7); -if (x_9 == 0) -{ -size_t x_10; size_t x_11; -x_10 = 1; -x_11 = x_3 + x_10; -x_3 = x_11; -goto _start; -} -else -{ -uint8_t x_13; -x_13 = 1; -return x_13; -} -} -else -{ -uint8_t x_14; -x_14 = 0; -return x_14; -} -} -} -lean_object* l_Array_anyMUnsafe_any___at_Lean_KeyedDeclsAttribute_init___spec__4(lean_object* x_1) { -_start: -{ -lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Array_anyMUnsafe_any___at_Lean_KeyedDeclsAttribute_init___spec__4___rarg___boxed), 4, 0); -return x_2; -} -} -lean_object* l_Lean_registerPersistentEnvExtensionUnsafe___at_Lean_KeyedDeclsAttribute_init___spec__3___rarg(lean_object* x_1, lean_object* x_2) { -_start: -{ -lean_object* x_3; lean_object* x_4; uint8_t x_5; -x_3 = l_Lean_persistentEnvExtensionsRef; -x_4 = lean_st_ref_get(x_3, x_2); -x_5 = !lean_is_exclusive(x_4); -if (x_5 == 0) -{ -lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; uint8_t x_10; -x_6 = lean_ctor_get(x_4, 0); -x_7 = lean_ctor_get(x_4, 1); -x_8 = lean_array_get_size(x_6); -x_9 = lean_unsigned_to_nat(0u); -x_10 = lean_nat_dec_lt(x_9, x_8); -if (x_10 == 0) -{ -lean_object* x_11; lean_object* x_12; -lean_dec(x_8); -lean_free_object(x_4); -lean_dec(x_6); -x_11 = lean_box(0); -x_12 = l_Lean_registerPersistentEnvExtensionUnsafe___rarg___lambda__2(x_1, x_11, x_7); -return x_12; -} -else -{ -uint8_t x_13; -x_13 = lean_nat_dec_le(x_8, x_8); -if (x_13 == 0) -{ -lean_object* x_14; lean_object* x_15; -lean_dec(x_8); -lean_free_object(x_4); -lean_dec(x_6); -x_14 = lean_box(0); -x_15 = l_Lean_registerPersistentEnvExtensionUnsafe___rarg___lambda__2(x_1, x_14, x_7); -return x_15; -} -else -{ -size_t x_16; size_t x_17; uint8_t x_18; -x_16 = 0; -x_17 = lean_usize_of_nat(x_8); -lean_dec(x_8); -x_18 = l_Array_anyMUnsafe_any___at_Lean_KeyedDeclsAttribute_init___spec__4___rarg(x_1, x_6, x_16, x_17); -lean_dec(x_6); -if (x_18 == 0) -{ -lean_object* x_19; lean_object* x_20; -lean_free_object(x_4); -x_19 = lean_box(0); -x_20 = l_Lean_registerPersistentEnvExtensionUnsafe___rarg___lambda__2(x_1, x_19, x_7); -return x_20; -} -else -{ -lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; -x_21 = lean_ctor_get(x_1, 0); -lean_inc(x_21); -lean_dec(x_1); -x_22 = l_Lean_Name_toString___closed__1; -x_23 = l_Lean_Name_toStringWithSep(x_22, x_21); -x_24 = l_Lean_registerPersistentEnvExtensionUnsafe___rarg___closed__1; -x_25 = lean_string_append(x_24, x_23); -lean_dec(x_23); -x_26 = l_Lean_registerInternalExceptionId___closed__2; -x_27 = lean_string_append(x_25, x_26); -x_28 = lean_alloc_ctor(18, 1, 0); -lean_ctor_set(x_28, 0, x_27); -lean_ctor_set_tag(x_4, 1); -lean_ctor_set(x_4, 0, x_28); -return x_4; -} -} -} -} -else -{ -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_4, 0); -x_30 = lean_ctor_get(x_4, 1); -lean_inc(x_30); -lean_inc(x_29); -lean_dec(x_4); -x_31 = lean_array_get_size(x_29); -x_32 = lean_unsigned_to_nat(0u); -x_33 = lean_nat_dec_lt(x_32, x_31); -if (x_33 == 0) -{ -lean_object* x_34; lean_object* x_35; -lean_dec(x_31); -lean_dec(x_29); -x_34 = lean_box(0); -x_35 = l_Lean_registerPersistentEnvExtensionUnsafe___rarg___lambda__2(x_1, x_34, x_30); -return x_35; -} -else -{ -uint8_t x_36; -x_36 = lean_nat_dec_le(x_31, x_31); -if (x_36 == 0) -{ -lean_object* x_37; lean_object* x_38; -lean_dec(x_31); -lean_dec(x_29); -x_37 = lean_box(0); -x_38 = l_Lean_registerPersistentEnvExtensionUnsafe___rarg___lambda__2(x_1, x_37, x_30); -return x_38; -} -else -{ -size_t x_39; size_t x_40; uint8_t x_41; -x_39 = 0; -x_40 = lean_usize_of_nat(x_31); -lean_dec(x_31); -x_41 = l_Array_anyMUnsafe_any___at_Lean_KeyedDeclsAttribute_init___spec__4___rarg(x_1, x_29, x_39, x_40); -lean_dec(x_29); -if (x_41 == 0) -{ -lean_object* x_42; lean_object* x_43; -x_42 = lean_box(0); -x_43 = l_Lean_registerPersistentEnvExtensionUnsafe___rarg___lambda__2(x_1, x_42, x_30); -return x_43; -} -else -{ -lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; -x_44 = lean_ctor_get(x_1, 0); -lean_inc(x_44); -lean_dec(x_1); -x_45 = l_Lean_Name_toString___closed__1; -x_46 = l_Lean_Name_toStringWithSep(x_45, x_44); -x_47 = l_Lean_registerPersistentEnvExtensionUnsafe___rarg___closed__1; -x_48 = lean_string_append(x_47, x_46); -lean_dec(x_46); -x_49 = l_Lean_registerInternalExceptionId___closed__2; -x_50 = lean_string_append(x_48, x_49); -x_51 = lean_alloc_ctor(18, 1, 0); -lean_ctor_set(x_51, 0, x_50); -x_52 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_52, 0, x_51); -lean_ctor_set(x_52, 1, x_30); -return x_52; -} -} -} -} -} -} -lean_object* l_Lean_registerPersistentEnvExtensionUnsafe___at_Lean_KeyedDeclsAttribute_init___spec__3(lean_object* x_1) { -_start: -{ -lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Lean_registerPersistentEnvExtensionUnsafe___at_Lean_KeyedDeclsAttribute_init___spec__3___rarg), 2, 0); -return x_2; -} -} -lean_object* l_Lean_throwError___at_Lean_KeyedDeclsAttribute_init___spec__7___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_Lean_throwError___at_Lean_KeyedDeclsAttribute_init___spec__5___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; lean_object* x_6; uint8_t x_7; @@ -4207,15 +3709,15 @@ return x_13; } } } -lean_object* l_Lean_throwError___at_Lean_KeyedDeclsAttribute_init___spec__7(lean_object* x_1) { +lean_object* l_Lean_throwError___at_Lean_KeyedDeclsAttribute_init___spec__5(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Lean_throwError___at_Lean_KeyedDeclsAttribute_init___spec__7___rarg___boxed), 4, 0); +x_2 = lean_alloc_closure((void*)(l_Lean_throwError___at_Lean_KeyedDeclsAttribute_init___spec__5___rarg___boxed), 4, 0); return x_2; } } -lean_object* l_Lean_ofExcept___at_Lean_KeyedDeclsAttribute_init___spec__6___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_Lean_ofExcept___at_Lean_KeyedDeclsAttribute_init___spec__4___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { if (lean_obj_tag(x_1) == 0) @@ -4227,7 +3729,7 @@ x_6 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_6, 0, x_5); x_7 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_7, 0, x_6); -x_8 = l_Lean_throwError___at_Lean_KeyedDeclsAttribute_init___spec__7___rarg(x_7, x_2, x_3, x_4); +x_8 = l_Lean_throwError___at_Lean_KeyedDeclsAttribute_init___spec__5___rarg(x_7, x_2, x_3, x_4); return x_8; } else @@ -4242,15 +3744,15 @@ return x_10; } } } -lean_object* l_Lean_ofExcept___at_Lean_KeyedDeclsAttribute_init___spec__6(lean_object* x_1) { +lean_object* l_Lean_ofExcept___at_Lean_KeyedDeclsAttribute_init___spec__4(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Lean_ofExcept___at_Lean_KeyedDeclsAttribute_init___spec__6___rarg___boxed), 4, 0); +x_2 = lean_alloc_closure((void*)(l_Lean_ofExcept___at_Lean_KeyedDeclsAttribute_init___spec__4___rarg___boxed), 4, 0); return x_2; } } -lean_object* l_Lean_evalConstCheck___at_Lean_KeyedDeclsAttribute_init___spec__5___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l_Lean_evalConstCheck___at_Lean_KeyedDeclsAttribute_init___spec__3___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; @@ -4265,20 +3767,20 @@ lean_inc(x_9); lean_dec(x_7); x_10 = lean_ctor_get(x_3, 0); x_11 = l_Lean_Environment_evalConstCheck___rarg(x_9, x_10, x_1, x_2); -x_12 = l_Lean_ofExcept___at_Lean_KeyedDeclsAttribute_init___spec__6___rarg(x_11, x_3, x_4, x_8); +x_12 = l_Lean_ofExcept___at_Lean_KeyedDeclsAttribute_init___spec__4___rarg(x_11, x_3, x_4, x_8); lean_dec(x_11); return x_12; } } -lean_object* l_Lean_evalConstCheck___at_Lean_KeyedDeclsAttribute_init___spec__5(lean_object* x_1) { +lean_object* l_Lean_evalConstCheck___at_Lean_KeyedDeclsAttribute_init___spec__3(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Lean_evalConstCheck___at_Lean_KeyedDeclsAttribute_init___spec__5___rarg___boxed), 5, 0); +x_2 = lean_alloc_closure((void*)(l_Lean_evalConstCheck___at_Lean_KeyedDeclsAttribute_init___spec__3___rarg___boxed), 5, 0); return x_2; } } -lean_object* l_Lean_setEnv___at_Lean_KeyedDeclsAttribute_init___spec__8(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_Lean_setEnv___at_Lean_KeyedDeclsAttribute_init___spec__6(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; lean_object* x_6; lean_object* x_7; uint8_t x_8; @@ -4357,7 +3859,7 @@ return x_25; } } } -lean_object* l_Lean_throwError___at_Lean_KeyedDeclsAttribute_init___spec__9(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_Lean_throwError___at_Lean_KeyedDeclsAttribute_init___spec__7(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; lean_object* x_6; uint8_t x_7; @@ -4395,41 +3897,104 @@ return x_13; } } } -lean_object* l_Lean_KeyedDeclsAttribute_init___rarg___lambda__1(lean_object* x_1) { +lean_object* l_Lean_KeyedDeclsAttribute_init___rarg___lambda__1(lean_object* x_1, lean_object* x_2) { _start: { -lean_object* x_2; 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; +x_3 = lean_box(0); +x_4 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_4, 0, x_3); +lean_ctor_set(x_4, 1, x_1); +x_5 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_5, 0, x_4); +lean_ctor_set(x_5, 1, x_2); +return x_5; +} +} +lean_object* l_Lean_KeyedDeclsAttribute_init___rarg___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; +x_6 = lean_ctor_get(x_4, 0); +lean_inc(x_6); +x_7 = lean_ctor_get(x_4, 1); +lean_inc(x_7); +lean_dec(x_4); +x_8 = lean_ctor_get(x_1, 3); +lean_inc(x_8); +lean_dec(x_1); +x_9 = lean_ctor_get(x_3, 1); +lean_inc(x_9); +x_10 = l_Lean_Environment_evalConstCheck___rarg(x_6, x_7, x_8, x_9); +lean_dec(x_7); +if (lean_obj_tag(x_10) == 0) +{ +lean_object* x_11; lean_object* x_12; lean_object* x_13; +lean_dec(x_3); +x_11 = lean_ctor_get(x_10, 0); +lean_inc(x_11); +lean_dec(x_10); +x_12 = lean_alloc_ctor(18, 1, 0); +lean_ctor_set(x_12, 0, x_11); +x_13 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_13, 0, x_12); +lean_ctor_set(x_13, 1, x_5); +return x_13; +} +else +{ +lean_object* x_14; lean_object* x_15; lean_object* x_16; +x_14 = lean_ctor_get(x_10, 0); +lean_inc(x_14); +lean_dec(x_10); +x_15 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_15, 0, x_3); +lean_ctor_set(x_15, 1, x_14); +x_16 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_16, 0, x_15); +lean_ctor_set(x_16, 1, x_5); +return x_16; +} +} +} +lean_object* l_Lean_KeyedDeclsAttribute_init___rarg___lambda__3(lean_object* x_1) { +_start: +{ +lean_object* x_2; x_2 = lean_ctor_get(x_1, 0); lean_inc(x_2); -lean_dec(x_1); -x_3 = l_List_reverse___rarg(x_2); -x_4 = l_List_redLength___rarg(x_3); -x_5 = lean_mk_empty_array_with_capacity(x_4); -lean_dec(x_4); -x_6 = l_List_toArrayAux___rarg(x_3, x_5); -return x_6; +return x_2; } } -lean_object* l_Lean_KeyedDeclsAttribute_init___rarg___lambda__2(lean_object* x_1) { +lean_object* l_Lean_KeyedDeclsAttribute_init___rarg___lambda__4(lean_object* x_1, lean_object* x_2) { _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; -x_2 = lean_ctor_get(x_1, 0); -x_3 = lean_unsigned_to_nat(0u); -x_4 = l_List_lengthAux___rarg(x_2, x_3); -x_5 = l_Std_fmt___at_Lean_Level_PP_Result_format___spec__2(x_4); -x_6 = l_Lean_registerSimplePersistentEnvExtension___rarg___lambda__4___closed__2; -x_7 = lean_alloc_ctor(4, 2, 0); -lean_ctor_set(x_7, 0, x_6); -lean_ctor_set(x_7, 1, x_5); -x_8 = l_Std_Format_join___closed__1; -x_9 = lean_alloc_ctor(4, 2, 0); -lean_ctor_set(x_9, 0, x_7); -lean_ctor_set(x_9, 1, x_8); -return x_9; +lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; +x_3 = lean_ctor_get(x_2, 0); +lean_inc(x_3); +x_4 = lean_ctor_get(x_2, 1); +lean_inc(x_4); +lean_dec(x_2); +x_5 = lean_ctor_get(x_1, 0); +lean_inc(x_5); +lean_inc(x_3); +x_6 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_6, 0, x_3); +lean_ctor_set(x_6, 1, x_5); +x_7 = lean_ctor_get(x_1, 1); +lean_inc(x_7); +lean_dec(x_1); +x_8 = lean_ctor_get(x_3, 0); +lean_inc(x_8); +lean_dec(x_3); +x_9 = l_Lean_KeyedDeclsAttribute_Table_insert___rarg(x_7, x_8, x_4); +x_10 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_10, 0, x_6); +lean_ctor_set(x_10, 1, x_9); +return x_10; } } -lean_object* l_Lean_KeyedDeclsAttribute_init___rarg___lambda__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, uint8_t x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +lean_object* l_Lean_KeyedDeclsAttribute_init___rarg___lambda__5(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, uint8_t x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { _start: { uint8_t x_10; lean_object* x_11; lean_object* x_12; @@ -4447,7 +4012,7 @@ x_14 = lean_ctor_get(x_12, 1); lean_inc(x_14); lean_dec(x_12); lean_inc(x_4); -x_15 = l_Lean_evalConstCheck___at_Lean_KeyedDeclsAttribute_init___spec__5___rarg(x_2, x_4, x_7, x_8, x_14); +x_15 = l_Lean_evalConstCheck___at_Lean_KeyedDeclsAttribute_init___spec__3___rarg(x_2, x_4, x_7, x_8, x_14); 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; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; @@ -4471,8 +4036,8 @@ lean_ctor_set(x_22, 1, x_4); x_23 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_23, 0, x_22); lean_ctor_set(x_23, 1, x_16); -x_24 = l_Lean_PersistentEnvExtension_addEntry___rarg(x_3, x_21, x_23); -x_25 = l_Lean_setEnv___at_Lean_KeyedDeclsAttribute_init___spec__8(x_24, x_7, x_8, x_20); +x_24 = l_Lean_ScopedEnvExtension_addEntry___rarg(x_3, x_21, x_23); +x_25 = l_Lean_setEnv___at_Lean_KeyedDeclsAttribute_init___spec__6(x_24, x_7, x_8, x_20); lean_dec(x_8); lean_dec(x_7); return x_25; @@ -4534,7 +4099,7 @@ return x_33; } } } -lean_object* l_Lean_KeyedDeclsAttribute_init___rarg___lambda__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* l_Lean_KeyedDeclsAttribute_init___rarg___lambda__6(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { _start: { uint8_t x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; @@ -4544,7 +4109,7 @@ lean_ctor_set(x_11, 0, x_1); lean_ctor_set(x_11, 1, x_2); lean_ctor_set_uint8(x_11, sizeof(void*)*2, x_10); lean_inc(x_5); -x_12 = lean_alloc_closure((void*)(l_Lean_KeyedDeclsAttribute_init___rarg___lambda__3___boxed), 9, 3); +x_12 = lean_alloc_closure((void*)(l_Lean_KeyedDeclsAttribute_init___rarg___lambda__5___boxed), 9, 3); lean_closure_set(x_12, 0, x_3); lean_closure_set(x_12, 1, x_4); lean_closure_set(x_12, 2, x_5); @@ -4613,7 +4178,7 @@ return x_25; } } } -static lean_object* _init_l_Lean_KeyedDeclsAttribute_init___rarg___lambda__5___closed__1() { +static lean_object* _init_l_Lean_KeyedDeclsAttribute_init___rarg___lambda__7___closed__1() { _start: { lean_object* x_1; lean_object* x_2; @@ -4622,7 +4187,7 @@ x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -static lean_object* _init_l_Lean_KeyedDeclsAttribute_init___rarg___lambda__5___closed__2() { +static lean_object* _init_l_Lean_KeyedDeclsAttribute_init___rarg___lambda__7___closed__2() { _start: { lean_object* x_1; @@ -4630,16 +4195,16 @@ x_1 = lean_mk_string("', '"); return x_1; } } -static lean_object* _init_l_Lean_KeyedDeclsAttribute_init___rarg___lambda__5___closed__3() { +static lean_object* _init_l_Lean_KeyedDeclsAttribute_init___rarg___lambda__7___closed__3() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_KeyedDeclsAttribute_init___rarg___lambda__5___closed__2; +x_1 = l_Lean_KeyedDeclsAttribute_init___rarg___lambda__7___closed__2; x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -static lean_object* _init_l_Lean_KeyedDeclsAttribute_init___rarg___lambda__5___closed__4() { +static lean_object* _init_l_Lean_KeyedDeclsAttribute_init___rarg___lambda__7___closed__4() { _start: { lean_object* x_1; @@ -4647,16 +4212,16 @@ x_1 = lean_mk_string("' expected"); return x_1; } } -static lean_object* _init_l_Lean_KeyedDeclsAttribute_init___rarg___lambda__5___closed__5() { +static lean_object* _init_l_Lean_KeyedDeclsAttribute_init___rarg___lambda__7___closed__5() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_KeyedDeclsAttribute_init___rarg___lambda__5___closed__4; +x_1 = l_Lean_KeyedDeclsAttribute_init___rarg___lambda__7___closed__4; x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -lean_object* l_Lean_KeyedDeclsAttribute_init___rarg___lambda__5(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +lean_object* l_Lean_KeyedDeclsAttribute_init___rarg___lambda__7(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { uint8_t x_11; lean_object* x_12; lean_object* x_13; @@ -4701,11 +4266,11 @@ lean_dec(x_6); lean_dec(x_5); x_22 = lean_alloc_ctor(4, 1, 0); lean_ctor_set(x_22, 0, x_3); -x_23 = l_Lean_KeyedDeclsAttribute_init___rarg___lambda__5___closed__1; +x_23 = l_Lean_KeyedDeclsAttribute_init___rarg___lambda__7___closed__1; x_24 = lean_alloc_ctor(10, 2, 0); lean_ctor_set(x_24, 0, x_23); lean_ctor_set(x_24, 1, x_22); -x_25 = l_Lean_KeyedDeclsAttribute_init___rarg___lambda__5___closed__3; +x_25 = l_Lean_KeyedDeclsAttribute_init___rarg___lambda__7___closed__3; x_26 = lean_alloc_ctor(10, 2, 0); lean_ctor_set(x_26, 0, x_24); lean_ctor_set(x_26, 1, x_25); @@ -4714,11 +4279,11 @@ lean_ctor_set(x_27, 0, x_4); x_28 = lean_alloc_ctor(10, 2, 0); lean_ctor_set(x_28, 0, x_26); lean_ctor_set(x_28, 1, x_27); -x_29 = l_Lean_KeyedDeclsAttribute_init___rarg___lambda__5___closed__5; +x_29 = l_Lean_KeyedDeclsAttribute_init___rarg___lambda__7___closed__5; 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_Lean_throwError___at_Lean_KeyedDeclsAttribute_init___spec__9(x_30, x_8, x_9, x_18); +x_31 = l_Lean_throwError___at_Lean_KeyedDeclsAttribute_init___spec__7(x_30, x_8, x_9, x_18); lean_dec(x_9); lean_dec(x_8); return x_31; @@ -4811,11 +4376,11 @@ lean_dec(x_6); lean_dec(x_5); x_56 = lean_alloc_ctor(4, 1, 0); lean_ctor_set(x_56, 0, x_3); -x_57 = l_Lean_KeyedDeclsAttribute_init___rarg___lambda__5___closed__1; +x_57 = l_Lean_KeyedDeclsAttribute_init___rarg___lambda__7___closed__1; x_58 = lean_alloc_ctor(10, 2, 0); lean_ctor_set(x_58, 0, x_57); lean_ctor_set(x_58, 1, x_56); -x_59 = l_Lean_KeyedDeclsAttribute_init___rarg___lambda__5___closed__3; +x_59 = l_Lean_KeyedDeclsAttribute_init___rarg___lambda__7___closed__3; x_60 = lean_alloc_ctor(10, 2, 0); lean_ctor_set(x_60, 0, x_58); lean_ctor_set(x_60, 1, x_59); @@ -4824,11 +4389,11 @@ lean_ctor_set(x_61, 0, x_4); x_62 = lean_alloc_ctor(10, 2, 0); lean_ctor_set(x_62, 0, x_60); lean_ctor_set(x_62, 1, x_61); -x_63 = l_Lean_KeyedDeclsAttribute_init___rarg___lambda__5___closed__5; +x_63 = l_Lean_KeyedDeclsAttribute_init___rarg___lambda__7___closed__5; x_64 = lean_alloc_ctor(10, 2, 0); lean_ctor_set(x_64, 0, x_62); lean_ctor_set(x_64, 1, x_63); -x_65 = l_Lean_throwError___at_Lean_KeyedDeclsAttribute_init___spec__9(x_64, x_8, x_9, x_18); +x_65 = l_Lean_throwError___at_Lean_KeyedDeclsAttribute_init___spec__7(x_64, x_8, x_9, x_18); lean_dec(x_9); lean_dec(x_8); return x_65; @@ -4894,7 +4459,7 @@ return x_73; } } } -lean_object* l_Lean_KeyedDeclsAttribute_init___rarg___lambda__6(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, uint8_t x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +lean_object* l_Lean_KeyedDeclsAttribute_init___rarg___lambda__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, uint8_t x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { uint8_t x_12; uint8_t x_13; @@ -4946,7 +4511,7 @@ else lean_object* x_24; lean_object* x_25; lean_dec(x_5); x_24 = lean_box(0); -x_25 = l_Lean_KeyedDeclsAttribute_init___rarg___lambda__5(x_1, x_7, x_6, x_2, x_3, x_4, x_24, x_9, x_10, x_11); +x_25 = l_Lean_KeyedDeclsAttribute_init___rarg___lambda__7(x_1, x_7, x_6, x_2, x_3, x_4, x_24, x_9, x_10, x_11); return x_25; } } @@ -4978,7 +4543,7 @@ static lean_object* _init_l_Lean_KeyedDeclsAttribute_init___rarg___closed__3() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l___private_Lean_KeyedDeclsAttribute_0__Lean_KeyedDeclsAttribute_addExtensionEntry___rarg), 2, 0); +x_1 = lean_alloc_closure((void*)(l_Lean_KeyedDeclsAttribute_init___rarg___lambda__1), 2, 0); return x_1; } } @@ -4986,7 +4551,7 @@ static lean_object* _init_l_Lean_KeyedDeclsAttribute_init___rarg___closed__4() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_KeyedDeclsAttribute_init___rarg___lambda__1), 1, 0); +x_1 = lean_alloc_closure((void*)(l_Lean_KeyedDeclsAttribute_init___rarg___lambda__3___boxed), 1, 0); return x_1; } } @@ -4994,7 +4559,7 @@ static lean_object* _init_l_Lean_KeyedDeclsAttribute_init___rarg___closed__5() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_KeyedDeclsAttribute_init___rarg___lambda__2___boxed), 1, 0); +x_1 = lean_alloc_closure((void*)(l_Lean_KeyedDeclsAttribute_init___rarg___lambda__4), 2, 0); return x_1; } } @@ -5009,7 +4574,7 @@ return x_1; lean_object* l_Lean_KeyedDeclsAttribute_init___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { -lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; +lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_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; x_4 = l_Lean_KeyedDeclsAttribute_init___rarg___closed__2; x_5 = l_IO_mkRef___at_Lean_KeyedDeclsAttribute_init___spec__2___rarg(x_4, x_3); x_6 = lean_ctor_get(x_5, 0); @@ -5028,115 +4593,117 @@ lean_inc(x_11); x_12 = lean_ctor_get(x_1, 4); lean_inc(x_12); lean_inc(x_6); -x_13 = lean_alloc_closure((void*)(l___private_Lean_KeyedDeclsAttribute_0__Lean_KeyedDeclsAttribute_mkInitial___rarg___boxed), 2, 1); +x_13 = lean_alloc_closure((void*)(l_IO_FS_Stream_ofBuffer___lambda__1___boxed), 2, 1); lean_closure_set(x_13, 0, x_6); -lean_inc(x_6); +x_14 = l_Lean_KeyedDeclsAttribute_init___rarg___closed__3; +x_15 = lean_alloc_closure((void*)(l_EStateM_bind___rarg), 3, 2); +lean_closure_set(x_15, 0, x_13); +lean_closure_set(x_15, 1, x_14); lean_inc(x_1); -x_14 = lean_alloc_closure((void*)(l___private_Lean_KeyedDeclsAttribute_0__Lean_KeyedDeclsAttribute_addImported___rarg___boxed), 5, 2); -lean_closure_set(x_14, 0, x_1); -lean_closure_set(x_14, 1, x_6); -x_15 = l_Lean_KeyedDeclsAttribute_init___rarg___closed__3; -x_16 = l_Lean_KeyedDeclsAttribute_init___rarg___closed__4; -x_17 = l_Lean_KeyedDeclsAttribute_init___rarg___closed__5; +x_16 = lean_alloc_closure((void*)(l_Lean_KeyedDeclsAttribute_init___rarg___lambda__2___boxed), 5, 1); +lean_closure_set(x_16, 0, x_1); +x_17 = l_Lean_KeyedDeclsAttribute_init___rarg___closed__4; +x_18 = l_Lean_KeyedDeclsAttribute_init___rarg___closed__5; +x_19 = l_Applicative_seqRight___default___rarg___closed__1; lean_inc(x_9); -x_18 = lean_alloc_ctor(0, 6, 0); -lean_ctor_set(x_18, 0, x_9); -lean_ctor_set(x_18, 1, x_13); -lean_ctor_set(x_18, 2, x_14); -lean_ctor_set(x_18, 3, x_15); -lean_ctor_set(x_18, 4, x_16); -lean_ctor_set(x_18, 5, x_17); -x_19 = l_Lean_registerPersistentEnvExtensionUnsafe___at_Lean_KeyedDeclsAttribute_init___spec__3___rarg(x_18, x_7); -if (lean_obj_tag(x_19) == 0) +x_20 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_20, 0, x_9); +lean_ctor_set(x_20, 1, x_15); +lean_ctor_set(x_20, 2, x_16); +lean_ctor_set(x_20, 3, x_17); +lean_ctor_set(x_20, 4, x_18); +lean_ctor_set(x_20, 5, x_19); +x_21 = l_Lean_registerScopedEnvExtensionUnsafe___rarg(x_20, x_7); +if (lean_obj_tag(x_21) == 0) { -lean_object* x_20; lean_object* x_21; uint8_t x_22; -x_20 = lean_ctor_get(x_19, 0); -lean_inc(x_20); -x_21 = lean_ctor_get(x_19, 1); -lean_inc(x_21); -lean_dec(x_19); -x_22 = l_Lean_Name_isAnonymous(x_8); -if (x_22 == 0) +lean_object* x_22; lean_object* x_23; uint8_t x_24; +x_22 = lean_ctor_get(x_21, 0); +lean_inc(x_22); +x_23 = lean_ctor_get(x_21, 1); +lean_inc(x_23); +lean_dec(x_21); +x_24 = l_Lean_Name_isAnonymous(x_8); +if (x_24 == 0) { -lean_object* x_23; lean_object* x_24; uint8_t x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; -x_23 = l_Lean_KeyedDeclsAttribute_init___rarg___closed__6; -x_24 = lean_string_append(x_23, x_10); -x_25 = 1; +lean_object* x_25; lean_object* x_26; uint8_t x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; +x_25 = l_Lean_KeyedDeclsAttribute_init___rarg___closed__6; +x_26 = lean_string_append(x_25, x_10); +x_27 = 1; lean_inc(x_8); -x_26 = lean_alloc_ctor(0, 2, 1); -lean_ctor_set(x_26, 0, x_8); -lean_ctor_set(x_26, 1, x_24); -lean_ctor_set_uint8(x_26, sizeof(void*)*2, x_25); +x_28 = lean_alloc_ctor(0, 2, 1); +lean_ctor_set(x_28, 0, x_8); +lean_ctor_set(x_28, 1, x_26); +lean_ctor_set_uint8(x_28, sizeof(void*)*2, x_27); lean_inc(x_1); lean_inc(x_11); lean_inc(x_12); -x_27 = lean_alloc_closure((void*)(l_Lean_KeyedDeclsAttribute_init___rarg___lambda__6___boxed), 11, 5); -lean_closure_set(x_27, 0, x_12); -lean_closure_set(x_27, 1, x_11); -lean_closure_set(x_27, 2, x_1); -lean_closure_set(x_27, 3, x_2); -lean_closure_set(x_27, 4, x_8); -x_28 = l_Lean_registerTagAttribute___closed__5; -x_29 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_29, 0, x_26); -lean_ctor_set(x_29, 1, x_27); -lean_ctor_set(x_29, 2, x_28); -x_30 = l_Lean_registerBuiltinAttribute(x_29, x_21); -if (lean_obj_tag(x_30) == 0) +x_29 = lean_alloc_closure((void*)(l_Lean_KeyedDeclsAttribute_init___rarg___lambda__8___boxed), 11, 5); +lean_closure_set(x_29, 0, x_12); +lean_closure_set(x_29, 1, x_11); +lean_closure_set(x_29, 2, x_1); +lean_closure_set(x_29, 3, x_2); +lean_closure_set(x_29, 4, x_8); +x_30 = l_Lean_registerTagAttribute___closed__5; +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 = l_Lean_registerBuiltinAttribute(x_31, x_23); +if (lean_obj_tag(x_32) == 0) { -lean_object* x_31; lean_object* x_32; lean_object* x_33; -x_31 = lean_ctor_get(x_30, 0); -lean_inc(x_31); -x_32 = lean_ctor_get(x_30, 1); -lean_inc(x_32); -lean_dec(x_30); -x_33 = l_Lean_KeyedDeclsAttribute_init___rarg___lambda__4(x_9, x_10, x_12, x_11, x_20, x_1, x_6, x_31, x_32); -lean_dec(x_31); -return x_33; +lean_object* x_33; lean_object* x_34; lean_object* x_35; +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_Lean_KeyedDeclsAttribute_init___rarg___lambda__6(x_9, x_10, x_12, x_11, x_22, x_1, x_6, x_33, x_34); +lean_dec(x_33); +return x_35; } else { -uint8_t x_34; -lean_dec(x_20); +uint8_t x_36; +lean_dec(x_22); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_6); lean_dec(x_1); -x_34 = !lean_is_exclusive(x_30); -if (x_34 == 0) +x_36 = !lean_is_exclusive(x_32); +if (x_36 == 0) { -return x_30; +return x_32; } else { -lean_object* x_35; lean_object* x_36; lean_object* x_37; -x_35 = lean_ctor_get(x_30, 0); -x_36 = lean_ctor_get(x_30, 1); -lean_inc(x_36); -lean_inc(x_35); -lean_dec(x_30); -x_37 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_37, 0, x_35); -lean_ctor_set(x_37, 1, x_36); -return x_37; -} -} -} -else -{ -lean_object* x_38; lean_object* x_39; -lean_dec(x_8); -lean_dec(x_2); -x_38 = lean_box(0); -x_39 = l_Lean_KeyedDeclsAttribute_init___rarg___lambda__4(x_9, x_10, x_12, x_11, x_20, x_1, x_6, x_38, x_21); +lean_object* x_37; lean_object* x_38; lean_object* x_39; +x_37 = lean_ctor_get(x_32, 0); +x_38 = lean_ctor_get(x_32, 1); +lean_inc(x_38); +lean_inc(x_37); +lean_dec(x_32); +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_object* x_40; lean_object* x_41; +lean_dec(x_8); +lean_dec(x_2); +x_40 = lean_box(0); +x_41 = l_Lean_KeyedDeclsAttribute_init___rarg___lambda__6(x_9, x_10, x_12, x_11, x_22, x_1, x_6, x_40, x_23); +return x_41; +} +} +else +{ +uint8_t x_42; lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); @@ -5145,23 +4712,23 @@ lean_dec(x_8); lean_dec(x_6); lean_dec(x_2); lean_dec(x_1); -x_40 = !lean_is_exclusive(x_19); -if (x_40 == 0) +x_42 = !lean_is_exclusive(x_21); +if (x_42 == 0) { -return x_19; +return x_21; } else { -lean_object* x_41; lean_object* x_42; lean_object* x_43; -x_41 = lean_ctor_get(x_19, 0); -x_42 = lean_ctor_get(x_19, 1); -lean_inc(x_42); -lean_inc(x_41); -lean_dec(x_19); -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; +lean_object* x_43; lean_object* x_44; lean_object* x_45; +x_43 = lean_ctor_get(x_21, 0); +x_44 = lean_ctor_get(x_21, 1); +lean_inc(x_44); +lean_inc(x_43); +lean_dec(x_21); +x_45 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_45, 0, x_43); +lean_ctor_set(x_45, 1, x_44); +return x_45; } } } @@ -5174,120 +4741,160 @@ x_2 = lean_alloc_closure((void*)(l_Lean_KeyedDeclsAttribute_init___rarg), 3, 0); return x_2; } } -lean_object* l_Array_anyMUnsafe_any___at_Lean_KeyedDeclsAttribute_init___spec__4___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { -_start: -{ -size_t x_5; size_t x_6; uint8_t x_7; lean_object* x_8; -x_5 = lean_unbox_usize(x_3); -lean_dec(x_3); -x_6 = lean_unbox_usize(x_4); -lean_dec(x_4); -x_7 = l_Array_anyMUnsafe_any___at_Lean_KeyedDeclsAttribute_init___spec__4___rarg(x_1, x_2, x_5, x_6); -lean_dec(x_2); -lean_dec(x_1); -x_8 = lean_box(x_7); -return x_8; -} -} -lean_object* l_Lean_throwError___at_Lean_KeyedDeclsAttribute_init___spec__7___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_Lean_throwError___at_Lean_KeyedDeclsAttribute_init___spec__5___rarg___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_throwError___at_Lean_KeyedDeclsAttribute_init___spec__7___rarg(x_1, x_2, x_3, x_4); +x_5 = l_Lean_throwError___at_Lean_KeyedDeclsAttribute_init___spec__5___rarg(x_1, x_2, x_3, x_4); lean_dec(x_3); lean_dec(x_2); return x_5; } } -lean_object* l_Lean_ofExcept___at_Lean_KeyedDeclsAttribute_init___spec__6___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_Lean_ofExcept___at_Lean_KeyedDeclsAttribute_init___spec__4___rarg___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_ofExcept___at_Lean_KeyedDeclsAttribute_init___spec__6___rarg(x_1, x_2, x_3, x_4); +x_5 = l_Lean_ofExcept___at_Lean_KeyedDeclsAttribute_init___spec__4___rarg(x_1, x_2, x_3, x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); return x_5; } } -lean_object* l_Lean_evalConstCheck___at_Lean_KeyedDeclsAttribute_init___spec__5___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l_Lean_evalConstCheck___at_Lean_KeyedDeclsAttribute_init___spec__3___rarg___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_evalConstCheck___at_Lean_KeyedDeclsAttribute_init___spec__5___rarg(x_1, x_2, x_3, x_4, x_5); +x_6 = l_Lean_evalConstCheck___at_Lean_KeyedDeclsAttribute_init___spec__3___rarg(x_1, x_2, x_3, x_4, x_5); lean_dec(x_4); lean_dec(x_3); return x_6; } } -lean_object* l_Lean_setEnv___at_Lean_KeyedDeclsAttribute_init___spec__8___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_Lean_setEnv___at_Lean_KeyedDeclsAttribute_init___spec__6___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; -x_5 = l_Lean_setEnv___at_Lean_KeyedDeclsAttribute_init___spec__8(x_1, x_2, x_3, x_4); +x_5 = l_Lean_setEnv___at_Lean_KeyedDeclsAttribute_init___spec__6(x_1, x_2, x_3, x_4); lean_dec(x_3); lean_dec(x_2); return x_5; } } -lean_object* l_Lean_throwError___at_Lean_KeyedDeclsAttribute_init___spec__9___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_Lean_throwError___at_Lean_KeyedDeclsAttribute_init___spec__7___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_throwError___at_Lean_KeyedDeclsAttribute_init___spec__9(x_1, x_2, x_3, x_4); +x_5 = l_Lean_throwError___at_Lean_KeyedDeclsAttribute_init___spec__7(x_1, x_2, x_3, x_4); lean_dec(x_3); lean_dec(x_2); return x_5; } } -lean_object* l_Lean_KeyedDeclsAttribute_init___rarg___lambda__2___boxed(lean_object* x_1) { +lean_object* l_Lean_KeyedDeclsAttribute_init___rarg___lambda__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +_start: +{ +lean_object* x_6; +x_6 = l_Lean_KeyedDeclsAttribute_init___rarg___lambda__2(x_1, x_2, x_3, x_4, x_5); +lean_dec(x_2); +return x_6; +} +} +lean_object* l_Lean_KeyedDeclsAttribute_init___rarg___lambda__3___boxed(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = l_Lean_KeyedDeclsAttribute_init___rarg___lambda__2(x_1); +x_2 = l_Lean_KeyedDeclsAttribute_init___rarg___lambda__3(x_1); lean_dec(x_1); return x_2; } } -lean_object* l_Lean_KeyedDeclsAttribute_init___rarg___lambda__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +lean_object* l_Lean_KeyedDeclsAttribute_init___rarg___lambda__5___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { _start: { uint8_t x_10; lean_object* x_11; x_10 = lean_unbox(x_6); lean_dec(x_6); -x_11 = l_Lean_KeyedDeclsAttribute_init___rarg___lambda__3(x_1, x_2, x_3, x_4, x_5, x_10, x_7, x_8, x_9); +x_11 = l_Lean_KeyedDeclsAttribute_init___rarg___lambda__5(x_1, x_2, x_3, x_4, x_5, x_10, x_7, x_8, x_9); return x_11; } } -lean_object* l_Lean_KeyedDeclsAttribute_init___rarg___lambda__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +lean_object* l_Lean_KeyedDeclsAttribute_init___rarg___lambda__6___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { _start: { lean_object* x_10; -x_10 = l_Lean_KeyedDeclsAttribute_init___rarg___lambda__4(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_10 = l_Lean_KeyedDeclsAttribute_init___rarg___lambda__6(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); lean_dec(x_8); return x_10; } } -lean_object* l_Lean_KeyedDeclsAttribute_init___rarg___lambda__5___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +lean_object* l_Lean_KeyedDeclsAttribute_init___rarg___lambda__7___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { lean_object* x_11; -x_11 = l_Lean_KeyedDeclsAttribute_init___rarg___lambda__5(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_11 = l_Lean_KeyedDeclsAttribute_init___rarg___lambda__7(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); lean_dec(x_7); return x_11; } } -lean_object* l_Lean_KeyedDeclsAttribute_init___rarg___lambda__6___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +lean_object* l_Lean_KeyedDeclsAttribute_init___rarg___lambda__8___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { uint8_t x_12; lean_object* x_13; x_12 = lean_unbox(x_8); lean_dec(x_8); -x_13 = l_Lean_KeyedDeclsAttribute_init___rarg___lambda__6(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_12, x_9, x_10, x_11); +x_13 = l_Lean_KeyedDeclsAttribute_init___rarg___lambda__8(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_12, x_9, x_10, x_11); return x_13; } } -lean_object* l_Std_PersistentHashMap_findAtAux___at_Lean_KeyedDeclsAttribute_getValues___spec__4___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +static lean_object* _init_l_Lean_ScopedEnvExtension_getState___at_Lean_KeyedDeclsAttribute_getValues___spec__1___rarg___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = l_Lean_KeyedDeclsAttribute_instInhabitedExtensionState(lean_box(0)); +return x_1; +} +} +lean_object* l_Lean_ScopedEnvExtension_getState___at_Lean_KeyedDeclsAttribute_getValues___spec__1___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, 1); +x_4 = l_Lean_PersistentEnvExtension_getState___rarg(x_3, x_2); +x_5 = lean_ctor_get(x_4, 0); +lean_inc(x_5); +lean_dec(x_4); +if (lean_obj_tag(x_5) == 0) +{ +lean_object* x_6; lean_object* x_7; lean_object* x_8; +x_6 = l_Lean_ScopedEnvExtension_getState___at_Lean_KeyedDeclsAttribute_getValues___spec__1___rarg___closed__1; +x_7 = l_Lean_ScopedEnvExtension_getState___rarg___closed__3; +x_8 = lean_panic_fn(x_6, x_7); +return x_8; +} +else +{ +lean_object* x_9; lean_object* x_10; +x_9 = lean_ctor_get(x_5, 0); +lean_inc(x_9); +lean_dec(x_5); +x_10 = lean_ctor_get(x_9, 0); +lean_inc(x_10); +lean_dec(x_9); +return x_10; +} +} +} +lean_object* l_Lean_ScopedEnvExtension_getState___at_Lean_KeyedDeclsAttribute_getValues___spec__1(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l_Lean_ScopedEnvExtension_getState___at_Lean_KeyedDeclsAttribute_getValues___spec__1___rarg___boxed), 2, 0); +return x_2; +} +} +lean_object* l_Std_PersistentHashMap_findAtAux___at_Lean_KeyedDeclsAttribute_getValues___spec__5___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; uint8_t x_7; @@ -5329,15 +4936,15 @@ return x_15; } } } -lean_object* l_Std_PersistentHashMap_findAtAux___at_Lean_KeyedDeclsAttribute_getValues___spec__4(lean_object* x_1) { +lean_object* l_Std_PersistentHashMap_findAtAux___at_Lean_KeyedDeclsAttribute_getValues___spec__5(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Std_PersistentHashMap_findAtAux___at_Lean_KeyedDeclsAttribute_getValues___spec__4___rarg___boxed), 5, 0); +x_2 = lean_alloc_closure((void*)(l_Std_PersistentHashMap_findAtAux___at_Lean_KeyedDeclsAttribute_getValues___spec__5___rarg___boxed), 5, 0); return x_2; } } -lean_object* l_Std_PersistentHashMap_findAux___at_Lean_KeyedDeclsAttribute_getValues___spec__3___rarg(lean_object* x_1, size_t x_2, lean_object* x_3) { +lean_object* l_Std_PersistentHashMap_findAux___at_Lean_KeyedDeclsAttribute_getValues___spec__4___rarg(lean_object* x_1, size_t x_2, lean_object* x_3) { _start: { if (lean_obj_tag(x_1) == 0) @@ -5408,22 +5015,22 @@ x_21 = lean_ctor_get(x_1, 1); lean_inc(x_21); lean_dec(x_1); x_22 = lean_unsigned_to_nat(0u); -x_23 = l_Std_PersistentHashMap_findAtAux___at_Lean_KeyedDeclsAttribute_getValues___spec__4___rarg(x_20, x_21, lean_box(0), x_22, x_3); +x_23 = l_Std_PersistentHashMap_findAtAux___at_Lean_KeyedDeclsAttribute_getValues___spec__5___rarg(x_20, x_21, lean_box(0), x_22, x_3); lean_dec(x_21); lean_dec(x_20); return x_23; } } } -lean_object* l_Std_PersistentHashMap_findAux___at_Lean_KeyedDeclsAttribute_getValues___spec__3(lean_object* x_1) { +lean_object* l_Std_PersistentHashMap_findAux___at_Lean_KeyedDeclsAttribute_getValues___spec__4(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Std_PersistentHashMap_findAux___at_Lean_KeyedDeclsAttribute_getValues___spec__3___rarg___boxed), 3, 0); +x_2 = lean_alloc_closure((void*)(l_Std_PersistentHashMap_findAux___at_Lean_KeyedDeclsAttribute_getValues___spec__4___rarg___boxed), 3, 0); return x_2; } } -lean_object* l_Std_PersistentHashMap_find_x3f___at_Lean_KeyedDeclsAttribute_getValues___spec__2___rarg(lean_object* x_1, lean_object* x_2) { +lean_object* l_Std_PersistentHashMap_find_x3f___at_Lean_KeyedDeclsAttribute_getValues___spec__3___rarg(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; size_t x_4; lean_object* x_5; @@ -5431,19 +5038,19 @@ x_3 = lean_ctor_get(x_1, 0); lean_inc(x_3); lean_dec(x_1); x_4 = l_Lean_Name_hash(x_2); -x_5 = l_Std_PersistentHashMap_findAux___at_Lean_KeyedDeclsAttribute_getValues___spec__3___rarg(x_3, x_4, x_2); +x_5 = l_Std_PersistentHashMap_findAux___at_Lean_KeyedDeclsAttribute_getValues___spec__4___rarg(x_3, x_4, x_2); return x_5; } } -lean_object* l_Std_PersistentHashMap_find_x3f___at_Lean_KeyedDeclsAttribute_getValues___spec__2(lean_object* x_1) { +lean_object* l_Std_PersistentHashMap_find_x3f___at_Lean_KeyedDeclsAttribute_getValues___spec__3(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Std_PersistentHashMap_find_x3f___at_Lean_KeyedDeclsAttribute_getValues___spec__2___rarg___boxed), 2, 0); +x_2 = lean_alloc_closure((void*)(l_Std_PersistentHashMap_find_x3f___at_Lean_KeyedDeclsAttribute_getValues___spec__3___rarg___boxed), 2, 0); return x_2; } } -lean_object* l_Std_AssocList_find_x3f___at_Lean_KeyedDeclsAttribute_getValues___spec__6___rarg(lean_object* x_1, lean_object* x_2) { +lean_object* l_Std_AssocList_find_x3f___at_Lean_KeyedDeclsAttribute_getValues___spec__7___rarg(lean_object* x_1, lean_object* x_2) { _start: { if (lean_obj_tag(x_2) == 0) @@ -5475,15 +5082,15 @@ return x_9; } } } -lean_object* l_Std_AssocList_find_x3f___at_Lean_KeyedDeclsAttribute_getValues___spec__6(lean_object* x_1) { +lean_object* l_Std_AssocList_find_x3f___at_Lean_KeyedDeclsAttribute_getValues___spec__7(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Std_AssocList_find_x3f___at_Lean_KeyedDeclsAttribute_getValues___spec__6___rarg___boxed), 2, 0); +x_2 = lean_alloc_closure((void*)(l_Std_AssocList_find_x3f___at_Lean_KeyedDeclsAttribute_getValues___spec__7___rarg___boxed), 2, 0); return x_2; } } -lean_object* l_Std_HashMapImp_find_x3f___at_Lean_KeyedDeclsAttribute_getValues___spec__5___rarg(lean_object* x_1, lean_object* x_2) { +lean_object* l_Std_HashMapImp_find_x3f___at_Lean_KeyedDeclsAttribute_getValues___spec__6___rarg(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; lean_object* x_4; size_t x_5; size_t x_6; lean_object* x_7; lean_object* x_8; @@ -5493,20 +5100,20 @@ x_5 = l_Lean_Name_hash(x_2); x_6 = lean_usize_modn(x_5, x_4); lean_dec(x_4); x_7 = lean_array_uget(x_3, x_6); -x_8 = l_Std_AssocList_find_x3f___at_Lean_KeyedDeclsAttribute_getValues___spec__6___rarg(x_2, x_7); +x_8 = l_Std_AssocList_find_x3f___at_Lean_KeyedDeclsAttribute_getValues___spec__7___rarg(x_2, x_7); lean_dec(x_7); return x_8; } } -lean_object* l_Std_HashMapImp_find_x3f___at_Lean_KeyedDeclsAttribute_getValues___spec__5(lean_object* x_1) { +lean_object* l_Std_HashMapImp_find_x3f___at_Lean_KeyedDeclsAttribute_getValues___spec__6(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Std_HashMapImp_find_x3f___at_Lean_KeyedDeclsAttribute_getValues___spec__5___rarg___boxed), 2, 0); +x_2 = lean_alloc_closure((void*)(l_Std_HashMapImp_find_x3f___at_Lean_KeyedDeclsAttribute_getValues___spec__6___rarg___boxed), 2, 0); return x_2; } } -lean_object* l_Std_AssocList_find_x3f___at_Lean_KeyedDeclsAttribute_getValues___spec__8___rarg(lean_object* x_1, lean_object* x_2) { +lean_object* l_Std_AssocList_find_x3f___at_Lean_KeyedDeclsAttribute_getValues___spec__9___rarg(lean_object* x_1, lean_object* x_2) { _start: { if (lean_obj_tag(x_2) == 0) @@ -5538,15 +5145,15 @@ return x_9; } } } -lean_object* l_Std_AssocList_find_x3f___at_Lean_KeyedDeclsAttribute_getValues___spec__8(lean_object* x_1) { +lean_object* l_Std_AssocList_find_x3f___at_Lean_KeyedDeclsAttribute_getValues___spec__9(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Std_AssocList_find_x3f___at_Lean_KeyedDeclsAttribute_getValues___spec__8___rarg___boxed), 2, 0); +x_2 = lean_alloc_closure((void*)(l_Std_AssocList_find_x3f___at_Lean_KeyedDeclsAttribute_getValues___spec__9___rarg___boxed), 2, 0); return x_2; } } -lean_object* l_Std_HashMapImp_find_x3f___at_Lean_KeyedDeclsAttribute_getValues___spec__7___rarg(lean_object* x_1, lean_object* x_2) { +lean_object* l_Std_HashMapImp_find_x3f___at_Lean_KeyedDeclsAttribute_getValues___spec__8___rarg(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; lean_object* x_4; size_t x_5; size_t x_6; lean_object* x_7; lean_object* x_8; @@ -5556,20 +5163,20 @@ x_5 = l_Lean_Name_hash(x_2); x_6 = lean_usize_modn(x_5, x_4); lean_dec(x_4); x_7 = lean_array_uget(x_3, x_6); -x_8 = l_Std_AssocList_find_x3f___at_Lean_KeyedDeclsAttribute_getValues___spec__8___rarg(x_2, x_7); +x_8 = l_Std_AssocList_find_x3f___at_Lean_KeyedDeclsAttribute_getValues___spec__9___rarg(x_2, x_7); lean_dec(x_7); return x_8; } } -lean_object* l_Std_HashMapImp_find_x3f___at_Lean_KeyedDeclsAttribute_getValues___spec__7(lean_object* x_1) { +lean_object* l_Std_HashMapImp_find_x3f___at_Lean_KeyedDeclsAttribute_getValues___spec__8(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Std_HashMapImp_find_x3f___at_Lean_KeyedDeclsAttribute_getValues___spec__7___rarg___boxed), 2, 0); +x_2 = lean_alloc_closure((void*)(l_Std_HashMapImp_find_x3f___at_Lean_KeyedDeclsAttribute_getValues___spec__8___rarg___boxed), 2, 0); return x_2; } } -lean_object* l_Lean_SMap_find_x3f___at_Lean_KeyedDeclsAttribute_getValues___spec__1___rarg(lean_object* x_1, lean_object* x_2) { +lean_object* l_Lean_SMap_find_x3f___at_Lean_KeyedDeclsAttribute_getValues___spec__2___rarg(lean_object* x_1, lean_object* x_2) { _start: { uint8_t x_3; @@ -5582,11 +5189,11 @@ lean_inc(x_4); x_5 = lean_ctor_get(x_1, 1); lean_inc(x_5); lean_dec(x_1); -x_6 = l_Std_PersistentHashMap_find_x3f___at_Lean_KeyedDeclsAttribute_getValues___spec__2___rarg(x_5, x_2); +x_6 = l_Std_PersistentHashMap_find_x3f___at_Lean_KeyedDeclsAttribute_getValues___spec__3___rarg(x_5, x_2); if (lean_obj_tag(x_6) == 0) { lean_object* x_7; -x_7 = l_Std_HashMapImp_find_x3f___at_Lean_KeyedDeclsAttribute_getValues___spec__5___rarg(x_4, x_2); +x_7 = l_Std_HashMapImp_find_x3f___at_Lean_KeyedDeclsAttribute_getValues___spec__6___rarg(x_4, x_2); lean_dec(x_4); return x_7; } @@ -5617,17 +5224,17 @@ lean_object* x_11; lean_object* x_12; x_11 = lean_ctor_get(x_1, 0); lean_inc(x_11); lean_dec(x_1); -x_12 = l_Std_HashMapImp_find_x3f___at_Lean_KeyedDeclsAttribute_getValues___spec__7___rarg(x_11, x_2); +x_12 = l_Std_HashMapImp_find_x3f___at_Lean_KeyedDeclsAttribute_getValues___spec__8___rarg(x_11, x_2); lean_dec(x_11); return x_12; } } } -lean_object* l_Lean_SMap_find_x3f___at_Lean_KeyedDeclsAttribute_getValues___spec__1(lean_object* x_1) { +lean_object* l_Lean_SMap_find_x3f___at_Lean_KeyedDeclsAttribute_getValues___spec__2(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Lean_SMap_find_x3f___at_Lean_KeyedDeclsAttribute_getValues___spec__1___rarg___boxed), 2, 0); +x_2 = lean_alloc_closure((void*)(l_Lean_SMap_find_x3f___at_Lean_KeyedDeclsAttribute_getValues___spec__2___rarg___boxed), 2, 0); return x_2; } } @@ -5636,12 +5243,12 @@ _start: { 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, 2); -x_5 = l_Lean_PersistentEnvExtension_getState___rarg(x_4, x_2); +x_5 = l_Lean_ScopedEnvExtension_getState___at_Lean_KeyedDeclsAttribute_getValues___spec__1___rarg(x_4, x_2); x_6 = lean_ctor_get(x_5, 1); lean_inc(x_6); lean_dec(x_5); x_7 = lean_box(0); -x_8 = l_Lean_SMap_find_x3f___at_Lean_KeyedDeclsAttribute_getValues___spec__1___rarg(x_6, x_3); +x_8 = l_Lean_SMap_find_x3f___at_Lean_KeyedDeclsAttribute_getValues___spec__2___rarg(x_6, x_3); if (lean_obj_tag(x_8) == 0) { return x_7; @@ -5664,82 +5271,92 @@ x_2 = lean_alloc_closure((void*)(l_Lean_KeyedDeclsAttribute_getValues___rarg___b return x_2; } } -lean_object* l_Std_PersistentHashMap_findAtAux___at_Lean_KeyedDeclsAttribute_getValues___spec__4___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l_Lean_ScopedEnvExtension_getState___at_Lean_KeyedDeclsAttribute_getValues___spec__1___rarg___boxed(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; +x_3 = l_Lean_ScopedEnvExtension_getState___at_Lean_KeyedDeclsAttribute_getValues___spec__1___rarg(x_1, x_2); +lean_dec(x_2); +lean_dec(x_1); +return x_3; +} +} +lean_object* l_Std_PersistentHashMap_findAtAux___at_Lean_KeyedDeclsAttribute_getValues___spec__5___rarg___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_Std_PersistentHashMap_findAtAux___at_Lean_KeyedDeclsAttribute_getValues___spec__4___rarg(x_1, x_2, x_3, x_4, x_5); +x_6 = l_Std_PersistentHashMap_findAtAux___at_Lean_KeyedDeclsAttribute_getValues___spec__5___rarg(x_1, x_2, x_3, x_4, x_5); lean_dec(x_5); lean_dec(x_2); lean_dec(x_1); return x_6; } } -lean_object* l_Std_PersistentHashMap_findAux___at_Lean_KeyedDeclsAttribute_getValues___spec__3___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Std_PersistentHashMap_findAux___at_Lean_KeyedDeclsAttribute_getValues___spec__4___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { size_t x_4; lean_object* x_5; x_4 = lean_unbox_usize(x_2); lean_dec(x_2); -x_5 = l_Std_PersistentHashMap_findAux___at_Lean_KeyedDeclsAttribute_getValues___spec__3___rarg(x_1, x_4, x_3); +x_5 = l_Std_PersistentHashMap_findAux___at_Lean_KeyedDeclsAttribute_getValues___spec__4___rarg(x_1, x_4, x_3); lean_dec(x_3); return x_5; } } -lean_object* l_Std_PersistentHashMap_find_x3f___at_Lean_KeyedDeclsAttribute_getValues___spec__2___rarg___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l_Std_PersistentHashMap_find_x3f___at_Lean_KeyedDeclsAttribute_getValues___spec__3___rarg___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l_Std_PersistentHashMap_find_x3f___at_Lean_KeyedDeclsAttribute_getValues___spec__2___rarg(x_1, x_2); +x_3 = l_Std_PersistentHashMap_find_x3f___at_Lean_KeyedDeclsAttribute_getValues___spec__3___rarg(x_1, x_2); lean_dec(x_2); return x_3; } } -lean_object* l_Std_AssocList_find_x3f___at_Lean_KeyedDeclsAttribute_getValues___spec__6___rarg___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l_Std_AssocList_find_x3f___at_Lean_KeyedDeclsAttribute_getValues___spec__7___rarg___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l_Std_AssocList_find_x3f___at_Lean_KeyedDeclsAttribute_getValues___spec__6___rarg(x_1, x_2); +x_3 = l_Std_AssocList_find_x3f___at_Lean_KeyedDeclsAttribute_getValues___spec__7___rarg(x_1, x_2); lean_dec(x_2); lean_dec(x_1); return x_3; } } -lean_object* l_Std_HashMapImp_find_x3f___at_Lean_KeyedDeclsAttribute_getValues___spec__5___rarg___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l_Std_HashMapImp_find_x3f___at_Lean_KeyedDeclsAttribute_getValues___spec__6___rarg___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l_Std_HashMapImp_find_x3f___at_Lean_KeyedDeclsAttribute_getValues___spec__5___rarg(x_1, x_2); +x_3 = l_Std_HashMapImp_find_x3f___at_Lean_KeyedDeclsAttribute_getValues___spec__6___rarg(x_1, x_2); lean_dec(x_2); lean_dec(x_1); return x_3; } } -lean_object* l_Std_AssocList_find_x3f___at_Lean_KeyedDeclsAttribute_getValues___spec__8___rarg___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l_Std_AssocList_find_x3f___at_Lean_KeyedDeclsAttribute_getValues___spec__9___rarg___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l_Std_AssocList_find_x3f___at_Lean_KeyedDeclsAttribute_getValues___spec__8___rarg(x_1, x_2); +x_3 = l_Std_AssocList_find_x3f___at_Lean_KeyedDeclsAttribute_getValues___spec__9___rarg(x_1, x_2); lean_dec(x_2); lean_dec(x_1); return x_3; } } -lean_object* l_Std_HashMapImp_find_x3f___at_Lean_KeyedDeclsAttribute_getValues___spec__7___rarg___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l_Std_HashMapImp_find_x3f___at_Lean_KeyedDeclsAttribute_getValues___spec__8___rarg___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l_Std_HashMapImp_find_x3f___at_Lean_KeyedDeclsAttribute_getValues___spec__7___rarg(x_1, x_2); +x_3 = l_Std_HashMapImp_find_x3f___at_Lean_KeyedDeclsAttribute_getValues___spec__8___rarg(x_1, x_2); lean_dec(x_2); lean_dec(x_1); return x_3; } } -lean_object* l_Lean_SMap_find_x3f___at_Lean_KeyedDeclsAttribute_getValues___spec__1___rarg___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l_Lean_SMap_find_x3f___at_Lean_KeyedDeclsAttribute_getValues___spec__2___rarg___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l_Lean_SMap_find_x3f___at_Lean_KeyedDeclsAttribute_getValues___spec__1___rarg(x_1, x_2); +x_3 = l_Lean_SMap_find_x3f___at_Lean_KeyedDeclsAttribute_getValues___spec__2___rarg(x_1, x_2); lean_dec(x_2); return x_3; } @@ -5759,6 +5376,7 @@ lean_object* initialize_Init(lean_object*); lean_object* initialize_Lean_Attributes(lean_object*); lean_object* initialize_Lean_Compiler_InitAttr(lean_object*); lean_object* initialize_Lean_ToExpr(lean_object*); +lean_object* initialize_Lean_ScopedEnvExtension(lean_object*); static bool _G_initialized = false; lean_object* initialize_Lean_KeyedDeclsAttribute(lean_object* w) { lean_object * res; @@ -5776,12 +5394,19 @@ lean_dec_ref(res); res = initialize_Lean_ToExpr(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +res = initialize_Lean_ScopedEnvExtension(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_KeyedDeclsAttribute_Def_builtinName___default = _init_l_Lean_KeyedDeclsAttribute_Def_builtinName___default(); lean_mark_persistent(l_Lean_KeyedDeclsAttribute_Def_builtinName___default); l_Lean_KeyedDeclsAttribute_instInhabitedDef___closed__1 = _init_l_Lean_KeyedDeclsAttribute_instInhabitedDef___closed__1(); lean_mark_persistent(l_Lean_KeyedDeclsAttribute_instInhabitedDef___closed__1); l_Lean_KeyedDeclsAttribute_instInhabitedDef___closed__2 = _init_l_Lean_KeyedDeclsAttribute_instInhabitedDef___closed__2(); lean_mark_persistent(l_Lean_KeyedDeclsAttribute_instInhabitedDef___closed__2); +l_Lean_KeyedDeclsAttribute_instInhabitedOLeanEntry___closed__1 = _init_l_Lean_KeyedDeclsAttribute_instInhabitedOLeanEntry___closed__1(); +lean_mark_persistent(l_Lean_KeyedDeclsAttribute_instInhabitedOLeanEntry___closed__1); +l_Lean_KeyedDeclsAttribute_instInhabitedOLeanEntry = _init_l_Lean_KeyedDeclsAttribute_instInhabitedOLeanEntry(); +lean_mark_persistent(l_Lean_KeyedDeclsAttribute_instInhabitedOLeanEntry); l_Lean_KeyedDeclsAttribute_ExtensionState_newEntries___default = _init_l_Lean_KeyedDeclsAttribute_ExtensionState_newEntries___default(); lean_mark_persistent(l_Lean_KeyedDeclsAttribute_ExtensionState_newEntries___default); l_Lean_KeyedDeclsAttribute_ExtensionState_table___default___closed__1 = _init_l_Lean_KeyedDeclsAttribute_ExtensionState_table___default___closed__1(); @@ -5796,6 +5421,12 @@ l_Lean_KeyedDeclsAttribute_instInhabitedExtensionState___closed__3 = _init_l_Lea lean_mark_persistent(l_Lean_KeyedDeclsAttribute_instInhabitedExtensionState___closed__3); l_Lean_instInhabitedKeyedDeclsAttribute___closed__1 = _init_l_Lean_instInhabitedKeyedDeclsAttribute___closed__1(); lean_mark_persistent(l_Lean_instInhabitedKeyedDeclsAttribute___closed__1); +l_Lean_instInhabitedKeyedDeclsAttribute___closed__2 = _init_l_Lean_instInhabitedKeyedDeclsAttribute___closed__2(); +lean_mark_persistent(l_Lean_instInhabitedKeyedDeclsAttribute___closed__2); +l_Lean_instInhabitedKeyedDeclsAttribute___closed__3 = _init_l_Lean_instInhabitedKeyedDeclsAttribute___closed__3(); +lean_mark_persistent(l_Lean_instInhabitedKeyedDeclsAttribute___closed__3); +l_Lean_instInhabitedKeyedDeclsAttribute___closed__4 = _init_l_Lean_instInhabitedKeyedDeclsAttribute___closed__4(); +lean_mark_persistent(l_Lean_instInhabitedKeyedDeclsAttribute___closed__4); l_Lean_KeyedDeclsAttribute_declareBuiltin___rarg___closed__1 = _init_l_Lean_KeyedDeclsAttribute_declareBuiltin___rarg___closed__1(); lean_mark_persistent(l_Lean_KeyedDeclsAttribute_declareBuiltin___rarg___closed__1); l_Lean_KeyedDeclsAttribute_declareBuiltin___rarg___closed__2 = _init_l_Lean_KeyedDeclsAttribute_declareBuiltin___rarg___closed__2(); @@ -5820,16 +5451,16 @@ l_Lean_KeyedDeclsAttribute_declareBuiltin___rarg___closed__11 = _init_l_Lean_Key lean_mark_persistent(l_Lean_KeyedDeclsAttribute_declareBuiltin___rarg___closed__11); l_Lean_KeyedDeclsAttribute_declareBuiltin___rarg___closed__12 = _init_l_Lean_KeyedDeclsAttribute_declareBuiltin___rarg___closed__12(); lean_mark_persistent(l_Lean_KeyedDeclsAttribute_declareBuiltin___rarg___closed__12); -l_Lean_KeyedDeclsAttribute_init___rarg___lambda__5___closed__1 = _init_l_Lean_KeyedDeclsAttribute_init___rarg___lambda__5___closed__1(); -lean_mark_persistent(l_Lean_KeyedDeclsAttribute_init___rarg___lambda__5___closed__1); -l_Lean_KeyedDeclsAttribute_init___rarg___lambda__5___closed__2 = _init_l_Lean_KeyedDeclsAttribute_init___rarg___lambda__5___closed__2(); -lean_mark_persistent(l_Lean_KeyedDeclsAttribute_init___rarg___lambda__5___closed__2); -l_Lean_KeyedDeclsAttribute_init___rarg___lambda__5___closed__3 = _init_l_Lean_KeyedDeclsAttribute_init___rarg___lambda__5___closed__3(); -lean_mark_persistent(l_Lean_KeyedDeclsAttribute_init___rarg___lambda__5___closed__3); -l_Lean_KeyedDeclsAttribute_init___rarg___lambda__5___closed__4 = _init_l_Lean_KeyedDeclsAttribute_init___rarg___lambda__5___closed__4(); -lean_mark_persistent(l_Lean_KeyedDeclsAttribute_init___rarg___lambda__5___closed__4); -l_Lean_KeyedDeclsAttribute_init___rarg___lambda__5___closed__5 = _init_l_Lean_KeyedDeclsAttribute_init___rarg___lambda__5___closed__5(); -lean_mark_persistent(l_Lean_KeyedDeclsAttribute_init___rarg___lambda__5___closed__5); +l_Lean_KeyedDeclsAttribute_init___rarg___lambda__7___closed__1 = _init_l_Lean_KeyedDeclsAttribute_init___rarg___lambda__7___closed__1(); +lean_mark_persistent(l_Lean_KeyedDeclsAttribute_init___rarg___lambda__7___closed__1); +l_Lean_KeyedDeclsAttribute_init___rarg___lambda__7___closed__2 = _init_l_Lean_KeyedDeclsAttribute_init___rarg___lambda__7___closed__2(); +lean_mark_persistent(l_Lean_KeyedDeclsAttribute_init___rarg___lambda__7___closed__2); +l_Lean_KeyedDeclsAttribute_init___rarg___lambda__7___closed__3 = _init_l_Lean_KeyedDeclsAttribute_init___rarg___lambda__7___closed__3(); +lean_mark_persistent(l_Lean_KeyedDeclsAttribute_init___rarg___lambda__7___closed__3); +l_Lean_KeyedDeclsAttribute_init___rarg___lambda__7___closed__4 = _init_l_Lean_KeyedDeclsAttribute_init___rarg___lambda__7___closed__4(); +lean_mark_persistent(l_Lean_KeyedDeclsAttribute_init___rarg___lambda__7___closed__4); +l_Lean_KeyedDeclsAttribute_init___rarg___lambda__7___closed__5 = _init_l_Lean_KeyedDeclsAttribute_init___rarg___lambda__7___closed__5(); +lean_mark_persistent(l_Lean_KeyedDeclsAttribute_init___rarg___lambda__7___closed__5); l_Lean_KeyedDeclsAttribute_init___rarg___closed__1 = _init_l_Lean_KeyedDeclsAttribute_init___rarg___closed__1(); lean_mark_persistent(l_Lean_KeyedDeclsAttribute_init___rarg___closed__1); l_Lean_KeyedDeclsAttribute_init___rarg___closed__2 = _init_l_Lean_KeyedDeclsAttribute_init___rarg___closed__2(); @@ -5842,6 +5473,8 @@ l_Lean_KeyedDeclsAttribute_init___rarg___closed__5 = _init_l_Lean_KeyedDeclsAttr lean_mark_persistent(l_Lean_KeyedDeclsAttribute_init___rarg___closed__5); l_Lean_KeyedDeclsAttribute_init___rarg___closed__6 = _init_l_Lean_KeyedDeclsAttribute_init___rarg___closed__6(); lean_mark_persistent(l_Lean_KeyedDeclsAttribute_init___rarg___closed__6); +l_Lean_ScopedEnvExtension_getState___at_Lean_KeyedDeclsAttribute_getValues___spec__1___rarg___closed__1 = _init_l_Lean_ScopedEnvExtension_getState___at_Lean_KeyedDeclsAttribute_getValues___spec__1___rarg___closed__1(); +lean_mark_persistent(l_Lean_ScopedEnvExtension_getState___at_Lean_KeyedDeclsAttribute_getValues___spec__1___rarg___closed__1); return lean_io_result_mk_ok(lean_box(0)); } #ifdef __cplusplus diff --git a/stage0/stdlib/Lean/Parser/Do.c b/stage0/stdlib/Lean/Parser/Do.c index aac5591c5f..fff0f816fd 100644 --- a/stage0/stdlib/Lean/Parser/Do.c +++ b/stage0/stdlib/Lean/Parser/Do.c @@ -1016,6 +1016,7 @@ lean_object* l_Lean_Parser_Term_doSeqItem___elambda__1___closed__2; extern lean_object* l_Lean_Parser_Term_letrec___closed__4; lean_object* l_Lean_Parser_Term_doIfProp_parenthesizer___closed__1; lean_object* l_Lean_Parser_many1_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_KeyedDeclsAttribute_init___rarg___lambda__7___closed__2; extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19364____closed__2; lean_object* l___regBuiltin_Lean_Parser_Term_termReturn_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_doForDecl___elambda__1___closed__12; @@ -1349,7 +1350,6 @@ lean_object* l_Lean_Parser_Term_doSeqIndent___elambda__1___closed__7; lean_object* l_Lean_Parser_Term_doPatDecl_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_doExpr___elambda__1___closed__4; lean_object* l___regBuiltin_Lean_Parser_Term_termUnless_parenthesizer___closed__1; -extern lean_object* l_Lean_KeyedDeclsAttribute_init___rarg___lambda__5___closed__2; lean_object* l_Lean_Parser_Term_doReassign_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_doIf___elambda__1___closed__14; lean_object* l___regBuiltinParser_Lean_Parser_Term_doLetRec(lean_object*); @@ -1861,7 +1861,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Term_leftArrow___elambda__1___closed__5; -x_2 = l_Lean_KeyedDeclsAttribute_init___rarg___lambda__5___closed__2; +x_2 = l_Lean_KeyedDeclsAttribute_init___rarg___lambda__7___closed__2; x_3 = lean_string_append(x_1, x_2); return x_3; } diff --git a/stage0/stdlib/Lean/Parser/Extension.c b/stage0/stdlib/Lean/Parser/Extension.c index 63491241d1..b999568c7c 100644 --- a/stage0/stdlib/Lean/Parser/Extension.c +++ b/stage0/stdlib/Lean/Parser/Extension.c @@ -47,6 +47,7 @@ lean_object* l_Std_PersistentHashMap_foldlMAux___at___private_Lean_Parser_Extens lean_object* l___private_Lean_Parser_Extension_0__Lean_Parser_registerParserAttributeImplBuilder_match__1(lean_object*); lean_object* l_Lean_Parser_ParserExtension_instInhabitedOLeanEntry___closed__1; extern lean_object* l_Char_quote___closed__1; +lean_object* l_Lean_throwError___at_Lean_KeyedDeclsAttribute_init___spec__7(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_instCoeParserParserAliasValue(lean_object*); lean_object* lean_name_mk_string(lean_object*, lean_object*); uint8_t l_USize_decEq(size_t, size_t); @@ -151,7 +152,6 @@ lean_object* l_Lean_Parser_parserExtension___closed__1; uint8_t l_Lean_NameMap_contains___rarg(lean_object*, lean_object*); extern lean_object* l_term___x24_______closed__5; extern lean_object* l_Lean_nameLitKind; -lean_object* l_Lean_throwError___at_Lean_KeyedDeclsAttribute_init___spec__9(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_getConstAlias___rarg___closed__1; lean_object* l_Lean_Parser_getParserPriority_match__1___rarg(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_KeyedDeclsAttribute_declareBuiltin___rarg___closed__5; @@ -11707,7 +11707,7 @@ x_28 = l___private_Lean_Parser_Extension_0__Lean_Parser_BuiltinParserAttribute_a x_29 = lean_alloc_ctor(10, 2, 0); lean_ctor_set(x_29, 0, x_27); lean_ctor_set(x_29, 1, x_28); -x_30 = l_Lean_throwError___at_Lean_KeyedDeclsAttribute_init___spec__9(x_29, x_5, x_6, x_13); +x_30 = l_Lean_throwError___at_Lean_KeyedDeclsAttribute_init___spec__7(x_29, x_5, x_6, x_13); lean_dec(x_6); lean_dec(x_5); x_31 = !lean_is_exclusive(x_30); @@ -11752,7 +11752,7 @@ x_40 = l___private_Lean_Parser_Extension_0__Lean_Parser_BuiltinParserAttribute_a x_41 = lean_alloc_ctor(10, 2, 0); lean_ctor_set(x_41, 0, x_39); lean_ctor_set(x_41, 1, x_40); -x_42 = l_Lean_throwError___at_Lean_KeyedDeclsAttribute_init___spec__9(x_41, x_5, x_6, x_13); +x_42 = l_Lean_throwError___at_Lean_KeyedDeclsAttribute_init___spec__7(x_41, x_5, x_6, x_13); lean_dec(x_6); lean_dec(x_5); x_43 = !lean_is_exclusive(x_42); @@ -11800,7 +11800,7 @@ x_53 = l___private_Lean_Parser_Extension_0__Lean_Parser_BuiltinParserAttribute_a x_54 = lean_alloc_ctor(10, 2, 0); lean_ctor_set(x_54, 0, x_52); lean_ctor_set(x_54, 1, x_53); -x_55 = l_Lean_throwError___at_Lean_KeyedDeclsAttribute_init___spec__9(x_54, x_5, x_6, x_13); +x_55 = l_Lean_throwError___at_Lean_KeyedDeclsAttribute_init___spec__7(x_54, x_5, x_6, x_13); lean_dec(x_6); lean_dec(x_5); x_56 = !lean_is_exclusive(x_55); @@ -11997,7 +11997,7 @@ x_109 = l___private_Lean_Parser_Extension_0__Lean_Parser_BuiltinParserAttribute_ x_110 = lean_alloc_ctor(10, 2, 0); lean_ctor_set(x_110, 0, x_108); lean_ctor_set(x_110, 1, x_109); -x_111 = l_Lean_throwError___at_Lean_KeyedDeclsAttribute_init___spec__9(x_110, x_5, x_6, x_13); +x_111 = l_Lean_throwError___at_Lean_KeyedDeclsAttribute_init___spec__7(x_110, x_5, x_6, x_13); lean_dec(x_6); lean_dec(x_5); x_112 = !lean_is_exclusive(x_111); @@ -12039,7 +12039,7 @@ x_119 = l___private_Lean_Parser_Extension_0__Lean_Parser_BuiltinParserAttribute_ x_120 = lean_alloc_ctor(10, 2, 0); lean_ctor_set(x_120, 0, x_118); lean_ctor_set(x_120, 1, x_119); -x_121 = l_Lean_throwError___at_Lean_KeyedDeclsAttribute_init___spec__9(x_120, x_5, x_6, x_13); +x_121 = l_Lean_throwError___at_Lean_KeyedDeclsAttribute_init___spec__7(x_120, x_5, x_6, x_13); lean_dec(x_6); lean_dec(x_5); x_122 = !lean_is_exclusive(x_121); @@ -12080,7 +12080,7 @@ x_129 = l___private_Lean_Parser_Extension_0__Lean_Parser_BuiltinParserAttribute_ x_130 = lean_alloc_ctor(10, 2, 0); lean_ctor_set(x_130, 0, x_128); lean_ctor_set(x_130, 1, x_129); -x_131 = l_Lean_throwError___at_Lean_KeyedDeclsAttribute_init___spec__9(x_130, x_5, x_6, x_13); +x_131 = l_Lean_throwError___at_Lean_KeyedDeclsAttribute_init___spec__7(x_130, x_5, x_6, x_13); lean_dec(x_6); lean_dec(x_5); x_132 = !lean_is_exclusive(x_131); @@ -12120,7 +12120,7 @@ x_139 = l___private_Lean_Parser_Extension_0__Lean_Parser_BuiltinParserAttribute_ x_140 = lean_alloc_ctor(10, 2, 0); lean_ctor_set(x_140, 0, x_138); lean_ctor_set(x_140, 1, x_139); -x_141 = l_Lean_throwError___at_Lean_KeyedDeclsAttribute_init___spec__9(x_140, x_5, x_6, x_13); +x_141 = l_Lean_throwError___at_Lean_KeyedDeclsAttribute_init___spec__7(x_140, x_5, x_6, x_13); lean_dec(x_6); lean_dec(x_5); x_142 = !lean_is_exclusive(x_141); @@ -12160,7 +12160,7 @@ x_149 = l___private_Lean_Parser_Extension_0__Lean_Parser_BuiltinParserAttribute_ x_150 = lean_alloc_ctor(10, 2, 0); lean_ctor_set(x_150, 0, x_148); lean_ctor_set(x_150, 1, x_149); -x_151 = l_Lean_throwError___at_Lean_KeyedDeclsAttribute_init___spec__9(x_150, x_5, x_6, x_13); +x_151 = l_Lean_throwError___at_Lean_KeyedDeclsAttribute_init___spec__7(x_150, x_5, x_6, x_13); lean_dec(x_6); lean_dec(x_5); x_152 = !lean_is_exclusive(x_151); @@ -13340,7 +13340,7 @@ x_47 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_47, 0, x_46); x_48 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_48, 0, x_47); -x_49 = l_Lean_throwError___at_Lean_KeyedDeclsAttribute_init___spec__9(x_48, x_5, x_6, x_41); +x_49 = l_Lean_throwError___at_Lean_KeyedDeclsAttribute_init___spec__7(x_48, x_5, x_6, x_41); lean_dec(x_6); lean_dec(x_5); x_50 = !lean_is_exclusive(x_49); diff --git a/stage0/stdlib/Lean/Parser/Term.c b/stage0/stdlib/Lean/Parser/Term.c index e3522ec4e1..f08e5c011a 100644 --- a/stage0/stdlib/Lean/Parser/Term.c +++ b/stage0/stdlib/Lean/Parser/Term.c @@ -2408,6 +2408,7 @@ lean_object* l_Lean_Parser_Term_structInstArrayRef_formatter(lean_object*, lean_ lean_object* l_Lean_Parser_Term_prop___closed__5; lean_object* l_Lean_Parser_Term_arrow___elambda__1___closed__5; lean_object* l_Lean_Parser_many1_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_KeyedDeclsAttribute_init___rarg___lambda__7___closed__2; lean_object* l_Lean_Parser_Term_explicit___elambda__1___closed__5; lean_object* l_Lean_Parser_Term_funImplicitBinder___closed__5; lean_object* l_Lean_Parser_Term_letDecl___closed__4; @@ -3269,7 +3270,6 @@ lean_object* l_Lean_Parser_Term_haveDecl_parenthesizer___closed__6; lean_object* l_Lean_Parser_Term_byTactic___elambda__1___closed__10; lean_object* l___regBuiltin_Lean_Parser_Term_structInst_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_subst_formatter___closed__3; -extern lean_object* l_Lean_KeyedDeclsAttribute_init___rarg___lambda__5___closed__2; lean_object* l___regBuiltinParser_Lean_Parser_Term_byTactic(lean_object*); lean_object* l_Lean_Parser_darrow___elambda__1(lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Level_paren___elambda__1___closed__8; @@ -39419,7 +39419,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Term_arrow___elambda__1___closed__1; -x_2 = l_Lean_KeyedDeclsAttribute_init___rarg___lambda__5___closed__2; +x_2 = l_Lean_KeyedDeclsAttribute_init___rarg___lambda__7___closed__2; x_3 = lean_string_append(x_1, x_2); return x_3; } diff --git a/stage0/stdlib/Lean/ParserCompiler.c b/stage0/stdlib/Lean/ParserCompiler.c index b0890f95ed..c63bb86bc9 100644 --- a/stage0/stdlib/Lean/ParserCompiler.c +++ b/stage0/stdlib/Lean/ParserCompiler.c @@ -320,7 +320,6 @@ lean_object* l_Lean_ParserCompiler_compileParserExpr___rarg___lambda__17(lean_ob lean_object* l_Lean_ParserCompiler_compileEmbeddedParsers_match__1(lean_object*); lean_object* l_Std_Range_forIn_loop___at_Lean_ParserCompiler_compileParserExpr___spec__22___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Std_Range_forIn_loop___at_Lean_ParserCompiler_compileParserExpr___spec__52(lean_object*); -lean_object* l_Lean_evalConstCheck___at_Lean_KeyedDeclsAttribute_init___spec__5___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Std_Range_forIn_loop___at_Lean_ParserCompiler_compileParserExpr___spec__32(lean_object*); lean_object* l_Array_foldrMUnsafe_fold___at_Lean_ParserCompiler_compileParserExpr___spec__44___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_forallTelescope___at_Lean_ParserCompiler_compileParserExpr___spec__1___at_Lean_ParserCompiler_compileParserExpr___spec__11___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -379,6 +378,7 @@ lean_object* l_Lean_ParserCompiler_compileParserExpr_match__1(lean_object*); lean_object* l_Lean_ParserCompiler_compileParserExpr_match__4___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_ParserCompiler_compileParserExpr___rarg___closed__4; lean_object* l_Lean_ParserCompiler_compileParserExpr___rarg___closed__8; +lean_object* l_Lean_evalConstCheck___at_Lean_KeyedDeclsAttribute_init___spec__3___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Nat_min(lean_object*, lean_object*); lean_object* l_Lean_ParserCompiler_registerParserCompiler___rarg___lambda__1(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); lean_object* lean_expr_update_app(lean_object*, lean_object*, lean_object*); @@ -23930,7 +23930,7 @@ else { lean_object* x_67; lean_inc(x_3); -x_67 = l_Lean_evalConstCheck___at_Lean_KeyedDeclsAttribute_init___spec__5___rarg(x_36, x_3, x_5, x_6, x_34); +x_67 = l_Lean_evalConstCheck___at_Lean_KeyedDeclsAttribute_init___spec__3___rarg(x_36, x_3, x_5, x_6, x_34); if (lean_obj_tag(x_67) == 0) { lean_object* x_68; lean_object* x_69; @@ -23950,7 +23950,7 @@ lean_object* x_70; lean_object* x_71; x_70 = lean_ctor_get(x_67, 1); lean_inc(x_70); lean_dec(x_67); -x_71 = l_Lean_evalConstCheck___at_Lean_KeyedDeclsAttribute_init___spec__5___rarg(x_38, x_3, x_5, x_6, x_70); +x_71 = l_Lean_evalConstCheck___at_Lean_KeyedDeclsAttribute_init___spec__3___rarg(x_38, x_3, x_5, x_6, x_70); if (lean_obj_tag(x_71) == 0) { lean_object* x_72; lean_object* x_73; @@ -23996,7 +23996,7 @@ else lean_object* x_78; lean_dec(x_35); lean_inc(x_3); -x_78 = l_Lean_evalConstCheck___at_Lean_KeyedDeclsAttribute_init___spec__5___rarg(x_36, x_3, x_5, x_6, x_34); +x_78 = l_Lean_evalConstCheck___at_Lean_KeyedDeclsAttribute_init___spec__3___rarg(x_36, x_3, x_5, x_6, x_34); if (lean_obj_tag(x_78) == 0) { lean_object* x_79; lean_object* x_80; @@ -24017,7 +24017,7 @@ x_81 = lean_ctor_get(x_78, 1); lean_inc(x_81); lean_dec(x_78); x_82 = l_Lean_ParserCompiler_registerParserCompiler___rarg___lambda__1___closed__2; -x_83 = l_Lean_evalConstCheck___at_Lean_KeyedDeclsAttribute_init___spec__5___rarg(x_82, x_3, x_5, x_6, x_81); +x_83 = l_Lean_evalConstCheck___at_Lean_KeyedDeclsAttribute_init___spec__3___rarg(x_82, x_3, x_5, x_6, x_81); if (lean_obj_tag(x_83) == 0) { lean_object* x_84; lean_object* x_85; diff --git a/stage0/stdlib/Lean/PrettyPrinter/Delaborator/Basic.c b/stage0/stdlib/Lean/PrettyPrinter/Delaborator/Basic.c index c70a766b87..4fc889c949 100644 --- a/stage0/stdlib/Lean/PrettyPrinter/Delaborator/Basic.c +++ b/stage0/stdlib/Lean/PrettyPrinter/Delaborator/Basic.c @@ -23,7 +23,6 @@ extern lean_object* l_Lean_Name_getString_x21___closed__3; lean_object* l_Lean_PrettyPrinter_Delaborator_delabFailureId; lean_object* l_Lean_registerTraceClass(lean_object*, lean_object*); lean_object* lean_erase_macro_scopes(lean_object*); -lean_object* l_Std_PersistentHashMap_findAux___at_Lean_PrettyPrinter_Delaborator_delabFor___spec__3___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Delaborator_delabFor_match__1(lean_object*); lean_object* l_Lean_stringToMessageData(lean_object*); lean_object* lean_local_ctx_get_unused_name(lean_object*, lean_object*); @@ -45,6 +44,7 @@ extern lean_object* l_Lean_Parser_Syntax_addPrec___closed__1; lean_object* l_Lean_initFn____x40_Lean_PrettyPrinter_Delaborator_Basic___hyg_210____closed__1; lean_object* l_Lean_initFn____x40_Lean_PrettyPrinter_Delaborator_Basic___hyg_181____closed__2; lean_object* l_Lean_Expr_bindingDomain_x21(lean_object*); +lean_object* l_Std_PersistentHashMap_findAux___at_Lean_PrettyPrinter_Delaborator_delabFor___spec__4___boxed(lean_object*, lean_object*, lean_object*); uint8_t l_Lean_getPPCoercions(lean_object*); lean_object* l_Lean_PrettyPrinter_Delaborator_getExprKind_match__2___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Delaborator_getExprKind_match__3___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -53,11 +53,11 @@ lean_object* l_Lean_PrettyPrinter_Delaborator_instMonadQuotationDelabM___closed_ lean_object* l_Lean_Syntax_isAtom___boxed(lean_object*); lean_object* l_Lean_initFn____x40_Lean_PrettyPrinter_Delaborator_Basic___hyg_65____closed__3; lean_object* l_Lean_PrettyPrinter_Delaborator_instInhabitedDelabM___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_instInhabitedKeyedDeclsAttribute___closed__4; lean_object* l_Lean_PrettyPrinter_Delaborator_getExprKind___closed__8; lean_object* l_Lean_PrettyPrinter_Delaborator_orElse___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Delaborator_mkDelabAttribute___closed__5; uint8_t l_Lean_getPPExplicit(lean_object*); -lean_object* l_Std_PersistentHashMap_find_x3f___at_Lean_PrettyPrinter_Delaborator_delabFor___spec__2(lean_object*, lean_object*); lean_object* l___private_Lean_Util_Trace_0__Lean_checkTraceOptionM___at_Lean_Meta_isLevelDefEqAux___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_withLocalDeclImp___rarg(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_getPPNotation___boxed(lean_object*); @@ -70,6 +70,8 @@ lean_object* lean_st_ref_get(lean_object*, lean_object*); extern lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1136____closed__26; uint8_t lean_name_eq(lean_object*, lean_object*); lean_object* l_Lean_Meta_withLocalDecl___at_Lean_PrettyPrinter_Delaborator_withBindingBody___spec__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Std_PersistentHashMap_findAux___at_Lean_PrettyPrinter_Delaborator_delabFor___spec__4(lean_object*, size_t, lean_object*); +lean_object* l_Std_HashMapImp_find_x3f___at_Lean_PrettyPrinter_Delaborator_delabFor___spec__6(lean_object*, lean_object*); extern lean_object* l_Lean_Expr_ctorName___closed__2; lean_object* l_Lean_PrettyPrinter_Delaborator_withMDataExpr___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Expr_ctorName___closed__8; @@ -80,6 +82,7 @@ lean_object* l_Lean_initFn____x40_Lean_PrettyPrinter_Delaborator_Basic___hyg_271 lean_object* lean_array_get_size(lean_object*); lean_object* l_Lean_initFn____x40_Lean_PrettyPrinter_Delaborator_Basic___hyg_181____closed__4; lean_object* l_Lean_initFn____x40_Lean_PrettyPrinter_Delaborator_Basic___hyg_271____closed__2; +extern lean_object* l_Lean_ScopedEnvExtension_getState___at_Lean_KeyedDeclsAttribute_getValues___spec__1___rarg___closed__1; lean_object* lean_string_append(lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Delaborator_withAppFn___rarg___closed__1; uint8_t l_Lean_getPPStructureProjections(lean_object*); @@ -92,7 +95,6 @@ lean_object* l_Lean_PrettyPrinter_Delaborator_mkDelabAttribute___lambda__1___box lean_object* l_Lean_getPPFullNames___boxed(lean_object*); lean_object* l_Lean_PrettyPrinter_Delaborator_annotateCurPos___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_initFn____x40_Lean_PrettyPrinter_Delaborator_Basic___hyg_181____closed__1; -lean_object* l_Std_HashMapImp_find_x3f___at_Lean_PrettyPrinter_Delaborator_delabFor___spec__5___boxed(lean_object*, lean_object*); lean_object* l_Lean_Meta_withLocalDecl___at_Lean_PrettyPrinter_Delaborator_withBindingBody___spec__1___at_Lean_PrettyPrinter_Delaborator_withBindingBody___spec__2___rarg(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Delaborator_withProj_match__1(lean_object*); lean_object* l_Lean_initFn____x40_Lean_PrettyPrinter_Delaborator_Basic___hyg_210____closed__2; @@ -101,7 +103,6 @@ lean_object* l_Lean_PrettyPrinter_Delaborator_getUnusedName_bodyUsesSuggestion__ lean_object* l_Lean_initFn____x40_Lean_PrettyPrinter_Delaborator_Basic___hyg_123____closed__2; lean_object* l_Lean_initFn____x40_Lean_PrettyPrinter_Delaborator_Basic___hyg_36____closed__3; uint8_t l_Lean_getPPUniverses(lean_object*); -lean_object* l_Std_PersistentHashMap_findAux___at_Lean_PrettyPrinter_Delaborator_delabFor___spec__3(lean_object*, size_t, lean_object*); lean_object* lean_nat_add(lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Delaborator_getExprKind_match__1(lean_object*); extern lean_object* l_Lean_instInhabitedException___closed__1; @@ -147,17 +148,20 @@ lean_object* l_Lean_pp_structure__projections; extern lean_object* l_Lean_Expr_ctorName___closed__5; lean_object* l_Lean_PrettyPrinter_Delaborator_withAppFn___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Delaborator_instMonadQuotationDelabM___closed__3; +lean_object* l_Std_AssocList_find_x3f___at_Lean_PrettyPrinter_Delaborator_delabFor___spec__7___boxed(lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Delaborator_whenPPOption(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Delaborator_annotatePos_match__1(lean_object*); lean_object* l_Lean_PrettyPrinter_Delaborator_getExprKind___closed__7; +lean_object* l_List_firstM___at_Lean_PrettyPrinter_Delaborator_delabFor___spec__8(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Delaborator_mkAppUnexpanderAttribute___closed__8; +lean_object* l_Lean_ScopedEnvExtension_getState___at_Lean_PrettyPrinter_Delaborator_delabFor___spec__1___boxed(lean_object*, lean_object*); lean_object* l_Lean_Meta_withLocalDecl___at_Lean_PrettyPrinter_Delaborator_withBindingBody___spec__1___at_Lean_PrettyPrinter_Delaborator_withBindingBody___spec__2___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_get(lean_object*, lean_object*, lean_object*); -lean_object* l_Std_HashMapImp_find_x3f___at_Lean_PrettyPrinter_Delaborator_delabFor___spec__5(lean_object*, lean_object*); lean_object* l_Lean_initFn____x40_Lean_PrettyPrinter_Delaborator_Basic___hyg_210____closed__5; lean_object* lean_array_fset(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Delaborator_delabFor_match__2(lean_object*); lean_object* l_Lean_PrettyPrinter_Delaborator_instOrElseDelabM(lean_object*); +lean_object* l_Lean_SMap_find_x3f___at_Lean_PrettyPrinter_Delaborator_delabFor___spec__2(lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Delaborator_instAlternativeDelabM___closed__1; lean_object* l_Lean_PrettyPrinter_Delaborator_getUnusedName___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Delaborator_getUnusedName___closed__1; @@ -185,7 +189,6 @@ lean_object* l_Lean_initFn____x40_Lean_PrettyPrinter_Delaborator_Basic___hyg_36_ lean_object* l_Lean_PrettyPrinter_Delaborator_getExprKind_match__2(lean_object*); lean_object* l_Lean_initFn____x40_Lean_PrettyPrinter_Delaborator_Basic___hyg_152____closed__2; lean_object* l_Lean_PrettyPrinter_Delaborator_withMDataExpr___rarg___closed__2; -lean_object* l_Lean_SMap_find_x3f___at_Lean_PrettyPrinter_Delaborator_delabFor___spec__1___boxed(lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Delaborator_withMDataExpr___rarg___closed__1; lean_object* l_Lean_pp_private__names; lean_object* l_Lean_PrettyPrinter_Delaborator_orElse(lean_object*); @@ -195,11 +198,11 @@ lean_object* l_Lean_pp_structure__instance__type; lean_object* l_Lean_initFn____x40_Lean_PrettyPrinter_Delaborator_Basic___hyg_329____closed__1; lean_object* l_Lean_PrettyPrinter_Delaborator_mkDelabAttribute___closed__8; lean_object* l___private_Init_Util_0__mkPanicMessageWithDecl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l_Lean_instInhabitedKeyedDeclsAttribute___closed__1; extern lean_object* l_Lean_KernelException_toMessageData___closed__15; lean_object* l_Lean_initFn____x40_Lean_PrettyPrinter_Delaborator_Basic___hyg_4____closed__2; lean_object* l_Lean_PrettyPrinter_Delaborator_getUnusedName(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_6181____closed__20; +lean_object* l_Std_PersistentHashMap_find_x3f___at_Lean_PrettyPrinter_Delaborator_delabFor___spec__3(lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Delaborator_descend___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_PrettyPrinter_mkFormatterAttribute___closed__6; lean_object* l_Lean_initFn____x40_Lean_PrettyPrinter_Delaborator_Basic___hyg_210____closed__3; @@ -209,6 +212,7 @@ lean_object* l_Lean_PrettyPrinter_Delaborator_getExprKind___closed__10; lean_object* l_Lean_PrettyPrinter_Delaborator_getUnusedName_bodyUsesSuggestion_match__2___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Delaborator_annotatePos(lean_object*, lean_object*); lean_object* l_Lean_pp_full__names; +lean_object* l_Std_AssocList_find_x3f___at_Lean_PrettyPrinter_Delaborator_delabFor___spec__7(lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Delaborator_withAppFn(lean_object*); extern lean_object* l_Lean_KernelException_toMessageData___closed__3; lean_object* l_Lean_PrettyPrinter_Delaborator_withProj(lean_object*); @@ -219,7 +223,6 @@ lean_object* l_Lean_Meta_withLocalDecl___at_Lean_PrettyPrinter_Delaborator_withB extern lean_object* l_Lean_PrettyPrinter_Parenthesizer_instMonadQuotationParenthesizerM___closed__1; lean_object* l_Lean_PrettyPrinter_Delaborator_withBindingBodyUnusedName___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Expr_setPPExplicit___closed__1; -lean_object* l_Std_AssocList_find_x3f___at_Lean_PrettyPrinter_Delaborator_delabFor___spec__6___boxed(lean_object*, lean_object*); lean_object* l_Lean_Meta_withLocalDecl___at_Lean_Meta_expandCoe___spec__7___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); size_t l_USize_land(size_t, size_t); lean_object* l_Lean_PrettyPrinter_Delaborator_failure___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -235,19 +238,20 @@ extern lean_object* l_Lean_Expr_ctorName___closed__9; uint8_t l_Lean_getPPNotation(lean_object*); lean_object* l_Lean_PrettyPrinter_Delaborator_getExprKind_match__3(lean_object*); lean_object* l_Lean_PrettyPrinter_Delaborator_delab(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Std_PersistentHashMap_findAtAux___at_Lean_PrettyPrinter_Delaborator_delabFor___spec__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Expr_FindImpl_initCache; lean_object* l_Lean_PrettyPrinter_Delaborator_withMDataExpr(lean_object*); lean_object* l_Lean_PrettyPrinter_Delaborator_instMonadQuotationDelabM; lean_object* l_Lean_PrettyPrinter_Delaborator_withAppFnArgs_match__1___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_getPPStructureInstanceType___boxed(lean_object*); lean_object* l_Lean_initFn____x40_Lean_PrettyPrinter_Delaborator_Basic___hyg_300____closed__2; -lean_object* l_Std_PersistentHashMap_find_x3f___at_Lean_PrettyPrinter_Delaborator_delabFor___spec__2___boxed(lean_object*, lean_object*); lean_object* l_Lean_initFn____x40_Lean_PrettyPrinter_Delaborator_Basic___hyg_242____closed__3; lean_object* l_Lean_initFn____x40_Lean_PrettyPrinter_Delaborator_Basic___hyg_329____closed__2; lean_object* l_Lean_PrettyPrinter_Delaborator_getUnusedName_bodyUsesSuggestion_match__1___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Delaborator_getExprKind___closed__6; lean_object* l_Lean_PrettyPrinter_Delaborator_instAlternativeDelabM___closed__3; extern lean_object* l_Lean_Parser_Command_notation___elambda__1___closed__1; +lean_object* l_Lean_SMap_find_x3f___at_Lean_PrettyPrinter_Delaborator_delabFor___spec__2___boxed(lean_object*, lean_object*); lean_object* l_Lean_initFn____x40_Lean_PrettyPrinter_Delaborator_Basic___hyg_94____closed__2; lean_object* l_Lean_PrettyPrinter_Delaborator_getPPOption___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_initFn____x40_Lean_PrettyPrinter_Delaborator_Basic___hyg_4____closed__3; @@ -273,7 +277,6 @@ lean_object* l_Lean_PrettyPrinter_Delaborator_annotatePos_match__2(lean_object*) lean_object* l_Lean_getPPAll___boxed(lean_object*); lean_object* l_Lean_Meta_withLocalDecl___at_Lean_PrettyPrinter_Delaborator_withBindingBody___spec__1___at_Lean_PrettyPrinter_Delaborator_withBindingBody___spec__2(lean_object*); lean_object* l_Lean_getPPSafeShadowing___boxed(lean_object*); -lean_object* l_Std_PersistentHashMap_findAtAux___at_Lean_PrettyPrinter_Delaborator_delabFor___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_getPPStructureInstances___boxed(lean_object*); lean_object* l_Lean_getPPUniverses___boxed(lean_object*); lean_object* l_Lean_PrettyPrinter_Delaborator_mkDelabAttribute___closed__12; @@ -287,7 +290,7 @@ lean_object* l_Lean_getPPExplicit___boxed(lean_object*); lean_object* l_Lean_pp_structure__instances; lean_object* l_Lean_initFn____x40_Lean_PrettyPrinter_Delaborator_Basic___hyg_65____closed__2; extern lean_object* l_Std_Format_getUnicode___closed__1; -lean_object* l_List_firstM___at_Lean_PrettyPrinter_Delaborator_delabFor___spec__7(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Std_PersistentHashMap_find_x3f___at_Lean_PrettyPrinter_Delaborator_delabFor___spec__3___boxed(lean_object*, lean_object*); lean_object* l_Lean_addMessageContextFull___at_Lean_Meta_instAddMessageContextMetaM___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_setInfo(lean_object*, lean_object*); lean_object* l_Lean_initFn____x40_Lean_PrettyPrinter_Delaborator_Basic___hyg_65_(lean_object*); @@ -303,11 +306,13 @@ lean_object* l_Lean_initFn____x40_Lean_PrettyPrinter_Delaborator_Basic___hyg_329 lean_object* l_Lean_initFn____x40_Lean_PrettyPrinter_Delaborator_Basic___hyg_242_(lean_object*); lean_object* l_Lean_initFn____x40_Lean_PrettyPrinter_Delaborator_Basic___hyg_271_(lean_object*); lean_object* l_Lean_KVMap_findCore(lean_object*, lean_object*); +extern lean_object* l_Lean_ScopedEnvExtension_getState___rarg___closed__3; lean_object* l_Lean_PrettyPrinter_Delaborator_appUnexpanderAttribute; +lean_object* l_Lean_ScopedEnvExtension_getState___at_Lean_PrettyPrinter_Delaborator_delabFor___spec__1(lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Delaborator_withAppFnArgs(lean_object*); -lean_object* l_Std_PersistentHashMap_findAtAux___at_Lean_PrettyPrinter_Delaborator_delabFor___spec__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_initFn____x40_Lean_PrettyPrinter_Delaborator_Basic___hyg_181____closed__3; lean_object* l_Lean_PrettyPrinter_Delaborator_instInhabitedDelabM(lean_object*); +lean_object* l_Std_HashMapImp_find_x3f___at_Lean_PrettyPrinter_Delaborator_delabFor___spec__6___boxed(lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Delaborator_getExprKind(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_initFn____x40_Lean_PrettyPrinter_Delaborator_Basic___hyg_242____closed__2; extern size_t l_Std_PersistentHashMap_insertAux___rarg___closed__2; @@ -328,7 +333,6 @@ lean_object* l_Lean_initFn____x40_Lean_PrettyPrinter_Delaborator_Basic___hyg_242 extern lean_object* l_Lean_Elab_Term_instMonadQuotationTermElabM___closed__2; lean_object* l_Lean_PrettyPrinter_Delaborator_mkAppUnexpanderAttribute___closed__1; lean_object* l_Lean_PrettyPrinter_Delaborator_withBindingBody(lean_object*); -lean_object* l_Std_AssocList_find_x3f___at_Lean_PrettyPrinter_Delaborator_delabFor___spec__6(lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_delab___closed__3; lean_object* l_Lean_Expr_getAppFn(lean_object*); lean_object* l_Lean_PrettyPrinter_Delaborator_withAppArg___rarg___closed__1; @@ -356,7 +360,6 @@ lean_object* l_Lean_PrettyPrinter_Delaborator_instAlternativeDelabM___lambda__1( lean_object* l_Lean_PrettyPrinter_Delaborator_withMDataExpr_match__1(lean_object*); lean_object* l_Lean_PrettyPrinter_Delaborator_delabFor_match__2___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_bindingBody_x21(lean_object*); -lean_object* l_Lean_SMap_find_x3f___at_Lean_PrettyPrinter_Delaborator_delabFor___spec__1(lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Delaborator_mkAppUnexpanderAttribute___closed__6; lean_object* l_Lean_Meta_withLocalDecl___at_Lean_PrettyPrinter_Delaborator_withBindingBody___spec__1(lean_object*); lean_object* l_Lean_initFn____x40_Lean_PrettyPrinter_Delaborator_Basic___hyg_65____closed__1; @@ -377,6 +380,7 @@ lean_object* l_Lean_initFn____x40_Lean_PrettyPrinter_Delaborator_Basic___hyg_329 lean_object* l_Std_RBNode_find___at_Lean_PrettyPrinter_Delaborator_getPPOption___spec__1___boxed(lean_object*, lean_object*); lean_object* l_Lean_initFn____x40_Lean_PrettyPrinter_Delaborator_Basic___hyg_300____closed__3; lean_object* l_Lean_PrettyPrinter_Delaborator_getUnusedName_bodyUsesSuggestion___lambda__1___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l_Std_PersistentHashMap_findAtAux___at_Lean_PrettyPrinter_Delaborator_delabFor___spec__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Delaborator_liftMetaM___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Delaborator_mkAppUnexpanderAttribute___closed__3; lean_object* l_Lean_initFn____x40_Lean_PrettyPrinter_Delaborator_Basic___hyg_329____closed__4; @@ -8901,7 +8905,37 @@ x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Delaborator_delabFor_match return x_2; } } -lean_object* l_Std_PersistentHashMap_findAtAux___at_Lean_PrettyPrinter_Delaborator_delabFor___spec__4(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l_Lean_ScopedEnvExtension_getState___at_Lean_PrettyPrinter_Delaborator_delabFor___spec__1(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_3 = lean_ctor_get(x_1, 1); +x_4 = l_Lean_PersistentEnvExtension_getState___rarg(x_3, x_2); +x_5 = lean_ctor_get(x_4, 0); +lean_inc(x_5); +lean_dec(x_4); +if (lean_obj_tag(x_5) == 0) +{ +lean_object* x_6; lean_object* x_7; lean_object* x_8; +x_6 = l_Lean_ScopedEnvExtension_getState___at_Lean_KeyedDeclsAttribute_getValues___spec__1___rarg___closed__1; +x_7 = l_Lean_ScopedEnvExtension_getState___rarg___closed__3; +x_8 = lean_panic_fn(x_6, x_7); +return x_8; +} +else +{ +lean_object* x_9; lean_object* x_10; +x_9 = lean_ctor_get(x_5, 0); +lean_inc(x_9); +lean_dec(x_5); +x_10 = lean_ctor_get(x_9, 0); +lean_inc(x_10); +lean_dec(x_9); +return x_10; +} +} +} +lean_object* l_Std_PersistentHashMap_findAtAux___at_Lean_PrettyPrinter_Delaborator_delabFor___spec__5(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; uint8_t x_7; @@ -8943,7 +8977,7 @@ return x_15; } } } -lean_object* l_Std_PersistentHashMap_findAux___at_Lean_PrettyPrinter_Delaborator_delabFor___spec__3(lean_object* x_1, size_t x_2, lean_object* x_3) { +lean_object* l_Std_PersistentHashMap_findAux___at_Lean_PrettyPrinter_Delaborator_delabFor___spec__4(lean_object* x_1, size_t x_2, lean_object* x_3) { _start: { if (lean_obj_tag(x_1) == 0) @@ -9014,14 +9048,14 @@ x_21 = lean_ctor_get(x_1, 1); lean_inc(x_21); lean_dec(x_1); x_22 = lean_unsigned_to_nat(0u); -x_23 = l_Std_PersistentHashMap_findAtAux___at_Lean_PrettyPrinter_Delaborator_delabFor___spec__4(x_20, x_21, lean_box(0), x_22, x_3); +x_23 = l_Std_PersistentHashMap_findAtAux___at_Lean_PrettyPrinter_Delaborator_delabFor___spec__5(x_20, x_21, lean_box(0), x_22, x_3); lean_dec(x_21); lean_dec(x_20); return x_23; } } } -lean_object* l_Std_PersistentHashMap_find_x3f___at_Lean_PrettyPrinter_Delaborator_delabFor___spec__2(lean_object* x_1, lean_object* x_2) { +lean_object* l_Std_PersistentHashMap_find_x3f___at_Lean_PrettyPrinter_Delaborator_delabFor___spec__3(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; size_t x_4; lean_object* x_5; @@ -9029,11 +9063,11 @@ x_3 = lean_ctor_get(x_1, 0); lean_inc(x_3); lean_dec(x_1); x_4 = l_Lean_Name_hash(x_2); -x_5 = l_Std_PersistentHashMap_findAux___at_Lean_PrettyPrinter_Delaborator_delabFor___spec__3(x_3, x_4, x_2); +x_5 = l_Std_PersistentHashMap_findAux___at_Lean_PrettyPrinter_Delaborator_delabFor___spec__4(x_3, x_4, x_2); return x_5; } } -lean_object* l_Std_AssocList_find_x3f___at_Lean_PrettyPrinter_Delaborator_delabFor___spec__6(lean_object* x_1, lean_object* x_2) { +lean_object* l_Std_AssocList_find_x3f___at_Lean_PrettyPrinter_Delaborator_delabFor___spec__7(lean_object* x_1, lean_object* x_2) { _start: { if (lean_obj_tag(x_2) == 0) @@ -9065,7 +9099,7 @@ return x_9; } } } -lean_object* l_Std_HashMapImp_find_x3f___at_Lean_PrettyPrinter_Delaborator_delabFor___spec__5(lean_object* x_1, lean_object* x_2) { +lean_object* l_Std_HashMapImp_find_x3f___at_Lean_PrettyPrinter_Delaborator_delabFor___spec__6(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; lean_object* x_4; size_t x_5; size_t x_6; lean_object* x_7; lean_object* x_8; @@ -9075,12 +9109,12 @@ x_5 = l_Lean_Name_hash(x_2); x_6 = lean_usize_modn(x_5, x_4); lean_dec(x_4); x_7 = lean_array_uget(x_3, x_6); -x_8 = l_Std_AssocList_find_x3f___at_Lean_PrettyPrinter_Delaborator_delabFor___spec__6(x_2, x_7); +x_8 = l_Std_AssocList_find_x3f___at_Lean_PrettyPrinter_Delaborator_delabFor___spec__7(x_2, x_7); lean_dec(x_7); return x_8; } } -lean_object* l_Lean_SMap_find_x3f___at_Lean_PrettyPrinter_Delaborator_delabFor___spec__1(lean_object* x_1, lean_object* x_2) { +lean_object* l_Lean_SMap_find_x3f___at_Lean_PrettyPrinter_Delaborator_delabFor___spec__2(lean_object* x_1, lean_object* x_2) { _start: { uint8_t x_3; @@ -9093,11 +9127,11 @@ lean_inc(x_4); x_5 = lean_ctor_get(x_1, 1); lean_inc(x_5); lean_dec(x_1); -x_6 = l_Std_PersistentHashMap_find_x3f___at_Lean_PrettyPrinter_Delaborator_delabFor___spec__2(x_5, x_2); +x_6 = l_Std_PersistentHashMap_find_x3f___at_Lean_PrettyPrinter_Delaborator_delabFor___spec__3(x_5, x_2); if (lean_obj_tag(x_6) == 0) { lean_object* x_7; -x_7 = l_Std_HashMapImp_find_x3f___at_Lean_PrettyPrinter_Delaborator_delabFor___spec__5(x_4, x_2); +x_7 = l_Std_HashMapImp_find_x3f___at_Lean_PrettyPrinter_Delaborator_delabFor___spec__6(x_4, x_2); lean_dec(x_4); return x_7; } @@ -9128,13 +9162,13 @@ lean_object* x_11; lean_object* x_12; x_11 = lean_ctor_get(x_1, 0); lean_inc(x_11); lean_dec(x_1); -x_12 = l_Std_HashMapImp_find_x3f___at_Lean_PrettyPrinter_Delaborator_delabFor___spec__5(x_11, x_2); +x_12 = l_Std_HashMapImp_find_x3f___at_Lean_PrettyPrinter_Delaborator_delabFor___spec__6(x_11, x_2); lean_dec(x_11); return x_12; } } } -lean_object* l_List_firstM___at_Lean_PrettyPrinter_Delaborator_delabFor___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* l_List_firstM___at_Lean_PrettyPrinter_Delaborator_delabFor___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) { _start: { if (lean_obj_tag(x_1) == 0) @@ -9307,13 +9341,13 @@ lean_dec(x_10); x_13 = l_Lean_PrettyPrinter_Delaborator_delabAttribute; x_14 = lean_ctor_get(x_13, 2); lean_inc(x_14); -x_15 = l_Lean_PersistentEnvExtension_getState___rarg(x_14, x_12); +x_15 = l_Lean_ScopedEnvExtension_getState___at_Lean_PrettyPrinter_Delaborator_delabFor___spec__1(x_14, x_12); lean_dec(x_12); lean_dec(x_14); x_16 = lean_ctor_get(x_15, 1); lean_inc(x_16); lean_dec(x_15); -x_17 = l_Lean_SMap_find_x3f___at_Lean_PrettyPrinter_Delaborator_delabFor___spec__1(x_16, x_1); +x_17 = l_Lean_SMap_find_x3f___at_Lean_PrettyPrinter_Delaborator_delabFor___spec__2(x_16, x_1); x_18 = l_Lean_Name_getRoot(x_1); lean_dec(x_1); if (lean_obj_tag(x_17) == 0) @@ -9397,7 +9431,7 @@ lean_inc(x_5); lean_inc(x_4); lean_inc(x_3); lean_inc(x_2); -x_35 = l_List_firstM___at_Lean_PrettyPrinter_Delaborator_delabFor___spec__7(x_34, x_2, x_3, x_4, x_5, x_6, x_11); +x_35 = l_List_firstM___at_Lean_PrettyPrinter_Delaborator_delabFor___spec__8(x_34, x_2, x_3, x_4, x_5, x_6, x_11); if (lean_obj_tag(x_35) == 0) { lean_object* x_36; lean_object* x_37; lean_object* x_38; @@ -9521,62 +9555,72 @@ goto _start; } } } -lean_object* l_Std_PersistentHashMap_findAtAux___at_Lean_PrettyPrinter_Delaborator_delabFor___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* l_Lean_ScopedEnvExtension_getState___at_Lean_PrettyPrinter_Delaborator_delabFor___spec__1___boxed(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; +x_3 = l_Lean_ScopedEnvExtension_getState___at_Lean_PrettyPrinter_Delaborator_delabFor___spec__1(x_1, x_2); +lean_dec(x_2); +lean_dec(x_1); +return x_3; +} +} +lean_object* l_Std_PersistentHashMap_findAtAux___at_Lean_PrettyPrinter_Delaborator_delabFor___spec__5___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_Std_PersistentHashMap_findAtAux___at_Lean_PrettyPrinter_Delaborator_delabFor___spec__4(x_1, x_2, x_3, x_4, x_5); +x_6 = l_Std_PersistentHashMap_findAtAux___at_Lean_PrettyPrinter_Delaborator_delabFor___spec__5(x_1, x_2, x_3, x_4, x_5); lean_dec(x_5); lean_dec(x_2); lean_dec(x_1); return x_6; } } -lean_object* l_Std_PersistentHashMap_findAux___at_Lean_PrettyPrinter_Delaborator_delabFor___spec__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Std_PersistentHashMap_findAux___at_Lean_PrettyPrinter_Delaborator_delabFor___spec__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { size_t x_4; lean_object* x_5; x_4 = lean_unbox_usize(x_2); lean_dec(x_2); -x_5 = l_Std_PersistentHashMap_findAux___at_Lean_PrettyPrinter_Delaborator_delabFor___spec__3(x_1, x_4, x_3); +x_5 = l_Std_PersistentHashMap_findAux___at_Lean_PrettyPrinter_Delaborator_delabFor___spec__4(x_1, x_4, x_3); lean_dec(x_3); return x_5; } } -lean_object* l_Std_PersistentHashMap_find_x3f___at_Lean_PrettyPrinter_Delaborator_delabFor___spec__2___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l_Std_PersistentHashMap_find_x3f___at_Lean_PrettyPrinter_Delaborator_delabFor___spec__3___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l_Std_PersistentHashMap_find_x3f___at_Lean_PrettyPrinter_Delaborator_delabFor___spec__2(x_1, x_2); +x_3 = l_Std_PersistentHashMap_find_x3f___at_Lean_PrettyPrinter_Delaborator_delabFor___spec__3(x_1, x_2); lean_dec(x_2); return x_3; } } -lean_object* l_Std_AssocList_find_x3f___at_Lean_PrettyPrinter_Delaborator_delabFor___spec__6___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l_Std_AssocList_find_x3f___at_Lean_PrettyPrinter_Delaborator_delabFor___spec__7___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l_Std_AssocList_find_x3f___at_Lean_PrettyPrinter_Delaborator_delabFor___spec__6(x_1, x_2); +x_3 = l_Std_AssocList_find_x3f___at_Lean_PrettyPrinter_Delaborator_delabFor___spec__7(x_1, x_2); lean_dec(x_2); lean_dec(x_1); return x_3; } } -lean_object* l_Std_HashMapImp_find_x3f___at_Lean_PrettyPrinter_Delaborator_delabFor___spec__5___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l_Std_HashMapImp_find_x3f___at_Lean_PrettyPrinter_Delaborator_delabFor___spec__6___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l_Std_HashMapImp_find_x3f___at_Lean_PrettyPrinter_Delaborator_delabFor___spec__5(x_1, x_2); +x_3 = l_Std_HashMapImp_find_x3f___at_Lean_PrettyPrinter_Delaborator_delabFor___spec__6(x_1, x_2); lean_dec(x_2); lean_dec(x_1); return x_3; } } -lean_object* l_Lean_SMap_find_x3f___at_Lean_PrettyPrinter_Delaborator_delabFor___spec__1___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l_Lean_SMap_find_x3f___at_Lean_PrettyPrinter_Delaborator_delabFor___spec__2___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l_Lean_SMap_find_x3f___at_Lean_PrettyPrinter_Delaborator_delabFor___spec__1(x_1, x_2); +x_3 = l_Lean_SMap_find_x3f___at_Lean_PrettyPrinter_Delaborator_delabFor___spec__2(x_1, x_2); lean_dec(x_2); return x_3; } diff --git a/stage0/stdlib/Lean/PrettyPrinter/Delaborator/Builtins.c b/stage0/stdlib/Lean/PrettyPrinter/Delaborator/Builtins.c index 3f6fe7329c..e3b965e5bc 100644 --- a/stage0/stdlib/Lean/PrettyPrinter/Delaborator/Builtins.c +++ b/stage0/stdlib/Lean/PrettyPrinter/Delaborator/Builtins.c @@ -110,6 +110,7 @@ lean_object* l_Array_mapIdxM_map___at___private_Lean_PrettyPrinter_Delaborator_B extern lean_object* l_Lean_identKind___closed__2; lean_object* l_Lean_PrettyPrinter_Delaborator_delabProjectionApp___closed__2; extern lean_object* l_Lean_Parser_Term_type___elambda__1___closed__2; +lean_object* l_Lean_PrettyPrinter_Delaborator_delabAppWithUnexpander_go___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_throwError___at_Lean_PrettyPrinter_Delaborator_delabAppMatch___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_PrettyPrinter_Delaborator_delabAppMatch(lean_object*); lean_object* l_Lean_PrettyPrinter_Delaborator_delabConst___closed__3; @@ -141,6 +142,7 @@ lean_object* l_List_tailD___rarg(lean_object*, lean_object*); lean_object* l_List_forIn_loop___at_Lean_PrettyPrinter_Delaborator_delabMData___spec__3___lambda__1___closed__1; extern lean_object* l_Lean_Elab_Term_elabScientificLit___closed__3; extern lean_object* l_Lean_instInhabitedParserDescr___closed__1; +lean_object* l_Std_PersistentHashMap_find_x3f___at_Lean_PrettyPrinter_Delaborator_delabAppWithUnexpander_go___spec__3___boxed(lean_object*, lean_object*); extern lean_object* l_myMacro____x40_Init_Notation___hyg_15956____closed__12; lean_object* l_Lean_PrettyPrinter_Delaborator_delabLetE(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_PrettyPrinter_Delaborator_delabConst___spec__1___rarg(lean_object*, lean_object*, lean_object*); @@ -173,6 +175,7 @@ extern lean_object* l_myMacro____x40_Init_Notation___hyg_12514____closed__6; lean_object* lean_array_get_size(lean_object*); extern lean_object* l_Lean_Parser_Term_depArrow___elambda__1___closed__2; lean_object* l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_5198____spec__5(size_t, size_t, lean_object*); +extern lean_object* l_Lean_ScopedEnvExtension_getState___at_Lean_KeyedDeclsAttribute_getValues___spec__1___rarg___closed__1; extern lean_object* l_termDepIfThenElse___closed__24; extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_19364____closed__5; lean_object* lean_string_append(lean_object*, lean_object*); @@ -181,7 +184,6 @@ extern lean_object* l_myMacro____x40_Init_Data_Array_Basic___hyg_3594____closed_ lean_object* l___regBuiltin_Lean_PrettyPrinter_Delaborator_delabAppExplicit(lean_object*); lean_object* l_Lean_PrettyPrinter_Delaborator_delabLam_match__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_withLetDecl___at_Lean_PrettyPrinter_Delaborator_delabLetE___spec__1(lean_object*); -lean_object* l_Lean_PrettyPrinter_Delaborator_delabAppWithUnexpander_match__1(lean_object*); extern lean_object* l_myMacro____x40_Init_Notation___hyg_15387____closed__8; lean_object* l_Lean_PrettyPrinter_Delaborator_getParamKinds_match__1___rarg(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Term_type___elambda__1___closed__16; @@ -206,6 +208,7 @@ size_t l_USize_shiftRight(size_t, size_t); lean_object* l_Lean_PrettyPrinter_Delaborator_delabTuple___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_getPPFullNames___boxed(lean_object*); lean_object* l_Lean_PrettyPrinter_Delaborator_delabDoElems___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Std_AssocList_find_x3f___at_Lean_PrettyPrinter_Delaborator_delabAppWithUnexpander_go___spec__7___boxed(lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Delaborator_delabDo___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Delaborator_delabTuple(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Term_proj___elambda__1___closed__1; @@ -214,10 +217,12 @@ uint8_t l_Array_anyMUnsafe_any___at_Lean_PrettyPrinter_Delaborator_delabForall__ lean_object* l_Lean_PrettyPrinter_Delaborator_delabAppImplicit___lambda__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_getRevArg_x21(lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Term_tupleTail___elambda__1___closed__2; +lean_object* l_Lean_ScopedEnvExtension_getState___at_Lean_PrettyPrinter_Delaborator_delabAppWithUnexpander_go___spec__1(lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Delaborator_delabDo___lambda__1___boxed__const__1; lean_object* l_Lean_PrettyPrinter_Delaborator_delabLam___closed__1; lean_object* l_Lean_PrettyPrinter_Delaborator_delabDoElems___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Delaborator_delabAppMatch___closed__1; +lean_object* l_Lean_PrettyPrinter_Delaborator_delabAppWithUnexpander_go(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Delaborator_hasIdent_match__1(lean_object*); lean_object* l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Delaborator_delabDIte_delabBranch___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -231,6 +236,7 @@ lean_object* l_Lean_PrettyPrinter_Delaborator_delabAppExplicit_match__1___rarg(l extern lean_object* l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_826____closed__9; lean_object* l_Lean_PrettyPrinter_Delaborator_delabMData___closed__2; lean_object* l_ReaderT_bind___at_Lean_PrettyPrinter_Delaborator_delabAppExplicit___spec__2___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Std_PersistentHashMap_find_x3f___at_Lean_PrettyPrinter_Delaborator_delabAppWithUnexpander_go___spec__3(lean_object*, lean_object*); extern lean_object* l_term_x23_x5b___x2c_x5d___closed__2; lean_object* l___regBuiltin_Lean_PrettyPrinter_Delaborator_delabLam___closed__1; lean_object* l___regBuiltin_Lean_PrettyPrinter_Delaborator_delabAppImplicit___closed__1; @@ -270,7 +276,6 @@ lean_object* l_Lean_PrettyPrinter_Delaborator_delabDo(lean_object*, lean_object* lean_object* l_Lean_PrettyPrinter_Delaborator_delabOfScientific___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_myMacro____x40_Init_Notation___hyg_15956____closed__4; lean_object* l_Lean_PrettyPrinter_Delaborator_delabSort_match__1___rarg(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_PrettyPrinter_Delaborator_delabAppWithUnexpander_match__2(lean_object*); lean_object* l_Lean_PrettyPrinter_Delaborator_delabListToArray___closed__2; lean_object* l_Lean_Syntax_mkApp(lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Delaborator_delabDo___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -296,7 +301,6 @@ uint8_t lean_nat_dec_eq(lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Delaborator_delabIte(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_PrettyPrinter_Delaborator_delabConsList___closed__1; uint8_t l_Array_anyMUnsafe_any___at_Lean_PrettyPrinter_Delaborator_hasIdent___spec__1(lean_object*, lean_object*, size_t, size_t); -lean_object* l_Std_AssocList_find_x3f___at_Lean_PrettyPrinter_Delaborator_delabAppWithUnexpander___spec__6(lean_object*, lean_object*); extern lean_object* l_Array_forInUnsafe_loop___at___private_Init_NotationExtra_0__Lean_mkHintBody___spec__1___closed__2; extern lean_object* l_myMacro____x40_Init_Notation___hyg_13868____closed__8; lean_object* l_Lean_PrettyPrinter_Delaborator_delabStructureInstance___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -316,7 +320,6 @@ lean_object* l___regBuiltin_Lean_PrettyPrinter_Delaborator_delabConsList___close lean_object* l_Array_mapIdxM_map___at___private_Lean_PrettyPrinter_Delaborator_Builtins_0__Lean_PrettyPrinter_Delaborator_delabPatterns___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_PrettyPrinter_Delaborator_delabAppImplicit(lean_object*); lean_object* l_Lean_PrettyPrinter_Delaborator_delabStructureInstance_match__3(lean_object*); -lean_object* l_Lean_PrettyPrinter_Delaborator_delabAppWithUnexpander_match__1___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Delaborator_delabCoe___closed__2; lean_object* l_Lean_PrettyPrinter_Delaborator_delabCoe___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Delaborator_delabAppExplicit_match__1(lean_object*); @@ -432,9 +435,9 @@ lean_object* l_Lean_Syntax_mkStrLit(lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Delaborator_getParamKinds___closed__1; uint8_t l_Lean_Expr_isAppOfArity(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_getRevAliases(lean_object*, lean_object*); +lean_object* l_Lean_ScopedEnvExtension_getState___at_Lean_PrettyPrinter_Delaborator_delabAppWithUnexpander_go___spec__1___boxed(lean_object*, lean_object*); lean_object* l_Lean_Meta_withLetDecl___at_Lean_PrettyPrinter_Delaborator_delabDoElems___spec__1___at_Lean_PrettyPrinter_Delaborator_delabDoElems___spec__2___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_PrettyPrinter_Delaborator_Builtins_0__Lean_PrettyPrinter_Delaborator_delabPatterns_usingNames(lean_object*); -lean_object* l_Std_PersistentHashMap_findAux___at_Lean_PrettyPrinter_Delaborator_delabAppWithUnexpander___spec__3(lean_object*, size_t, lean_object*); size_t lean_usize_modn(size_t, lean_object*); lean_object* l___regBuiltin_Lean_PrettyPrinter_Delaborator_delabNil___closed__2; lean_object* l_Lean_PrettyPrinter_Delaborator_delabProjectionApp___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -446,6 +449,7 @@ lean_object* l_Lean_PrettyPrinter_Delaborator_delabConst_match__1___rarg(lean_ob lean_object* l___regBuiltin_Lean_PrettyPrinter_Delaborator_delabMData(lean_object*); lean_object* l___private_Init_Util_0__mkPanicMessageWithDecl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_PrettyPrinter_Delaborator_delabSorryAx___closed__2; +lean_object* l_Lean_SMap_find_x3f___at_Lean_PrettyPrinter_Delaborator_delabAppWithUnexpander_go___spec__2(lean_object*, lean_object*); uint8_t l_Lean_Expr_isConst(lean_object*); lean_object* l___regBuiltin_Lean_PrettyPrinter_Delaborator_delabOfNat___closed__3; lean_object* l_Lean_PrettyPrinter_Delaborator_delabConsList___closed__1; @@ -462,7 +466,6 @@ lean_object* l___regBuiltin_Lean_PrettyPrinter_Delaborator_delabForall(lean_obje lean_object* l_Lean_mkSepArray(lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Term_inaccessible___elambda__1___closed__1; lean_object* l___regBuiltin_Lean_PrettyPrinter_Delaborator_delabSort(lean_object*); -lean_object* l_Lean_SMap_find_x3f___at_Lean_PrettyPrinter_Delaborator_delabAppWithUnexpander___spec__1(lean_object*, lean_object*); lean_object* l___private_Lean_PrettyPrinter_Delaborator_Builtins_0__Lean_PrettyPrinter_Delaborator_unresolveUsingNamespace_match__1___rarg(lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_PrettyPrinter_Delaborator_delabForall___closed__1; lean_object* l_Lean_PrettyPrinter_Delaborator_descend___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -495,7 +498,6 @@ uint8_t l_Lean_Expr_isLambda(lean_object*); extern lean_object* l_Lean_NameGenerator_namePrefix___default___closed__2; lean_object* l___regBuiltin_Lean_PrettyPrinter_Delaborator_delabFVar(lean_object*); lean_object* l_Lean_PrettyPrinter_Delaborator_withBindingBodyUnusedName___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_PrettyPrinter_Delaborator_delabAppWithUnexpander_match__2___rarg(lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_PrettyPrinter_Delaborator_Builtins_0__Lean_PrettyPrinter_Delaborator_skippingBinders_loop_match__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_PrettyPrinter_Delaborator_delabListToArray___closed__1; extern lean_object* l_Lean_Parser_Tactic_inductionAlt___closed__5; @@ -508,7 +510,6 @@ lean_object* l_Array_mapIdxM_map___at___private_Lean_PrettyPrinter_Delaborator_B lean_object* l_Lean_getPPCoercions___boxed(lean_object*); extern lean_object* l_Lean_Parser_Term_explicitUniv___elambda__1___closed__4; extern lean_object* l_myMacro____x40_Init_Notation___hyg_14281____closed__1; -lean_object* l_Lean_SMap_find_x3f___at_Lean_PrettyPrinter_Delaborator_delabAppWithUnexpander___spec__1___boxed(lean_object*, lean_object*); lean_object* l_Array_mapMUnsafe_map___at_Lean_PrettyPrinter_Delaborator_delabDo___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_nullKind___closed__2; lean_object* l_Array_foldrMUnsafe_fold___at_Lean_PrettyPrinter_Delaborator_delabForall___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -526,6 +527,7 @@ lean_object* l_Lean_PrettyPrinter_Delaborator_delabOfNat___closed__1; lean_object* l_Array_mapMUnsafe_map___at_Lean_PrettyPrinter_Delaborator_delabAppMatch___spec__6(lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*); lean_object* l_Lean_PrettyPrinter_Delaborator_delab(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Delaborator_delabCoeFun(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_SMap_find_x3f___at_Lean_PrettyPrinter_Delaborator_delabAppWithUnexpander_go___spec__2___boxed(lean_object*, lean_object*); lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_PrettyPrinter_Delaborator_delabMVar___spec__1___rarg(lean_object*, lean_object*, lean_object*); uint8_t l_List_elem___at_Lean_NameHashSet_insert___spec__2(lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Term_prop___elambda__1___closed__2; @@ -537,10 +539,9 @@ lean_object* l_Lean_Meta_getMatcherInfo_x3f(lean_object*, lean_object*, lean_obj lean_object* l___private_Lean_PrettyPrinter_Delaborator_Builtins_0__Lean_PrettyPrinter_Delaborator_unresolveQualifiedName___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Delaborator_delabBVar___closed__1; lean_object* l_Lean_PrettyPrinter_Delaborator_delabProj___closed__1; -lean_object* l_Std_PersistentHashMap_find_x3f___at_Lean_PrettyPrinter_Delaborator_delabAppWithUnexpander___spec__2___boxed(lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Delaborator_delabMVar___closed__1; lean_object* l_List_redLength___rarg(lean_object*); -lean_object* l_Std_HashMapImp_find_x3f___at_Lean_PrettyPrinter_Delaborator_delabAppWithUnexpander___spec__5(lean_object*, lean_object*); +lean_object* l_Std_PersistentHashMap_findAux___at_Lean_PrettyPrinter_Delaborator_delabAppWithUnexpander_go___spec__4(lean_object*, size_t, lean_object*); lean_object* l_Lean_PrettyPrinter_Delaborator_delabStructureInstance___lambda__5___closed__1; lean_object* l_Lean_PrettyPrinter_Delaborator_delabOfNat___closed__2; lean_object* l_Array_foldrMUnsafe_fold___at_Lean_PrettyPrinter_Delaborator_delabForall___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*); @@ -612,6 +613,7 @@ lean_object* l___regBuiltin_Lean_PrettyPrinter_Delaborator_delabConsList(lean_ob lean_object* l_Lean_PrettyPrinter_Delaborator_delabDoElems___lambda__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Delaborator_AppMatchState_rhss___default; lean_object* l___regBuiltin_Lean_PrettyPrinter_Delaborator_delabDIte(lean_object*); +lean_object* l_Lean_PrettyPrinter_Delaborator_delabAppWithUnexpander_go_match__2(lean_object*); lean_object* l___private_Lean_PrettyPrinter_Delaborator_Builtins_0__Lean_PrettyPrinter_Delaborator_delabBinders___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_forallTelescopeReducing___at_Lean_Meta_getParamNames___spec__4___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_PrettyPrinter_Delaborator_delabNil___closed__3; @@ -628,6 +630,7 @@ lean_object* l_Lean_PrettyPrinter_Delaborator_delabLetE___closed__2; lean_object* l_Array_mapMUnsafe_map___at_Lean_PrettyPrinter_Delaborator_getParamKinds___spec__1___closed__2; lean_object* l_Lean_PrettyPrinter_Delaborator_delabLit_match__2(lean_object*); lean_object* l_Lean_PrettyPrinter_Delaborator_delabIte___closed__1; +lean_object* l_Std_AssocList_find_x3f___at_Lean_PrettyPrinter_Delaborator_delabAppWithUnexpander_go___spec__7(lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Delaborator_delabOfNat_match__1___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Delaborator_delabOfScientific___lambda__1(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_PrettyPrinter_Delaborator_delabLetE(lean_object*); @@ -646,6 +649,7 @@ lean_object* l_Lean_PrettyPrinter_Delaborator_delabProj___closed__2; extern lean_object* l_myMacro____x40_Init_Notation___hyg_2450____closed__1; lean_object* l_Lean_PrettyPrinter_Delaborator_delabOfScientific___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Delaborator_delabSort_match__1(lean_object*); +lean_object* l_Lean_PrettyPrinter_Delaborator_delabAppWithUnexpander_go_match__1___rarg(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_PrettyPrinter_Delaborator_getExprKind___closed__5; lean_object* l_Lean_PrettyPrinter_Delaborator_delabForall_match__1(lean_object*); extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_362____closed__15; @@ -658,12 +662,15 @@ lean_object* l_Lean_addMessageContextFull___at_Lean_Meta_instAddMessageContextMe lean_object* l_Lean_PrettyPrinter_Delaborator_delabStructureInstance___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_instInhabitedName; lean_object* l_Lean_Meta_withLetDecl___at_Lean_PrettyPrinter_Delaborator_delabLetE___spec__1___at_Lean_PrettyPrinter_Delaborator_delabLetE___spec__2___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Std_HashMapImp_find_x3f___at_Lean_PrettyPrinter_Delaborator_delabAppWithUnexpander_go___spec__6(lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Delaborator_AppMatchState_params___default; lean_object* l_List_toArrayAux___rarg(lean_object*, lean_object*); extern lean_object* l_Lean_JsonNumber_toString___closed__2; lean_object* l___regBuiltin_Lean_PrettyPrinter_Delaborator_delabStructureInstance(lean_object*); lean_object* l_Lean_Meta_inferType(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Delaborator_delabLam_match__1(lean_object*); +extern lean_object* l_Lean_ScopedEnvExtension_getState___rarg___closed__3; +lean_object* l_Lean_PrettyPrinter_Delaborator_delabAppWithUnexpander_go_match__1(lean_object*); extern lean_object* l_myMacro____x40_Init_Notation___hyg_1398____closed__8; extern lean_object* l_Lean_PrettyPrinter_Delaborator_appUnexpanderAttribute; lean_object* l_Lean_PrettyPrinter_Delaborator_delabAppImplicit___closed__6; @@ -671,10 +678,10 @@ lean_object* l_Array_mapMUnsafe_map___at_Lean_PrettyPrinter_Delaborator_delabApp lean_object* l___regBuiltin_Lean_PrettyPrinter_Delaborator_delabBVar(lean_object*); lean_object* l_Lean_PrettyPrinter_Delaborator_delabAppExplicit___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Expr_hasLooseBVars(lean_object*); +lean_object* l_Std_HashMapImp_find_x3f___at_Lean_PrettyPrinter_Delaborator_delabAppWithUnexpander_go___spec__6___boxed(lean_object*, lean_object*); extern lean_object* l_termIfThenElse___closed__2; lean_object* l___private_Lean_PrettyPrinter_Delaborator_Builtins_0__Lean_PrettyPrinter_Delaborator_skippingBinders_loop(lean_object*); lean_object* l_Lean_PrettyPrinter_Delaborator_delabStructureInstance_match__2___rarg(lean_object*, lean_object*, lean_object*); -lean_object* l_Std_PersistentHashMap_findAtAux___at_Lean_PrettyPrinter_Delaborator_delabAppWithUnexpander___spec__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Delaborator_delabProjectionApp_match__1(lean_object*); lean_object* lean_array_pop(lean_object*); uint8_t l_Lean_TagDeclarationExtension_isTagged(lean_object*, lean_object*, lean_object*); @@ -704,6 +711,7 @@ extern lean_object* l_myMacro____x40_Init_Notation___hyg_15956____closed__1; lean_object* l_Lean_PrettyPrinter_Delaborator_delabOfNat___closed__3; lean_object* lean_string_length(lean_object*); lean_object* l_Lean_PrettyPrinter_Delaborator_delabAppWithUnexpander___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Std_PersistentHashMap_findAux___at_Lean_PrettyPrinter_Delaborator_delabAppWithUnexpander_go___spec__4___boxed(lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_PrettyPrinter_Delaborator_delabAppWithUnexpander(lean_object*); lean_object* l_List_forIn_loop___at_Lean_PrettyPrinter_Delaborator_delabMData___spec__3___lambda__1(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Term_doLet___elambda__1___closed__2; @@ -712,7 +720,6 @@ lean_object* l_Lean_PrettyPrinter_Delaborator_delabForall___lambda__3(lean_objec extern lean_object* l_termDepIfThenElse___closed__2; lean_object* l_Lean_PrettyPrinter_Delaborator_delabAppMatch___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_prec_x28___x29___closed__3; -lean_object* l_Std_PersistentHashMap_findAux___at_Lean_PrettyPrinter_Delaborator_delabAppWithUnexpander___spec__3___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MapDeclarationExtension_find_x3f___at_Lean_Environment_getProjectionFnInfo_x3f___spec__1(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_826____closed__11; lean_object* lean_mk_syntax_ident(lean_object*); @@ -725,13 +732,11 @@ lean_object* l_Lean_Syntax_getArg(lean_object*, lean_object*); extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_362____closed__2; lean_object* l___regBuiltin_Lean_PrettyPrinter_Delaborator_delabBVar___closed__1; extern lean_object* l_Lean_mkOptionalNode___closed__2; -lean_object* l_Std_HashMapImp_find_x3f___at_Lean_PrettyPrinter_Delaborator_delabAppWithUnexpander___spec__5___boxed(lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Delaborator_delabDo___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Term_forall___elambda__1___closed__5; lean_object* l_Std_RBNode_insert___at_Lean_PrettyPrinter_Delaborator_delabMData___spec__1(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Delaborator_delabDoElems___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_PrettyPrinter_Delaborator_delabConst___spec__1___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l_Std_PersistentHashMap_find_x3f___at_Lean_PrettyPrinter_Delaborator_delabAppWithUnexpander___spec__2(lean_object*, lean_object*); extern lean_object* l_Lean_expandExplicitBindersAux_loop___closed__2; lean_object* l_Lean_Expr_getAppFn(lean_object*); extern lean_object* l_Lean_PrettyPrinter_Delaborator_getExprKind___closed__9; @@ -755,7 +760,6 @@ lean_object* l___private_Lean_PrettyPrinter_Delaborator_Builtins_0__Lean_PrettyP lean_object* l_Lean_PrettyPrinter_Delaborator_delabLit_match__1(lean_object*); lean_object* lean_usize_to_nat(size_t); lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_withLetDeclImp___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Std_PersistentHashMap_findAtAux___at_Lean_PrettyPrinter_Delaborator_delabAppWithUnexpander___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_PrettyPrinter_Delaborator_delabLit___closed__1; extern lean_object* l_term_x5b___x5d___closed__2; lean_object* l_Lean_PrettyPrinter_Delaborator_delabForall___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -786,6 +790,7 @@ lean_object* l_Lean_mkConst(lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_PrettyPrinter_Delaborator_delabOfScientific___closed__2; lean_object* l_Lean_Level_quote(lean_object*, lean_object*); extern lean_object* l_myMacro____x40_Init_Notation___hyg_14470____closed__3; +lean_object* l_Lean_PrettyPrinter_Delaborator_delabAppWithUnexpander_go_match__2___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Delaborator_delabAppExplicit___closed__2; lean_object* l_Lean_PrettyPrinter_Delaborator_delabProj_match__1(lean_object*); lean_object* l_Lean_PrettyPrinter_Delaborator_delabForall_match__1___rarg(uint8_t, lean_object*, lean_object*, lean_object*); @@ -802,17 +807,18 @@ lean_object* l_Lean_getPPPrivateNames___boxed(lean_object*); lean_object* l___regBuiltin_Lean_PrettyPrinter_Delaborator_delabOfScientific___closed__1; lean_object* l_Lean_PrettyPrinter_Delaborator_delabAppMatch___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_PrettyPrinter_Delaborator_Builtins_0__Lean_PrettyPrinter_Delaborator_unresolveQualifiedName(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Std_PersistentHashMap_findAtAux___at_Lean_PrettyPrinter_Delaborator_delabAppWithUnexpander_go___spec__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_mapIdxM_map___at___private_Lean_PrettyPrinter_Delaborator_Builtins_0__Lean_PrettyPrinter_Delaborator_delabPatterns___spec__1___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_withLetDecl___at_Lean_PrettyPrinter_Delaborator_delabDoElems___spec__1(lean_object*); lean_object* l___regBuiltin_Lean_PrettyPrinter_Delaborator_delabSorryAx(lean_object*); lean_object* l_Lean_PrettyPrinter_Delaborator_delabDoElems_match__1(lean_object*); +lean_object* l_Std_PersistentHashMap_findAtAux___at_Lean_PrettyPrinter_Delaborator_delabAppWithUnexpander_go___spec__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_getPPStructureProjections___boxed(lean_object*); lean_object* l_Lean_PrettyPrinter_Delaborator_failure___rarg(lean_object*); lean_object* l_Lean_PrettyPrinter_Delaborator_delabAppMatch___lambda__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_addParenHeuristic___closed__1; lean_object* l___private_Lean_PrettyPrinter_Delaborator_Builtins_0__Lean_PrettyPrinter_Delaborator_shouldGroupWithNext_match__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_PrettyPrinter_Delaborator_Builtins_0__Lean_PrettyPrinter_Delaborator_unresolveUsingNamespace___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Std_AssocList_find_x3f___at_Lean_PrettyPrinter_Delaborator_delabAppWithUnexpander___spec__6___boxed(lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_PrettyPrinter_Delaborator_delabProjectionApp(lean_object*); uint8_t l_Lean_Expr_isLet(lean_object*); uint8_t l_Lean_isStructure(lean_object*, lean_object*); @@ -5426,7 +5432,7 @@ x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; } } -lean_object* l_Lean_PrettyPrinter_Delaborator_delabAppWithUnexpander_match__1___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Lean_PrettyPrinter_Delaborator_delabAppWithUnexpander_go_match__1___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { if (lean_obj_tag(x_1) == 0) @@ -5450,15 +5456,15 @@ return x_7; } } } -lean_object* l_Lean_PrettyPrinter_Delaborator_delabAppWithUnexpander_match__1(lean_object* x_1) { +lean_object* l_Lean_PrettyPrinter_Delaborator_delabAppWithUnexpander_go_match__1(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Delaborator_delabAppWithUnexpander_match__1___rarg), 3, 0); +x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Delaborator_delabAppWithUnexpander_go_match__1___rarg), 3, 0); return x_2; } } -lean_object* l_Lean_PrettyPrinter_Delaborator_delabAppWithUnexpander_match__2___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Lean_PrettyPrinter_Delaborator_delabAppWithUnexpander_go_match__2___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { if (lean_obj_tag(x_1) == 0) @@ -5496,15 +5502,45 @@ return x_9; } } } -lean_object* l_Lean_PrettyPrinter_Delaborator_delabAppWithUnexpander_match__2(lean_object* x_1) { +lean_object* l_Lean_PrettyPrinter_Delaborator_delabAppWithUnexpander_go_match__2(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Delaborator_delabAppWithUnexpander_match__2___rarg), 3, 0); +x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Delaborator_delabAppWithUnexpander_go_match__2___rarg), 3, 0); return x_2; } } -lean_object* l_Std_PersistentHashMap_findAtAux___at_Lean_PrettyPrinter_Delaborator_delabAppWithUnexpander___spec__4(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l_Lean_ScopedEnvExtension_getState___at_Lean_PrettyPrinter_Delaborator_delabAppWithUnexpander_go___spec__1(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_3 = lean_ctor_get(x_1, 1); +x_4 = l_Lean_PersistentEnvExtension_getState___rarg(x_3, x_2); +x_5 = lean_ctor_get(x_4, 0); +lean_inc(x_5); +lean_dec(x_4); +if (lean_obj_tag(x_5) == 0) +{ +lean_object* x_6; lean_object* x_7; lean_object* x_8; +x_6 = l_Lean_ScopedEnvExtension_getState___at_Lean_KeyedDeclsAttribute_getValues___spec__1___rarg___closed__1; +x_7 = l_Lean_ScopedEnvExtension_getState___rarg___closed__3; +x_8 = lean_panic_fn(x_6, x_7); +return x_8; +} +else +{ +lean_object* x_9; lean_object* x_10; +x_9 = lean_ctor_get(x_5, 0); +lean_inc(x_9); +lean_dec(x_5); +x_10 = lean_ctor_get(x_9, 0); +lean_inc(x_10); +lean_dec(x_9); +return x_10; +} +} +} +lean_object* l_Std_PersistentHashMap_findAtAux___at_Lean_PrettyPrinter_Delaborator_delabAppWithUnexpander_go___spec__5(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; uint8_t x_7; @@ -5546,7 +5582,7 @@ return x_15; } } } -lean_object* l_Std_PersistentHashMap_findAux___at_Lean_PrettyPrinter_Delaborator_delabAppWithUnexpander___spec__3(lean_object* x_1, size_t x_2, lean_object* x_3) { +lean_object* l_Std_PersistentHashMap_findAux___at_Lean_PrettyPrinter_Delaborator_delabAppWithUnexpander_go___spec__4(lean_object* x_1, size_t x_2, lean_object* x_3) { _start: { if (lean_obj_tag(x_1) == 0) @@ -5617,14 +5653,14 @@ x_21 = lean_ctor_get(x_1, 1); lean_inc(x_21); lean_dec(x_1); x_22 = lean_unsigned_to_nat(0u); -x_23 = l_Std_PersistentHashMap_findAtAux___at_Lean_PrettyPrinter_Delaborator_delabAppWithUnexpander___spec__4(x_20, x_21, lean_box(0), x_22, x_3); +x_23 = l_Std_PersistentHashMap_findAtAux___at_Lean_PrettyPrinter_Delaborator_delabAppWithUnexpander_go___spec__5(x_20, x_21, lean_box(0), x_22, x_3); lean_dec(x_21); lean_dec(x_20); return x_23; } } } -lean_object* l_Std_PersistentHashMap_find_x3f___at_Lean_PrettyPrinter_Delaborator_delabAppWithUnexpander___spec__2(lean_object* x_1, lean_object* x_2) { +lean_object* l_Std_PersistentHashMap_find_x3f___at_Lean_PrettyPrinter_Delaborator_delabAppWithUnexpander_go___spec__3(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; size_t x_4; lean_object* x_5; @@ -5632,11 +5668,11 @@ x_3 = lean_ctor_get(x_1, 0); lean_inc(x_3); lean_dec(x_1); x_4 = l_Lean_Name_hash(x_2); -x_5 = l_Std_PersistentHashMap_findAux___at_Lean_PrettyPrinter_Delaborator_delabAppWithUnexpander___spec__3(x_3, x_4, x_2); +x_5 = l_Std_PersistentHashMap_findAux___at_Lean_PrettyPrinter_Delaborator_delabAppWithUnexpander_go___spec__4(x_3, x_4, x_2); return x_5; } } -lean_object* l_Std_AssocList_find_x3f___at_Lean_PrettyPrinter_Delaborator_delabAppWithUnexpander___spec__6(lean_object* x_1, lean_object* x_2) { +lean_object* l_Std_AssocList_find_x3f___at_Lean_PrettyPrinter_Delaborator_delabAppWithUnexpander_go___spec__7(lean_object* x_1, lean_object* x_2) { _start: { if (lean_obj_tag(x_2) == 0) @@ -5668,7 +5704,7 @@ return x_9; } } } -lean_object* l_Std_HashMapImp_find_x3f___at_Lean_PrettyPrinter_Delaborator_delabAppWithUnexpander___spec__5(lean_object* x_1, lean_object* x_2) { +lean_object* l_Std_HashMapImp_find_x3f___at_Lean_PrettyPrinter_Delaborator_delabAppWithUnexpander_go___spec__6(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; lean_object* x_4; size_t x_5; size_t x_6; lean_object* x_7; lean_object* x_8; @@ -5678,12 +5714,12 @@ x_5 = l_Lean_Name_hash(x_2); x_6 = lean_usize_modn(x_5, x_4); lean_dec(x_4); x_7 = lean_array_uget(x_3, x_6); -x_8 = l_Std_AssocList_find_x3f___at_Lean_PrettyPrinter_Delaborator_delabAppWithUnexpander___spec__6(x_2, x_7); +x_8 = l_Std_AssocList_find_x3f___at_Lean_PrettyPrinter_Delaborator_delabAppWithUnexpander_go___spec__7(x_2, x_7); lean_dec(x_7); return x_8; } } -lean_object* l_Lean_SMap_find_x3f___at_Lean_PrettyPrinter_Delaborator_delabAppWithUnexpander___spec__1(lean_object* x_1, lean_object* x_2) { +lean_object* l_Lean_SMap_find_x3f___at_Lean_PrettyPrinter_Delaborator_delabAppWithUnexpander_go___spec__2(lean_object* x_1, lean_object* x_2) { _start: { uint8_t x_3; @@ -5696,11 +5732,11 @@ lean_inc(x_4); x_5 = lean_ctor_get(x_1, 1); lean_inc(x_5); lean_dec(x_1); -x_6 = l_Std_PersistentHashMap_find_x3f___at_Lean_PrettyPrinter_Delaborator_delabAppWithUnexpander___spec__2(x_5, x_2); +x_6 = l_Std_PersistentHashMap_find_x3f___at_Lean_PrettyPrinter_Delaborator_delabAppWithUnexpander_go___spec__3(x_5, x_2); if (lean_obj_tag(x_6) == 0) { lean_object* x_7; -x_7 = l_Std_HashMapImp_find_x3f___at_Lean_PrettyPrinter_Delaborator_delabAppWithUnexpander___spec__5(x_4, x_2); +x_7 = l_Std_HashMapImp_find_x3f___at_Lean_PrettyPrinter_Delaborator_delabAppWithUnexpander_go___spec__6(x_4, x_2); lean_dec(x_4); return x_7; } @@ -5731,12 +5767,301 @@ lean_object* x_11; lean_object* x_12; x_11 = lean_ctor_get(x_1, 0); lean_inc(x_11); lean_dec(x_1); -x_12 = l_Std_HashMapImp_find_x3f___at_Lean_PrettyPrinter_Delaborator_delabAppWithUnexpander___spec__5(x_11, x_2); +x_12 = l_Std_HashMapImp_find_x3f___at_Lean_PrettyPrinter_Delaborator_delabAppWithUnexpander_go___spec__6(x_11, x_2); lean_dec(x_11); return x_12; } } } +lean_object* l_Lean_PrettyPrinter_Delaborator_delabAppWithUnexpander_go(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +_start: +{ +lean_object* x_9; uint8_t x_10; +x_9 = lean_st_ref_get(x_7, x_8); +x_10 = !lean_is_exclusive(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; lean_object* x_17; lean_object* x_18; +x_11 = lean_ctor_get(x_9, 0); +x_12 = lean_ctor_get(x_9, 1); +x_13 = lean_ctor_get(x_11, 0); +lean_inc(x_13); +lean_dec(x_11); +x_14 = l_Lean_PrettyPrinter_Delaborator_appUnexpanderAttribute; +x_15 = lean_ctor_get(x_14, 2); +lean_inc(x_15); +x_16 = l_Lean_ScopedEnvExtension_getState___at_Lean_PrettyPrinter_Delaborator_delabAppWithUnexpander_go___spec__1(x_15, x_13); +lean_dec(x_13); +lean_dec(x_15); +x_17 = lean_ctor_get(x_16, 1); +lean_inc(x_17); +lean_dec(x_16); +x_18 = l_Lean_SMap_find_x3f___at_Lean_PrettyPrinter_Delaborator_delabAppWithUnexpander_go___spec__2(x_17, x_1); +if (lean_obj_tag(x_18) == 0) +{ +lean_ctor_set(x_9, 0, x_2); +return x_9; +} +else +{ +lean_object* x_19; +x_19 = lean_ctor_get(x_18, 0); +lean_inc(x_19); +lean_dec(x_18); +if (lean_obj_tag(x_19) == 0) +{ +lean_ctor_set(x_9, 0, x_2); +return x_9; +} +else +{ +lean_object* x_20; lean_object* x_21; lean_object* x_22; +lean_free_object(x_9); +x_20 = lean_ctor_get(x_19, 0); +lean_inc(x_20); +lean_dec(x_19); +x_21 = lean_box(0); +lean_inc(x_2); +x_22 = lean_apply_2(x_20, x_2, x_21); +if (lean_obj_tag(x_22) == 0) +{ +uint8_t x_23; +lean_dec(x_2); +x_23 = !lean_is_exclusive(x_22); +if (x_23 == 0) +{ +lean_object* x_24; +x_24 = lean_ctor_get(x_22, 1); +lean_dec(x_24); +lean_ctor_set(x_22, 1, x_12); +return x_22; +} +else +{ +lean_object* x_25; lean_object* x_26; +x_25 = lean_ctor_get(x_22, 0); +lean_inc(x_25); +lean_dec(x_22); +x_26 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_26, 0, x_25); +lean_ctor_set(x_26, 1, x_12); +return x_26; +} +} +else +{ +uint8_t x_27; +x_27 = !lean_is_exclusive(x_22); +if (x_27 == 0) +{ +lean_object* x_28; lean_object* x_29; +x_28 = lean_ctor_get(x_22, 1); +lean_dec(x_28); +x_29 = lean_ctor_get(x_22, 0); +lean_dec(x_29); +lean_ctor_set_tag(x_22, 0); +lean_ctor_set(x_22, 1, x_12); +lean_ctor_set(x_22, 0, x_2); +return x_22; +} +else +{ +lean_object* x_30; +lean_dec(x_22); +x_30 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_30, 0, x_2); +lean_ctor_set(x_30, 1, x_12); +return x_30; +} +} +} +} +} +else +{ +lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; +x_31 = lean_ctor_get(x_9, 0); +x_32 = lean_ctor_get(x_9, 1); +lean_inc(x_32); +lean_inc(x_31); +lean_dec(x_9); +x_33 = lean_ctor_get(x_31, 0); +lean_inc(x_33); +lean_dec(x_31); +x_34 = l_Lean_PrettyPrinter_Delaborator_appUnexpanderAttribute; +x_35 = lean_ctor_get(x_34, 2); +lean_inc(x_35); +x_36 = l_Lean_ScopedEnvExtension_getState___at_Lean_PrettyPrinter_Delaborator_delabAppWithUnexpander_go___spec__1(x_35, x_33); +lean_dec(x_33); +lean_dec(x_35); +x_37 = lean_ctor_get(x_36, 1); +lean_inc(x_37); +lean_dec(x_36); +x_38 = l_Lean_SMap_find_x3f___at_Lean_PrettyPrinter_Delaborator_delabAppWithUnexpander_go___spec__2(x_37, x_1); +if (lean_obj_tag(x_38) == 0) +{ +lean_object* x_39; +x_39 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_39, 0, x_2); +lean_ctor_set(x_39, 1, x_32); +return x_39; +} +else +{ +lean_object* x_40; +x_40 = lean_ctor_get(x_38, 0); +lean_inc(x_40); +lean_dec(x_38); +if (lean_obj_tag(x_40) == 0) +{ +lean_object* x_41; +x_41 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_41, 0, x_2); +lean_ctor_set(x_41, 1, x_32); +return x_41; +} +else +{ +lean_object* x_42; lean_object* x_43; lean_object* x_44; +x_42 = lean_ctor_get(x_40, 0); +lean_inc(x_42); +lean_dec(x_40); +x_43 = lean_box(0); +lean_inc(x_2); +x_44 = lean_apply_2(x_42, x_2, x_43); +if (lean_obj_tag(x_44) == 0) +{ +lean_object* x_45; lean_object* x_46; lean_object* x_47; +lean_dec(x_2); +x_45 = lean_ctor_get(x_44, 0); +lean_inc(x_45); +if (lean_is_exclusive(x_44)) { + lean_ctor_release(x_44, 0); + lean_ctor_release(x_44, 1); + x_46 = x_44; +} else { + lean_dec_ref(x_44); + x_46 = lean_box(0); +} +if (lean_is_scalar(x_46)) { + x_47 = lean_alloc_ctor(0, 2, 0); +} else { + x_47 = x_46; +} +lean_ctor_set(x_47, 0, x_45); +lean_ctor_set(x_47, 1, x_32); +return x_47; +} +else +{ +lean_object* x_48; lean_object* x_49; +if (lean_is_exclusive(x_44)) { + lean_ctor_release(x_44, 0); + lean_ctor_release(x_44, 1); + x_48 = x_44; +} else { + lean_dec_ref(x_44); + x_48 = lean_box(0); +} +if (lean_is_scalar(x_48)) { + x_49 = lean_alloc_ctor(0, 2, 0); +} else { + x_49 = x_48; + lean_ctor_set_tag(x_49, 0); +} +lean_ctor_set(x_49, 0, x_2); +lean_ctor_set(x_49, 1, x_32); +return x_49; +} +} +} +} +} +} +lean_object* l_Lean_ScopedEnvExtension_getState___at_Lean_PrettyPrinter_Delaborator_delabAppWithUnexpander_go___spec__1___boxed(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; +x_3 = l_Lean_ScopedEnvExtension_getState___at_Lean_PrettyPrinter_Delaborator_delabAppWithUnexpander_go___spec__1(x_1, x_2); +lean_dec(x_2); +lean_dec(x_1); +return x_3; +} +} +lean_object* l_Std_PersistentHashMap_findAtAux___at_Lean_PrettyPrinter_Delaborator_delabAppWithUnexpander_go___spec__5___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_Std_PersistentHashMap_findAtAux___at_Lean_PrettyPrinter_Delaborator_delabAppWithUnexpander_go___spec__5(x_1, x_2, x_3, x_4, x_5); +lean_dec(x_5); +lean_dec(x_2); +lean_dec(x_1); +return x_6; +} +} +lean_object* l_Std_PersistentHashMap_findAux___at_Lean_PrettyPrinter_Delaborator_delabAppWithUnexpander_go___spec__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +size_t x_4; lean_object* x_5; +x_4 = lean_unbox_usize(x_2); +lean_dec(x_2); +x_5 = l_Std_PersistentHashMap_findAux___at_Lean_PrettyPrinter_Delaborator_delabAppWithUnexpander_go___spec__4(x_1, x_4, x_3); +lean_dec(x_3); +return x_5; +} +} +lean_object* l_Std_PersistentHashMap_find_x3f___at_Lean_PrettyPrinter_Delaborator_delabAppWithUnexpander_go___spec__3___boxed(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; +x_3 = l_Std_PersistentHashMap_find_x3f___at_Lean_PrettyPrinter_Delaborator_delabAppWithUnexpander_go___spec__3(x_1, x_2); +lean_dec(x_2); +return x_3; +} +} +lean_object* l_Std_AssocList_find_x3f___at_Lean_PrettyPrinter_Delaborator_delabAppWithUnexpander_go___spec__7___boxed(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; +x_3 = l_Std_AssocList_find_x3f___at_Lean_PrettyPrinter_Delaborator_delabAppWithUnexpander_go___spec__7(x_1, x_2); +lean_dec(x_2); +lean_dec(x_1); +return x_3; +} +} +lean_object* l_Std_HashMapImp_find_x3f___at_Lean_PrettyPrinter_Delaborator_delabAppWithUnexpander_go___spec__6___boxed(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; +x_3 = l_Std_HashMapImp_find_x3f___at_Lean_PrettyPrinter_Delaborator_delabAppWithUnexpander_go___spec__6(x_1, x_2); +lean_dec(x_2); +lean_dec(x_1); +return x_3; +} +} +lean_object* l_Lean_SMap_find_x3f___at_Lean_PrettyPrinter_Delaborator_delabAppWithUnexpander_go___spec__2___boxed(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; +x_3 = l_Lean_SMap_find_x3f___at_Lean_PrettyPrinter_Delaborator_delabAppWithUnexpander_go___spec__2(x_1, x_2); +lean_dec(x_2); +return x_3; +} +} +lean_object* l_Lean_PrettyPrinter_Delaborator_delabAppWithUnexpander_go___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +_start: +{ +lean_object* x_9; +x_9 = l_Lean_PrettyPrinter_Delaborator_delabAppWithUnexpander_go(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_1); +return x_9; +} +} lean_object* l_Lean_PrettyPrinter_Delaborator_delabAppWithUnexpander___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) { _start: { @@ -5749,6 +6074,10 @@ x_9 = lean_ctor_get(x_8, 0); lean_inc(x_9); lean_dec(x_8); lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +lean_inc(x_2); x_10 = l_Lean_PrettyPrinter_Delaborator_delabAppImplicit(x_2, x_3, x_4, x_5, x_6, x_7); if (lean_obj_tag(x_10) == 0) { @@ -5764,427 +6093,186 @@ lean_inc(x_12); x_15 = l_Lean_Syntax_isOfKind(x_12, x_14); if (x_15 == 0) { +lean_object* x_16; uint8_t x_17; +x_16 = l_Lean_identKind___closed__2; +lean_inc(x_12); +x_17 = l_Lean_Syntax_isOfKind(x_12, x_16); +if (x_17 == 0) +{ lean_dec(x_9); lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); return x_10; } else { -lean_object* x_16; lean_object* x_17; lean_object* x_18; uint8_t x_19; -x_16 = lean_unsigned_to_nat(0u); -x_17 = l_Lean_Syntax_getArg(x_12, x_16); -x_18 = l_Lean_identKind___closed__2; -x_19 = l_Lean_Syntax_isOfKind(x_17, x_18); -if (x_19 == 0) -{ -lean_dec(x_9); -lean_dec(x_6); -return x_10; -} -else -{ -lean_object* x_20; uint8_t x_21; +lean_object* x_18; lean_free_object(x_10); -x_20 = lean_st_ref_get(x_6, x_13); +x_18 = l_Lean_PrettyPrinter_Delaborator_delabAppWithUnexpander_go(x_9, x_12, x_2, x_3, x_4, x_5, x_6, x_13); lean_dec(x_6); -x_21 = !lean_is_exclusive(x_20); -if (x_21 == 0) -{ -lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; -x_22 = lean_ctor_get(x_20, 0); -x_23 = lean_ctor_get(x_20, 1); -x_24 = lean_ctor_get(x_22, 0); -lean_inc(x_24); -lean_dec(x_22); -x_25 = l_Lean_PrettyPrinter_Delaborator_appUnexpanderAttribute; -x_26 = lean_ctor_get(x_25, 2); -lean_inc(x_26); -x_27 = l_Lean_PersistentEnvExtension_getState___rarg(x_26, x_24); -lean_dec(x_24); -lean_dec(x_26); -x_28 = lean_ctor_get(x_27, 1); -lean_inc(x_28); -lean_dec(x_27); -x_29 = l_Lean_SMap_find_x3f___at_Lean_PrettyPrinter_Delaborator_delabAppWithUnexpander___spec__1(x_28, x_9); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); lean_dec(x_9); -if (lean_obj_tag(x_29) == 0) -{ -lean_ctor_set(x_20, 0, x_12); -return x_20; +return x_18; +} } else { +lean_object* x_19; lean_object* x_20; lean_object* x_21; uint8_t x_22; +x_19 = lean_unsigned_to_nat(0u); +x_20 = l_Lean_Syntax_getArg(x_12, x_19); +x_21 = l_Lean_identKind___closed__2; +x_22 = l_Lean_Syntax_isOfKind(x_20, x_21); +if (x_22 == 0) +{ +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +return x_10; +} +else +{ +lean_object* x_23; +lean_free_object(x_10); +x_23 = l_Lean_PrettyPrinter_Delaborator_delabAppWithUnexpander_go(x_9, x_12, x_2, x_3, x_4, x_5, x_6, x_13); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_9); +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_10, 0); +x_25 = lean_ctor_get(x_10, 1); +lean_inc(x_25); +lean_inc(x_24); +lean_dec(x_10); +x_26 = l_myMacro____x40_Init_Notation___hyg_2191____closed__4; +lean_inc(x_24); +x_27 = l_Lean_Syntax_isOfKind(x_24, x_26); +if (x_27 == 0) +{ +lean_object* x_28; uint8_t x_29; +x_28 = l_Lean_identKind___closed__2; +lean_inc(x_24); +x_29 = l_Lean_Syntax_isOfKind(x_24, x_28); +if (x_29 == 0) +{ lean_object* x_30; -x_30 = lean_ctor_get(x_29, 0); -lean_inc(x_30); -lean_dec(x_29); -if (lean_obj_tag(x_30) == 0) -{ -lean_ctor_set(x_20, 0, x_12); -return x_20; +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_30 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_30, 0, x_24); +lean_ctor_set(x_30, 1, x_25); +return x_30; } else { -lean_object* x_31; lean_object* x_32; lean_object* x_33; -lean_free_object(x_20); -x_31 = lean_ctor_get(x_30, 0); -lean_inc(x_31); -lean_dec(x_30); -x_32 = lean_box(0); -lean_inc(x_12); -x_33 = lean_apply_2(x_31, x_12, x_32); -if (lean_obj_tag(x_33) == 0) -{ -uint8_t x_34; -lean_dec(x_12); -x_34 = !lean_is_exclusive(x_33); -if (x_34 == 0) -{ -lean_object* x_35; -x_35 = lean_ctor_get(x_33, 1); -lean_dec(x_35); -lean_ctor_set(x_33, 1, x_23); -return x_33; +lean_object* x_31; +x_31 = l_Lean_PrettyPrinter_Delaborator_delabAppWithUnexpander_go(x_9, x_24, x_2, x_3, x_4, x_5, x_6, x_25); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_9); +return x_31; +} } else { -lean_object* x_36; lean_object* x_37; -x_36 = lean_ctor_get(x_33, 0); -lean_inc(x_36); -lean_dec(x_33); -x_37 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_37, 0, x_36); -lean_ctor_set(x_37, 1, x_23); +lean_object* x_32; lean_object* x_33; lean_object* x_34; uint8_t x_35; +x_32 = lean_unsigned_to_nat(0u); +x_33 = l_Lean_Syntax_getArg(x_24, x_32); +x_34 = l_Lean_identKind___closed__2; +x_35 = l_Lean_Syntax_isOfKind(x_33, x_34); +if (x_35 == 0) +{ +lean_object* x_36; +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_36 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_36, 0, x_24); +lean_ctor_set(x_36, 1, x_25); +return x_36; +} +else +{ +lean_object* x_37; +x_37 = l_Lean_PrettyPrinter_Delaborator_delabAppWithUnexpander_go(x_9, x_24, x_2, x_3, x_4, x_5, x_6, x_25); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_9); return x_37; } } +} +} else { uint8_t x_38; -x_38 = !lean_is_exclusive(x_33); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_38 = !lean_is_exclusive(x_10); if (x_38 == 0) { -lean_object* x_39; lean_object* x_40; -x_39 = lean_ctor_get(x_33, 1); -lean_dec(x_39); -x_40 = lean_ctor_get(x_33, 0); -lean_dec(x_40); -lean_ctor_set_tag(x_33, 0); -lean_ctor_set(x_33, 1, x_23); -lean_ctor_set(x_33, 0, x_12); -return x_33; -} -else -{ -lean_object* x_41; -lean_dec(x_33); -x_41 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_41, 0, x_12); -lean_ctor_set(x_41, 1, x_23); -return x_41; -} -} -} -} -} -else -{ -lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; -x_42 = lean_ctor_get(x_20, 0); -x_43 = lean_ctor_get(x_20, 1); -lean_inc(x_43); -lean_inc(x_42); -lean_dec(x_20); -x_44 = lean_ctor_get(x_42, 0); -lean_inc(x_44); -lean_dec(x_42); -x_45 = l_Lean_PrettyPrinter_Delaborator_appUnexpanderAttribute; -x_46 = lean_ctor_get(x_45, 2); -lean_inc(x_46); -x_47 = l_Lean_PersistentEnvExtension_getState___rarg(x_46, x_44); -lean_dec(x_44); -lean_dec(x_46); -x_48 = lean_ctor_get(x_47, 1); -lean_inc(x_48); -lean_dec(x_47); -x_49 = l_Lean_SMap_find_x3f___at_Lean_PrettyPrinter_Delaborator_delabAppWithUnexpander___spec__1(x_48, x_9); -lean_dec(x_9); -if (lean_obj_tag(x_49) == 0) -{ -lean_object* x_50; -x_50 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_50, 0, x_12); -lean_ctor_set(x_50, 1, x_43); -return x_50; -} -else -{ -lean_object* x_51; -x_51 = lean_ctor_get(x_49, 0); -lean_inc(x_51); -lean_dec(x_49); -if (lean_obj_tag(x_51) == 0) -{ -lean_object* x_52; -x_52 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_52, 0, x_12); -lean_ctor_set(x_52, 1, x_43); -return x_52; -} -else -{ -lean_object* x_53; lean_object* x_54; lean_object* x_55; -x_53 = lean_ctor_get(x_51, 0); -lean_inc(x_53); -lean_dec(x_51); -x_54 = lean_box(0); -lean_inc(x_12); -x_55 = lean_apply_2(x_53, x_12, x_54); -if (lean_obj_tag(x_55) == 0) -{ -lean_object* x_56; lean_object* x_57; lean_object* x_58; -lean_dec(x_12); -x_56 = lean_ctor_get(x_55, 0); -lean_inc(x_56); -if (lean_is_exclusive(x_55)) { - lean_ctor_release(x_55, 0); - lean_ctor_release(x_55, 1); - x_57 = x_55; -} else { - lean_dec_ref(x_55); - x_57 = lean_box(0); -} -if (lean_is_scalar(x_57)) { - x_58 = lean_alloc_ctor(0, 2, 0); -} else { - x_58 = x_57; -} -lean_ctor_set(x_58, 0, x_56); -lean_ctor_set(x_58, 1, x_43); -return x_58; -} -else -{ -lean_object* x_59; lean_object* x_60; -if (lean_is_exclusive(x_55)) { - lean_ctor_release(x_55, 0); - lean_ctor_release(x_55, 1); - x_59 = x_55; -} else { - lean_dec_ref(x_55); - x_59 = lean_box(0); -} -if (lean_is_scalar(x_59)) { - x_60 = lean_alloc_ctor(0, 2, 0); -} else { - x_60 = x_59; - lean_ctor_set_tag(x_60, 0); -} -lean_ctor_set(x_60, 0, x_12); -lean_ctor_set(x_60, 1, x_43); -return x_60; -} -} -} -} -} -} -} -else -{ -lean_object* x_61; lean_object* x_62; lean_object* x_63; uint8_t x_64; -x_61 = lean_ctor_get(x_10, 0); -x_62 = lean_ctor_get(x_10, 1); -lean_inc(x_62); -lean_inc(x_61); -lean_dec(x_10); -x_63 = l_myMacro____x40_Init_Notation___hyg_2191____closed__4; -lean_inc(x_61); -x_64 = l_Lean_Syntax_isOfKind(x_61, x_63); -if (x_64 == 0) -{ -lean_object* x_65; -lean_dec(x_9); -lean_dec(x_6); -x_65 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_65, 0, x_61); -lean_ctor_set(x_65, 1, x_62); -return x_65; -} -else -{ -lean_object* x_66; lean_object* x_67; lean_object* x_68; uint8_t x_69; -x_66 = lean_unsigned_to_nat(0u); -x_67 = l_Lean_Syntax_getArg(x_61, x_66); -x_68 = l_Lean_identKind___closed__2; -x_69 = l_Lean_Syntax_isOfKind(x_67, x_68); -if (x_69 == 0) -{ -lean_object* x_70; -lean_dec(x_9); -lean_dec(x_6); -x_70 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_70, 0, x_61); -lean_ctor_set(x_70, 1, x_62); -return x_70; -} -else -{ -lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; -x_71 = lean_st_ref_get(x_6, x_62); -lean_dec(x_6); -x_72 = lean_ctor_get(x_71, 0); -lean_inc(x_72); -x_73 = lean_ctor_get(x_71, 1); -lean_inc(x_73); -if (lean_is_exclusive(x_71)) { - lean_ctor_release(x_71, 0); - lean_ctor_release(x_71, 1); - x_74 = x_71; -} else { - lean_dec_ref(x_71); - x_74 = lean_box(0); -} -x_75 = lean_ctor_get(x_72, 0); -lean_inc(x_75); -lean_dec(x_72); -x_76 = l_Lean_PrettyPrinter_Delaborator_appUnexpanderAttribute; -x_77 = lean_ctor_get(x_76, 2); -lean_inc(x_77); -x_78 = l_Lean_PersistentEnvExtension_getState___rarg(x_77, x_75); -lean_dec(x_75); -lean_dec(x_77); -x_79 = lean_ctor_get(x_78, 1); -lean_inc(x_79); -lean_dec(x_78); -x_80 = l_Lean_SMap_find_x3f___at_Lean_PrettyPrinter_Delaborator_delabAppWithUnexpander___spec__1(x_79, x_9); -lean_dec(x_9); -if (lean_obj_tag(x_80) == 0) -{ -lean_object* x_81; -if (lean_is_scalar(x_74)) { - x_81 = lean_alloc_ctor(0, 2, 0); -} else { - x_81 = x_74; -} -lean_ctor_set(x_81, 0, x_61); -lean_ctor_set(x_81, 1, x_73); -return x_81; -} -else -{ -lean_object* x_82; -x_82 = lean_ctor_get(x_80, 0); -lean_inc(x_82); -lean_dec(x_80); -if (lean_obj_tag(x_82) == 0) -{ -lean_object* x_83; -if (lean_is_scalar(x_74)) { - x_83 = lean_alloc_ctor(0, 2, 0); -} else { - x_83 = x_74; -} -lean_ctor_set(x_83, 0, x_61); -lean_ctor_set(x_83, 1, x_73); -return x_83; -} -else -{ -lean_object* x_84; lean_object* x_85; lean_object* x_86; -lean_dec(x_74); -x_84 = lean_ctor_get(x_82, 0); -lean_inc(x_84); -lean_dec(x_82); -x_85 = lean_box(0); -lean_inc(x_61); -x_86 = lean_apply_2(x_84, x_61, x_85); -if (lean_obj_tag(x_86) == 0) -{ -lean_object* x_87; lean_object* x_88; lean_object* x_89; -lean_dec(x_61); -x_87 = lean_ctor_get(x_86, 0); -lean_inc(x_87); -if (lean_is_exclusive(x_86)) { - lean_ctor_release(x_86, 0); - lean_ctor_release(x_86, 1); - x_88 = x_86; -} else { - lean_dec_ref(x_86); - x_88 = lean_box(0); -} -if (lean_is_scalar(x_88)) { - x_89 = lean_alloc_ctor(0, 2, 0); -} else { - x_89 = x_88; -} -lean_ctor_set(x_89, 0, x_87); -lean_ctor_set(x_89, 1, x_73); -return x_89; -} -else -{ -lean_object* x_90; lean_object* x_91; -if (lean_is_exclusive(x_86)) { - lean_ctor_release(x_86, 0); - lean_ctor_release(x_86, 1); - x_90 = x_86; -} else { - lean_dec_ref(x_86); - x_90 = lean_box(0); -} -if (lean_is_scalar(x_90)) { - x_91 = lean_alloc_ctor(0, 2, 0); -} else { - x_91 = x_90; - lean_ctor_set_tag(x_91, 0); -} -lean_ctor_set(x_91, 0, x_61); -lean_ctor_set(x_91, 1, x_73); -return x_91; -} -} -} -} -} -} -} -else -{ -uint8_t x_92; -lean_dec(x_9); -lean_dec(x_6); -x_92 = !lean_is_exclusive(x_10); -if (x_92 == 0) -{ return x_10; } else { -lean_object* x_93; lean_object* x_94; lean_object* x_95; -x_93 = lean_ctor_get(x_10, 0); -x_94 = lean_ctor_get(x_10, 1); -lean_inc(x_94); -lean_inc(x_93); +lean_object* x_39; lean_object* x_40; lean_object* x_41; +x_39 = lean_ctor_get(x_10, 0); +x_40 = lean_ctor_get(x_10, 1); +lean_inc(x_40); +lean_inc(x_39); lean_dec(x_10); -x_95 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_95, 0, x_93); -lean_ctor_set(x_95, 1, x_94); -return x_95; +x_41 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_41, 0, x_39); +lean_ctor_set(x_41, 1, x_40); +return x_41; } } } else { -lean_object* x_96; +lean_object* x_42; lean_dec(x_8); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); -x_96 = l_Lean_PrettyPrinter_Delaborator_failure___rarg(x_7); -return x_96; +x_42 = l_Lean_PrettyPrinter_Delaborator_failure___rarg(x_7); +return x_42; } } } @@ -6226,66 +6314,6 @@ x_9 = l_Lean_PrettyPrinter_Delaborator_whenPPOption(x_7, x_8, x_1, x_2, x_3, x_4 return x_9; } } -lean_object* l_Std_PersistentHashMap_findAtAux___at_Lean_PrettyPrinter_Delaborator_delabAppWithUnexpander___spec__4___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_Std_PersistentHashMap_findAtAux___at_Lean_PrettyPrinter_Delaborator_delabAppWithUnexpander___spec__4(x_1, x_2, x_3, x_4, x_5); -lean_dec(x_5); -lean_dec(x_2); -lean_dec(x_1); -return x_6; -} -} -lean_object* l_Std_PersistentHashMap_findAux___at_Lean_PrettyPrinter_Delaborator_delabAppWithUnexpander___spec__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { -_start: -{ -size_t x_4; lean_object* x_5; -x_4 = lean_unbox_usize(x_2); -lean_dec(x_2); -x_5 = l_Std_PersistentHashMap_findAux___at_Lean_PrettyPrinter_Delaborator_delabAppWithUnexpander___spec__3(x_1, x_4, x_3); -lean_dec(x_3); -return x_5; -} -} -lean_object* l_Std_PersistentHashMap_find_x3f___at_Lean_PrettyPrinter_Delaborator_delabAppWithUnexpander___spec__2___boxed(lean_object* x_1, lean_object* x_2) { -_start: -{ -lean_object* x_3; -x_3 = l_Std_PersistentHashMap_find_x3f___at_Lean_PrettyPrinter_Delaborator_delabAppWithUnexpander___spec__2(x_1, x_2); -lean_dec(x_2); -return x_3; -} -} -lean_object* l_Std_AssocList_find_x3f___at_Lean_PrettyPrinter_Delaborator_delabAppWithUnexpander___spec__6___boxed(lean_object* x_1, lean_object* x_2) { -_start: -{ -lean_object* x_3; -x_3 = l_Std_AssocList_find_x3f___at_Lean_PrettyPrinter_Delaborator_delabAppWithUnexpander___spec__6(x_1, x_2); -lean_dec(x_2); -lean_dec(x_1); -return x_3; -} -} -lean_object* l_Std_HashMapImp_find_x3f___at_Lean_PrettyPrinter_Delaborator_delabAppWithUnexpander___spec__5___boxed(lean_object* x_1, lean_object* x_2) { -_start: -{ -lean_object* x_3; -x_3 = l_Std_HashMapImp_find_x3f___at_Lean_PrettyPrinter_Delaborator_delabAppWithUnexpander___spec__5(x_1, x_2); -lean_dec(x_2); -lean_dec(x_1); -return x_3; -} -} -lean_object* l_Lean_SMap_find_x3f___at_Lean_PrettyPrinter_Delaborator_delabAppWithUnexpander___spec__1___boxed(lean_object* x_1, lean_object* x_2) { -_start: -{ -lean_object* x_3; -x_3 = l_Lean_SMap_find_x3f___at_Lean_PrettyPrinter_Delaborator_delabAppWithUnexpander___spec__1(x_1, x_2); -lean_dec(x_2); -return x_3; -} -} lean_object* l_Lean_PrettyPrinter_Delaborator_delabAppWithUnexpander___lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { @@ -11896,7 +11924,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; x_1 = l_Lean_PrettyPrinter_Delaborator_delabFVar___closed__1; x_2 = l_Lean_PrettyPrinter_Delaborator_delabMData___closed__1; -x_3 = lean_unsigned_to_nat(253u); +x_3 = lean_unsigned_to_nat(256u); x_4 = lean_unsigned_to_nat(35u); x_5 = l_Lean_Name_getString_x21___closed__3; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -14058,7 +14086,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; x_1 = l_Lean_PrettyPrinter_Delaborator_delabFVar___closed__1; x_2 = l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__3___closed__1; -x_3 = lean_unsigned_to_nat(345u); +x_3 = lean_unsigned_to_nat(348u); x_4 = lean_unsigned_to_nat(44u); x_5 = l_Lean_Name_getString_x21___closed__3; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -17327,7 +17355,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; x_1 = l_Lean_PrettyPrinter_Delaborator_delabFVar___closed__1; x_2 = l_Lean_PrettyPrinter_Delaborator_delabLetE___closed__1; -x_3 = lean_unsigned_to_nat(381u); +x_3 = lean_unsigned_to_nat(384u); x_4 = lean_unsigned_to_nat(38u); x_5 = l_Lean_Name_getString_x21___closed__3; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -17769,7 +17797,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; x_1 = l_Lean_PrettyPrinter_Delaborator_delabFVar___closed__1; x_2 = l_Lean_PrettyPrinter_Delaborator_delabLit___closed__1; -x_3 = lean_unsigned_to_nat(392u); +x_3 = lean_unsigned_to_nat(395u); x_4 = lean_unsigned_to_nat(31u); x_5 = l_Lean_Name_getString_x21___closed__3; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -19226,7 +19254,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; x_1 = l_Lean_PrettyPrinter_Delaborator_delabFVar___closed__1; x_2 = l_Lean_PrettyPrinter_Delaborator_delabProj___closed__1; -x_3 = lean_unsigned_to_nat(431u); +x_3 = lean_unsigned_to_nat(434u); x_4 = lean_unsigned_to_nat(38u); x_5 = l_Lean_Name_getString_x21___closed__3; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -25249,7 +25277,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; x_1 = l_Lean_PrettyPrinter_Delaborator_delabFVar___closed__1; x_2 = l_Lean_PrettyPrinter_Delaborator_delabDoElems___closed__1; -x_3 = lean_unsigned_to_nat(581u); +x_3 = lean_unsigned_to_nat(584u); x_4 = lean_unsigned_to_nat(40u); x_5 = l_Lean_Name_getString_x21___closed__3; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); diff --git a/stage0/stdlib/Lean/PrettyPrinter/Formatter.c b/stage0/stdlib/Lean/PrettyPrinter/Formatter.c index dea0c609a5..e05690ef65 100644 --- a/stage0/stdlib/Lean/PrettyPrinter/Formatter.c +++ b/stage0/stdlib/Lean/PrettyPrinter/Formatter.c @@ -70,6 +70,7 @@ lean_object* l_Lean_PrettyPrinter_Formatter_visitArgs___lambda__1___boxed(lean_o lean_object* lean_mk_antiquot_formatter(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Formatter_symbolNoAntiquot_formatter___closed__2; lean_object* l_Lean_PrettyPrinter_Formatter_atomic_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_instInhabitedKeyedDeclsAttribute___closed__4; lean_object* l_Lean_PrettyPrinter_Formatter_trailingNode_formatter___lambda__1___closed__1; lean_object* l_Lean_PrettyPrinter_Formatter_checkInsideQuot_formatter___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Formatter_manyNoAntiquot_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -278,7 +279,6 @@ lean_object* l_Lean_PrettyPrinter_Formatter_mkAntiquot_formatter_x27___boxed(lea lean_object* l_Lean_Syntax_MonadTraverser_goUp___at_Lean_PrettyPrinter_Formatter_visitArgs___spec__4___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Init_Util_0__mkPanicMessageWithDecl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_reverse___rarg(lean_object*); -extern lean_object* l_Lean_instInhabitedKeyedDeclsAttribute___closed__1; lean_object* l_Lean_PrettyPrinter_Formatter_identNoAntiquot_formatter___closed__2; extern lean_object* l_Lean_KernelException_toMessageData___closed__15; uint8_t l_Substring_beq(lean_object*, lean_object*); diff --git a/stage0/stdlib/Lean/PrettyPrinter/Parenthesizer.c b/stage0/stdlib/Lean/PrettyPrinter/Parenthesizer.c index 062fdb9a29..bd3468a370 100644 --- a/stage0/stdlib/Lean/PrettyPrinter/Parenthesizer.c +++ b/stage0/stdlib/Lean/PrettyPrinter/Parenthesizer.c @@ -73,6 +73,7 @@ lean_object* l_Lean_PrettyPrinter_mkCategoryParenthesizerAttribute___closed__7; lean_object* l_Lean_PrettyPrinter_Parenthesizer_instMonadQuotationParenthesizerM___closed__10; lean_object* l_Lean_PrettyPrinter_mkParenthesizerAttribute___closed__10; lean_object* l_Lean_PrettyPrinter_Parenthesizer_maybeParenthesize___closed__3; +extern lean_object* l_Lean_instInhabitedKeyedDeclsAttribute___closed__4; lean_object* l_Lean_throwError___at_Lean_PrettyPrinter_parenthesize___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_ReaderT_map___at_Lean_PrettyPrinter_Parenthesizer_instMonadTraverserParenthesizerM___spec__1___at_Lean_PrettyPrinter_Parenthesizer_instMonadTraverserParenthesizerM___spec__2(lean_object*); lean_object* l_Lean_Syntax_MonadTraverser_goLeft___at_Lean_PrettyPrinter_Parenthesizer_visitToken___spec__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); @@ -301,7 +302,6 @@ lean_object* l_Lean_PrettyPrinter_Parenthesizer_many1Unbox_parenthesizer(lean_ob lean_object* l_Lean_PrettyPrinter_Parenthesizer_instMonadQuotationParenthesizerM___closed__4; lean_object* l___private_Init_Util_0__mkPanicMessageWithDecl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_reverse___rarg(lean_object*); -extern lean_object* l_Lean_instInhabitedKeyedDeclsAttribute___closed__1; lean_object* l_Lean_Syntax_MonadTraverser_getCur___at_Lean_PrettyPrinter_Parenthesizer_visitArgs___spec__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_KernelException_toMessageData___closed__15; lean_object* l_Lean_PrettyPrinter_Parenthesizer_pushNone_parenthesizer___boxed(lean_object*);