From fb55ec29e1949565d9a78971be01ce4e7fc35191 Mon Sep 17 00:00:00 2001 From: Leonardo de Moura Date: Tue, 14 Jun 2022 17:14:44 -0700 Subject: [PATCH] chore: update stage0 --- stage0/src/Init/Control/Basic.lean | 4 +- stage0/src/Init/Core.lean | 4 +- stage0/src/Init/Data/Float.lean | 76 +- stage0/src/Init/Data/String/Extra.lean | 4 +- stage0/src/Init/Meta.lean | 8 +- stage0/src/Init/Prelude.lean | 26 +- stage0/src/Init/System/IO.lean | 80 +- stage0/src/Init/System/ST.lean | 14 +- stage0/src/Lean/Attributes.lean | 2 +- stage0/src/Lean/Compiler/ExternAttr.lean | 2 +- stage0/src/Lean/Compiler/IR/Checker.lean | 6 +- stage0/src/Lean/Compiler/IR/CtorLayout.lean | 2 +- stage0/src/Lean/Compiler/InitAttr.lean | 2 +- stage0/src/Lean/Declaration.lean | 4 +- stage0/src/Lean/Elab/BuiltinCommand.lean | 2 +- stage0/src/Lean/Elab/Command.lean | 2 +- stage0/src/Lean/Elab/Declaration.lean | 7 +- stage0/src/Lean/Elab/DefView.lean | 3 - stage0/src/Lean/Elab/MutualDef.lean | 2 +- stage0/src/Lean/Elab/Print.lean | 2 +- stage0/src/Lean/Elab/Structure.lean | 2 +- stage0/src/Lean/Elab/Term.lean | 2 +- stage0/src/Lean/Elab/Util.lean | 4 +- stage0/src/Lean/Environment.lean | 30 +- stage0/src/Lean/Expr.lean | 30 +- stage0/src/Lean/Linter/Basic.lean | 2 +- stage0/src/Lean/LoadDynlib.lean | 2 +- stage0/src/Lean/Meta/ACLt.lean | 2 +- stage0/src/Lean/Meta/Match/MatchEqsExt.lean | 2 +- stage0/src/Lean/Meta/WHNF.lean | 6 +- stage0/src/Lean/Parser/Command.lean | 3 +- stage0/src/Lean/Parser/Extension.lean | 4 +- stage0/src/Lean/PrettyPrinter/Formatter.lean | 6 +- .../src/Lean/PrettyPrinter/Parenthesizer.lean | 6 +- stage0/src/Lean/Runtime.lean | 4 +- stage0/src/Lean/ScopedEnvExtension.lean | 2 +- stage0/src/Lean/Server/Rpc/Deriving.lean | 6 +- .../src/Lean/Server/Rpc/RequestHandling.lean | 2 +- stage0/src/Lean/Util/FindExpr.lean | 2 +- stage0/src/Lean/Util/FoldConsts.lean | 2 +- stage0/src/Lean/Util/HasConstCache.lean | 2 +- stage0/src/Std/ShareCommon.lean | 8 +- stage0/stdlib/Lean/Elab/BuiltinCommand.c | 12 +- stage0/stdlib/Lean/Elab/Declaration.c | 3202 ++++++++--------- stage0/stdlib/Lean/Elab/DefView.c | 234 +- stage0/stdlib/Lean/Elab/Print.c | 2 +- stage0/stdlib/Lean/Linter/Basic.c | 2 +- stage0/stdlib/Lean/Parser/Command.c | 1949 +++------- stage0/stdlib/Lean/Server/Rpc/Deriving.c | 2 +- 49 files changed, 2363 insertions(+), 3421 deletions(-) diff --git a/stage0/src/Init/Control/Basic.lean b/stage0/src/Init/Control/Basic.lean index f4630fb3e0..23394c7b76 100644 --- a/stage0/src/Init/Control/Basic.lean +++ b/stage0/src/Init/Control/Basic.lean @@ -75,8 +75,8 @@ Suppose we have `foo : ∀ α, IO α → IO α` and `bar : StateT σ IO β` (ie, We might want to 'map' `bar` by `foo`. Concretely we would write this as: ```lean -constant foo : ∀ {α}, IO α → IO α -constant bar : StateT σ IO β +opaque foo : ∀ {α}, IO α → IO α +opaque bar : StateT σ IO β def mapped_foo : StateT σ IO β := do let s ← get diff --git a/stage0/src/Init/Core.lean b/stage0/src/Init/Core.lean index 91ed3a4d6e..8b07a1e298 100644 --- a/stage0/src/Init/Core.lean +++ b/stage0/src/Init/Core.lean @@ -1109,7 +1109,7 @@ namespace Lean If an extern function is executed, then the trusted code base will also include the implementation of the associated foreign function. -/ -constant reduceBool (b : Bool) : Bool := b +opaque reduceBool (b : Bool) : Bool := b /-- Similar to `Lean.reduceBool` for closed `Nat` terms. @@ -1117,7 +1117,7 @@ constant reduceBool (b : Bool) : Bool := b Remark: we do not have plans for supporting a generic `reduceValue {α} (a : α) : α := a`. The main issue is that it is non-trivial to convert an arbitrary runtime object back into a Lean expression. We believe `Lean.reduceBool` enables most interesting applications (e.g., proof by reflection). -/ -constant reduceNat (n : Nat) : Nat := n +opaque reduceNat (n : Nat) : Nat := n axiom ofReduceBool (a b : Bool) (h : reduceBool a = b) : a = b axiom ofReduceNat (a b : Nat) (h : reduceNat a = b) : a = b diff --git a/stage0/src/Init/Data/Float.lean b/stage0/src/Init/Data/Float.lean index 6743d7675a..c63ec5d339 100644 --- a/stage0/src/Init/Data/Float.lean +++ b/stage0/src/Init/Data/Float.lean @@ -17,7 +17,7 @@ structure FloatSpec where decLe : DecidableRel le -- Just show FloatSpec is inhabited. -constant floatSpec : FloatSpec := { +opaque floatSpec : FloatSpec := { float := Unit, val := (), lt := fun _ _ => True, @@ -31,11 +31,11 @@ structure Float where instance : Inhabited Float := ⟨{ val := floatSpec.val }⟩ -@[extern "lean_float_add"] constant Float.add : Float → Float → Float -@[extern "lean_float_sub"] constant Float.sub : Float → Float → Float -@[extern "lean_float_mul"] constant Float.mul : Float → Float → Float -@[extern "lean_float_div"] constant Float.div : Float → Float → Float -@[extern "lean_float_negate"] constant Float.neg : Float → Float +@[extern "lean_float_add"] opaque Float.add : Float → Float → Float +@[extern "lean_float_sub"] opaque Float.sub : Float → Float → Float +@[extern "lean_float_mul"] opaque Float.mul : Float → Float → Float +@[extern "lean_float_div"] opaque Float.div : Float → Float → Float +@[extern "lean_float_negate"] opaque Float.neg : Float → Float set_option bootstrap.genMatcherCode false def Float.lt : Float → Float → Prop := fun a b => @@ -53,28 +53,28 @@ instance : Neg Float := ⟨Float.neg⟩ instance : LT Float := ⟨Float.lt⟩ instance : LE Float := ⟨Float.le⟩ -@[extern "lean_float_beq"] constant Float.beq (a b : Float) : Bool +@[extern "lean_float_beq"] opaque Float.beq (a b : Float) : Bool instance : BEq Float := ⟨Float.beq⟩ -@[extern "lean_float_decLt"] constant Float.decLt (a b : Float) : Decidable (a < b) := +@[extern "lean_float_decLt"] opaque Float.decLt (a b : Float) : Decidable (a < b) := match a, b with | ⟨a⟩, ⟨b⟩ => floatSpec.decLt a b -@[extern "lean_float_decLe"] constant Float.decLe (a b : Float) : Decidable (a ≤ b) := +@[extern "lean_float_decLe"] opaque Float.decLe (a b : Float) : Decidable (a ≤ b) := match a, b with | ⟨a⟩, ⟨b⟩ => floatSpec.decLe a b instance floatDecLt (a b : Float) : Decidable (a < b) := Float.decLt a b instance floatDecLe (a b : Float) : Decidable (a ≤ b) := Float.decLe a b -@[extern "lean_float_to_string"] constant Float.toString : Float → String +@[extern "lean_float_to_string"] opaque Float.toString : Float → String -@[extern "lean_float_to_uint8"] constant Float.toUInt8 : Float → UInt8 -@[extern "lean_float_to_uint16"] constant Float.toUInt16 : Float → UInt16 -@[extern "lean_float_to_uint32"] constant Float.toUInt32 : Float → UInt32 -@[extern "lean_float_to_uint64"] constant Float.toUInt64 : Float → UInt64 -@[extern "lean_float_to_usize"] constant Float.toUSize : Float → USize +@[extern "lean_float_to_uint8"] opaque Float.toUInt8 : Float → UInt8 +@[extern "lean_float_to_uint16"] opaque Float.toUInt16 : Float → UInt16 +@[extern "lean_float_to_uint32"] opaque Float.toUInt32 : Float → UInt32 +@[extern "lean_float_to_uint64"] opaque Float.toUInt64 : Float → UInt64 +@[extern "lean_float_to_usize"] opaque Float.toUSize : Float → USize instance : ToString Float where toString := Float.toString @@ -84,29 +84,29 @@ instance : Repr Float where instance : ReprAtom Float := ⟨⟩ -@[extern "lean_uint64_to_float"] constant UInt64.toFloat (n : UInt64) : Float +@[extern "lean_uint64_to_float"] opaque UInt64.toFloat (n : UInt64) : Float -@[extern "sin"] constant Float.sin : Float → Float -@[extern "cos"] constant Float.cos : Float → Float -@[extern "tan"] constant Float.tan : Float → Float -@[extern "asin"] constant Float.asin : Float → Float -@[extern "acos"] constant Float.acos : Float → Float -@[extern "atan"] constant Float.atan : Float → Float -@[extern "atan2"] constant Float.atan2 : Float → Float → Float -@[extern "sinh"] constant Float.sinh : Float → Float -@[extern "cosh"] constant Float.cosh : Float → Float -@[extern "tanh"] constant Float.tanh : Float → Float -@[extern "asinh"] constant Float.asinh : Float → Float -@[extern "acosh"] constant Float.acosh : Float → Float -@[extern "atanh"] constant Float.atanh : Float → Float -@[extern "exp"] constant Float.exp : Float → Float -@[extern "exp2"] constant Float.exp2 : Float → Float -@[extern "log"] constant Float.log : Float → Float -@[extern "log2"] constant Float.log2 : Float → Float -@[extern "log10"] constant Float.log10 : Float → Float -@[extern "pow"] constant Float.pow : Float → Float → Float -@[extern "sqrt"] constant Float.sqrt : Float → Float -@[extern "cbrt"] constant Float.cbrt : Float → Float +@[extern "sin"] opaque Float.sin : Float → Float +@[extern "cos"] opaque Float.cos : Float → Float +@[extern "tan"] opaque Float.tan : Float → Float +@[extern "asin"] opaque Float.asin : Float → Float +@[extern "acos"] opaque Float.acos : Float → Float +@[extern "atan"] opaque Float.atan : Float → Float +@[extern "atan2"] opaque Float.atan2 : Float → Float → Float +@[extern "sinh"] opaque Float.sinh : Float → Float +@[extern "cosh"] opaque Float.cosh : Float → Float +@[extern "tanh"] opaque Float.tanh : Float → Float +@[extern "asinh"] opaque Float.asinh : Float → Float +@[extern "acosh"] opaque Float.acosh : Float → Float +@[extern "atanh"] opaque Float.atanh : Float → Float +@[extern "exp"] opaque Float.exp : Float → Float +@[extern "exp2"] opaque Float.exp2 : Float → Float +@[extern "log"] opaque Float.log : Float → Float +@[extern "log2"] opaque Float.log2 : Float → Float +@[extern "log10"] opaque Float.log10 : Float → Float +@[extern "pow"] opaque Float.pow : Float → Float → Float +@[extern "sqrt"] opaque Float.sqrt : Float → Float +@[extern "cbrt"] opaque Float.cbrt : Float → Float instance : Pow Float Float := ⟨Float.pow⟩ @@ -114,4 +114,4 @@ instance : Pow Float Float := ⟨Float.pow⟩ Efficiently computes `x * 2^i`. -/ @[extern "lean_float_scaleb"] -constant Float.scaleB (x : Float) (i : @& Int) : Float +opaque Float.scaleB (x : Float) (i : @& Int) : Float diff --git a/stage0/src/Init/Data/String/Extra.lean b/stage0/src/Init/Data/String/Extra.lean index 935faaf1c8..18709a010a 100644 --- a/stage0/src/Init/Data/String/Extra.lean +++ b/stage0/src/Init/Data/String/Extra.lean @@ -23,10 +23,10 @@ def toNat! (s : String) : Nat := Convert a UTF-8 encoded `ByteArray` string to `String`. The result is unspecified if `a` is not properly UTF-8 encoded. -/ @[extern "lean_string_from_utf8_unchecked"] -constant fromUTF8Unchecked (a : @& ByteArray) : String +opaque fromUTF8Unchecked (a : @& ByteArray) : String @[extern "lean_string_to_utf8"] -constant toUTF8 (a : @& String) : ByteArray +opaque toUTF8 (a : @& String) : ByteArray theorem one_le_csize (c : Char) : 1 ≤ csize c := by simp [csize, Char.utf8Size] diff --git a/stage0/src/Init/Meta.lean b/stage0/src/Init/Meta.lean index ebc3b487bd..9f80fa21f5 100644 --- a/stage0/src/Init/Meta.lean +++ b/stage0/src/Init/Meta.lean @@ -23,16 +23,16 @@ private constant version.getPatch (u : Unit) : Nat def version.patch : Nat := version.getPatch () @[extern "lean_get_githash"] -constant getGithash (u : Unit) : String +opaque getGithash (u : Unit) : String def githash : String := getGithash () @[extern c inline "LEAN_VERSION_IS_RELEASE"] -constant version.getIsRelease (u : Unit) : Bool +opaque version.getIsRelease (u : Unit) : Bool def version.isRelease : Bool := version.getIsRelease () /-- Additional version description like "nightly-2018-03-11" -/ @[extern c inline "lean_mk_string(LEAN_SPECIAL_VERSION_DESC)"] -constant version.getSpecialDesc (u : Unit) : String +opaque version.getSpecialDesc (u : Unit) : String def version.specialDesc : String := version.getSpecialDesc () def versionStringCore := @@ -61,7 +61,7 @@ def toolchain := "" @[extern c inline "LEAN_IS_STAGE0"] -constant Internal.isStage0 (u : Unit) : Bool +opaque Internal.isStage0 (u : Unit) : Bool /- Valid identifier names -/ def isGreek (c : Char) : Bool := diff --git a/stage0/src/Init/Prelude.lean b/stage0/src/Init/Prelude.lean index c0f1466fee..17f767d578 100644 --- a/stage0/src/Init/Prelude.lean +++ b/stage0/src/Init/Prelude.lean @@ -89,14 +89,14 @@ theorem congrFun {α : Sort u} {β : α → Sort v} {f g : (x : α) → β x} ( /- Initialize the Quotient Module, which effectively adds the following definitions: -constant Quot {α : Sort u} (r : α → α → Prop) : Sort u +opaque Quot {α : Sort u} (r : α → α → Prop) : Sort u -constant Quot.mk {α : Sort u} (r : α → α → Prop) (a : α) : Quot r +opaque Quot.mk {α : Sort u} (r : α → α → Prop) (a : α) : Quot r -constant Quot.lift {α : Sort u} {r : α → α → Prop} {β : Sort v} (f : α → β) : +opaque Quot.lift {α : Sort u} {r : α → α → Prop} {β : Sort v} (f : α → β) : (∀ a b : α, r a b → Eq (f a) (f b)) → Quot r → β -constant Quot.ind {α : Sort u} {r : α → α → Prop} {β : Quot r → Prop} : +opaque Quot.ind {α : Sort u} {r : α → α → Prop} {β : Quot r → Prop} : (∀ a : α, β (Quot.mk r a)) → ∀ q : Quot r, β q -/ init_quot @@ -795,7 +795,7 @@ protected def Nat.sub : (@& Nat) → (@& Nat) → Nat instance : Sub Nat where sub := Nat.sub -@[extern "lean_system_platform_nbits"] constant System.Platform.getNumBits : Unit → Subtype fun (n : Nat) => Or (Eq n 32) (Eq n 64) := +@[extern "lean_system_platform_nbits"] opaque System.Platform.getNumBits : Unit → Subtype fun (n : Nat) => Or (Eq n 32) (Eq n 64) := fun _ => ⟨64, Or.inr rfl⟩ -- inhabitant def System.Platform.numBits : Nat := @@ -1207,7 +1207,7 @@ unsafe def unsafeCast {α : Type u} {β : Type v} (a : α) : β := ULift.down.{max u v} (cast lcProof (ULift.up.{max u v} a)) @[neverExtract, extern "lean_panic_fn"] -constant panicCore {α : Type u} [Inhabited α] (msg : String) : α +opaque panicCore {α : Type u} [Inhabited α] (msg : String) : α /- This is workaround for `panic` occurring in monadic code. See issue #695. @@ -1714,16 +1714,16 @@ class Hashable (α : Sort u) where export Hashable (hash) @[extern "lean_uint64_to_usize"] -constant UInt64.toUSize (u : UInt64) : USize +opaque UInt64.toUSize (u : UInt64) : USize @[extern "lean_usize_to_uint64"] -constant USize.toUInt64 (u : USize) : UInt64 +opaque USize.toUInt64 (u : USize) : UInt64 @[extern "lean_uint64_mix_hash"] -constant mixHash (u₁ u₂ : UInt64) : UInt64 +opaque mixHash (u₁ u₂ : UInt64) : UInt64 @[extern "lean_string_hash"] -protected constant String.hash (s : @& String) : UInt64 +protected opaque String.hash (s : @& String) : UInt64 instance : Hashable String where hash := String.hash @@ -2226,7 +2226,7 @@ end Syntax namespace Macro /- References -/ -private constant MethodsRefPointed : NonemptyType.{0} +private opaque MethodsRefPointed : NonemptyType.{0} private def MethodsRef : Type := MethodsRefPointed.type @@ -2302,7 +2302,7 @@ unsafe def mkMethodsImp (methods : Methods) : MethodsRef := unsafeCast methods @[implementedBy mkMethodsImp] -constant mkMethods (methods : Methods) : MethodsRef +opaque mkMethods (methods : Methods) : MethodsRef instance : Inhabited MethodsRef where default := mkMethods default @@ -2310,7 +2310,7 @@ instance : Inhabited MethodsRef where unsafe def getMethodsImp : MacroM Methods := bind read fun ctx => pure (unsafeCast (ctx.methods)) -@[implementedBy getMethodsImp] constant getMethods : MacroM Methods +@[implementedBy getMethodsImp] opaque getMethods : MacroM Methods /-- `expandMacro? stx` return `some stxNew` if `stx` is a macro, and `stxNew` is its expansion. -/ def expandMacro? (stx : Syntax) : MacroM (Option Syntax) := do diff --git a/stage0/src/Init/System/IO.lean b/stage0/src/Init/System/IO.lean index 747896b959..c861406cfd 100644 --- a/stage0/src/Init/System/IO.lean +++ b/stage0/src/Init/System/IO.lean @@ -109,17 +109,17 @@ namespace BaseIO to the task is dropped. The `act` should manually check for cancellation via `IO.checkCanceled` if it wants to react to that. -/ @[extern "lean_io_as_task"] -constant asTask (act : BaseIO α) (prio := Task.Priority.default) : BaseIO (Task α) := +opaque asTask (act : BaseIO α) (prio := Task.Priority.default) : BaseIO (Task α) := Task.pure <$> act /-- See `BaseIO.asTask`. -/ @[extern "lean_io_map_task"] -constant mapTask (f : α → BaseIO β) (t : Task α) (prio := Task.Priority.default) : BaseIO (Task β) := +opaque mapTask (f : α → BaseIO β) (t : Task α) (prio := Task.Priority.default) : BaseIO (Task β) := Task.pure <$> f t.get /-- See `BaseIO.asTask`. -/ @[extern "lean_io_bind_task"] -constant bindTask (t : Task α) (f : α → BaseIO (Task β)) (prio := Task.Priority.default) : BaseIO (Task β) := +opaque bindTask (t : Task α) (f : α → BaseIO (Task β)) (prio := Task.Priority.default) : BaseIO (Task β) := f t.get def mapTasks (f : List α → BaseIO β) (tasks : List (Task α)) (prio := Task.Priority.default) : BaseIO (Task β) := @@ -163,14 +163,14 @@ def lazyPure (fn : Unit → α) : IO α := pure (fn ()) /-- Monotonically increasing time since an unspecified past point in milliseconds. No relation to wall clock time. -/ -@[extern "lean_io_mono_ms_now"] constant monoMsNow : BaseIO Nat +@[extern "lean_io_mono_ms_now"] opaque monoMsNow : BaseIO Nat /-- Monotonically increasing time since an unspecified past point in nanoseconds. No relation to wall clock time. -/ -@[extern "lean_io_mono_nanos_now"] constant monoNanosNow : BaseIO Nat +@[extern "lean_io_mono_nanos_now"] opaque monoNanosNow : BaseIO Nat /-- Read bytes from a system entropy source. Not guaranteed to be cryptographically secure. If `nBytes = 0`, return immediately with an empty buffer. -/ -@[extern "lean_io_get_random_bytes"] constant getRandomBytes (nBytes : USize) : IO ByteArray +@[extern "lean_io_get_random_bytes"] opaque getRandomBytes (nBytes : USize) : IO ByteArray def sleep (ms : UInt32) : IO Unit := -- TODO: add a proper primitive for IO.sleep @@ -193,28 +193,28 @@ def sleep (ms : UInt32) : IO Unit := EIO.mapTasks f tasks prio /-- Check if the task's cancellation flag has been set by calling `IO.cancel` or dropping the last reference to the task. -/ -@[extern "lean_io_check_canceled"] constant checkCanceled : BaseIO Bool +@[extern "lean_io_check_canceled"] opaque checkCanceled : BaseIO Bool /-- Request cooperative cancellation of the task. The task must explicitly call `IO.checkCanceled` to react to the cancellation. -/ -@[extern "lean_io_cancel"] constant cancel : @& Task α → BaseIO Unit +@[extern "lean_io_cancel"] opaque cancel : @& Task α → BaseIO Unit /-- Check if the task has finished execution, at which point calling `Task.get` will return immediately. -/ -@[extern "lean_io_has_finished"] constant hasFinished : @& Task α → BaseIO Bool +@[extern "lean_io_has_finished"] opaque hasFinished : @& Task α → BaseIO Bool /-- Wait for the task to finish, then return its result. -/ -@[extern "lean_io_wait"] constant wait (t : Task α) : BaseIO α := +@[extern "lean_io_wait"] opaque wait (t : Task α) : BaseIO α := return t.get /-- Wait until any of the tasks in the given list has finished, then return its result. -/ -@[extern "lean_io_wait_any"] constant waitAny : @& List (Task α) → IO α +@[extern "lean_io_wait_any"] opaque waitAny : @& List (Task α) → IO α /-- Helper method for implementing "deterministic" timeouts. It is the number of "small" memory allocations performed by the current execution thread. -/ -@[extern "lean_io_get_num_heartbeats"] constant getNumHeartbeats : BaseIO Nat +@[extern "lean_io_get_num_heartbeats"] opaque getNumHeartbeats : BaseIO Nat inductive FS.Mode where | read | write | readWrite | append -constant FS.Handle : Type := Unit +opaque FS.Handle : Type := Unit /-- A pure-Lean abstraction of POSIX streams. We use `Stream`s for the standard streams stdin/stdout/stderr so we can @@ -230,16 +230,16 @@ structure FS.Stream where open FS -@[extern "lean_get_stdin"] constant getStdin : BaseIO FS.Stream -@[extern "lean_get_stdout"] constant getStdout : BaseIO FS.Stream -@[extern "lean_get_stderr"] constant getStderr : BaseIO FS.Stream +@[extern "lean_get_stdin"] opaque getStdin : BaseIO FS.Stream +@[extern "lean_get_stdout"] opaque getStdout : BaseIO FS.Stream +@[extern "lean_get_stderr"] opaque getStderr : BaseIO FS.Stream /-- Replaces the stdin stream of the current thread and returns its previous value. -/ -@[extern "lean_get_set_stdin"] constant setStdin : FS.Stream → BaseIO FS.Stream +@[extern "lean_get_set_stdin"] opaque setStdin : FS.Stream → BaseIO FS.Stream /-- Replaces the stdout stream of the current thread and returns its previous value. -/ -@[extern "lean_get_set_stdout"] constant setStdout : FS.Stream → BaseIO FS.Stream +@[extern "lean_get_set_stdout"] opaque setStdout : FS.Stream → BaseIO FS.Stream /-- Replaces the stderr stream of the current thread and returns its previous value. -/ -@[extern "lean_get_set_stderr"] constant setStderr : FS.Stream → BaseIO FS.Stream +@[extern "lean_get_set_stderr"] opaque setStderr : FS.Stream → BaseIO FS.Stream @[specialize] partial def iterate (a : α) (f : α → IO (Sum α β)) : IO β := do let v ← f a @@ -261,7 +261,7 @@ private def fopenFlags (m : FS.Mode) (b : Bool) : String := let bin := if b then "b" else "t" mode ++ bin -@[extern "lean_io_prim_handle_mk"] constant mkPrim (fn : @& FilePath) (mode : @& String) : IO Handle +@[extern "lean_io_prim_handle_mk"] opaque mkPrim (fn : @& FilePath) (mode : @& String) : IO Handle def mk (fn : FilePath) (Mode : Mode) (bin : Bool := true) : IO Handle := mkPrim fn (fopenFlags Mode bin) @@ -271,27 +271,27 @@ Returns whether the end of the file has been reached while reading a file. `h.isEof` returns true /after/ the first attempt at reading past the end of `h`. Once `h.isEof` is true, reading `h` will always return an empty array. -/ -@[extern "lean_io_prim_handle_is_eof"] constant isEof (h : @& Handle) : BaseIO Bool -@[extern "lean_io_prim_handle_flush"] constant flush (h : @& Handle) : IO Unit -@[extern "lean_io_prim_handle_read"] constant read (h : @& Handle) (bytes : USize) : IO ByteArray -@[extern "lean_io_prim_handle_write"] constant write (h : @& Handle) (buffer : @& ByteArray) : IO Unit +@[extern "lean_io_prim_handle_is_eof"] opaque isEof (h : @& Handle) : BaseIO Bool +@[extern "lean_io_prim_handle_flush"] opaque flush (h : @& Handle) : IO Unit +@[extern "lean_io_prim_handle_read"] opaque read (h : @& Handle) (bytes : USize) : IO ByteArray +@[extern "lean_io_prim_handle_write"] opaque write (h : @& Handle) (buffer : @& ByteArray) : IO Unit -@[extern "lean_io_prim_handle_get_line"] constant getLine (h : @& Handle) : IO String -@[extern "lean_io_prim_handle_put_str"] constant putStr (h : @& Handle) (s : @& String) : IO Unit +@[extern "lean_io_prim_handle_get_line"] opaque getLine (h : @& Handle) : IO String +@[extern "lean_io_prim_handle_put_str"] opaque putStr (h : @& Handle) (s : @& String) : IO Unit end Handle -@[extern "lean_io_realpath"] constant realPath (fname : FilePath) : IO FilePath -@[extern "lean_io_remove_file"] constant removeFile (fname : @& FilePath) : IO Unit +@[extern "lean_io_realpath"] opaque realPath (fname : FilePath) : IO FilePath +@[extern "lean_io_remove_file"] opaque removeFile (fname : @& FilePath) : IO Unit /-- Remove given directory. Fails if not empty; see also `IO.FS.removeDirAll`. -/ -@[extern "lean_io_remove_dir"] constant removeDir : @& FilePath → IO Unit -@[extern "lean_io_create_dir"] constant createDir : @& FilePath → IO Unit +@[extern "lean_io_remove_dir"] opaque removeDir : @& FilePath → IO Unit +@[extern "lean_io_create_dir"] opaque createDir : @& FilePath → IO Unit end FS -@[extern "lean_io_getenv"] constant getEnv (var : @& String) : BaseIO (Option String) -@[extern "lean_io_app_path"] constant appPath : IO FilePath -@[extern "lean_io_current_dir"] constant currentDir : IO FilePath +@[extern "lean_io_getenv"] opaque getEnv (var : @& String) : BaseIO (Option String) +@[extern "lean_io_app_path"] opaque appPath : IO FilePath +@[extern "lean_io_current_dir"] opaque currentDir : IO FilePath namespace FS @@ -391,10 +391,10 @@ namespace System.FilePath open IO @[extern "lean_io_read_dir"] -constant readDir : @& FilePath → IO (Array IO.FS.DirEntry) +opaque readDir : @& FilePath → IO (Array IO.FS.DirEntry) @[extern "lean_io_metadata"] -constant metadata : @& FilePath → IO IO.FS.Metadata +opaque metadata : @& FilePath → IO IO.FS.Metadata def isDir (p : FilePath) : BaseIO Bool := do match (← p.metadata.toBaseIO) with @@ -534,9 +534,9 @@ structure Child (cfg : StdioConfig) where stdout : cfg.stdout.toHandleType stderr : cfg.stderr.toHandleType -@[extern "lean_io_process_spawn"] constant spawn (args : SpawnArgs) : IO (Child args.toStdioConfig) +@[extern "lean_io_process_spawn"] opaque spawn (args : SpawnArgs) : IO (Child args.toStdioConfig) -@[extern "lean_io_process_child_wait"] constant Child.wait {cfg : @& StdioConfig} : @& Child cfg → IO UInt32 +@[extern "lean_io_process_child_wait"] opaque Child.wait {cfg : @& StdioConfig} : @& Child cfg → IO UInt32 /-- Extract the `stdin` field from a `Child` object, allowing them to be freed independently. @@ -544,7 +544,7 @@ This operation is necessary for closing the child process' stdin while still hol e.g. for `Child.wait`. A file handle is closed when all references to it are dropped, which without this operation includes the `Child` object. -/ -@[extern "lean_io_process_child_take_stdin"] constant Child.takeStdin {cfg : @& StdioConfig} : Child cfg → +@[extern "lean_io_process_child_take_stdin"] opaque Child.takeStdin {cfg : @& StdioConfig} : Child cfg → IO (cfg.stdin.toHandleType × Child { cfg with stdin := Stdio.null }) structure Output where @@ -568,7 +568,7 @@ def run (args : SpawnArgs) : IO String := do throw <| IO.userError <| "process '" ++ args.cmd ++ "' exited with code " ++ toString out.exitCode pure out.stdout -@[extern "lean_io_exit"] constant exit : UInt8 → IO α +@[extern "lean_io_exit"] opaque exit : UInt8 → IO α end Process @@ -594,7 +594,7 @@ def FileRight.flags (acc : FileRight) : UInt32 := let o : UInt32 := acc.other.flags u.lor <| g.lor o -@[extern "lean_chmod"] constant Prim.setAccessRights (filename : @& FilePath) (mode : UInt32) : IO Unit +@[extern "lean_chmod"] opaque Prim.setAccessRights (filename : @& FilePath) (mode : UInt32) : IO Unit def setAccessRights (filename : FilePath) (mode : FileRight) : IO Unit := Prim.setAccessRights filename mode.flags diff --git a/stage0/src/Init/System/ST.lean b/stage0/src/Init/System/ST.lean index e9ba87bb90..f5550bcb56 100644 --- a/stage0/src/Init/System/ST.lean +++ b/stage0/src/Init/System/ST.lean @@ -42,7 +42,7 @@ instance {ε σ} : MonadLift (ST σ) (EST ε σ) := ⟨fun x s => namespace ST /- References -/ -constant RefPointed : NonemptyType.{0} +opaque RefPointed : NonemptyType.{0} structure Ref (σ : Type) (α : Type) : Type where ref : RefPointed.type @@ -59,17 +59,17 @@ private noncomputable def inhabitedFromRef {σ α} (r : Ref σ α) : ST σ α := pure default @[extern "lean_st_mk_ref"] -constant mkRef {σ α} (a : α) : ST σ (Ref σ α) := pure { ref := Classical.choice RefPointed.property, h := Nonempty.intro a } +opaque mkRef {σ α} (a : α) : ST σ (Ref σ α) := pure { ref := Classical.choice RefPointed.property, h := Nonempty.intro a } @[extern "lean_st_ref_get"] -constant Ref.get {σ α} (r : @& Ref σ α) : ST σ α := inhabitedFromRef r +opaque Ref.get {σ α} (r : @& Ref σ α) : ST σ α := inhabitedFromRef r @[extern "lean_st_ref_set"] -constant Ref.set {σ α} (r : @& Ref σ α) (a : α) : ST σ Unit +opaque Ref.set {σ α} (r : @& Ref σ α) (a : α) : ST σ Unit @[extern "lean_st_ref_swap"] -constant Ref.swap {σ α} (r : @& Ref σ α) (a : α) : ST σ α := inhabitedFromRef r +opaque Ref.swap {σ α} (r : @& Ref σ α) (a : α) : ST σ α := inhabitedFromRef r @[extern "lean_st_ref_take"] -unsafe constant Ref.take {σ α} (r : @& Ref σ α) : ST σ α := inhabitedFromRef r +unsafe opaque Ref.take {σ α} (r : @& Ref σ α) : ST σ α := inhabitedFromRef r @[extern "lean_st_ref_ptr_eq"] -constant Ref.ptrEq {σ α} (r1 r2 : @& Ref σ α) : ST σ Bool +opaque Ref.ptrEq {σ α} (r1 r2 : @& Ref σ α) : ST σ Bool @[inline] unsafe def Ref.modifyUnsafe {σ α : Type} (r : Ref σ α) (f : α → α) : ST σ Unit := do let v ← Ref.take r diff --git a/stage0/src/Lean/Attributes.lean b/stage0/src/Lean/Attributes.lean index fe825aa107..7e374c3f0f 100644 --- a/stage0/src/Lean/Attributes.lean +++ b/stage0/src/Lean/Attributes.lean @@ -327,7 +327,7 @@ unsafe def mkAttributeImplOfConstantUnsafe (env : Environment) (opts : Options) | _ => throw ("unexpected attribute implementation type at '" ++ toString declName ++ "' (`AttributeImpl` expected") @[implementedBy mkAttributeImplOfConstantUnsafe] -constant mkAttributeImplOfConstant (env : Environment) (opts : Options) (declName : Name) : Except String AttributeImpl +opaque mkAttributeImplOfConstant (env : Environment) (opts : Options) (declName : Name) : Except String AttributeImpl def mkAttributeImplOfEntry (env : Environment) (opts : Options) (e : AttributeExtensionOLeanEntry) : IO AttributeImpl := match e with diff --git a/stage0/src/Lean/Compiler/ExternAttr.lean b/stage0/src/Lean/Compiler/ExternAttr.lean index 8b8bc43bc0..3095d13e53 100644 --- a/stage0/src/Lean/Compiler/ExternAttr.lean +++ b/stage0/src/Lean/Compiler/ExternAttr.lean @@ -56,7 +56,7 @@ private def syntaxToExternAttrData (stx : Syntax) : AttrM ExternAttrData := do return { arity? := arity?, entries := entries.toList } @[extern "lean_add_extern"] -constant addExtern (env : Environment) (n : Name) : ExceptT String Id Environment +opaque addExtern (env : Environment) (n : Name) : ExceptT String Id Environment builtin_initialize externAttr : ParametricAttribute ExternAttrData ← registerParametricAttribute { diff --git a/stage0/src/Lean/Compiler/IR/Checker.lean b/stage0/src/Lean/Compiler/IR/Checker.lean index 91dbf94989..fcd325fba9 100644 --- a/stage0/src/Lean/Compiler/IR/Checker.lean +++ b/stage0/src/Lean/Compiler/IR/Checker.lean @@ -9,15 +9,15 @@ import Lean.Compiler.IR.Format namespace Lean.IR.Checker @[extern c inline "lean_box(LEAN_MAX_CTOR_FIELDS)"] -constant getMaxCtorFields : Unit → Nat +opaque getMaxCtorFields : Unit → Nat def maxCtorFields := getMaxCtorFields () @[extern c inline "lean_box(LEAN_MAX_CTOR_SCALARS_SIZE)"] -constant getMaxCtorScalarsSize : Unit → Nat +opaque getMaxCtorScalarsSize : Unit → Nat def maxCtorScalarsSize := getMaxCtorScalarsSize () @[extern c inline "lean_box(sizeof(size_t))"] -constant getUSizeSize : Unit → Nat +opaque getUSizeSize : Unit → Nat def usizeSize := getUSizeSize () structure CheckerContext where diff --git a/stage0/src/Lean/Compiler/IR/CtorLayout.lean b/stage0/src/Lean/Compiler/IR/CtorLayout.lean index 63e472a3b4..94c9d2ed6e 100644 --- a/stage0/src/Lean/Compiler/IR/CtorLayout.lean +++ b/stage0/src/Lean/Compiler/IR/CtorLayout.lean @@ -35,7 +35,7 @@ structure CtorLayout where scalarSize : Nat @[extern "lean_ir_get_ctor_layout"] -constant getCtorLayout (env : @& Environment) (ctorName : @& Name) : Except String CtorLayout +opaque getCtorLayout (env : @& Environment) (ctorName : @& Name) : Except String CtorLayout end IR end Lean diff --git a/stage0/src/Lean/Compiler/InitAttr.lean b/stage0/src/Lean/Compiler/InitAttr.lean index f7dd662a4f..68b300d32f 100644 --- a/stage0/src/Lean/Compiler/InitAttr.lean +++ b/stage0/src/Lean/Compiler/InitAttr.lean @@ -70,7 +70,7 @@ unsafe def registerInitAttrUnsafe (attrName : Name) (runAfterImport : Bool) : IO } @[implementedBy registerInitAttrUnsafe] -constant registerInitAttr (attrName : Name) (runAfterImport : Bool) : IO (ParametricAttribute Name) +opaque registerInitAttr (attrName : Name) (runAfterImport : Bool) : IO (ParametricAttribute Name) builtin_initialize regularInitAttr : ParametricAttribute Name ← registerInitAttr `init true builtin_initialize builtinInitAttr : ParametricAttribute Name ← registerInitAttr `builtinInit false diff --git a/stage0/src/Lean/Declaration.lean b/stage0/src/Lean/Declaration.lean index 6b7a7af92a..04e5c5769e 100644 --- a/stage0/src/Lean/Declaration.lean +++ b/stage0/src/Lean/Declaration.lean @@ -403,10 +403,10 @@ def isInductive : ConstantInfo → Bool | _ => false @[extern "lean_instantiate_type_lparams"] -constant instantiateTypeLevelParams (c : @& ConstantInfo) (ls : @& List Level) : Expr +opaque instantiateTypeLevelParams (c : @& ConstantInfo) (ls : @& List Level) : Expr @[extern "lean_instantiate_value_lparams"] -constant instantiateValueLevelParams (c : @& ConstantInfo) (ls : @& List Level) : Expr +opaque instantiateValueLevelParams (c : @& ConstantInfo) (ls : @& List Level) : Expr end ConstantInfo diff --git a/stage0/src/Lean/Elab/BuiltinCommand.lean b/stage0/src/Lean/Elab/BuiltinCommand.lean index fc215261c6..776032e3d4 100644 --- a/stage0/src/Lean/Elab/BuiltinCommand.lean +++ b/stage0/src/Lean/Elab/BuiltinCommand.lean @@ -355,7 +355,7 @@ unsafe def elabEvalUnsafe : CommandElab | _ => throwUnsupportedSyntax @[builtinCommandElab «eval», implementedBy elabEvalUnsafe] -constant elabEval : CommandElab +opaque elabEval : CommandElab @[builtinCommandElab «synth»] def elabSynth : CommandElab := fun stx => do let term := stx[1] diff --git a/stage0/src/Lean/Elab/Command.lean b/stage0/src/Lean/Elab/Command.lean index eb05141d39..1befba23f8 100644 --- a/stage0/src/Lean/Elab/Command.lean +++ b/stage0/src/Lean/Elab/Command.lean @@ -218,7 +218,7 @@ unsafe def mkCommandElabAttributeUnsafe : IO (KeyedDeclsAttribute CommandElab) : mkElabAttribute CommandElab `Lean.Elab.Command.commandElabAttribute `builtinCommandElab `commandElab `Lean.Parser.Command `Lean.Elab.Command.CommandElab "command" @[implementedBy mkCommandElabAttributeUnsafe] -constant mkCommandElabAttribute : IO (KeyedDeclsAttribute CommandElab) +opaque mkCommandElabAttribute : IO (KeyedDeclsAttribute CommandElab) builtin_initialize commandElabAttribute : KeyedDeclsAttribute CommandElab ← mkCommandElabAttribute diff --git a/stage0/src/Lean/Elab/Declaration.lean b/stage0/src/Lean/Elab/Declaration.lean index 0211488764..c1deaf8032 100644 --- a/stage0/src/Lean/Elab/Declaration.lean +++ b/stage0/src/Lean/Elab/Declaration.lean @@ -57,7 +57,6 @@ private def expandDeclNamespace? (stx : Syntax) : MacroM (Option (Name × Syntax if k == ``Lean.Parser.Command.abbrev || k == ``Lean.Parser.Command.def || k == ``Lean.Parser.Command.theorem || - k == ``Lean.Parser.Command.constant || -- TODO: delete k == ``Lean.Parser.Command.opaque || k == ``Lean.Parser.Command.axiom || k == ``Lean.Parser.Command.inductive || @@ -326,13 +325,13 @@ def expandInitCmd (builtin : Bool) : Macro := fun stx => do let type := optHeader[1][1] if optVisibility.isNone then `(def initFn : IO $type := do $doSeq - @[$attrId:ident initFn] constant $id : $type) + @[$attrId:ident initFn] opaque $id : $type) else if optVisibility[0].getKind == ``Parser.Command.private then `(def initFn : IO $type := do $doSeq - @[$attrId:ident initFn] private constant $id : $type) + @[$attrId:ident initFn] private opaque $id : $type) else if optVisibility[0].getKind == ``Parser.Command.protected then `(def initFn : IO $type := do $doSeq - @[$attrId:ident initFn] protected constant $id : $type) + @[$attrId:ident initFn] protected opaque $id : $type) else Macro.throwError "unexpected visibility annotation" diff --git a/stage0/src/Lean/Elab/DefView.lean b/stage0/src/Lean/Elab/DefView.lean index 7706ee9083..0c9bc660c9 100644 --- a/stage0/src/Lean/Elab/DefView.lean +++ b/stage0/src/Lean/Elab/DefView.lean @@ -147,7 +147,6 @@ def isDefLike (stx : Syntax) : Bool := declKind == ``Parser.Command.abbrev || declKind == ``Parser.Command.def || declKind == ``Parser.Command.theorem || - declKind == ``Parser.Command.constant || -- TODO: delete declKind == ``Parser.Command.opaque || declKind == ``Parser.Command.instance || declKind == ``Parser.Command.example @@ -160,8 +159,6 @@ def mkDefView (modifiers : Modifiers) (stx : Syntax) : CommandElabM DefView := return mkDefViewOfDef modifiers stx else if declKind == ``Parser.Command.theorem then return mkDefViewOfTheorem modifiers stx - else if declKind == ``Parser.Command.constant then -- TODO: delete - mkDefViewOfOpaque modifiers stx else if declKind == ``Parser.Command.opaque then mkDefViewOfOpaque modifiers stx else if declKind == ``Parser.Command.instance then diff --git a/stage0/src/Lean/Elab/MutualDef.lean b/stage0/src/Lean/Elab/MutualDef.lean index 71706a9b88..fa70eca7e3 100644 --- a/stage0/src/Lean/Elab/MutualDef.lean +++ b/stage0/src/Lean/Elab/MutualDef.lean @@ -79,7 +79,7 @@ private def registerFailedToInferDefTypeInfo (type : Expr) (ref : Syntax) : Term /-- Return `some [b, c]` if the given `views` are representing a declaration of the form ``` - constant a b c : Nat + opaque a b c : Nat ``` -/ private def isMultiConstant? (views : Array DefView) : Option (List Name) := if views.size == 1 && diff --git a/stage0/src/Lean/Elab/Print.lean b/stage0/src/Lean/Elab/Print.lean index f36b176449..1fb84deb74 100644 --- a/stage0/src/Lean/Elab/Print.lean +++ b/stage0/src/Lean/Elab/Print.lean @@ -68,7 +68,7 @@ private def printIdCore (id : Name) : CommandElabM Unit := do | ConstantInfo.axiomInfo { levelParams := us, type := t, isUnsafe := u, .. } => printAxiomLike "axiom" id us t u | ConstantInfo.defnInfo { levelParams := us, type := t, value := v, safety := s, .. } => printDefLike "def" id us t v s | ConstantInfo.thmInfo { levelParams := us, type := t, value := v, .. } => printDefLike "theorem" id us t v - | ConstantInfo.opaqueInfo { levelParams := us, type := t, isUnsafe := u, .. } => printAxiomLike "constant" id us t u + | ConstantInfo.opaqueInfo { levelParams := us, type := t, isUnsafe := u, .. } => printAxiomLike "opaque" id us t u | ConstantInfo.quotInfo { levelParams := us, type := t, .. } => printQuot id us t | ConstantInfo.ctorInfo { levelParams := us, type := t, isUnsafe := u, .. } => printAxiomLike "constructor" id us t u | ConstantInfo.recInfo { levelParams := us, type := t, isUnsafe := u, .. } => printAxiomLike "recursor" id us t u diff --git a/stage0/src/Lean/Elab/Structure.lean b/stage0/src/Lean/Elab/Structure.lean index 991b98c70f..0589c891a7 100644 --- a/stage0/src/Lean/Elab/Structure.lean +++ b/stage0/src/Lean/Elab/Structure.lean @@ -688,7 +688,7 @@ private def mkCtor (view : StructView) (levelParams : List Name) (params : Array pure { name := view.ctor.declName, type } @[extern "lean_mk_projections"] -private constant mkProjections (env : Environment) (structName : Name) (projs : List Name) (isClass : Bool) : Except KernelException Environment +private opaque mkProjections (env : Environment) (structName : Name) (projs : List Name) (isClass : Bool) : Except KernelException Environment private def addProjections (structName : Name) (projs : List Name) (isClass : Bool) : TermElabM Unit := do let env ← getEnv diff --git a/stage0/src/Lean/Elab/Term.lean b/stage0/src/Lean/Elab/Term.lean index 450207edc0..f08f935a3c 100644 --- a/stage0/src/Lean/Elab/Term.lean +++ b/stage0/src/Lean/Elab/Term.lean @@ -320,7 +320,7 @@ unsafe def mkTermElabAttributeUnsafe : IO (KeyedDeclsAttribute TermElab) := mkElabAttribute TermElab `Lean.Elab.Term.termElabAttribute `builtinTermElab `termElab `Lean.Parser.Term `Lean.Elab.Term.TermElab "term" @[implementedBy mkTermElabAttributeUnsafe] -constant mkTermElabAttribute : IO (KeyedDeclsAttribute TermElab) +opaque mkTermElabAttribute : IO (KeyedDeclsAttribute TermElab) builtin_initialize termElabAttribute : KeyedDeclsAttribute TermElab ← mkTermElabAttribute diff --git a/stage0/src/Lean/Elab/Util.lean b/stage0/src/Lean/Elab/Util.lean index b489094361..b79d90f43a 100644 --- a/stage0/src/Lean/Elab/Util.lean +++ b/stage0/src/Lean/Elab/Util.lean @@ -95,7 +95,7 @@ private unsafe def evalSyntaxConstantUnsafe (env : Environment) (opts : Options) env.evalConstCheck Syntax opts `Lean.Syntax constName @[implementedBy evalSyntaxConstantUnsafe] -constant evalSyntaxConstant (env : Environment) (opts : Options) (constName : Name) : ExceptT String Id Syntax := throw "" +opaque evalSyntaxConstant (env : Environment) (opts : Options) (constName : Name) : ExceptT String Id Syntax := throw "" unsafe def mkElabAttribute (γ) (attrDeclName attrBuiltinName attrName : Name) (parserNamespace : Name) (typeName : Name) (kind : String) : IO (KeyedDeclsAttribute γ) := @@ -117,7 +117,7 @@ unsafe def mkMacroAttributeUnsafe : IO (KeyedDeclsAttribute Macro) := mkElabAttribute Macro `Lean.Elab.macroAttribute `builtinMacro `macro Name.anonymous `Lean.Macro "macro" @[implementedBy mkMacroAttributeUnsafe] -constant mkMacroAttribute : IO (KeyedDeclsAttribute Macro) +opaque mkMacroAttribute : IO (KeyedDeclsAttribute Macro) builtin_initialize macroAttribute : KeyedDeclsAttribute Macro ← mkMacroAttribute diff --git a/stage0/src/Lean/Environment.lean b/stage0/src/Lean/Environment.lean index ab86a7b9ad..7a568fbb98 100644 --- a/stage0/src/Lean/Environment.lean +++ b/stage0/src/Lean/Environment.lean @@ -14,7 +14,7 @@ import Lean.Util.Profile namespace Lean /- Opaque environment extension state. -/ -constant EnvExtensionStateSpec : (α : Type) × Inhabited α := ⟨Unit, ⟨()⟩⟩ +opaque EnvExtensionStateSpec : (α : Type) × Inhabited α := ⟨Unit, ⟨()⟩⟩ def EnvExtensionState : Type := EnvExtensionStateSpec.fst instance : Inhabited EnvExtensionState := EnvExtensionStateSpec.snd @@ -37,14 +37,14 @@ instance : ToString Import := ⟨fun imp => toString imp.module ++ if imp.runtim def CompactedRegion := USize @[extern "lean_compacted_region_is_memory_mapped"] -constant CompactedRegion.isMemoryMapped : CompactedRegion → Bool +opaque CompactedRegion.isMemoryMapped : CompactedRegion → Bool /-- Free a compacted region and its contents. No live references to the contents may exist at the time of invocation. -/ @[extern "lean_compacted_region_free"] -unsafe constant CompactedRegion.free : CompactedRegion → IO Unit +unsafe opaque CompactedRegion.free : CompactedRegion → IO Unit /- Opaque persistent environment extension entry. -/ -constant EnvExtensionEntrySpec : NonemptyType.{0} +opaque EnvExtensionEntrySpec : NonemptyType.{0} def EnvExtensionEntry : Type := EnvExtensionEntrySpec.type instance : Nonempty EnvExtensionEntry := EnvExtensionEntrySpec.property @@ -146,11 +146,11 @@ namespace Environment /- Type check given declaration and add it to the environment -/ @[extern "lean_add_decl"] -constant addDecl (env : Environment) (decl : @& Declaration) : Except KernelException Environment +opaque addDecl (env : Environment) (decl : @& Declaration) : Except KernelException Environment /- Compile the given declaration, it assumes the declaration has already been added to the environment using `addDecl`. -/ @[extern "lean_compile_decl"] -constant compileDecl (env : Environment) (opt : @& Options) (decl : @& Declaration) : Except KernelException Environment +opaque compileDecl (env : Environment) (opt : @& Options) (decl : @& Declaration) : Except KernelException Environment def addAndCompile (env : Environment) (opt : Options) (decl : Declaration) : Except KernelException Environment := do let env ← addDecl env decl @@ -265,7 +265,7 @@ unsafe def imp : EnvExtensionInterface := { end EnvExtensionInterfaceUnsafe @[implementedBy EnvExtensionInterfaceUnsafe.imp] -constant EnvExtensionInterfaceImp : EnvExtensionInterface +opaque EnvExtensionInterfaceImp : EnvExtensionInterface def EnvExtension (σ : Type) : Type := EnvExtensionInterfaceImp.ext σ @@ -401,7 +401,7 @@ unsafe def registerPersistentEnvExtensionUnsafe {α β σ : Type} [Inhabited σ] return pExt @[implementedBy registerPersistentEnvExtensionUnsafe] -constant registerPersistentEnvExtension {α β σ : Type} [Inhabited σ] (descr : PersistentEnvExtensionDescr α β σ) : IO (PersistentEnvExtension α β σ) +opaque registerPersistentEnvExtension {α β σ : Type} [Inhabited σ] (descr : PersistentEnvExtensionDescr α β σ) : IO (PersistentEnvExtension α β σ) /- Simple PersistentEnvExtension that implements exportEntriesFn using a list of entries. -/ @@ -512,9 +512,9 @@ def contains [Inhabited α] (ext : MapDeclarationExtension α) (env : Environmen end MapDeclarationExtension @[extern "lean_save_module_data"] -constant saveModuleData (fname : @& System.FilePath) (mod : @& Name) (data : @& ModuleData) : IO Unit +opaque saveModuleData (fname : @& System.FilePath) (mod : @& Name) (data : @& ModuleData) : IO Unit @[extern "lean_read_module_data"] -constant readModuleData (fname : @& System.FilePath) : IO (ModuleData × CompactedRegion) +opaque readModuleData (fname : @& System.FilePath) : IO (ModuleData × CompactedRegion) /-- Free compacted regions of imports. No live references to imported objects may exist at the time of invocation; in @@ -582,9 +582,9 @@ private def setImportedEntries (env : Environment) (mods : Array ModuleData) (st When we a new user-defined attribute declaration is imported, `attributeMapRef` is updated. Later, we set this method with code that adds the user-defined attributes that were imported after we initialized `attributeExtension`. -/ -@[extern 2 "lean_update_env_attributes"] constant updateEnvAttributes : Environment → IO Environment +@[extern 2 "lean_update_env_attributes"] opaque updateEnvAttributes : Environment → IO Environment /-- "Forward declaration" for retrieving the number of builtin attributes. -/ -@[extern 1 "lean_get_num_attributes"] constant getNumBuiltiAttributes : IO Nat +@[extern 1 "lean_get_num_attributes"] opaque getNumBuiltiAttributes : IO Nat private partial def finalizePersistentExtensions (env : Environment) (mods : Array ModuleData) (opts : Options) : IO Environment := do loop 0 env @@ -736,7 +736,7 @@ def displayStats (env : Environment) : IO Unit := do This function is only safe to use if the type matches the declaration's type in the environment and if `enableInitializersExecution` has been used before importing any modules. -/ @[extern "lean_eval_const"] -unsafe constant evalConst (α) (env : @& Environment) (opts : @& Options) (constName : @& Name) : Except String α +unsafe opaque evalConst (α) (env : @& Environment) (opts : @& Options) (constName : @& Name) : Except String α private def throwUnexpectedType {α} (typeName : Name) (constName : Name) : ExceptT String Id α := throw ("unexpected type at '" ++ toString constName ++ "', `" ++ toString typeName ++ "` expected") @@ -772,14 +772,14 @@ namespace Kernel Recall that the Kernel type checker does not support metavariables. When implementing automation, consider using the `MetaM` methods. -/ @[extern "lean_kernel_is_def_eq"] -constant isDefEq (env : Environment) (lctx : LocalContext) (a b : Expr) : Bool +opaque isDefEq (env : Environment) (lctx : LocalContext) (a b : Expr) : Bool /-- Kernel WHNF function. We use it mainly for debugging purposes. Recall that the Kernel type checker does not support metavariables. When implementing automation, consider using the `MetaM` methods. -/ @[extern "lean_kernel_whnf"] -constant whnf (env : Environment) (lctx : LocalContext) (a : Expr) : Expr +opaque whnf (env : Environment) (lctx : LocalContext) (a : Expr) : Expr end Kernel diff --git a/stage0/src/Lean/Expr.lean b/stage0/src/Lean/Expr.lean index b24d2fdd13..1492e85cd8 100644 --- a/stage0/src/Lean/Expr.lean +++ b/stage0/src/Lean/Expr.lean @@ -461,18 +461,18 @@ def mkAppRev (fn : Expr) (revArgs : Array Expr) : Expr := namespace Expr -- TODO: implement it in Lean @[extern "lean_expr_dbg_to_string"] -constant dbgToString (e : @& Expr) : String +opaque dbgToString (e : @& Expr) : String @[extern "lean_expr_quick_lt"] -constant quickLt (a : @& Expr) (b : @& Expr) : Bool +opaque quickLt (a : @& Expr) (b : @& Expr) : Bool @[extern "lean_expr_lt"] -constant lt (a : @& Expr) (b : @& Expr) : Bool +opaque lt (a : @& Expr) (b : @& Expr) : Bool /-- Return true iff `a` and `b` are alpha equivalent. Binder annotations are ignored. -/ @[extern "lean_expr_eqv"] -constant eqv (a : @& Expr) (b : @& Expr) : Bool +opaque eqv (a : @& Expr) (b : @& Expr) : Bool instance : BEq Expr where beq := Expr.eqv @@ -483,7 +483,7 @@ protected unsafe def ptrEq (a b : Expr) : Bool := /- Return true iff `a` and `b` are equal. Binder names and annotations are taking into account. -/ @[extern "lean_expr_equal"] -constant equal (a : @& Expr) (b : @& Expr) : Bool +opaque equal (a : @& Expr) (b : @& Expr) : Bool def isSort : Expr → Bool | sort .. => true @@ -770,7 +770,7 @@ def isArrow (e : Expr) : Bool := | _ => false @[extern "lean_expr_has_loose_bvar"] -constant hasLooseBVar (e : @& Expr) (bvarIdx : @& Nat) : Bool +opaque hasLooseBVar (e : @& Expr) (bvarIdx : @& Nat) : Bool /-- Return true if `e` contains the loose bound variable `bvarIdx` in an explicit parameter, or in the range if `tryRange == true`. -/ def hasLooseBVarInExplicitDomain : Expr → Nat → Bool → Bool @@ -784,12 +784,12 @@ def hasLooseBVarInExplicitDomain : Expr → Nat → Bool → Bool Remark: if `s < d`, then result is `e` -/ @[extern "lean_expr_lower_loose_bvars"] -constant lowerLooseBVars (e : @& Expr) (s d : @& Nat) : Expr +opaque lowerLooseBVars (e : @& Expr) (s d : @& Nat) : Expr /-- Lift loose bound variables `>= s` in `e` by `d`. -/ @[extern "lean_expr_lift_loose_bvars"] -constant liftLooseBVars (e : @& Expr) (s d : @& Nat) : Expr +opaque liftLooseBVars (e : @& Expr) (s d : @& Nat) : Expr /-- `inferImplicit e numParams considerRange` updates the first `numParams` parameter binder annotations of the `e` forall type. @@ -810,32 +810,32 @@ def inferImplicit : Expr → Nat → Bool → Expr /-- Instantiate the loose bound variables in `e` using `subst`. That is, a loose `Expr.bvar i` is replaced with `subst[i]`. -/ @[extern "lean_expr_instantiate"] -constant instantiate (e : @& Expr) (subst : @& Array Expr) : Expr +opaque instantiate (e : @& Expr) (subst : @& Array Expr) : Expr @[extern "lean_expr_instantiate1"] -constant instantiate1 (e : @& Expr) (subst : @& Expr) : Expr +opaque instantiate1 (e : @& Expr) (subst : @& Expr) : Expr /-- Similar to instantiate, but `Expr.bvar i` is replaced with `subst[subst.size - i - 1]` -/ @[extern "lean_expr_instantiate_rev"] -constant instantiateRev (e : @& Expr) (subst : @& Array Expr) : Expr +opaque instantiateRev (e : @& Expr) (subst : @& Array Expr) : Expr /-- Similar to `instantiate`, but consider only the variables `xs` in the range `[beginIdx, endIdx)`. Function panics if `beginIdx <= endIdx <= xs.size` does not hold. -/ @[extern "lean_expr_instantiate_range"] -constant instantiateRange (e : @& Expr) (beginIdx endIdx : @& Nat) (xs : @& Array Expr) : Expr +opaque instantiateRange (e : @& Expr) (beginIdx endIdx : @& Nat) (xs : @& Array Expr) : Expr /-- Similar to `instantiateRev`, but consider only the variables `xs` in the range `[beginIdx, endIdx)`. Function panics if `beginIdx <= endIdx <= xs.size` does not hold. -/ @[extern "lean_expr_instantiate_rev_range"] -constant instantiateRevRange (e : @& Expr) (beginIdx endIdx : @& Nat) (xs : @& Array Expr) : Expr +opaque instantiateRevRange (e : @& Expr) (beginIdx endIdx : @& Nat) (xs : @& Array Expr) : Expr /-- Replace free (or meta) variables `xs` with loose bound variables. -/ @[extern "lean_expr_abstract"] -constant abstract (e : @& Expr) (xs : @& Array Expr) : Expr +opaque abstract (e : @& Expr) (xs : @& Array Expr) : Expr /-- Similar to `abstract`, but consider only the first `min n xs.size` entries in `xs`. -/ @[extern "lean_expr_abstract_range"] -constant abstractRange (e : @& Expr) (n : @& Nat) (xs : @& Array Expr) : Expr +opaque abstractRange (e : @& Expr) (n : @& Nat) (xs : @& Array Expr) : Expr /-- Replace occurrences of the free variable `fvar` in `e` with `v` -/ def replaceFVar (e : Expr) (fvar : Expr) (v : Expr) : Expr := diff --git a/stage0/src/Lean/Linter/Basic.lean b/stage0/src/Lean/Linter/Basic.lean index 6ead79ac5e..9de68287d9 100644 --- a/stage0/src/Lean/Linter/Basic.lean +++ b/stage0/src/Lean/Linter/Basic.lean @@ -152,7 +152,7 @@ where isInConstantOrAxiom (_ : Syntax) (stack : SyntaxStack) := stackMatches stack [`null, none, `null, ``Lean.Parser.Command.declSig, none] && (stack.get? 4 |>.any fun (stx, _) => - [``Lean.Parser.Command.constant, ``Lean.Parser.Command.axiom].any (stx.isOfKind ·)) + [``Lean.Parser.Command.opaque, ``Lean.Parser.Command.axiom].any (stx.isOfKind ·)) isInDefWithForeignDefinition (_ : Syntax) (stack : SyntaxStack) := stackMatches stack [`null, none, `null, none, none, ``Lean.Parser.Command.declaration] && (stack.get? 3 |>.any fun (stx, _) => diff --git a/stage0/src/Lean/LoadDynlib.lean b/stage0/src/Lean/LoadDynlib.lean index cdcac4dcf2..f076d7c596 100644 --- a/stage0/src/Lean/LoadDynlib.lean +++ b/stage0/src/Lean/LoadDynlib.lean @@ -14,4 +14,4 @@ Equivalent to passing `--load-dynlib=lib` to `lean`. Note that Lean never unloads libraries. -/ @[extern "lean_load_dynlib"] -constant loadDynlib (path : @& System.FilePath) : IO Unit +opaque loadDynlib (path : @& System.FilePath) : IO Unit diff --git a/stage0/src/Lean/Meta/ACLt.lean b/stage0/src/Lean/Meta/ACLt.lean index e348263996..e5808ae23b 100644 --- a/stage0/src/Lean/Meta/ACLt.lean +++ b/stage0/src/Lean/Meta/ACLt.lean @@ -155,6 +155,6 @@ end end ACLt @[implementedBy ACLt.lt] -constant Expr.acLt : Expr → Expr → MetaM Bool +opaque Expr.acLt : Expr → Expr → MetaM Bool end Lean.Meta diff --git a/stage0/src/Lean/Meta/Match/MatchEqsExt.lean b/stage0/src/Lean/Meta/Match/MatchEqsExt.lean index 36b3ef6901..6484dbc3b7 100644 --- a/stage0/src/Lean/Meta/Match/MatchEqsExt.lean +++ b/stage0/src/Lean/Meta/Match/MatchEqsExt.lean @@ -31,6 +31,6 @@ def registerMatchEqns (matchDeclName : Name) (matchEqns : MatchEqns) : CoreM Uni Forward definition. We want to use `getEquationsFor` in the simplifier, `getEquationsFor` depends on `mkEquationsfor` which uses the simplifier. -/ @[extern "lean_get_match_equations_for"] -constant getEquationsFor (matchDeclName : Name) : MetaM MatchEqns +opaque getEquationsFor (matchDeclName : Name) : MetaM MatchEqns end Lean.Meta.Match diff --git a/stage0/src/Lean/Meta/WHNF.lean b/stage0/src/Lean/Meta/WHNF.lean index c94a451e2f..873603dd60 100644 --- a/stage0/src/Lean/Meta/WHNF.lean +++ b/stage0/src/Lean/Meta/WHNF.lean @@ -25,7 +25,7 @@ It is possible to avoid this hack if we move `Structural.EqnInfo` and `Structura to this module. -/ @[extern "lean_get_structural_rec_arg_pos"] -constant getStructuralRecArgPos? (declName : Name) : CoreM (Option Nat) +opaque getStructuralRecArgPos? (declName : Name) : CoreM (Option Nat) def smartUnfoldingSuffix := "_sunfold" @@ -720,8 +720,8 @@ def reduceRecMatcher? (e : Expr) : MetaM (Option Expr) := do unsafe def reduceBoolNativeUnsafe (constName : Name) : MetaM Bool := evalConstCheck Bool `Bool constName unsafe def reduceNatNativeUnsafe (constName : Name) : MetaM Nat := evalConstCheck Nat `Nat constName -@[implementedBy reduceBoolNativeUnsafe] constant reduceBoolNative (constName : Name) : MetaM Bool -@[implementedBy reduceNatNativeUnsafe] constant reduceNatNative (constName : Name) : MetaM Nat +@[implementedBy reduceBoolNativeUnsafe] opaque reduceBoolNative (constName : Name) : MetaM Bool +@[implementedBy reduceNatNativeUnsafe] opaque reduceNatNative (constName : Name) : MetaM Nat def reduceNative? (e : Expr) : MetaM (Option Expr) := match e with diff --git a/stage0/src/Lean/Parser/Command.lean b/stage0/src/Lean/Parser/Command.lean index 59fa9a7ce0..f245e4e21e 100644 --- a/stage0/src/Lean/Parser/Command.lean +++ b/stage0/src/Lean/Parser/Command.lean @@ -70,7 +70,6 @@ def «abbrev» := leading_parser "abbrev " >> declId >> ppIndent optDecl def optDefDeriving := optional (atomic ("deriving " >> notSymbol "instance") >> sepBy1 ident ", ") def «def» := leading_parser "def " >> declId >> ppIndent optDeclSig >> declVal >> optDefDeriving >> terminationSuffix def «theorem» := leading_parser "theorem " >> declId >> ppIndent declSig >> declVal >> terminationSuffix -def «constant» := leading_parser "constant " >> declId >> ppIndent declSig >> optional declValSimple def «opaque» := leading_parser "opaque " >> declId >> ppIndent declSig >> optional declValSimple /- As `declSig` starts with a space, "instance" does not need a trailing space if we put `ppSpace` in the optional fragments. -/ def «instance» := leading_parser Term.attrKind >> "instance" >> optNamedPrio >> optional (ppSpace >> declId) >> ppIndent declSig >> declVal >> terminationSuffix @@ -96,7 +95,7 @@ def «structure» := leading_parser >> optional ((symbol " := " <|> " where ") >> optional structCtor >> structFields) >> optDeriving @[builtinCommandParser] def declaration := leading_parser -declModifiers false >> («abbrev» <|> «def» <|> «theorem» <|> «constant» <|> «opaque» <|> «instance» <|> «axiom» <|> «example» <|> «inductive» <|> classInductive <|> «structure») +declModifiers false >> («abbrev» <|> «def» <|> «theorem» <|> «opaque» <|> «instance» <|> «axiom» <|> «example» <|> «inductive» <|> classInductive <|> «structure») @[builtinCommandParser] def «deriving» := leading_parser "deriving " >> "instance " >> derivingClasses >> " for " >> sepBy1 ident ", " @[builtinCommandParser] def noncomputableSection := leading_parser "noncomputable " >> "section " >> optional ident @[builtinCommandParser] def «section» := leading_parser "section " >> optional ident diff --git a/stage0/src/Lean/Parser/Extension.lean b/stage0/src/Lean/Parser/Extension.lean index c5d0e28a6e..e58948fce9 100644 --- a/stage0/src/Lean/Parser/Extension.lean +++ b/stage0/src/Lean/Parser/Extension.lean @@ -250,7 +250,7 @@ unsafe def mkParserOfConstantUnsafe (constName : Name) (compileParserDescr : Par | _ => throw ↑s!"unexpected parser type at '{constName}' (`ParserDescr`, `TrailingParserDescr`, `Parser` or `TrailingParser` expected)" @[implementedBy mkParserOfConstantUnsafe] -constant mkParserOfConstantAux (constName : Name) (compileParserDescr : ParserDescr → ImportM Parser) : ImportM (Bool × Parser) +opaque mkParserOfConstantAux (constName : Name) (compileParserDescr : ParserDescr → ImportM Parser) : ImportM (Bool × Parser) partial def compileParserDescr (categories : ParserCategories) (d : ParserDescr) : ImportM Parser := let rec visit : ParserDescr → ImportM Parser @@ -345,7 +345,7 @@ unsafe def evalParserConstUnsafe (declName : Name) : ParserFn := fun ctx s => un | .error e => return s.mkUnexpectedError e.toString @[implementedBy evalParserConstUnsafe] -constant evalParserConst (declName : Name) : ParserFn +opaque evalParserConst (declName : Name) : ParserFn register_builtin_option internal.parseQuotWithCurrentStage : Bool := { defValue := false diff --git a/stage0/src/Lean/PrettyPrinter/Formatter.lean b/stage0/src/Lean/PrettyPrinter/Formatter.lean index 25c860b4f8..90833ecb11 100644 --- a/stage0/src/Lean/PrettyPrinter/Formatter.lean +++ b/stage0/src/Lean/PrettyPrinter/Formatter.lean @@ -177,11 +177,11 @@ def withMaybeTag (pos? : Option String.Pos) (x : FormatterM Unit) : Formatter := -- `categoryParser -> mkAntiquot -> termParser -> categoryParser`, so we need to introduce an indirection somewhere -- anyway. @[extern "lean_mk_antiquot_formatter"] -constant mkAntiquot.formatter' (name : String) (kind : Option SyntaxNodeKind) (anonymous := true) : Formatter +opaque mkAntiquot.formatter' (name : String) (kind : Option SyntaxNodeKind) (anonymous := true) : Formatter -- break up big mutual recursion @[extern "lean_pretty_printer_formatter_interpret_parser_descr"] -constant interpretParserDescr' : ParserDescr → CoreM Formatter +opaque interpretParserDescr' : ParserDescr → CoreM Formatter private def SourceInfo.getExprPos? : SourceInfo → Option String.Pos | SourceInfo.synthetic pos _ => pos @@ -203,7 +203,7 @@ unsafe def formatterForKindUnsafe (k : SyntaxNodeKind) : Formatter := do withMaybeTag (getExprPos? stx) f @[implementedBy formatterForKindUnsafe] -constant formatterForKind (k : SyntaxNodeKind) : Formatter +opaque formatterForKind (k : SyntaxNodeKind) : Formatter @[combinatorFormatter Lean.Parser.withAntiquot] def withAntiquot.formatter (antiP p : Formatter) : Formatter := diff --git a/stage0/src/Lean/PrettyPrinter/Parenthesizer.lean b/stage0/src/Lean/PrettyPrinter/Parenthesizer.lean index 9475b47798..748617dd03 100644 --- a/stage0/src/Lean/PrettyPrinter/Parenthesizer.lean +++ b/stage0/src/Lean/PrettyPrinter/Parenthesizer.lean @@ -258,14 +258,14 @@ def visitToken : Parenthesizer := do -- `categoryParser -> mkAntiquot -> termParser -> categoryParser`, so we need to introduce an indirection somewhere -- anyway. @[extern 8 "lean_mk_antiquot_parenthesizer"] -constant mkAntiquot.parenthesizer' (name : String) (kind : Option SyntaxNodeKind) (anonymous := true) : Parenthesizer +opaque mkAntiquot.parenthesizer' (name : String) (kind : Option SyntaxNodeKind) (anonymous := true) : Parenthesizer @[inline] def liftCoreM {α} (x : CoreM α) : ParenthesizerM α := liftM x -- break up big mutual recursion @[extern "lean_pretty_printer_parenthesizer_interpret_parser_descr"] -constant interpretParserDescr' : ParserDescr → CoreM Parenthesizer +opaque interpretParserDescr' : ParserDescr → CoreM Parenthesizer unsafe def parenthesizerForKindUnsafe (k : SyntaxNodeKind) : Parenthesizer := do if k == `missing then @@ -275,7 +275,7 @@ unsafe def parenthesizerForKindUnsafe (k : SyntaxNodeKind) : Parenthesizer := do p @[implementedBy parenthesizerForKindUnsafe] -constant parenthesizerForKind (k : SyntaxNodeKind) : Parenthesizer +opaque parenthesizerForKind (k : SyntaxNodeKind) : Parenthesizer @[combinatorParenthesizer Lean.Parser.withAntiquot] def withAntiquot.parenthesizer (antiP p : Parenthesizer) : Parenthesizer := do diff --git a/stage0/src/Lean/Runtime.lean b/stage0/src/Lean/Runtime.lean index 30a82e8598..b570f0bf52 100644 --- a/stage0/src/Lean/Runtime.lean +++ b/stage0/src/Lean/Runtime.lean @@ -7,10 +7,10 @@ Authors: Leonardo de Moura namespace Lean @[extern "lean_closure_max_args"] -constant closureMaxArgsFn : Unit → Nat +opaque closureMaxArgsFn : Unit → Nat @[extern "lean_max_small_nat"] -constant maxSmallNatFn : Unit → Nat +opaque maxSmallNatFn : Unit → Nat def closureMaxArgs : Nat := closureMaxArgsFn () diff --git a/stage0/src/Lean/ScopedEnvExtension.lean b/stage0/src/Lean/ScopedEnvExtension.lean index 3a9d33a7d1..0b8c7740a3 100644 --- a/stage0/src/Lean/ScopedEnvExtension.lean +++ b/stage0/src/Lean/ScopedEnvExtension.lean @@ -117,7 +117,7 @@ unsafe def registerScopedEnvExtensionUnsafe (descr : Descr α β σ) : IO (Scope return ext @[implementedBy registerScopedEnvExtensionUnsafe] -constant registerScopedEnvExtension (descr : Descr α β σ) : IO (ScopedEnvExtension α β σ) +opaque registerScopedEnvExtension (descr : Descr α β σ) : IO (ScopedEnvExtension α β σ) def ScopedEnvExtension.pushScope (ext : ScopedEnvExtension α β σ) (env : Environment) : Environment := let s := ext.ext.getState env diff --git a/stage0/src/Lean/Server/Rpc/Deriving.lean b/stage0/src/Lean/Server/Rpc/Deriving.lean index de1df17521..e5a5778511 100644 --- a/stage0/src/Lean/Server/Rpc/Deriving.lean +++ b/stage0/src/Lean/Server/Rpc/Deriving.lean @@ -26,14 +26,14 @@ private def deriveWithRefInstance (typeNm : Name) : CommandElabM Bool := do WithRpcRef.encodeUnsafe $(quote typeNm) r @[implementedBy encodeUnsafe] - constant encode [Monad m] [MonadRpcSession m] (r : WithRpcRef $typeId:ident) : m Lsp.RpcRef := + opaque encode [Monad m] [MonadRpcSession m] (r : WithRpcRef $typeId:ident) : m Lsp.RpcRef := pure ⟨0⟩ unsafe def decodeUnsafe [Monad m] [MonadRpcSession m] (r : Lsp.RpcRef) : ExceptT String m (WithRpcRef $typeId:ident) := WithRpcRef.decodeUnsafeAs $typeId:ident $(quote typeNm) r @[implementedBy decodeUnsafe] - constant decode [Monad m] [MonadRpcSession m] (r : Lsp.RpcRef) : ExceptT String m (WithRpcRef $typeId:ident) := + opaque decode [Monad m] [MonadRpcSession m] (r : Lsp.RpcRef) : ExceptT String m (WithRpcRef $typeId:ident) := throw "unreachable" instance : RpcEncoding (WithRpcRef $typeId:ident) Lsp.RpcRef := @@ -301,7 +301,7 @@ private unsafe def dispatchDeriveInstanceUnsafe (declNames : Array Name) (args? deriveInstance declNames[0] @[implementedBy dispatchDeriveInstanceUnsafe] -private constant dispatchDeriveInstance (declNames : Array Name) (args? : Option Syntax) : CommandElabM Bool +private opaque dispatchDeriveInstance (declNames : Array Name) (args? : Option Syntax) : CommandElabM Bool builtin_initialize Elab.registerBuiltinDerivingHandlerWithArgs ``RpcEncoding dispatchDeriveInstance diff --git a/stage0/src/Lean/Server/Rpc/RequestHandling.lean b/stage0/src/Lean/Server/Rpc/RequestHandling.lean index 8e2ee4c0fc..1da7da08fd 100644 --- a/stage0/src/Lean/Server/Rpc/RequestHandling.lean +++ b/stage0/src/Lean/Server/Rpc/RequestHandling.lean @@ -50,7 +50,7 @@ private unsafe def handleRpcCallUnsafe (p : Lsp.RpcCallParams) : RequestM (Reque message := s!"No RPC method '{p.method}' bound" } @[implementedBy handleRpcCallUnsafe] -private constant handleRpcCall (p : Lsp.RpcCallParams) : RequestM (RequestTask Json) +private opaque handleRpcCall (p : Lsp.RpcCallParams) : RequestM (RequestTask Json) builtin_initialize registerLspRequestHandler "$/lean/rpc/call" Lsp.RpcCallParams Json handleRpcCall diff --git a/stage0/src/Lean/Util/FindExpr.lean b/stage0/src/Lean/Util/FindExpr.lean index 5044cca631..f1595b1f13 100644 --- a/stage0/src/Lean/Util/FindExpr.lean +++ b/stage0/src/Lean/Util/FindExpr.lean @@ -114,7 +114,7 @@ end FindExtImpl Similar to `find?`, but `p` can return `FindStep.done` to interrupt the search on subterms. Remark: Differently from `find?`, we do not invoke `p` for partial applications of an application. -/ @[implementedBy FindExtImpl.findUnsafe?] -constant findExt? (p : Expr → FindStep) (e : Expr) : Option Expr +opaque findExt? (p : Expr → FindStep) (e : Expr) : Option Expr end Expr end Lean diff --git a/stage0/src/Lean/Util/FoldConsts.lean b/stage0/src/Lean/Util/FoldConsts.lean index 9111e152c2..b0feef9fd7 100644 --- a/stage0/src/Lean/Util/FoldConsts.lean +++ b/stage0/src/Lean/Util/FoldConsts.lean @@ -61,7 +61,7 @@ end FoldConstsImpl /-- Apply `f` to every constant occurring in `e` once. -/ @[implementedBy FoldConstsImpl.foldUnsafe] -constant foldConsts {α : Type} (e : Expr) (init : α) (f : Name → α → α) : α := init +opaque foldConsts {α : Type} (e : Expr) (init : α) (f : Name → α → α) : α := init def getUsedConstants (e : Expr) : Array Name := e.foldConsts #[] fun c cs => cs.push c diff --git a/stage0/src/Lean/Util/HasConstCache.lean b/stage0/src/Lean/Util/HasConstCache.lean index 0f52ecc8a8..1db7571c05 100644 --- a/stage0/src/Lean/Util/HasConstCache.lean +++ b/stage0/src/Lean/Util/HasConstCache.lean @@ -32,6 +32,6 @@ where Return true iff `e` contains the constant `declName`. Remark: the results for visited expressions are stored in the state cache. -/ @[implementedBy HasConstCache.containsUnsafe] -constant HasConstCache.contains (e : Expr) : StateM (HasConstCache declName) Bool +opaque HasConstCache.contains (e : Expr) : StateM (HasConstCache declName) Bool end Lean diff --git a/stage0/src/Std/ShareCommon.lean b/stage0/src/Std/ShareCommon.lean index 07694cf9c2..4c107bddb3 100644 --- a/stage0/src/Std/ShareCommon.lean +++ b/stage0/src/Std/ShareCommon.lean @@ -86,18 +86,18 @@ unsafe def ObjectPersistentSet.insert (s : ObjectPersistentSet) (o : Object) : O @PersistentHashSet.insert Object ⟨Object.eq⟩ ⟨Object.hash⟩ s o /- Internally `State` is implemented as a pair `ObjectMap` and `ObjectSet` -/ -constant StatePointed : NonemptyType +opaque StatePointed : NonemptyType abbrev State : Type u := StatePointed.type @[extern "lean_sharecommon_mk_state"] -constant mkState : Unit → State := fun _ => Classical.choice StatePointed.property +opaque mkState : Unit → State := fun _ => Classical.choice StatePointed.property def State.empty : State := mkState () instance State.inhabited : Inhabited State := ⟨State.empty⟩ /- Internally `PersistentState` is implemented as a pair `ObjectPersistentMap` and `ObjectPersistentSet` -/ -constant PersistentStatePointed : NonemptyType +opaque PersistentStatePointed : NonemptyType abbrev PersistentState : Type u := PersistentStatePointed.type @[extern "lean_sharecommon_mk_pstate"] -constant mkPersistentState : Unit → PersistentState := fun _ => Classical.choice PersistentStatePointed.property +opaque mkPersistentState : Unit → PersistentState := fun _ => Classical.choice PersistentStatePointed.property def PersistentState.empty : PersistentState := mkPersistentState () instance PersistentState.inhabited : Inhabited PersistentState := ⟨PersistentState.empty⟩ abbrev PState : Type u := PersistentState diff --git a/stage0/stdlib/Lean/Elab/BuiltinCommand.c b/stage0/stdlib/Lean/Elab/BuiltinCommand.c index 1b6092040d..1c17a73a46 100644 --- a/stage0/stdlib/Lean/Elab/BuiltinCommand.c +++ b/stage0/stdlib/Lean/Elab/BuiltinCommand.c @@ -17575,7 +17575,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_unsigned_to_nat(358u); -x_2 = lean_unsigned_to_nat(31u); +x_2 = lean_unsigned_to_nat(29u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); @@ -17589,7 +17589,7 @@ lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_obj x_1 = l___regBuiltin_Lean_Elab_Command_elabEval_declRange___closed__1; x_2 = lean_unsigned_to_nat(0u); x_3 = l___regBuiltin_Lean_Elab_Command_elabEval_declRange___closed__2; -x_4 = lean_unsigned_to_nat(31u); +x_4 = lean_unsigned_to_nat(29u); x_5 = lean_alloc_ctor(0, 4, 0); lean_ctor_set(x_5, 0, x_1); lean_ctor_set(x_5, 1, x_2); @@ -17603,7 +17603,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_unsigned_to_nat(358u); -x_2 = lean_unsigned_to_nat(9u); +x_2 = lean_unsigned_to_nat(7u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); @@ -17615,7 +17615,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_unsigned_to_nat(358u); -x_2 = lean_unsigned_to_nat(17u); +x_2 = lean_unsigned_to_nat(15u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); @@ -17627,9 +17627,9 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_1 = l___regBuiltin_Lean_Elab_Command_elabEval_declRange___closed__4; -x_2 = lean_unsigned_to_nat(9u); +x_2 = lean_unsigned_to_nat(7u); x_3 = l___regBuiltin_Lean_Elab_Command_elabEval_declRange___closed__5; -x_4 = lean_unsigned_to_nat(17u); +x_4 = lean_unsigned_to_nat(15u); x_5 = lean_alloc_ctor(0, 4, 0); lean_ctor_set(x_5, 0, x_1); lean_ctor_set(x_5, 1, x_2); diff --git a/stage0/stdlib/Lean/Elab/Declaration.c b/stage0/stdlib/Lean/Elab/Declaration.c index d96aee4eb0..6d66d64be4 100644 --- a/stage0/stdlib/Lean/Elab/Declaration.c +++ b/stage0/stdlib/Lean/Elab/Declaration.c @@ -164,7 +164,6 @@ extern lean_object* l_Lean_levelZero; LEAN_EXPORT lean_object* l_Lean_throwMaxRecDepthAt___at_Lean_Elab_Command_elabDeclaration___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_nat_add(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Command_expandInitCmd___lambda__1___closed__31; -static lean_object* l___private_Lean_Elab_Declaration_0__Lean_Elab_Command_expandDeclNamespace_x3f___closed__28; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Command_expandMutualNamespace(lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Command_elabAxiom___lambda__6___boxed(lean_object**); static lean_object* l___regBuiltin_Lean_Elab_Command_expandMutualNamespace_declRange___closed__6; @@ -543,7 +542,6 @@ static lean_object* l_Lean_Elab_Command_expandInitCmd___closed__1; static lean_object* l___private_Lean_Elab_Declaration_0__Lean_Elab_Command_expandDeclNamespace_x3f___closed__9; LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at_Lean_Elab_Command_elabDeclaration___spec__1___lambda__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Command_expandInitCmd___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Lean_Elab_Declaration_0__Lean_Elab_Command_expandDeclNamespace_x3f___closed__27; static lean_object* l_Lean_Elab_Command_expandInitCmd___lambda__1___closed__37; static lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Declaration_0__Lean_Elab_Command_inductiveSyntaxToView___spec__3___lambda__2___closed__2; static lean_object* l_Lean_Elab_Command_expandInitCmd___closed__5; @@ -1200,7 +1198,7 @@ static lean_object* _init_l___private_Lean_Elab_Declaration_0__Lean_Elab_Command _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("constant", 8); +x_1 = lean_mk_string_from_bytes("opaque", 6); return x_1; } } @@ -1218,7 +1216,7 @@ static lean_object* _init_l___private_Lean_Elab_Declaration_0__Lean_Elab_Command _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("opaque", 6); +x_1 = lean_mk_string_from_bytes("axiom", 5); return x_1; } } @@ -1236,7 +1234,7 @@ static lean_object* _init_l___private_Lean_Elab_Declaration_0__Lean_Elab_Command _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("axiom", 5); +x_1 = lean_mk_string_from_bytes("inductive", 9); return x_1; } } @@ -1254,7 +1252,7 @@ static lean_object* _init_l___private_Lean_Elab_Declaration_0__Lean_Elab_Command _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("inductive", 9); +x_1 = lean_mk_string_from_bytes("classInductive", 14); return x_1; } } @@ -1272,7 +1270,7 @@ static lean_object* _init_l___private_Lean_Elab_Declaration_0__Lean_Elab_Command _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("classInductive", 14); +x_1 = lean_mk_string_from_bytes("structure", 9); return x_1; } } @@ -1290,7 +1288,7 @@ static lean_object* _init_l___private_Lean_Elab_Declaration_0__Lean_Elab_Command _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("structure", 9); +x_1 = lean_mk_string_from_bytes("instance", 8); return x_1; } } @@ -1304,24 +1302,6 @@ x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l___private_Lean_Elab_Declaration_0__Lean_Elab_Command_expandDeclNamespace_x3f___closed__27() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("instance", 8); -return x_1; -} -} -static lean_object* _init_l___private_Lean_Elab_Declaration_0__Lean_Elab_Command_expandDeclNamespace_x3f___closed__28() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Lean_Elab_Declaration_0__Lean_Elab_Command_expandDeclNamespace_x3f___closed__6; -x_2 = l___private_Lean_Elab_Declaration_0__Lean_Elab_Command_expandDeclNamespace_x3f___closed__27; -x_3 = lean_name_mk_string(x_1, x_2); -return x_3; -} -} LEAN_EXPORT lean_object* l___private_Lean_Elab_Declaration_0__Lean_Elab_Command_expandDeclNamespace_x3f(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { @@ -1389,222 +1369,232 @@ if (x_26 == 0) lean_object* x_27; uint8_t x_28; x_27 = l___private_Lean_Elab_Declaration_0__Lean_Elab_Command_expandDeclNamespace_x3f___closed__26; x_28 = lean_name_eq(x_10, x_27); +lean_dec(x_10); if (x_28 == 0) { -lean_object* x_29; uint8_t x_30; -x_29 = l___private_Lean_Elab_Declaration_0__Lean_Elab_Command_expandDeclNamespace_x3f___closed__28; -x_30 = lean_name_eq(x_10, x_29); -lean_dec(x_10); -if (x_30 == 0) -{ -lean_object* x_31; lean_object* x_32; +lean_object* x_29; lean_object* x_30; lean_dec(x_9); lean_dec(x_2); lean_dec(x_1); -x_31 = lean_box(0); -x_32 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_32, 0, x_31); -lean_ctor_set(x_32, 1, x_3); -return x_32; +x_29 = lean_box(0); +x_30 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_30, 0, x_29); +lean_ctor_set(x_30, 1, x_3); +return x_30; } else { -lean_object* x_33; lean_object* x_34; uint8_t x_35; -x_33 = lean_unsigned_to_nat(3u); -x_34 = l_Lean_Syntax_getArg(x_9, x_33); -x_35 = l_Lean_Syntax_isNone(x_34); -if (x_35 == 0) +lean_object* x_31; lean_object* x_32; uint8_t x_33; +x_31 = lean_unsigned_to_nat(3u); +x_32 = l_Lean_Syntax_getArg(x_9, x_31); +x_33 = l_Lean_Syntax_isNone(x_32); +if (x_33 == 0) { -lean_object* x_36; lean_object* x_37; lean_object* x_38; -x_36 = lean_unsigned_to_nat(0u); -x_37 = l_Lean_Syntax_getArg(x_34, x_36); -x_38 = l___private_Lean_Elab_Declaration_0__Lean_Elab_Command_expandDeclIdNamespace_x3f(x_37, x_2, x_3); -if (lean_obj_tag(x_38) == 0) +lean_object* x_34; lean_object* x_35; lean_object* x_36; +x_34 = lean_unsigned_to_nat(0u); +x_35 = l_Lean_Syntax_getArg(x_32, x_34); +x_36 = l___private_Lean_Elab_Declaration_0__Lean_Elab_Command_expandDeclIdNamespace_x3f(x_35, x_2, x_3); +if (lean_obj_tag(x_36) == 0) { -lean_object* x_39; -x_39 = lean_ctor_get(x_38, 0); -lean_inc(x_39); -if (lean_obj_tag(x_39) == 0) +lean_object* x_37; +x_37 = lean_ctor_get(x_36, 0); +lean_inc(x_37); +if (lean_obj_tag(x_37) == 0) { -uint8_t x_40; -lean_dec(x_34); +uint8_t x_38; +lean_dec(x_32); lean_dec(x_9); lean_dec(x_1); -x_40 = !lean_is_exclusive(x_38); -if (x_40 == 0) +x_38 = !lean_is_exclusive(x_36); +if (x_38 == 0) { -lean_object* x_41; lean_object* x_42; -x_41 = lean_ctor_get(x_38, 0); -lean_dec(x_41); -x_42 = lean_box(0); -lean_ctor_set(x_38, 0, x_42); -return x_38; -} -else -{ -lean_object* x_43; lean_object* x_44; lean_object* x_45; -x_43 = lean_ctor_get(x_38, 1); -lean_inc(x_43); -lean_dec(x_38); -x_44 = lean_box(0); -x_45 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_45, 0, x_44); -lean_ctor_set(x_45, 1, x_43); -return x_45; -} -} -else -{ -uint8_t x_46; -x_46 = !lean_is_exclusive(x_39); -if (x_46 == 0) -{ -uint8_t x_47; -x_47 = !lean_is_exclusive(x_38); -if (x_47 == 0) -{ -lean_object* x_48; lean_object* x_49; uint8_t x_50; -x_48 = lean_ctor_get(x_39, 0); -x_49 = lean_ctor_get(x_38, 0); -lean_dec(x_49); -x_50 = !lean_is_exclusive(x_48); -if (x_50 == 0) -{ -lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; -x_51 = lean_ctor_get(x_48, 1); -x_52 = l_Lean_Syntax_setArg(x_34, x_36, x_51); -x_53 = l_Lean_Syntax_setArg(x_9, x_33, x_52); -x_54 = l_Lean_Syntax_setArg(x_1, x_8, x_53); -lean_ctor_set(x_48, 1, x_54); -return x_38; -} -else -{ -lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; -x_55 = lean_ctor_get(x_48, 0); -x_56 = lean_ctor_get(x_48, 1); -lean_inc(x_56); -lean_inc(x_55); -lean_dec(x_48); -x_57 = l_Lean_Syntax_setArg(x_34, x_36, x_56); -x_58 = l_Lean_Syntax_setArg(x_9, x_33, x_57); -x_59 = l_Lean_Syntax_setArg(x_1, x_8, x_58); -x_60 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_60, 0, x_55); -lean_ctor_set(x_60, 1, x_59); -lean_ctor_set(x_39, 0, x_60); -return x_38; -} -} -else -{ -lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; -x_61 = lean_ctor_get(x_39, 0); -x_62 = lean_ctor_get(x_38, 1); -lean_inc(x_62); -lean_dec(x_38); -x_63 = lean_ctor_get(x_61, 0); -lean_inc(x_63); -x_64 = lean_ctor_get(x_61, 1); -lean_inc(x_64); -if (lean_is_exclusive(x_61)) { - lean_ctor_release(x_61, 0); - lean_ctor_release(x_61, 1); - x_65 = x_61; -} else { - lean_dec_ref(x_61); - x_65 = lean_box(0); -} -x_66 = l_Lean_Syntax_setArg(x_34, x_36, x_64); -x_67 = l_Lean_Syntax_setArg(x_9, x_33, x_66); -x_68 = l_Lean_Syntax_setArg(x_1, x_8, x_67); -if (lean_is_scalar(x_65)) { - x_69 = lean_alloc_ctor(0, 2, 0); -} else { - x_69 = x_65; -} -lean_ctor_set(x_69, 0, x_63); -lean_ctor_set(x_69, 1, x_68); -lean_ctor_set(x_39, 0, x_69); -x_70 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_70, 0, x_39); -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; lean_object* x_81; lean_object* x_82; -x_71 = lean_ctor_get(x_39, 0); -lean_inc(x_71); +lean_object* x_39; lean_object* x_40; +x_39 = lean_ctor_get(x_36, 0); lean_dec(x_39); -x_72 = lean_ctor_get(x_38, 1); +x_40 = lean_box(0); +lean_ctor_set(x_36, 0, x_40); +return x_36; +} +else +{ +lean_object* x_41; lean_object* x_42; lean_object* x_43; +x_41 = lean_ctor_get(x_36, 1); +lean_inc(x_41); +lean_dec(x_36); +x_42 = lean_box(0); +x_43 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_43, 0, x_42); +lean_ctor_set(x_43, 1, x_41); +return x_43; +} +} +else +{ +uint8_t x_44; +x_44 = !lean_is_exclusive(x_37); +if (x_44 == 0) +{ +uint8_t x_45; +x_45 = !lean_is_exclusive(x_36); +if (x_45 == 0) +{ +lean_object* x_46; lean_object* x_47; uint8_t x_48; +x_46 = lean_ctor_get(x_37, 0); +x_47 = lean_ctor_get(x_36, 0); +lean_dec(x_47); +x_48 = !lean_is_exclusive(x_46); +if (x_48 == 0) +{ +lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; +x_49 = lean_ctor_get(x_46, 1); +x_50 = l_Lean_Syntax_setArg(x_32, x_34, x_49); +x_51 = l_Lean_Syntax_setArg(x_9, x_31, x_50); +x_52 = l_Lean_Syntax_setArg(x_1, x_8, x_51); +lean_ctor_set(x_46, 1, x_52); +return x_36; +} +else +{ +lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; +x_53 = lean_ctor_get(x_46, 0); +x_54 = lean_ctor_get(x_46, 1); +lean_inc(x_54); +lean_inc(x_53); +lean_dec(x_46); +x_55 = l_Lean_Syntax_setArg(x_32, x_34, x_54); +x_56 = l_Lean_Syntax_setArg(x_9, x_31, x_55); +x_57 = l_Lean_Syntax_setArg(x_1, x_8, x_56); +x_58 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_58, 0, x_53); +lean_ctor_set(x_58, 1, x_57); +lean_ctor_set(x_37, 0, x_58); +return x_36; +} +} +else +{ +lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; +x_59 = lean_ctor_get(x_37, 0); +x_60 = lean_ctor_get(x_36, 1); +lean_inc(x_60); +lean_dec(x_36); +x_61 = lean_ctor_get(x_59, 0); +lean_inc(x_61); +x_62 = lean_ctor_get(x_59, 1); +lean_inc(x_62); +if (lean_is_exclusive(x_59)) { + lean_ctor_release(x_59, 0); + lean_ctor_release(x_59, 1); + x_63 = x_59; +} else { + lean_dec_ref(x_59); + x_63 = lean_box(0); +} +x_64 = l_Lean_Syntax_setArg(x_32, x_34, x_62); +x_65 = l_Lean_Syntax_setArg(x_9, x_31, x_64); +x_66 = l_Lean_Syntax_setArg(x_1, x_8, x_65); +if (lean_is_scalar(x_63)) { + x_67 = lean_alloc_ctor(0, 2, 0); +} else { + x_67 = x_63; +} +lean_ctor_set(x_67, 0, x_61); +lean_ctor_set(x_67, 1, x_66); +lean_ctor_set(x_37, 0, x_67); +x_68 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_68, 0, x_37); +lean_ctor_set(x_68, 1, x_60); +return x_68; +} +} +else +{ +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; +x_69 = lean_ctor_get(x_37, 0); +lean_inc(x_69); +lean_dec(x_37); +x_70 = lean_ctor_get(x_36, 1); +lean_inc(x_70); +if (lean_is_exclusive(x_36)) { + lean_ctor_release(x_36, 0); + lean_ctor_release(x_36, 1); + x_71 = x_36; +} else { + lean_dec_ref(x_36); + x_71 = lean_box(0); +} +x_72 = lean_ctor_get(x_69, 0); lean_inc(x_72); -if (lean_is_exclusive(x_38)) { - lean_ctor_release(x_38, 0); - lean_ctor_release(x_38, 1); - x_73 = x_38; +x_73 = lean_ctor_get(x_69, 1); +lean_inc(x_73); +if (lean_is_exclusive(x_69)) { + lean_ctor_release(x_69, 0); + lean_ctor_release(x_69, 1); + x_74 = x_69; } else { - lean_dec_ref(x_38); - x_73 = lean_box(0); + lean_dec_ref(x_69); + x_74 = lean_box(0); } -x_74 = lean_ctor_get(x_71, 0); -lean_inc(x_74); -x_75 = lean_ctor_get(x_71, 1); -lean_inc(x_75); -if (lean_is_exclusive(x_71)) { - lean_ctor_release(x_71, 0); - lean_ctor_release(x_71, 1); - x_76 = x_71; +x_75 = l_Lean_Syntax_setArg(x_32, x_34, x_73); +x_76 = l_Lean_Syntax_setArg(x_9, x_31, x_75); +x_77 = l_Lean_Syntax_setArg(x_1, x_8, x_76); +if (lean_is_scalar(x_74)) { + x_78 = lean_alloc_ctor(0, 2, 0); } else { - lean_dec_ref(x_71); - x_76 = lean_box(0); + x_78 = x_74; } -x_77 = l_Lean_Syntax_setArg(x_34, x_36, x_75); -x_78 = l_Lean_Syntax_setArg(x_9, x_33, x_77); -x_79 = l_Lean_Syntax_setArg(x_1, x_8, x_78); -if (lean_is_scalar(x_76)) { +lean_ctor_set(x_78, 0, x_72); +lean_ctor_set(x_78, 1, x_77); +x_79 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_79, 0, x_78); +if (lean_is_scalar(x_71)) { x_80 = lean_alloc_ctor(0, 2, 0); } else { - x_80 = x_76; + x_80 = x_71; } -lean_ctor_set(x_80, 0, x_74); -lean_ctor_set(x_80, 1, x_79); -x_81 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_81, 0, x_80); -if (lean_is_scalar(x_73)) { - x_82 = lean_alloc_ctor(0, 2, 0); -} else { - x_82 = x_73; -} -lean_ctor_set(x_82, 0, x_81); -lean_ctor_set(x_82, 1, x_72); -return x_82; +lean_ctor_set(x_80, 0, x_79); +lean_ctor_set(x_80, 1, x_70); +return x_80; } } } else { -uint8_t x_83; -lean_dec(x_34); +uint8_t x_81; +lean_dec(x_32); lean_dec(x_9); lean_dec(x_1); -x_83 = !lean_is_exclusive(x_38); -if (x_83 == 0) +x_81 = !lean_is_exclusive(x_36); +if (x_81 == 0) { -return x_38; +return x_36; } else { -lean_object* x_84; lean_object* x_85; lean_object* x_86; -x_84 = lean_ctor_get(x_38, 0); -x_85 = lean_ctor_get(x_38, 1); -lean_inc(x_85); -lean_inc(x_84); -lean_dec(x_38); -x_86 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_86, 0, x_84); -lean_ctor_set(x_86, 1, x_85); +lean_object* x_82; lean_object* x_83; lean_object* x_84; +x_82 = lean_ctor_get(x_36, 0); +x_83 = lean_ctor_get(x_36, 1); +lean_inc(x_83); +lean_inc(x_82); +lean_dec(x_36); +x_84 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_84, 0, x_82); +lean_ctor_set(x_84, 1, x_83); +return x_84; +} +} +} +else +{ +lean_object* x_85; lean_object* x_86; +lean_dec(x_32); +lean_dec(x_9); +lean_dec(x_2); +lean_dec(x_1); +x_85 = lean_box(0); +x_86 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_86, 0, x_85); +lean_ctor_set(x_86, 1, x_3); return x_86; } } @@ -1612,1733 +1602,1527 @@ return x_86; else { lean_object* x_87; lean_object* x_88; -lean_dec(x_34); +lean_dec(x_10); +x_87 = l_Lean_Syntax_getArg(x_9, x_8); +x_88 = l___private_Lean_Elab_Declaration_0__Lean_Elab_Command_expandDeclIdNamespace_x3f(x_87, x_2, x_3); +if (lean_obj_tag(x_88) == 0) +{ +lean_object* x_89; +x_89 = lean_ctor_get(x_88, 0); +lean_inc(x_89); +if (lean_obj_tag(x_89) == 0) +{ +uint8_t x_90; lean_dec(x_9); -lean_dec(x_2); lean_dec(x_1); -x_87 = lean_box(0); -x_88 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_88, 0, x_87); -lean_ctor_set(x_88, 1, x_3); +x_90 = !lean_is_exclusive(x_88); +if (x_90 == 0) +{ +lean_object* x_91; lean_object* x_92; +x_91 = lean_ctor_get(x_88, 0); +lean_dec(x_91); +x_92 = lean_box(0); +lean_ctor_set(x_88, 0, x_92); +return x_88; +} +else +{ +lean_object* x_93; lean_object* x_94; lean_object* x_95; +x_93 = lean_ctor_get(x_88, 1); +lean_inc(x_93); +lean_dec(x_88); +x_94 = lean_box(0); +x_95 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_95, 0, x_94); +lean_ctor_set(x_95, 1, x_93); +return x_95; +} +} +else +{ +uint8_t x_96; +x_96 = !lean_is_exclusive(x_89); +if (x_96 == 0) +{ +uint8_t x_97; +x_97 = !lean_is_exclusive(x_88); +if (x_97 == 0) +{ +lean_object* x_98; lean_object* x_99; uint8_t x_100; +x_98 = lean_ctor_get(x_89, 0); +x_99 = lean_ctor_get(x_88, 0); +lean_dec(x_99); +x_100 = !lean_is_exclusive(x_98); +if (x_100 == 0) +{ +lean_object* x_101; lean_object* x_102; lean_object* x_103; +x_101 = lean_ctor_get(x_98, 1); +x_102 = l_Lean_Syntax_setArg(x_9, x_8, x_101); +x_103 = l_Lean_Syntax_setArg(x_1, x_8, x_102); +lean_ctor_set(x_98, 1, x_103); +return x_88; +} +else +{ +lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; +x_104 = lean_ctor_get(x_98, 0); +x_105 = lean_ctor_get(x_98, 1); +lean_inc(x_105); +lean_inc(x_104); +lean_dec(x_98); +x_106 = l_Lean_Syntax_setArg(x_9, x_8, x_105); +x_107 = l_Lean_Syntax_setArg(x_1, x_8, x_106); +x_108 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_108, 0, x_104); +lean_ctor_set(x_108, 1, x_107); +lean_ctor_set(x_89, 0, x_108); return x_88; } } -} else { -lean_object* x_89; lean_object* x_90; -lean_dec(x_10); -x_89 = l_Lean_Syntax_getArg(x_9, x_8); -x_90 = l___private_Lean_Elab_Declaration_0__Lean_Elab_Command_expandDeclIdNamespace_x3f(x_89, x_2, x_3); -if (lean_obj_tag(x_90) == 0) -{ -lean_object* x_91; -x_91 = lean_ctor_get(x_90, 0); -lean_inc(x_91); -if (lean_obj_tag(x_91) == 0) -{ -uint8_t x_92; -lean_dec(x_9); -lean_dec(x_1); -x_92 = !lean_is_exclusive(x_90); -if (x_92 == 0) -{ -lean_object* x_93; lean_object* x_94; -x_93 = lean_ctor_get(x_90, 0); -lean_dec(x_93); -x_94 = lean_box(0); -lean_ctor_set(x_90, 0, x_94); -return x_90; -} -else -{ -lean_object* x_95; lean_object* x_96; lean_object* x_97; -x_95 = lean_ctor_get(x_90, 1); -lean_inc(x_95); -lean_dec(x_90); -x_96 = lean_box(0); -x_97 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_97, 0, x_96); -lean_ctor_set(x_97, 1, x_95); -return x_97; -} -} -else -{ -uint8_t x_98; -x_98 = !lean_is_exclusive(x_91); -if (x_98 == 0) -{ -uint8_t x_99; -x_99 = !lean_is_exclusive(x_90); -if (x_99 == 0) -{ -lean_object* x_100; lean_object* x_101; uint8_t x_102; -x_100 = lean_ctor_get(x_91, 0); -x_101 = lean_ctor_get(x_90, 0); -lean_dec(x_101); -x_102 = !lean_is_exclusive(x_100); -if (x_102 == 0) -{ -lean_object* x_103; lean_object* x_104; lean_object* x_105; -x_103 = lean_ctor_get(x_100, 1); -x_104 = l_Lean_Syntax_setArg(x_9, x_8, x_103); -x_105 = l_Lean_Syntax_setArg(x_1, x_8, x_104); -lean_ctor_set(x_100, 1, x_105); -return x_90; -} -else -{ -lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; -x_106 = lean_ctor_get(x_100, 0); -x_107 = lean_ctor_get(x_100, 1); -lean_inc(x_107); -lean_inc(x_106); -lean_dec(x_100); -x_108 = l_Lean_Syntax_setArg(x_9, x_8, x_107); -x_109 = l_Lean_Syntax_setArg(x_1, x_8, x_108); -x_110 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_110, 0, x_106); -lean_ctor_set(x_110, 1, x_109); -lean_ctor_set(x_91, 0, x_110); -return x_90; -} -} -else -{ -lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; -x_111 = lean_ctor_get(x_91, 0); -x_112 = lean_ctor_get(x_90, 1); +lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; +x_109 = lean_ctor_get(x_89, 0); +x_110 = lean_ctor_get(x_88, 1); +lean_inc(x_110); +lean_dec(x_88); +x_111 = lean_ctor_get(x_109, 0); +lean_inc(x_111); +x_112 = lean_ctor_get(x_109, 1); lean_inc(x_112); -lean_dec(x_90); -x_113 = lean_ctor_get(x_111, 0); -lean_inc(x_113); -x_114 = lean_ctor_get(x_111, 1); -lean_inc(x_114); -if (lean_is_exclusive(x_111)) { - lean_ctor_release(x_111, 0); - lean_ctor_release(x_111, 1); - x_115 = x_111; +if (lean_is_exclusive(x_109)) { + lean_ctor_release(x_109, 0); + lean_ctor_release(x_109, 1); + x_113 = x_109; } else { - lean_dec_ref(x_111); - x_115 = lean_box(0); + lean_dec_ref(x_109); + x_113 = lean_box(0); } -x_116 = l_Lean_Syntax_setArg(x_9, x_8, x_114); -x_117 = l_Lean_Syntax_setArg(x_1, x_8, x_116); -if (lean_is_scalar(x_115)) { - x_118 = lean_alloc_ctor(0, 2, 0); +x_114 = l_Lean_Syntax_setArg(x_9, x_8, x_112); +x_115 = l_Lean_Syntax_setArg(x_1, x_8, x_114); +if (lean_is_scalar(x_113)) { + x_116 = lean_alloc_ctor(0, 2, 0); } else { - x_118 = x_115; + x_116 = x_113; } -lean_ctor_set(x_118, 0, x_113); -lean_ctor_set(x_118, 1, x_117); -lean_ctor_set(x_91, 0, x_118); -x_119 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_119, 0, x_91); -lean_ctor_set(x_119, 1, x_112); -return x_119; +lean_ctor_set(x_116, 0, x_111); +lean_ctor_set(x_116, 1, x_115); +lean_ctor_set(x_89, 0, x_116); +x_117 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_117, 0, x_89); +lean_ctor_set(x_117, 1, x_110); +return x_117; } } else { -lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; lean_object* x_129; lean_object* x_130; -x_120 = lean_ctor_get(x_91, 0); -lean_inc(x_120); -lean_dec(x_91); -x_121 = lean_ctor_get(x_90, 1); +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; +x_118 = lean_ctor_get(x_89, 0); +lean_inc(x_118); +lean_dec(x_89); +x_119 = lean_ctor_get(x_88, 1); +lean_inc(x_119); +if (lean_is_exclusive(x_88)) { + lean_ctor_release(x_88, 0); + lean_ctor_release(x_88, 1); + x_120 = x_88; +} else { + lean_dec_ref(x_88); + x_120 = lean_box(0); +} +x_121 = lean_ctor_get(x_118, 0); lean_inc(x_121); -if (lean_is_exclusive(x_90)) { - lean_ctor_release(x_90, 0); - lean_ctor_release(x_90, 1); - x_122 = x_90; +x_122 = lean_ctor_get(x_118, 1); +lean_inc(x_122); +if (lean_is_exclusive(x_118)) { + lean_ctor_release(x_118, 0); + lean_ctor_release(x_118, 1); + x_123 = x_118; } else { - lean_dec_ref(x_90); - x_122 = lean_box(0); + lean_dec_ref(x_118); + x_123 = lean_box(0); } -x_123 = lean_ctor_get(x_120, 0); -lean_inc(x_123); -x_124 = lean_ctor_get(x_120, 1); -lean_inc(x_124); -if (lean_is_exclusive(x_120)) { - lean_ctor_release(x_120, 0); - lean_ctor_release(x_120, 1); - x_125 = x_120; +x_124 = l_Lean_Syntax_setArg(x_9, x_8, x_122); +x_125 = l_Lean_Syntax_setArg(x_1, x_8, x_124); +if (lean_is_scalar(x_123)) { + x_126 = lean_alloc_ctor(0, 2, 0); } else { - lean_dec_ref(x_120); - x_125 = lean_box(0); + x_126 = x_123; } -x_126 = l_Lean_Syntax_setArg(x_9, x_8, x_124); -x_127 = l_Lean_Syntax_setArg(x_1, x_8, x_126); -if (lean_is_scalar(x_125)) { +lean_ctor_set(x_126, 0, x_121); +lean_ctor_set(x_126, 1, x_125); +x_127 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_127, 0, x_126); +if (lean_is_scalar(x_120)) { x_128 = lean_alloc_ctor(0, 2, 0); } else { - x_128 = x_125; + x_128 = x_120; } -lean_ctor_set(x_128, 0, x_123); -lean_ctor_set(x_128, 1, x_127); -x_129 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_129, 0, x_128); -if (lean_is_scalar(x_122)) { - x_130 = lean_alloc_ctor(0, 2, 0); -} else { - x_130 = x_122; -} -lean_ctor_set(x_130, 0, x_129); -lean_ctor_set(x_130, 1, x_121); -return x_130; +lean_ctor_set(x_128, 0, x_127); +lean_ctor_set(x_128, 1, x_119); +return x_128; } } } else { -uint8_t x_131; +uint8_t x_129; lean_dec(x_9); lean_dec(x_1); -x_131 = !lean_is_exclusive(x_90); -if (x_131 == 0) +x_129 = !lean_is_exclusive(x_88); +if (x_129 == 0) { -return x_90; +return x_88; } else { -lean_object* x_132; lean_object* x_133; lean_object* x_134; -x_132 = lean_ctor_get(x_90, 0); -x_133 = lean_ctor_get(x_90, 1); -lean_inc(x_133); -lean_inc(x_132); -lean_dec(x_90); -x_134 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_134, 0, x_132); -lean_ctor_set(x_134, 1, x_133); +lean_object* x_130; lean_object* x_131; lean_object* x_132; +x_130 = lean_ctor_get(x_88, 0); +x_131 = lean_ctor_get(x_88, 1); +lean_inc(x_131); +lean_inc(x_130); +lean_dec(x_88); +x_132 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_132, 0, x_130); +lean_ctor_set(x_132, 1, x_131); +return x_132; +} +} +} +} +else +{ +lean_object* x_133; lean_object* x_134; +lean_dec(x_10); +x_133 = l_Lean_Syntax_getArg(x_9, x_8); +x_134 = l___private_Lean_Elab_Declaration_0__Lean_Elab_Command_expandDeclIdNamespace_x3f(x_133, x_2, x_3); +if (lean_obj_tag(x_134) == 0) +{ +lean_object* x_135; +x_135 = lean_ctor_get(x_134, 0); +lean_inc(x_135); +if (lean_obj_tag(x_135) == 0) +{ +uint8_t x_136; +lean_dec(x_9); +lean_dec(x_1); +x_136 = !lean_is_exclusive(x_134); +if (x_136 == 0) +{ +lean_object* x_137; lean_object* x_138; +x_137 = lean_ctor_get(x_134, 0); +lean_dec(x_137); +x_138 = lean_box(0); +lean_ctor_set(x_134, 0, x_138); +return x_134; +} +else +{ +lean_object* x_139; lean_object* x_140; lean_object* x_141; +x_139 = lean_ctor_get(x_134, 1); +lean_inc(x_139); +lean_dec(x_134); +x_140 = lean_box(0); +x_141 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_141, 0, x_140); +lean_ctor_set(x_141, 1, x_139); +return x_141; +} +} +else +{ +uint8_t x_142; +x_142 = !lean_is_exclusive(x_135); +if (x_142 == 0) +{ +uint8_t x_143; +x_143 = !lean_is_exclusive(x_134); +if (x_143 == 0) +{ +lean_object* x_144; lean_object* x_145; uint8_t x_146; +x_144 = lean_ctor_get(x_135, 0); +x_145 = lean_ctor_get(x_134, 0); +lean_dec(x_145); +x_146 = !lean_is_exclusive(x_144); +if (x_146 == 0) +{ +lean_object* x_147; lean_object* x_148; lean_object* x_149; +x_147 = lean_ctor_get(x_144, 1); +x_148 = l_Lean_Syntax_setArg(x_9, x_8, x_147); +x_149 = l_Lean_Syntax_setArg(x_1, x_8, x_148); +lean_ctor_set(x_144, 1, x_149); +return x_134; +} +else +{ +lean_object* x_150; lean_object* x_151; lean_object* x_152; lean_object* x_153; lean_object* x_154; +x_150 = lean_ctor_get(x_144, 0); +x_151 = lean_ctor_get(x_144, 1); +lean_inc(x_151); +lean_inc(x_150); +lean_dec(x_144); +x_152 = l_Lean_Syntax_setArg(x_9, x_8, x_151); +x_153 = l_Lean_Syntax_setArg(x_1, x_8, x_152); +x_154 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_154, 0, x_150); +lean_ctor_set(x_154, 1, x_153); +lean_ctor_set(x_135, 0, x_154); return x_134; } } -} -} else { -lean_object* x_135; lean_object* x_136; -lean_dec(x_10); -x_135 = l_Lean_Syntax_getArg(x_9, x_8); -x_136 = l___private_Lean_Elab_Declaration_0__Lean_Elab_Command_expandDeclIdNamespace_x3f(x_135, x_2, x_3); -if (lean_obj_tag(x_136) == 0) -{ -lean_object* x_137; -x_137 = lean_ctor_get(x_136, 0); -lean_inc(x_137); -if (lean_obj_tag(x_137) == 0) -{ -uint8_t x_138; -lean_dec(x_9); -lean_dec(x_1); -x_138 = !lean_is_exclusive(x_136); -if (x_138 == 0) -{ -lean_object* x_139; lean_object* x_140; -x_139 = lean_ctor_get(x_136, 0); -lean_dec(x_139); -x_140 = lean_box(0); -lean_ctor_set(x_136, 0, x_140); -return x_136; -} -else -{ -lean_object* x_141; lean_object* x_142; lean_object* x_143; -x_141 = lean_ctor_get(x_136, 1); -lean_inc(x_141); -lean_dec(x_136); -x_142 = lean_box(0); -x_143 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_143, 0, x_142); -lean_ctor_set(x_143, 1, x_141); -return x_143; -} -} -else -{ -uint8_t x_144; -x_144 = !lean_is_exclusive(x_137); -if (x_144 == 0) -{ -uint8_t x_145; -x_145 = !lean_is_exclusive(x_136); -if (x_145 == 0) -{ -lean_object* x_146; lean_object* x_147; uint8_t x_148; -x_146 = lean_ctor_get(x_137, 0); -x_147 = lean_ctor_get(x_136, 0); -lean_dec(x_147); -x_148 = !lean_is_exclusive(x_146); -if (x_148 == 0) -{ -lean_object* x_149; lean_object* x_150; lean_object* x_151; -x_149 = lean_ctor_get(x_146, 1); -x_150 = l_Lean_Syntax_setArg(x_9, x_8, x_149); -x_151 = l_Lean_Syntax_setArg(x_1, x_8, x_150); -lean_ctor_set(x_146, 1, x_151); -return x_136; -} -else -{ -lean_object* x_152; lean_object* x_153; lean_object* x_154; lean_object* x_155; lean_object* x_156; -x_152 = lean_ctor_get(x_146, 0); -x_153 = lean_ctor_get(x_146, 1); -lean_inc(x_153); -lean_inc(x_152); -lean_dec(x_146); -x_154 = l_Lean_Syntax_setArg(x_9, x_8, x_153); -x_155 = l_Lean_Syntax_setArg(x_1, x_8, x_154); -x_156 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_156, 0, x_152); -lean_ctor_set(x_156, 1, x_155); -lean_ctor_set(x_137, 0, x_156); -return x_136; -} -} -else -{ -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; -x_157 = lean_ctor_get(x_137, 0); -x_158 = lean_ctor_get(x_136, 1); +lean_object* x_155; lean_object* x_156; lean_object* x_157; lean_object* x_158; lean_object* x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; +x_155 = lean_ctor_get(x_135, 0); +x_156 = lean_ctor_get(x_134, 1); +lean_inc(x_156); +lean_dec(x_134); +x_157 = lean_ctor_get(x_155, 0); +lean_inc(x_157); +x_158 = lean_ctor_get(x_155, 1); lean_inc(x_158); -lean_dec(x_136); -x_159 = lean_ctor_get(x_157, 0); -lean_inc(x_159); -x_160 = lean_ctor_get(x_157, 1); -lean_inc(x_160); -if (lean_is_exclusive(x_157)) { - lean_ctor_release(x_157, 0); - lean_ctor_release(x_157, 1); - x_161 = x_157; +if (lean_is_exclusive(x_155)) { + lean_ctor_release(x_155, 0); + lean_ctor_release(x_155, 1); + x_159 = x_155; } else { - lean_dec_ref(x_157); - x_161 = lean_box(0); + lean_dec_ref(x_155); + x_159 = lean_box(0); } -x_162 = l_Lean_Syntax_setArg(x_9, x_8, x_160); -x_163 = l_Lean_Syntax_setArg(x_1, x_8, x_162); -if (lean_is_scalar(x_161)) { - x_164 = lean_alloc_ctor(0, 2, 0); +x_160 = l_Lean_Syntax_setArg(x_9, x_8, x_158); +x_161 = l_Lean_Syntax_setArg(x_1, x_8, x_160); +if (lean_is_scalar(x_159)) { + x_162 = lean_alloc_ctor(0, 2, 0); } else { - x_164 = x_161; + x_162 = x_159; } -lean_ctor_set(x_164, 0, x_159); -lean_ctor_set(x_164, 1, x_163); -lean_ctor_set(x_137, 0, x_164); -x_165 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_165, 0, x_137); -lean_ctor_set(x_165, 1, x_158); -return x_165; +lean_ctor_set(x_162, 0, x_157); +lean_ctor_set(x_162, 1, x_161); +lean_ctor_set(x_135, 0, x_162); +x_163 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_163, 0, x_135); +lean_ctor_set(x_163, 1, x_156); +return x_163; } } else { -lean_object* x_166; lean_object* x_167; lean_object* x_168; lean_object* x_169; lean_object* x_170; lean_object* x_171; lean_object* x_172; lean_object* x_173; lean_object* x_174; lean_object* x_175; lean_object* x_176; -x_166 = lean_ctor_get(x_137, 0); -lean_inc(x_166); -lean_dec(x_137); -x_167 = lean_ctor_get(x_136, 1); +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; +x_164 = lean_ctor_get(x_135, 0); +lean_inc(x_164); +lean_dec(x_135); +x_165 = lean_ctor_get(x_134, 1); +lean_inc(x_165); +if (lean_is_exclusive(x_134)) { + lean_ctor_release(x_134, 0); + lean_ctor_release(x_134, 1); + x_166 = x_134; +} else { + lean_dec_ref(x_134); + x_166 = lean_box(0); +} +x_167 = lean_ctor_get(x_164, 0); lean_inc(x_167); -if (lean_is_exclusive(x_136)) { - lean_ctor_release(x_136, 0); - lean_ctor_release(x_136, 1); - x_168 = x_136; +x_168 = lean_ctor_get(x_164, 1); +lean_inc(x_168); +if (lean_is_exclusive(x_164)) { + lean_ctor_release(x_164, 0); + lean_ctor_release(x_164, 1); + x_169 = x_164; } else { - lean_dec_ref(x_136); - x_168 = lean_box(0); + lean_dec_ref(x_164); + x_169 = lean_box(0); } -x_169 = lean_ctor_get(x_166, 0); -lean_inc(x_169); -x_170 = lean_ctor_get(x_166, 1); -lean_inc(x_170); -if (lean_is_exclusive(x_166)) { - lean_ctor_release(x_166, 0); - lean_ctor_release(x_166, 1); - x_171 = x_166; +x_170 = l_Lean_Syntax_setArg(x_9, x_8, x_168); +x_171 = l_Lean_Syntax_setArg(x_1, x_8, x_170); +if (lean_is_scalar(x_169)) { + x_172 = lean_alloc_ctor(0, 2, 0); } else { - lean_dec_ref(x_166); - x_171 = lean_box(0); + x_172 = x_169; } -x_172 = l_Lean_Syntax_setArg(x_9, x_8, x_170); -x_173 = l_Lean_Syntax_setArg(x_1, x_8, x_172); -if (lean_is_scalar(x_171)) { +lean_ctor_set(x_172, 0, x_167); +lean_ctor_set(x_172, 1, x_171); +x_173 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_173, 0, x_172); +if (lean_is_scalar(x_166)) { x_174 = lean_alloc_ctor(0, 2, 0); } else { - x_174 = x_171; + x_174 = x_166; } -lean_ctor_set(x_174, 0, x_169); -lean_ctor_set(x_174, 1, x_173); -x_175 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_175, 0, x_174); -if (lean_is_scalar(x_168)) { - x_176 = lean_alloc_ctor(0, 2, 0); -} else { - x_176 = x_168; -} -lean_ctor_set(x_176, 0, x_175); -lean_ctor_set(x_176, 1, x_167); -return x_176; +lean_ctor_set(x_174, 0, x_173); +lean_ctor_set(x_174, 1, x_165); +return x_174; } } } else { -uint8_t x_177; +uint8_t x_175; lean_dec(x_9); lean_dec(x_1); -x_177 = !lean_is_exclusive(x_136); -if (x_177 == 0) +x_175 = !lean_is_exclusive(x_134); +if (x_175 == 0) { -return x_136; +return x_134; } else { -lean_object* x_178; lean_object* x_179; lean_object* x_180; -x_178 = lean_ctor_get(x_136, 0); -x_179 = lean_ctor_get(x_136, 1); -lean_inc(x_179); -lean_inc(x_178); -lean_dec(x_136); -x_180 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_180, 0, x_178); -lean_ctor_set(x_180, 1, x_179); +lean_object* x_176; lean_object* x_177; lean_object* x_178; +x_176 = lean_ctor_get(x_134, 0); +x_177 = lean_ctor_get(x_134, 1); +lean_inc(x_177); +lean_inc(x_176); +lean_dec(x_134); +x_178 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_178, 0, x_176); +lean_ctor_set(x_178, 1, x_177); +return x_178; +} +} +} +} +else +{ +lean_object* x_179; lean_object* x_180; +lean_dec(x_10); +x_179 = l_Lean_Syntax_getArg(x_9, x_8); +x_180 = l___private_Lean_Elab_Declaration_0__Lean_Elab_Command_expandDeclIdNamespace_x3f(x_179, x_2, x_3); +if (lean_obj_tag(x_180) == 0) +{ +lean_object* x_181; +x_181 = lean_ctor_get(x_180, 0); +lean_inc(x_181); +if (lean_obj_tag(x_181) == 0) +{ +uint8_t x_182; +lean_dec(x_9); +lean_dec(x_1); +x_182 = !lean_is_exclusive(x_180); +if (x_182 == 0) +{ +lean_object* x_183; lean_object* x_184; +x_183 = lean_ctor_get(x_180, 0); +lean_dec(x_183); +x_184 = lean_box(0); +lean_ctor_set(x_180, 0, x_184); +return x_180; +} +else +{ +lean_object* x_185; lean_object* x_186; lean_object* x_187; +x_185 = lean_ctor_get(x_180, 1); +lean_inc(x_185); +lean_dec(x_180); +x_186 = lean_box(0); +x_187 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_187, 0, x_186); +lean_ctor_set(x_187, 1, x_185); +return x_187; +} +} +else +{ +uint8_t x_188; +x_188 = !lean_is_exclusive(x_181); +if (x_188 == 0) +{ +uint8_t x_189; +x_189 = !lean_is_exclusive(x_180); +if (x_189 == 0) +{ +lean_object* x_190; lean_object* x_191; uint8_t x_192; +x_190 = lean_ctor_get(x_181, 0); +x_191 = lean_ctor_get(x_180, 0); +lean_dec(x_191); +x_192 = !lean_is_exclusive(x_190); +if (x_192 == 0) +{ +lean_object* x_193; lean_object* x_194; lean_object* x_195; +x_193 = lean_ctor_get(x_190, 1); +x_194 = l_Lean_Syntax_setArg(x_9, x_8, x_193); +x_195 = l_Lean_Syntax_setArg(x_1, x_8, x_194); +lean_ctor_set(x_190, 1, x_195); +return x_180; +} +else +{ +lean_object* x_196; lean_object* x_197; lean_object* x_198; lean_object* x_199; lean_object* x_200; +x_196 = lean_ctor_get(x_190, 0); +x_197 = lean_ctor_get(x_190, 1); +lean_inc(x_197); +lean_inc(x_196); +lean_dec(x_190); +x_198 = l_Lean_Syntax_setArg(x_9, x_8, x_197); +x_199 = l_Lean_Syntax_setArg(x_1, x_8, x_198); +x_200 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_200, 0, x_196); +lean_ctor_set(x_200, 1, x_199); +lean_ctor_set(x_181, 0, x_200); return x_180; } } -} -} else { -lean_object* x_181; lean_object* x_182; -lean_dec(x_10); -x_181 = l_Lean_Syntax_getArg(x_9, x_8); -x_182 = l___private_Lean_Elab_Declaration_0__Lean_Elab_Command_expandDeclIdNamespace_x3f(x_181, x_2, x_3); -if (lean_obj_tag(x_182) == 0) -{ -lean_object* x_183; -x_183 = lean_ctor_get(x_182, 0); -lean_inc(x_183); -if (lean_obj_tag(x_183) == 0) -{ -uint8_t x_184; -lean_dec(x_9); -lean_dec(x_1); -x_184 = !lean_is_exclusive(x_182); -if (x_184 == 0) -{ -lean_object* x_185; lean_object* x_186; -x_185 = lean_ctor_get(x_182, 0); -lean_dec(x_185); -x_186 = lean_box(0); -lean_ctor_set(x_182, 0, x_186); -return x_182; -} -else -{ -lean_object* x_187; lean_object* x_188; lean_object* x_189; -x_187 = lean_ctor_get(x_182, 1); -lean_inc(x_187); -lean_dec(x_182); -x_188 = lean_box(0); -x_189 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_189, 0, x_188); -lean_ctor_set(x_189, 1, x_187); -return x_189; -} -} -else -{ -uint8_t x_190; -x_190 = !lean_is_exclusive(x_183); -if (x_190 == 0) -{ -uint8_t x_191; -x_191 = !lean_is_exclusive(x_182); -if (x_191 == 0) -{ -lean_object* x_192; lean_object* x_193; uint8_t x_194; -x_192 = lean_ctor_get(x_183, 0); -x_193 = lean_ctor_get(x_182, 0); -lean_dec(x_193); -x_194 = !lean_is_exclusive(x_192); -if (x_194 == 0) -{ -lean_object* x_195; lean_object* x_196; lean_object* x_197; -x_195 = lean_ctor_get(x_192, 1); -x_196 = l_Lean_Syntax_setArg(x_9, x_8, x_195); -x_197 = l_Lean_Syntax_setArg(x_1, x_8, x_196); -lean_ctor_set(x_192, 1, x_197); -return x_182; -} -else -{ -lean_object* x_198; lean_object* x_199; lean_object* x_200; lean_object* x_201; lean_object* x_202; -x_198 = lean_ctor_get(x_192, 0); -x_199 = lean_ctor_get(x_192, 1); -lean_inc(x_199); -lean_inc(x_198); -lean_dec(x_192); -x_200 = l_Lean_Syntax_setArg(x_9, x_8, x_199); -x_201 = l_Lean_Syntax_setArg(x_1, x_8, x_200); -x_202 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_202, 0, x_198); -lean_ctor_set(x_202, 1, x_201); -lean_ctor_set(x_183, 0, x_202); -return x_182; -} -} -else -{ -lean_object* x_203; lean_object* x_204; lean_object* x_205; lean_object* x_206; lean_object* x_207; lean_object* x_208; lean_object* x_209; lean_object* x_210; lean_object* x_211; -x_203 = lean_ctor_get(x_183, 0); -x_204 = lean_ctor_get(x_182, 1); +lean_object* x_201; lean_object* x_202; lean_object* x_203; lean_object* x_204; lean_object* x_205; lean_object* x_206; lean_object* x_207; lean_object* x_208; lean_object* x_209; +x_201 = lean_ctor_get(x_181, 0); +x_202 = lean_ctor_get(x_180, 1); +lean_inc(x_202); +lean_dec(x_180); +x_203 = lean_ctor_get(x_201, 0); +lean_inc(x_203); +x_204 = lean_ctor_get(x_201, 1); lean_inc(x_204); -lean_dec(x_182); -x_205 = lean_ctor_get(x_203, 0); -lean_inc(x_205); -x_206 = lean_ctor_get(x_203, 1); -lean_inc(x_206); -if (lean_is_exclusive(x_203)) { - lean_ctor_release(x_203, 0); - lean_ctor_release(x_203, 1); - x_207 = x_203; +if (lean_is_exclusive(x_201)) { + lean_ctor_release(x_201, 0); + lean_ctor_release(x_201, 1); + x_205 = x_201; } else { - lean_dec_ref(x_203); - x_207 = lean_box(0); + lean_dec_ref(x_201); + x_205 = lean_box(0); } -x_208 = l_Lean_Syntax_setArg(x_9, x_8, x_206); -x_209 = l_Lean_Syntax_setArg(x_1, x_8, x_208); -if (lean_is_scalar(x_207)) { - x_210 = lean_alloc_ctor(0, 2, 0); +x_206 = l_Lean_Syntax_setArg(x_9, x_8, x_204); +x_207 = l_Lean_Syntax_setArg(x_1, x_8, x_206); +if (lean_is_scalar(x_205)) { + x_208 = lean_alloc_ctor(0, 2, 0); } else { - x_210 = x_207; + x_208 = x_205; } -lean_ctor_set(x_210, 0, x_205); -lean_ctor_set(x_210, 1, x_209); -lean_ctor_set(x_183, 0, x_210); -x_211 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_211, 0, x_183); -lean_ctor_set(x_211, 1, x_204); -return x_211; +lean_ctor_set(x_208, 0, x_203); +lean_ctor_set(x_208, 1, x_207); +lean_ctor_set(x_181, 0, x_208); +x_209 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_209, 0, x_181); +lean_ctor_set(x_209, 1, x_202); +return x_209; } } else { -lean_object* x_212; lean_object* x_213; lean_object* x_214; lean_object* x_215; lean_object* x_216; lean_object* x_217; lean_object* x_218; lean_object* x_219; lean_object* x_220; lean_object* x_221; lean_object* x_222; -x_212 = lean_ctor_get(x_183, 0); -lean_inc(x_212); -lean_dec(x_183); -x_213 = lean_ctor_get(x_182, 1); +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; +x_210 = lean_ctor_get(x_181, 0); +lean_inc(x_210); +lean_dec(x_181); +x_211 = lean_ctor_get(x_180, 1); +lean_inc(x_211); +if (lean_is_exclusive(x_180)) { + lean_ctor_release(x_180, 0); + lean_ctor_release(x_180, 1); + x_212 = x_180; +} else { + lean_dec_ref(x_180); + x_212 = lean_box(0); +} +x_213 = lean_ctor_get(x_210, 0); lean_inc(x_213); -if (lean_is_exclusive(x_182)) { - lean_ctor_release(x_182, 0); - lean_ctor_release(x_182, 1); - x_214 = x_182; +x_214 = lean_ctor_get(x_210, 1); +lean_inc(x_214); +if (lean_is_exclusive(x_210)) { + lean_ctor_release(x_210, 0); + lean_ctor_release(x_210, 1); + x_215 = x_210; } else { - lean_dec_ref(x_182); - x_214 = lean_box(0); + lean_dec_ref(x_210); + x_215 = lean_box(0); } -x_215 = lean_ctor_get(x_212, 0); -lean_inc(x_215); -x_216 = lean_ctor_get(x_212, 1); -lean_inc(x_216); -if (lean_is_exclusive(x_212)) { - lean_ctor_release(x_212, 0); - lean_ctor_release(x_212, 1); - x_217 = x_212; +x_216 = l_Lean_Syntax_setArg(x_9, x_8, x_214); +x_217 = l_Lean_Syntax_setArg(x_1, x_8, x_216); +if (lean_is_scalar(x_215)) { + x_218 = lean_alloc_ctor(0, 2, 0); } else { - lean_dec_ref(x_212); - x_217 = lean_box(0); + x_218 = x_215; } -x_218 = l_Lean_Syntax_setArg(x_9, x_8, x_216); -x_219 = l_Lean_Syntax_setArg(x_1, x_8, x_218); -if (lean_is_scalar(x_217)) { +lean_ctor_set(x_218, 0, x_213); +lean_ctor_set(x_218, 1, x_217); +x_219 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_219, 0, x_218); +if (lean_is_scalar(x_212)) { x_220 = lean_alloc_ctor(0, 2, 0); } else { - x_220 = x_217; + x_220 = x_212; } -lean_ctor_set(x_220, 0, x_215); -lean_ctor_set(x_220, 1, x_219); -x_221 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_221, 0, x_220); -if (lean_is_scalar(x_214)) { - x_222 = lean_alloc_ctor(0, 2, 0); -} else { - x_222 = x_214; -} -lean_ctor_set(x_222, 0, x_221); -lean_ctor_set(x_222, 1, x_213); -return x_222; +lean_ctor_set(x_220, 0, x_219); +lean_ctor_set(x_220, 1, x_211); +return x_220; } } } else { -uint8_t x_223; +uint8_t x_221; lean_dec(x_9); lean_dec(x_1); -x_223 = !lean_is_exclusive(x_182); -if (x_223 == 0) +x_221 = !lean_is_exclusive(x_180); +if (x_221 == 0) { -return x_182; +return x_180; } else { -lean_object* x_224; lean_object* x_225; lean_object* x_226; -x_224 = lean_ctor_get(x_182, 0); -x_225 = lean_ctor_get(x_182, 1); -lean_inc(x_225); -lean_inc(x_224); -lean_dec(x_182); -x_226 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_226, 0, x_224); -lean_ctor_set(x_226, 1, x_225); +lean_object* x_222; lean_object* x_223; lean_object* x_224; +x_222 = lean_ctor_get(x_180, 0); +x_223 = lean_ctor_get(x_180, 1); +lean_inc(x_223); +lean_inc(x_222); +lean_dec(x_180); +x_224 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_224, 0, x_222); +lean_ctor_set(x_224, 1, x_223); +return x_224; +} +} +} +} +else +{ +lean_object* x_225; lean_object* x_226; +lean_dec(x_10); +x_225 = l_Lean_Syntax_getArg(x_9, x_8); +x_226 = l___private_Lean_Elab_Declaration_0__Lean_Elab_Command_expandDeclIdNamespace_x3f(x_225, x_2, x_3); +if (lean_obj_tag(x_226) == 0) +{ +lean_object* x_227; +x_227 = lean_ctor_get(x_226, 0); +lean_inc(x_227); +if (lean_obj_tag(x_227) == 0) +{ +uint8_t x_228; +lean_dec(x_9); +lean_dec(x_1); +x_228 = !lean_is_exclusive(x_226); +if (x_228 == 0) +{ +lean_object* x_229; lean_object* x_230; +x_229 = lean_ctor_get(x_226, 0); +lean_dec(x_229); +x_230 = lean_box(0); +lean_ctor_set(x_226, 0, x_230); +return x_226; +} +else +{ +lean_object* x_231; lean_object* x_232; lean_object* x_233; +x_231 = lean_ctor_get(x_226, 1); +lean_inc(x_231); +lean_dec(x_226); +x_232 = lean_box(0); +x_233 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_233, 0, x_232); +lean_ctor_set(x_233, 1, x_231); +return x_233; +} +} +else +{ +uint8_t x_234; +x_234 = !lean_is_exclusive(x_227); +if (x_234 == 0) +{ +uint8_t x_235; +x_235 = !lean_is_exclusive(x_226); +if (x_235 == 0) +{ +lean_object* x_236; lean_object* x_237; uint8_t x_238; +x_236 = lean_ctor_get(x_227, 0); +x_237 = lean_ctor_get(x_226, 0); +lean_dec(x_237); +x_238 = !lean_is_exclusive(x_236); +if (x_238 == 0) +{ +lean_object* x_239; lean_object* x_240; lean_object* x_241; +x_239 = lean_ctor_get(x_236, 1); +x_240 = l_Lean_Syntax_setArg(x_9, x_8, x_239); +x_241 = l_Lean_Syntax_setArg(x_1, x_8, x_240); +lean_ctor_set(x_236, 1, x_241); +return x_226; +} +else +{ +lean_object* x_242; lean_object* x_243; lean_object* x_244; lean_object* x_245; lean_object* x_246; +x_242 = lean_ctor_get(x_236, 0); +x_243 = lean_ctor_get(x_236, 1); +lean_inc(x_243); +lean_inc(x_242); +lean_dec(x_236); +x_244 = l_Lean_Syntax_setArg(x_9, x_8, x_243); +x_245 = l_Lean_Syntax_setArg(x_1, x_8, x_244); +x_246 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_246, 0, x_242); +lean_ctor_set(x_246, 1, x_245); +lean_ctor_set(x_227, 0, x_246); return x_226; } } -} -} else { -lean_object* x_227; lean_object* x_228; -lean_dec(x_10); -x_227 = l_Lean_Syntax_getArg(x_9, x_8); -x_228 = l___private_Lean_Elab_Declaration_0__Lean_Elab_Command_expandDeclIdNamespace_x3f(x_227, x_2, x_3); -if (lean_obj_tag(x_228) == 0) -{ -lean_object* x_229; -x_229 = lean_ctor_get(x_228, 0); -lean_inc(x_229); -if (lean_obj_tag(x_229) == 0) -{ -uint8_t x_230; -lean_dec(x_9); -lean_dec(x_1); -x_230 = !lean_is_exclusive(x_228); -if (x_230 == 0) -{ -lean_object* x_231; lean_object* x_232; -x_231 = lean_ctor_get(x_228, 0); -lean_dec(x_231); -x_232 = lean_box(0); -lean_ctor_set(x_228, 0, x_232); -return x_228; -} -else -{ -lean_object* x_233; lean_object* x_234; lean_object* x_235; -x_233 = lean_ctor_get(x_228, 1); -lean_inc(x_233); -lean_dec(x_228); -x_234 = lean_box(0); -x_235 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_235, 0, x_234); -lean_ctor_set(x_235, 1, x_233); -return x_235; -} -} -else -{ -uint8_t x_236; -x_236 = !lean_is_exclusive(x_229); -if (x_236 == 0) -{ -uint8_t x_237; -x_237 = !lean_is_exclusive(x_228); -if (x_237 == 0) -{ -lean_object* x_238; lean_object* x_239; uint8_t x_240; -x_238 = lean_ctor_get(x_229, 0); -x_239 = lean_ctor_get(x_228, 0); -lean_dec(x_239); -x_240 = !lean_is_exclusive(x_238); -if (x_240 == 0) -{ -lean_object* x_241; lean_object* x_242; lean_object* x_243; -x_241 = lean_ctor_get(x_238, 1); -x_242 = l_Lean_Syntax_setArg(x_9, x_8, x_241); -x_243 = l_Lean_Syntax_setArg(x_1, x_8, x_242); -lean_ctor_set(x_238, 1, x_243); -return x_228; -} -else -{ -lean_object* x_244; lean_object* x_245; lean_object* x_246; lean_object* x_247; lean_object* x_248; -x_244 = lean_ctor_get(x_238, 0); -x_245 = lean_ctor_get(x_238, 1); -lean_inc(x_245); -lean_inc(x_244); -lean_dec(x_238); -x_246 = l_Lean_Syntax_setArg(x_9, x_8, x_245); -x_247 = l_Lean_Syntax_setArg(x_1, x_8, x_246); -x_248 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_248, 0, x_244); -lean_ctor_set(x_248, 1, x_247); -lean_ctor_set(x_229, 0, x_248); -return x_228; -} -} -else -{ -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; -x_249 = lean_ctor_get(x_229, 0); -x_250 = lean_ctor_get(x_228, 1); +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; +x_247 = lean_ctor_get(x_227, 0); +x_248 = lean_ctor_get(x_226, 1); +lean_inc(x_248); +lean_dec(x_226); +x_249 = lean_ctor_get(x_247, 0); +lean_inc(x_249); +x_250 = lean_ctor_get(x_247, 1); lean_inc(x_250); -lean_dec(x_228); -x_251 = lean_ctor_get(x_249, 0); -lean_inc(x_251); -x_252 = lean_ctor_get(x_249, 1); -lean_inc(x_252); -if (lean_is_exclusive(x_249)) { - lean_ctor_release(x_249, 0); - lean_ctor_release(x_249, 1); - x_253 = x_249; +if (lean_is_exclusive(x_247)) { + lean_ctor_release(x_247, 0); + lean_ctor_release(x_247, 1); + x_251 = x_247; } else { - lean_dec_ref(x_249); - x_253 = lean_box(0); + lean_dec_ref(x_247); + x_251 = lean_box(0); } -x_254 = l_Lean_Syntax_setArg(x_9, x_8, x_252); -x_255 = l_Lean_Syntax_setArg(x_1, x_8, x_254); -if (lean_is_scalar(x_253)) { - x_256 = lean_alloc_ctor(0, 2, 0); +x_252 = l_Lean_Syntax_setArg(x_9, x_8, x_250); +x_253 = l_Lean_Syntax_setArg(x_1, x_8, x_252); +if (lean_is_scalar(x_251)) { + x_254 = lean_alloc_ctor(0, 2, 0); } else { - x_256 = x_253; + x_254 = x_251; } -lean_ctor_set(x_256, 0, x_251); -lean_ctor_set(x_256, 1, x_255); -lean_ctor_set(x_229, 0, x_256); -x_257 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_257, 0, x_229); -lean_ctor_set(x_257, 1, x_250); -return x_257; +lean_ctor_set(x_254, 0, x_249); +lean_ctor_set(x_254, 1, x_253); +lean_ctor_set(x_227, 0, x_254); +x_255 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_255, 0, x_227); +lean_ctor_set(x_255, 1, x_248); +return x_255; } } else { -lean_object* x_258; lean_object* x_259; lean_object* x_260; lean_object* x_261; lean_object* x_262; lean_object* x_263; lean_object* x_264; lean_object* x_265; lean_object* x_266; lean_object* x_267; lean_object* x_268; -x_258 = lean_ctor_get(x_229, 0); -lean_inc(x_258); -lean_dec(x_229); -x_259 = lean_ctor_get(x_228, 1); +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; +x_256 = lean_ctor_get(x_227, 0); +lean_inc(x_256); +lean_dec(x_227); +x_257 = lean_ctor_get(x_226, 1); +lean_inc(x_257); +if (lean_is_exclusive(x_226)) { + lean_ctor_release(x_226, 0); + lean_ctor_release(x_226, 1); + x_258 = x_226; +} else { + lean_dec_ref(x_226); + x_258 = lean_box(0); +} +x_259 = lean_ctor_get(x_256, 0); lean_inc(x_259); -if (lean_is_exclusive(x_228)) { - lean_ctor_release(x_228, 0); - lean_ctor_release(x_228, 1); - x_260 = x_228; +x_260 = lean_ctor_get(x_256, 1); +lean_inc(x_260); +if (lean_is_exclusive(x_256)) { + lean_ctor_release(x_256, 0); + lean_ctor_release(x_256, 1); + x_261 = x_256; } else { - lean_dec_ref(x_228); - x_260 = lean_box(0); + lean_dec_ref(x_256); + x_261 = lean_box(0); } -x_261 = lean_ctor_get(x_258, 0); -lean_inc(x_261); -x_262 = lean_ctor_get(x_258, 1); -lean_inc(x_262); -if (lean_is_exclusive(x_258)) { - lean_ctor_release(x_258, 0); - lean_ctor_release(x_258, 1); - x_263 = x_258; +x_262 = l_Lean_Syntax_setArg(x_9, x_8, x_260); +x_263 = l_Lean_Syntax_setArg(x_1, x_8, x_262); +if (lean_is_scalar(x_261)) { + x_264 = lean_alloc_ctor(0, 2, 0); } else { - lean_dec_ref(x_258); - x_263 = lean_box(0); + x_264 = x_261; } -x_264 = l_Lean_Syntax_setArg(x_9, x_8, x_262); -x_265 = l_Lean_Syntax_setArg(x_1, x_8, x_264); -if (lean_is_scalar(x_263)) { +lean_ctor_set(x_264, 0, x_259); +lean_ctor_set(x_264, 1, x_263); +x_265 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_265, 0, x_264); +if (lean_is_scalar(x_258)) { x_266 = lean_alloc_ctor(0, 2, 0); } else { - x_266 = x_263; + x_266 = x_258; } -lean_ctor_set(x_266, 0, x_261); -lean_ctor_set(x_266, 1, x_265); -x_267 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_267, 0, x_266); -if (lean_is_scalar(x_260)) { - x_268 = lean_alloc_ctor(0, 2, 0); -} else { - x_268 = x_260; -} -lean_ctor_set(x_268, 0, x_267); -lean_ctor_set(x_268, 1, x_259); -return x_268; +lean_ctor_set(x_266, 0, x_265); +lean_ctor_set(x_266, 1, x_257); +return x_266; } } } else { -uint8_t x_269; +uint8_t x_267; lean_dec(x_9); lean_dec(x_1); -x_269 = !lean_is_exclusive(x_228); -if (x_269 == 0) +x_267 = !lean_is_exclusive(x_226); +if (x_267 == 0) { -return x_228; +return x_226; } else { -lean_object* x_270; lean_object* x_271; lean_object* x_272; -x_270 = lean_ctor_get(x_228, 0); -x_271 = lean_ctor_get(x_228, 1); -lean_inc(x_271); -lean_inc(x_270); -lean_dec(x_228); -x_272 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_272, 0, x_270); -lean_ctor_set(x_272, 1, x_271); +lean_object* x_268; lean_object* x_269; lean_object* x_270; +x_268 = lean_ctor_get(x_226, 0); +x_269 = lean_ctor_get(x_226, 1); +lean_inc(x_269); +lean_inc(x_268); +lean_dec(x_226); +x_270 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_270, 0, x_268); +lean_ctor_set(x_270, 1, x_269); +return x_270; +} +} +} +} +else +{ +lean_object* x_271; lean_object* x_272; +lean_dec(x_10); +x_271 = l_Lean_Syntax_getArg(x_9, x_8); +x_272 = l___private_Lean_Elab_Declaration_0__Lean_Elab_Command_expandDeclIdNamespace_x3f(x_271, x_2, x_3); +if (lean_obj_tag(x_272) == 0) +{ +lean_object* x_273; +x_273 = lean_ctor_get(x_272, 0); +lean_inc(x_273); +if (lean_obj_tag(x_273) == 0) +{ +uint8_t x_274; +lean_dec(x_9); +lean_dec(x_1); +x_274 = !lean_is_exclusive(x_272); +if (x_274 == 0) +{ +lean_object* x_275; lean_object* x_276; +x_275 = lean_ctor_get(x_272, 0); +lean_dec(x_275); +x_276 = lean_box(0); +lean_ctor_set(x_272, 0, x_276); +return x_272; +} +else +{ +lean_object* x_277; lean_object* x_278; lean_object* x_279; +x_277 = lean_ctor_get(x_272, 1); +lean_inc(x_277); +lean_dec(x_272); +x_278 = lean_box(0); +x_279 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_279, 0, x_278); +lean_ctor_set(x_279, 1, x_277); +return x_279; +} +} +else +{ +uint8_t x_280; +x_280 = !lean_is_exclusive(x_273); +if (x_280 == 0) +{ +uint8_t x_281; +x_281 = !lean_is_exclusive(x_272); +if (x_281 == 0) +{ +lean_object* x_282; lean_object* x_283; uint8_t x_284; +x_282 = lean_ctor_get(x_273, 0); +x_283 = lean_ctor_get(x_272, 0); +lean_dec(x_283); +x_284 = !lean_is_exclusive(x_282); +if (x_284 == 0) +{ +lean_object* x_285; lean_object* x_286; lean_object* x_287; +x_285 = lean_ctor_get(x_282, 1); +x_286 = l_Lean_Syntax_setArg(x_9, x_8, x_285); +x_287 = l_Lean_Syntax_setArg(x_1, x_8, x_286); +lean_ctor_set(x_282, 1, x_287); +return x_272; +} +else +{ +lean_object* x_288; lean_object* x_289; lean_object* x_290; lean_object* x_291; lean_object* x_292; +x_288 = lean_ctor_get(x_282, 0); +x_289 = lean_ctor_get(x_282, 1); +lean_inc(x_289); +lean_inc(x_288); +lean_dec(x_282); +x_290 = l_Lean_Syntax_setArg(x_9, x_8, x_289); +x_291 = l_Lean_Syntax_setArg(x_1, x_8, x_290); +x_292 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_292, 0, x_288); +lean_ctor_set(x_292, 1, x_291); +lean_ctor_set(x_273, 0, x_292); return x_272; } } -} -} else { -lean_object* x_273; lean_object* x_274; -lean_dec(x_10); -x_273 = l_Lean_Syntax_getArg(x_9, x_8); -x_274 = l___private_Lean_Elab_Declaration_0__Lean_Elab_Command_expandDeclIdNamespace_x3f(x_273, x_2, x_3); -if (lean_obj_tag(x_274) == 0) -{ -lean_object* x_275; -x_275 = lean_ctor_get(x_274, 0); -lean_inc(x_275); -if (lean_obj_tag(x_275) == 0) -{ -uint8_t x_276; -lean_dec(x_9); -lean_dec(x_1); -x_276 = !lean_is_exclusive(x_274); -if (x_276 == 0) -{ -lean_object* x_277; lean_object* x_278; -x_277 = lean_ctor_get(x_274, 0); -lean_dec(x_277); -x_278 = lean_box(0); -lean_ctor_set(x_274, 0, x_278); -return x_274; -} -else -{ -lean_object* x_279; lean_object* x_280; lean_object* x_281; -x_279 = lean_ctor_get(x_274, 1); -lean_inc(x_279); -lean_dec(x_274); -x_280 = lean_box(0); -x_281 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_281, 0, x_280); -lean_ctor_set(x_281, 1, x_279); -return x_281; -} -} -else -{ -uint8_t x_282; -x_282 = !lean_is_exclusive(x_275); -if (x_282 == 0) -{ -uint8_t x_283; -x_283 = !lean_is_exclusive(x_274); -if (x_283 == 0) -{ -lean_object* x_284; lean_object* x_285; uint8_t x_286; -x_284 = lean_ctor_get(x_275, 0); -x_285 = lean_ctor_get(x_274, 0); -lean_dec(x_285); -x_286 = !lean_is_exclusive(x_284); -if (x_286 == 0) -{ -lean_object* x_287; lean_object* x_288; lean_object* x_289; -x_287 = lean_ctor_get(x_284, 1); -x_288 = l_Lean_Syntax_setArg(x_9, x_8, x_287); -x_289 = l_Lean_Syntax_setArg(x_1, x_8, x_288); -lean_ctor_set(x_284, 1, x_289); -return x_274; -} -else -{ -lean_object* x_290; lean_object* x_291; lean_object* x_292; lean_object* x_293; lean_object* x_294; -x_290 = lean_ctor_get(x_284, 0); -x_291 = lean_ctor_get(x_284, 1); -lean_inc(x_291); -lean_inc(x_290); -lean_dec(x_284); -x_292 = l_Lean_Syntax_setArg(x_9, x_8, x_291); -x_293 = l_Lean_Syntax_setArg(x_1, x_8, x_292); -x_294 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_294, 0, x_290); -lean_ctor_set(x_294, 1, x_293); -lean_ctor_set(x_275, 0, x_294); -return x_274; -} -} -else -{ -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; -x_295 = lean_ctor_get(x_275, 0); -x_296 = lean_ctor_get(x_274, 1); +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; +x_293 = lean_ctor_get(x_273, 0); +x_294 = lean_ctor_get(x_272, 1); +lean_inc(x_294); +lean_dec(x_272); +x_295 = lean_ctor_get(x_293, 0); +lean_inc(x_295); +x_296 = lean_ctor_get(x_293, 1); lean_inc(x_296); -lean_dec(x_274); -x_297 = lean_ctor_get(x_295, 0); -lean_inc(x_297); -x_298 = lean_ctor_get(x_295, 1); -lean_inc(x_298); -if (lean_is_exclusive(x_295)) { - lean_ctor_release(x_295, 0); - lean_ctor_release(x_295, 1); - x_299 = x_295; +if (lean_is_exclusive(x_293)) { + lean_ctor_release(x_293, 0); + lean_ctor_release(x_293, 1); + x_297 = x_293; } else { - lean_dec_ref(x_295); - x_299 = lean_box(0); + lean_dec_ref(x_293); + x_297 = lean_box(0); } -x_300 = l_Lean_Syntax_setArg(x_9, x_8, x_298); -x_301 = l_Lean_Syntax_setArg(x_1, x_8, x_300); -if (lean_is_scalar(x_299)) { - x_302 = lean_alloc_ctor(0, 2, 0); +x_298 = l_Lean_Syntax_setArg(x_9, x_8, x_296); +x_299 = l_Lean_Syntax_setArg(x_1, x_8, x_298); +if (lean_is_scalar(x_297)) { + x_300 = lean_alloc_ctor(0, 2, 0); } else { - x_302 = x_299; + x_300 = x_297; } -lean_ctor_set(x_302, 0, x_297); -lean_ctor_set(x_302, 1, x_301); -lean_ctor_set(x_275, 0, x_302); -x_303 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_303, 0, x_275); -lean_ctor_set(x_303, 1, x_296); -return x_303; +lean_ctor_set(x_300, 0, x_295); +lean_ctor_set(x_300, 1, x_299); +lean_ctor_set(x_273, 0, x_300); +x_301 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_301, 0, x_273); +lean_ctor_set(x_301, 1, x_294); +return x_301; } } else { -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; -x_304 = lean_ctor_get(x_275, 0); -lean_inc(x_304); -lean_dec(x_275); -x_305 = lean_ctor_get(x_274, 1); +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; +x_302 = lean_ctor_get(x_273, 0); +lean_inc(x_302); +lean_dec(x_273); +x_303 = lean_ctor_get(x_272, 1); +lean_inc(x_303); +if (lean_is_exclusive(x_272)) { + lean_ctor_release(x_272, 0); + lean_ctor_release(x_272, 1); + x_304 = x_272; +} else { + lean_dec_ref(x_272); + x_304 = lean_box(0); +} +x_305 = lean_ctor_get(x_302, 0); lean_inc(x_305); -if (lean_is_exclusive(x_274)) { - lean_ctor_release(x_274, 0); - lean_ctor_release(x_274, 1); - x_306 = x_274; +x_306 = lean_ctor_get(x_302, 1); +lean_inc(x_306); +if (lean_is_exclusive(x_302)) { + lean_ctor_release(x_302, 0); + lean_ctor_release(x_302, 1); + x_307 = x_302; } else { - lean_dec_ref(x_274); - x_306 = lean_box(0); + lean_dec_ref(x_302); + x_307 = lean_box(0); } -x_307 = lean_ctor_get(x_304, 0); -lean_inc(x_307); -x_308 = lean_ctor_get(x_304, 1); -lean_inc(x_308); -if (lean_is_exclusive(x_304)) { - lean_ctor_release(x_304, 0); - lean_ctor_release(x_304, 1); - x_309 = x_304; +x_308 = l_Lean_Syntax_setArg(x_9, x_8, x_306); +x_309 = l_Lean_Syntax_setArg(x_1, x_8, x_308); +if (lean_is_scalar(x_307)) { + x_310 = lean_alloc_ctor(0, 2, 0); } else { - lean_dec_ref(x_304); - x_309 = lean_box(0); + x_310 = x_307; } -x_310 = l_Lean_Syntax_setArg(x_9, x_8, x_308); -x_311 = l_Lean_Syntax_setArg(x_1, x_8, x_310); -if (lean_is_scalar(x_309)) { +lean_ctor_set(x_310, 0, x_305); +lean_ctor_set(x_310, 1, x_309); +x_311 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_311, 0, x_310); +if (lean_is_scalar(x_304)) { x_312 = lean_alloc_ctor(0, 2, 0); } else { - x_312 = x_309; + x_312 = x_304; } -lean_ctor_set(x_312, 0, x_307); -lean_ctor_set(x_312, 1, x_311); -x_313 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_313, 0, x_312); -if (lean_is_scalar(x_306)) { - x_314 = lean_alloc_ctor(0, 2, 0); -} else { - x_314 = x_306; -} -lean_ctor_set(x_314, 0, x_313); -lean_ctor_set(x_314, 1, x_305); -return x_314; +lean_ctor_set(x_312, 0, x_311); +lean_ctor_set(x_312, 1, x_303); +return x_312; } } } else { -uint8_t x_315; +uint8_t x_313; lean_dec(x_9); lean_dec(x_1); -x_315 = !lean_is_exclusive(x_274); -if (x_315 == 0) +x_313 = !lean_is_exclusive(x_272); +if (x_313 == 0) { -return x_274; +return x_272; } else { -lean_object* x_316; lean_object* x_317; lean_object* x_318; -x_316 = lean_ctor_get(x_274, 0); -x_317 = lean_ctor_get(x_274, 1); -lean_inc(x_317); -lean_inc(x_316); -lean_dec(x_274); -x_318 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_318, 0, x_316); -lean_ctor_set(x_318, 1, x_317); +lean_object* x_314; lean_object* x_315; lean_object* x_316; +x_314 = lean_ctor_get(x_272, 0); +x_315 = lean_ctor_get(x_272, 1); +lean_inc(x_315); +lean_inc(x_314); +lean_dec(x_272); +x_316 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_316, 0, x_314); +lean_ctor_set(x_316, 1, x_315); +return x_316; +} +} +} +} +else +{ +lean_object* x_317; lean_object* x_318; +lean_dec(x_10); +x_317 = l_Lean_Syntax_getArg(x_9, x_8); +x_318 = l___private_Lean_Elab_Declaration_0__Lean_Elab_Command_expandDeclIdNamespace_x3f(x_317, x_2, x_3); +if (lean_obj_tag(x_318) == 0) +{ +lean_object* x_319; +x_319 = lean_ctor_get(x_318, 0); +lean_inc(x_319); +if (lean_obj_tag(x_319) == 0) +{ +uint8_t x_320; +lean_dec(x_9); +lean_dec(x_1); +x_320 = !lean_is_exclusive(x_318); +if (x_320 == 0) +{ +lean_object* x_321; lean_object* x_322; +x_321 = lean_ctor_get(x_318, 0); +lean_dec(x_321); +x_322 = lean_box(0); +lean_ctor_set(x_318, 0, x_322); +return x_318; +} +else +{ +lean_object* x_323; lean_object* x_324; lean_object* x_325; +x_323 = lean_ctor_get(x_318, 1); +lean_inc(x_323); +lean_dec(x_318); +x_324 = lean_box(0); +x_325 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_325, 0, x_324); +lean_ctor_set(x_325, 1, x_323); +return x_325; +} +} +else +{ +uint8_t x_326; +x_326 = !lean_is_exclusive(x_319); +if (x_326 == 0) +{ +uint8_t x_327; +x_327 = !lean_is_exclusive(x_318); +if (x_327 == 0) +{ +lean_object* x_328; lean_object* x_329; uint8_t x_330; +x_328 = lean_ctor_get(x_319, 0); +x_329 = lean_ctor_get(x_318, 0); +lean_dec(x_329); +x_330 = !lean_is_exclusive(x_328); +if (x_330 == 0) +{ +lean_object* x_331; lean_object* x_332; lean_object* x_333; +x_331 = lean_ctor_get(x_328, 1); +x_332 = l_Lean_Syntax_setArg(x_9, x_8, x_331); +x_333 = l_Lean_Syntax_setArg(x_1, x_8, x_332); +lean_ctor_set(x_328, 1, x_333); +return x_318; +} +else +{ +lean_object* x_334; lean_object* x_335; lean_object* x_336; lean_object* x_337; lean_object* x_338; +x_334 = lean_ctor_get(x_328, 0); +x_335 = lean_ctor_get(x_328, 1); +lean_inc(x_335); +lean_inc(x_334); +lean_dec(x_328); +x_336 = l_Lean_Syntax_setArg(x_9, x_8, x_335); +x_337 = l_Lean_Syntax_setArg(x_1, x_8, x_336); +x_338 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_338, 0, x_334); +lean_ctor_set(x_338, 1, x_337); +lean_ctor_set(x_319, 0, x_338); return x_318; } } -} -} else { -lean_object* x_319; lean_object* x_320; -lean_dec(x_10); -x_319 = l_Lean_Syntax_getArg(x_9, x_8); -x_320 = l___private_Lean_Elab_Declaration_0__Lean_Elab_Command_expandDeclIdNamespace_x3f(x_319, x_2, x_3); -if (lean_obj_tag(x_320) == 0) -{ -lean_object* x_321; -x_321 = lean_ctor_get(x_320, 0); -lean_inc(x_321); -if (lean_obj_tag(x_321) == 0) -{ -uint8_t x_322; -lean_dec(x_9); -lean_dec(x_1); -x_322 = !lean_is_exclusive(x_320); -if (x_322 == 0) -{ -lean_object* x_323; lean_object* x_324; -x_323 = lean_ctor_get(x_320, 0); -lean_dec(x_323); -x_324 = lean_box(0); -lean_ctor_set(x_320, 0, x_324); -return x_320; -} -else -{ -lean_object* x_325; lean_object* x_326; lean_object* x_327; -x_325 = lean_ctor_get(x_320, 1); -lean_inc(x_325); -lean_dec(x_320); -x_326 = lean_box(0); -x_327 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_327, 0, x_326); -lean_ctor_set(x_327, 1, x_325); -return x_327; -} -} -else -{ -uint8_t x_328; -x_328 = !lean_is_exclusive(x_321); -if (x_328 == 0) -{ -uint8_t x_329; -x_329 = !lean_is_exclusive(x_320); -if (x_329 == 0) -{ -lean_object* x_330; lean_object* x_331; uint8_t x_332; -x_330 = lean_ctor_get(x_321, 0); -x_331 = lean_ctor_get(x_320, 0); -lean_dec(x_331); -x_332 = !lean_is_exclusive(x_330); -if (x_332 == 0) -{ -lean_object* x_333; lean_object* x_334; lean_object* x_335; -x_333 = lean_ctor_get(x_330, 1); -x_334 = l_Lean_Syntax_setArg(x_9, x_8, x_333); -x_335 = l_Lean_Syntax_setArg(x_1, x_8, x_334); -lean_ctor_set(x_330, 1, x_335); -return x_320; -} -else -{ -lean_object* x_336; lean_object* x_337; lean_object* x_338; lean_object* x_339; lean_object* x_340; -x_336 = lean_ctor_get(x_330, 0); -x_337 = lean_ctor_get(x_330, 1); -lean_inc(x_337); -lean_inc(x_336); -lean_dec(x_330); -x_338 = l_Lean_Syntax_setArg(x_9, x_8, x_337); -x_339 = l_Lean_Syntax_setArg(x_1, x_8, x_338); -x_340 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_340, 0, x_336); -lean_ctor_set(x_340, 1, x_339); -lean_ctor_set(x_321, 0, x_340); -return x_320; -} -} -else -{ -lean_object* x_341; lean_object* x_342; lean_object* x_343; lean_object* x_344; lean_object* x_345; lean_object* x_346; lean_object* x_347; lean_object* x_348; lean_object* x_349; -x_341 = lean_ctor_get(x_321, 0); -x_342 = lean_ctor_get(x_320, 1); +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; +x_339 = lean_ctor_get(x_319, 0); +x_340 = lean_ctor_get(x_318, 1); +lean_inc(x_340); +lean_dec(x_318); +x_341 = lean_ctor_get(x_339, 0); +lean_inc(x_341); +x_342 = lean_ctor_get(x_339, 1); lean_inc(x_342); -lean_dec(x_320); -x_343 = lean_ctor_get(x_341, 0); -lean_inc(x_343); -x_344 = lean_ctor_get(x_341, 1); -lean_inc(x_344); -if (lean_is_exclusive(x_341)) { - lean_ctor_release(x_341, 0); - lean_ctor_release(x_341, 1); - x_345 = x_341; +if (lean_is_exclusive(x_339)) { + lean_ctor_release(x_339, 0); + lean_ctor_release(x_339, 1); + x_343 = x_339; } else { - lean_dec_ref(x_341); - x_345 = lean_box(0); + lean_dec_ref(x_339); + x_343 = lean_box(0); } -x_346 = l_Lean_Syntax_setArg(x_9, x_8, x_344); -x_347 = l_Lean_Syntax_setArg(x_1, x_8, x_346); -if (lean_is_scalar(x_345)) { - x_348 = lean_alloc_ctor(0, 2, 0); +x_344 = l_Lean_Syntax_setArg(x_9, x_8, x_342); +x_345 = l_Lean_Syntax_setArg(x_1, x_8, x_344); +if (lean_is_scalar(x_343)) { + x_346 = lean_alloc_ctor(0, 2, 0); } else { - x_348 = x_345; + x_346 = x_343; } -lean_ctor_set(x_348, 0, x_343); -lean_ctor_set(x_348, 1, x_347); -lean_ctor_set(x_321, 0, x_348); -x_349 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_349, 0, x_321); -lean_ctor_set(x_349, 1, x_342); -return x_349; +lean_ctor_set(x_346, 0, x_341); +lean_ctor_set(x_346, 1, x_345); +lean_ctor_set(x_319, 0, x_346); +x_347 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_347, 0, x_319); +lean_ctor_set(x_347, 1, x_340); +return x_347; } } else { -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; -x_350 = lean_ctor_get(x_321, 0); -lean_inc(x_350); -lean_dec(x_321); -x_351 = lean_ctor_get(x_320, 1); +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; +x_348 = lean_ctor_get(x_319, 0); +lean_inc(x_348); +lean_dec(x_319); +x_349 = lean_ctor_get(x_318, 1); +lean_inc(x_349); +if (lean_is_exclusive(x_318)) { + lean_ctor_release(x_318, 0); + lean_ctor_release(x_318, 1); + x_350 = x_318; +} else { + lean_dec_ref(x_318); + x_350 = lean_box(0); +} +x_351 = lean_ctor_get(x_348, 0); lean_inc(x_351); -if (lean_is_exclusive(x_320)) { - lean_ctor_release(x_320, 0); - lean_ctor_release(x_320, 1); - x_352 = x_320; +x_352 = lean_ctor_get(x_348, 1); +lean_inc(x_352); +if (lean_is_exclusive(x_348)) { + lean_ctor_release(x_348, 0); + lean_ctor_release(x_348, 1); + x_353 = x_348; } else { - lean_dec_ref(x_320); - x_352 = lean_box(0); + lean_dec_ref(x_348); + x_353 = lean_box(0); } -x_353 = lean_ctor_get(x_350, 0); -lean_inc(x_353); -x_354 = lean_ctor_get(x_350, 1); -lean_inc(x_354); -if (lean_is_exclusive(x_350)) { - lean_ctor_release(x_350, 0); - lean_ctor_release(x_350, 1); - x_355 = x_350; +x_354 = l_Lean_Syntax_setArg(x_9, x_8, x_352); +x_355 = l_Lean_Syntax_setArg(x_1, x_8, x_354); +if (lean_is_scalar(x_353)) { + x_356 = lean_alloc_ctor(0, 2, 0); } else { - lean_dec_ref(x_350); - x_355 = lean_box(0); + x_356 = x_353; } -x_356 = l_Lean_Syntax_setArg(x_9, x_8, x_354); -x_357 = l_Lean_Syntax_setArg(x_1, x_8, x_356); -if (lean_is_scalar(x_355)) { +lean_ctor_set(x_356, 0, x_351); +lean_ctor_set(x_356, 1, x_355); +x_357 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_357, 0, x_356); +if (lean_is_scalar(x_350)) { x_358 = lean_alloc_ctor(0, 2, 0); } else { - x_358 = x_355; + x_358 = x_350; } -lean_ctor_set(x_358, 0, x_353); -lean_ctor_set(x_358, 1, x_357); -x_359 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_359, 0, x_358); -if (lean_is_scalar(x_352)) { - x_360 = lean_alloc_ctor(0, 2, 0); -} else { - x_360 = x_352; -} -lean_ctor_set(x_360, 0, x_359); -lean_ctor_set(x_360, 1, x_351); -return x_360; +lean_ctor_set(x_358, 0, x_357); +lean_ctor_set(x_358, 1, x_349); +return x_358; } } } else { -uint8_t x_361; +uint8_t x_359; lean_dec(x_9); lean_dec(x_1); -x_361 = !lean_is_exclusive(x_320); -if (x_361 == 0) +x_359 = !lean_is_exclusive(x_318); +if (x_359 == 0) { -return x_320; +return x_318; } else { -lean_object* x_362; lean_object* x_363; lean_object* x_364; -x_362 = lean_ctor_get(x_320, 0); -x_363 = lean_ctor_get(x_320, 1); -lean_inc(x_363); -lean_inc(x_362); -lean_dec(x_320); -x_364 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_364, 0, x_362); -lean_ctor_set(x_364, 1, x_363); +lean_object* x_360; lean_object* x_361; lean_object* x_362; +x_360 = lean_ctor_get(x_318, 0); +x_361 = lean_ctor_get(x_318, 1); +lean_inc(x_361); +lean_inc(x_360); +lean_dec(x_318); +x_362 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_362, 0, x_360); +lean_ctor_set(x_362, 1, x_361); +return x_362; +} +} +} +} +else +{ +lean_object* x_363; lean_object* x_364; +lean_dec(x_10); +x_363 = l_Lean_Syntax_getArg(x_9, x_8); +x_364 = l___private_Lean_Elab_Declaration_0__Lean_Elab_Command_expandDeclIdNamespace_x3f(x_363, x_2, x_3); +if (lean_obj_tag(x_364) == 0) +{ +lean_object* x_365; +x_365 = lean_ctor_get(x_364, 0); +lean_inc(x_365); +if (lean_obj_tag(x_365) == 0) +{ +uint8_t x_366; +lean_dec(x_9); +lean_dec(x_1); +x_366 = !lean_is_exclusive(x_364); +if (x_366 == 0) +{ +lean_object* x_367; lean_object* x_368; +x_367 = lean_ctor_get(x_364, 0); +lean_dec(x_367); +x_368 = lean_box(0); +lean_ctor_set(x_364, 0, x_368); +return x_364; +} +else +{ +lean_object* x_369; lean_object* x_370; lean_object* x_371; +x_369 = lean_ctor_get(x_364, 1); +lean_inc(x_369); +lean_dec(x_364); +x_370 = lean_box(0); +x_371 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_371, 0, x_370); +lean_ctor_set(x_371, 1, x_369); +return x_371; +} +} +else +{ +uint8_t x_372; +x_372 = !lean_is_exclusive(x_365); +if (x_372 == 0) +{ +uint8_t x_373; +x_373 = !lean_is_exclusive(x_364); +if (x_373 == 0) +{ +lean_object* x_374; lean_object* x_375; uint8_t x_376; +x_374 = lean_ctor_get(x_365, 0); +x_375 = lean_ctor_get(x_364, 0); +lean_dec(x_375); +x_376 = !lean_is_exclusive(x_374); +if (x_376 == 0) +{ +lean_object* x_377; lean_object* x_378; lean_object* x_379; +x_377 = lean_ctor_get(x_374, 1); +x_378 = l_Lean_Syntax_setArg(x_9, x_8, x_377); +x_379 = l_Lean_Syntax_setArg(x_1, x_8, x_378); +lean_ctor_set(x_374, 1, x_379); +return x_364; +} +else +{ +lean_object* x_380; lean_object* x_381; lean_object* x_382; lean_object* x_383; lean_object* x_384; +x_380 = lean_ctor_get(x_374, 0); +x_381 = lean_ctor_get(x_374, 1); +lean_inc(x_381); +lean_inc(x_380); +lean_dec(x_374); +x_382 = l_Lean_Syntax_setArg(x_9, x_8, x_381); +x_383 = l_Lean_Syntax_setArg(x_1, x_8, x_382); +x_384 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_384, 0, x_380); +lean_ctor_set(x_384, 1, x_383); +lean_ctor_set(x_365, 0, x_384); return x_364; } } -} -} else { -lean_object* x_365; lean_object* x_366; -lean_dec(x_10); -x_365 = l_Lean_Syntax_getArg(x_9, x_8); -x_366 = l___private_Lean_Elab_Declaration_0__Lean_Elab_Command_expandDeclIdNamespace_x3f(x_365, x_2, x_3); -if (lean_obj_tag(x_366) == 0) -{ -lean_object* x_367; -x_367 = lean_ctor_get(x_366, 0); -lean_inc(x_367); -if (lean_obj_tag(x_367) == 0) -{ -uint8_t x_368; -lean_dec(x_9); -lean_dec(x_1); -x_368 = !lean_is_exclusive(x_366); -if (x_368 == 0) -{ -lean_object* x_369; lean_object* x_370; -x_369 = lean_ctor_get(x_366, 0); -lean_dec(x_369); -x_370 = lean_box(0); -lean_ctor_set(x_366, 0, x_370); -return x_366; -} -else -{ -lean_object* x_371; lean_object* x_372; lean_object* x_373; -x_371 = lean_ctor_get(x_366, 1); -lean_inc(x_371); -lean_dec(x_366); -x_372 = lean_box(0); -x_373 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_373, 0, x_372); -lean_ctor_set(x_373, 1, x_371); -return x_373; -} -} -else -{ -uint8_t x_374; -x_374 = !lean_is_exclusive(x_367); -if (x_374 == 0) -{ -uint8_t x_375; -x_375 = !lean_is_exclusive(x_366); -if (x_375 == 0) -{ -lean_object* x_376; lean_object* x_377; uint8_t x_378; -x_376 = lean_ctor_get(x_367, 0); -x_377 = lean_ctor_get(x_366, 0); -lean_dec(x_377); -x_378 = !lean_is_exclusive(x_376); -if (x_378 == 0) -{ -lean_object* x_379; lean_object* x_380; lean_object* x_381; -x_379 = lean_ctor_get(x_376, 1); -x_380 = l_Lean_Syntax_setArg(x_9, x_8, x_379); -x_381 = l_Lean_Syntax_setArg(x_1, x_8, x_380); -lean_ctor_set(x_376, 1, x_381); -return x_366; -} -else -{ -lean_object* x_382; lean_object* x_383; lean_object* x_384; lean_object* x_385; lean_object* x_386; -x_382 = lean_ctor_get(x_376, 0); -x_383 = lean_ctor_get(x_376, 1); -lean_inc(x_383); -lean_inc(x_382); -lean_dec(x_376); -x_384 = l_Lean_Syntax_setArg(x_9, x_8, x_383); -x_385 = l_Lean_Syntax_setArg(x_1, x_8, x_384); -x_386 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_386, 0, x_382); -lean_ctor_set(x_386, 1, x_385); -lean_ctor_set(x_367, 0, x_386); -return x_366; -} -} -else -{ -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; -x_387 = lean_ctor_get(x_367, 0); -x_388 = lean_ctor_get(x_366, 1); +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; +x_385 = lean_ctor_get(x_365, 0); +x_386 = lean_ctor_get(x_364, 1); +lean_inc(x_386); +lean_dec(x_364); +x_387 = lean_ctor_get(x_385, 0); +lean_inc(x_387); +x_388 = lean_ctor_get(x_385, 1); lean_inc(x_388); -lean_dec(x_366); -x_389 = lean_ctor_get(x_387, 0); -lean_inc(x_389); -x_390 = lean_ctor_get(x_387, 1); -lean_inc(x_390); -if (lean_is_exclusive(x_387)) { - lean_ctor_release(x_387, 0); - lean_ctor_release(x_387, 1); - x_391 = x_387; +if (lean_is_exclusive(x_385)) { + lean_ctor_release(x_385, 0); + lean_ctor_release(x_385, 1); + x_389 = x_385; } else { - lean_dec_ref(x_387); - x_391 = lean_box(0); + lean_dec_ref(x_385); + x_389 = lean_box(0); } -x_392 = l_Lean_Syntax_setArg(x_9, x_8, x_390); -x_393 = l_Lean_Syntax_setArg(x_1, x_8, x_392); -if (lean_is_scalar(x_391)) { - x_394 = lean_alloc_ctor(0, 2, 0); +x_390 = l_Lean_Syntax_setArg(x_9, x_8, x_388); +x_391 = l_Lean_Syntax_setArg(x_1, x_8, x_390); +if (lean_is_scalar(x_389)) { + x_392 = lean_alloc_ctor(0, 2, 0); } else { - x_394 = x_391; + x_392 = x_389; } -lean_ctor_set(x_394, 0, x_389); -lean_ctor_set(x_394, 1, x_393); -lean_ctor_set(x_367, 0, x_394); -x_395 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_395, 0, x_367); -lean_ctor_set(x_395, 1, x_388); -return x_395; +lean_ctor_set(x_392, 0, x_387); +lean_ctor_set(x_392, 1, x_391); +lean_ctor_set(x_365, 0, x_392); +x_393 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_393, 0, x_365); +lean_ctor_set(x_393, 1, x_386); +return x_393; } } else { -lean_object* x_396; lean_object* x_397; lean_object* x_398; lean_object* x_399; lean_object* x_400; lean_object* x_401; lean_object* x_402; lean_object* x_403; lean_object* x_404; lean_object* x_405; lean_object* x_406; -x_396 = lean_ctor_get(x_367, 0); -lean_inc(x_396); -lean_dec(x_367); -x_397 = lean_ctor_get(x_366, 1); +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; +x_394 = lean_ctor_get(x_365, 0); +lean_inc(x_394); +lean_dec(x_365); +x_395 = lean_ctor_get(x_364, 1); +lean_inc(x_395); +if (lean_is_exclusive(x_364)) { + lean_ctor_release(x_364, 0); + lean_ctor_release(x_364, 1); + x_396 = x_364; +} else { + lean_dec_ref(x_364); + x_396 = lean_box(0); +} +x_397 = lean_ctor_get(x_394, 0); lean_inc(x_397); -if (lean_is_exclusive(x_366)) { - lean_ctor_release(x_366, 0); - lean_ctor_release(x_366, 1); - x_398 = x_366; +x_398 = lean_ctor_get(x_394, 1); +lean_inc(x_398); +if (lean_is_exclusive(x_394)) { + lean_ctor_release(x_394, 0); + lean_ctor_release(x_394, 1); + x_399 = x_394; } else { - lean_dec_ref(x_366); - x_398 = lean_box(0); + lean_dec_ref(x_394); + x_399 = lean_box(0); } -x_399 = lean_ctor_get(x_396, 0); -lean_inc(x_399); -x_400 = lean_ctor_get(x_396, 1); -lean_inc(x_400); -if (lean_is_exclusive(x_396)) { - lean_ctor_release(x_396, 0); - lean_ctor_release(x_396, 1); - x_401 = x_396; +x_400 = l_Lean_Syntax_setArg(x_9, x_8, x_398); +x_401 = l_Lean_Syntax_setArg(x_1, x_8, x_400); +if (lean_is_scalar(x_399)) { + x_402 = lean_alloc_ctor(0, 2, 0); } else { - lean_dec_ref(x_396); - x_401 = lean_box(0); + x_402 = x_399; } -x_402 = l_Lean_Syntax_setArg(x_9, x_8, x_400); -x_403 = l_Lean_Syntax_setArg(x_1, x_8, x_402); -if (lean_is_scalar(x_401)) { +lean_ctor_set(x_402, 0, x_397); +lean_ctor_set(x_402, 1, x_401); +x_403 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_403, 0, x_402); +if (lean_is_scalar(x_396)) { x_404 = lean_alloc_ctor(0, 2, 0); } else { - x_404 = x_401; + x_404 = x_396; } -lean_ctor_set(x_404, 0, x_399); -lean_ctor_set(x_404, 1, x_403); -x_405 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_405, 0, x_404); -if (lean_is_scalar(x_398)) { - x_406 = lean_alloc_ctor(0, 2, 0); -} else { - x_406 = x_398; -} -lean_ctor_set(x_406, 0, x_405); -lean_ctor_set(x_406, 1, x_397); -return x_406; +lean_ctor_set(x_404, 0, x_403); +lean_ctor_set(x_404, 1, x_395); +return x_404; } } } else { -uint8_t x_407; +uint8_t x_405; lean_dec(x_9); lean_dec(x_1); -x_407 = !lean_is_exclusive(x_366); -if (x_407 == 0) +x_405 = !lean_is_exclusive(x_364); +if (x_405 == 0) { -return x_366; +return x_364; } else { -lean_object* x_408; lean_object* x_409; lean_object* x_410; -x_408 = lean_ctor_get(x_366, 0); -x_409 = lean_ctor_get(x_366, 1); -lean_inc(x_409); -lean_inc(x_408); -lean_dec(x_366); -x_410 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_410, 0, x_408); -lean_ctor_set(x_410, 1, x_409); +lean_object* x_406; lean_object* x_407; lean_object* x_408; +x_406 = lean_ctor_get(x_364, 0); +x_407 = lean_ctor_get(x_364, 1); +lean_inc(x_407); +lean_inc(x_406); +lean_dec(x_364); +x_408 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_408, 0, x_406); +lean_ctor_set(x_408, 1, x_407); +return x_408; +} +} +} +} +else +{ +lean_object* x_409; lean_object* x_410; +lean_dec(x_10); +x_409 = l_Lean_Syntax_getArg(x_9, x_8); +x_410 = l___private_Lean_Elab_Declaration_0__Lean_Elab_Command_expandDeclIdNamespace_x3f(x_409, x_2, x_3); +if (lean_obj_tag(x_410) == 0) +{ +lean_object* x_411; +x_411 = lean_ctor_get(x_410, 0); +lean_inc(x_411); +if (lean_obj_tag(x_411) == 0) +{ +uint8_t x_412; +lean_dec(x_9); +lean_dec(x_1); +x_412 = !lean_is_exclusive(x_410); +if (x_412 == 0) +{ +lean_object* x_413; lean_object* x_414; +x_413 = lean_ctor_get(x_410, 0); +lean_dec(x_413); +x_414 = lean_box(0); +lean_ctor_set(x_410, 0, x_414); +return x_410; +} +else +{ +lean_object* x_415; lean_object* x_416; lean_object* x_417; +x_415 = lean_ctor_get(x_410, 1); +lean_inc(x_415); +lean_dec(x_410); +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 +{ +uint8_t x_418; +x_418 = !lean_is_exclusive(x_411); +if (x_418 == 0) +{ +uint8_t x_419; +x_419 = !lean_is_exclusive(x_410); +if (x_419 == 0) +{ +lean_object* x_420; lean_object* x_421; uint8_t x_422; +x_420 = lean_ctor_get(x_411, 0); +x_421 = lean_ctor_get(x_410, 0); +lean_dec(x_421); +x_422 = !lean_is_exclusive(x_420); +if (x_422 == 0) +{ +lean_object* x_423; lean_object* x_424; lean_object* x_425; +x_423 = lean_ctor_get(x_420, 1); +x_424 = l_Lean_Syntax_setArg(x_9, x_8, x_423); +x_425 = l_Lean_Syntax_setArg(x_1, x_8, x_424); +lean_ctor_set(x_420, 1, x_425); +return x_410; +} +else +{ +lean_object* x_426; lean_object* x_427; lean_object* x_428; lean_object* x_429; lean_object* x_430; +x_426 = lean_ctor_get(x_420, 0); +x_427 = lean_ctor_get(x_420, 1); +lean_inc(x_427); +lean_inc(x_426); +lean_dec(x_420); +x_428 = l_Lean_Syntax_setArg(x_9, x_8, x_427); +x_429 = l_Lean_Syntax_setArg(x_1, x_8, x_428); +x_430 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_430, 0, x_426); +lean_ctor_set(x_430, 1, x_429); +lean_ctor_set(x_411, 0, x_430); return x_410; } } -} -} else { -lean_object* x_411; lean_object* x_412; -lean_dec(x_10); -x_411 = l_Lean_Syntax_getArg(x_9, x_8); -x_412 = l___private_Lean_Elab_Declaration_0__Lean_Elab_Command_expandDeclIdNamespace_x3f(x_411, x_2, x_3); -if (lean_obj_tag(x_412) == 0) -{ -lean_object* x_413; -x_413 = lean_ctor_get(x_412, 0); -lean_inc(x_413); -if (lean_obj_tag(x_413) == 0) -{ -uint8_t x_414; -lean_dec(x_9); -lean_dec(x_1); -x_414 = !lean_is_exclusive(x_412); -if (x_414 == 0) -{ -lean_object* x_415; lean_object* x_416; -x_415 = lean_ctor_get(x_412, 0); -lean_dec(x_415); -x_416 = lean_box(0); -lean_ctor_set(x_412, 0, x_416); -return x_412; -} -else -{ -lean_object* x_417; lean_object* x_418; lean_object* x_419; -x_417 = lean_ctor_get(x_412, 1); -lean_inc(x_417); -lean_dec(x_412); -x_418 = lean_box(0); -x_419 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_419, 0, x_418); -lean_ctor_set(x_419, 1, x_417); -return x_419; -} -} -else -{ -uint8_t x_420; -x_420 = !lean_is_exclusive(x_413); -if (x_420 == 0) -{ -uint8_t x_421; -x_421 = !lean_is_exclusive(x_412); -if (x_421 == 0) -{ -lean_object* x_422; lean_object* x_423; uint8_t x_424; -x_422 = lean_ctor_get(x_413, 0); -x_423 = lean_ctor_get(x_412, 0); -lean_dec(x_423); -x_424 = !lean_is_exclusive(x_422); -if (x_424 == 0) -{ -lean_object* x_425; lean_object* x_426; lean_object* x_427; -x_425 = lean_ctor_get(x_422, 1); -x_426 = l_Lean_Syntax_setArg(x_9, x_8, x_425); -x_427 = l_Lean_Syntax_setArg(x_1, x_8, x_426); -lean_ctor_set(x_422, 1, x_427); -return x_412; -} -else -{ -lean_object* x_428; lean_object* x_429; lean_object* x_430; lean_object* x_431; lean_object* x_432; -x_428 = lean_ctor_get(x_422, 0); -x_429 = lean_ctor_get(x_422, 1); -lean_inc(x_429); -lean_inc(x_428); -lean_dec(x_422); -x_430 = l_Lean_Syntax_setArg(x_9, x_8, x_429); -x_431 = l_Lean_Syntax_setArg(x_1, x_8, x_430); -x_432 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_432, 0, x_428); -lean_ctor_set(x_432, 1, x_431); -lean_ctor_set(x_413, 0, x_432); -return x_412; -} -} -else -{ -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; -x_433 = lean_ctor_get(x_413, 0); -x_434 = lean_ctor_get(x_412, 1); +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; +x_431 = lean_ctor_get(x_411, 0); +x_432 = lean_ctor_get(x_410, 1); +lean_inc(x_432); +lean_dec(x_410); +x_433 = lean_ctor_get(x_431, 0); +lean_inc(x_433); +x_434 = lean_ctor_get(x_431, 1); lean_inc(x_434); -lean_dec(x_412); -x_435 = lean_ctor_get(x_433, 0); -lean_inc(x_435); -x_436 = lean_ctor_get(x_433, 1); -lean_inc(x_436); -if (lean_is_exclusive(x_433)) { - lean_ctor_release(x_433, 0); - lean_ctor_release(x_433, 1); - x_437 = x_433; +if (lean_is_exclusive(x_431)) { + lean_ctor_release(x_431, 0); + lean_ctor_release(x_431, 1); + x_435 = x_431; } else { - lean_dec_ref(x_433); - x_437 = lean_box(0); + lean_dec_ref(x_431); + x_435 = lean_box(0); } -x_438 = l_Lean_Syntax_setArg(x_9, x_8, x_436); -x_439 = l_Lean_Syntax_setArg(x_1, x_8, x_438); -if (lean_is_scalar(x_437)) { - x_440 = lean_alloc_ctor(0, 2, 0); +x_436 = l_Lean_Syntax_setArg(x_9, x_8, x_434); +x_437 = l_Lean_Syntax_setArg(x_1, x_8, x_436); +if (lean_is_scalar(x_435)) { + x_438 = lean_alloc_ctor(0, 2, 0); } else { - x_440 = x_437; + x_438 = x_435; } -lean_ctor_set(x_440, 0, x_435); -lean_ctor_set(x_440, 1, x_439); -lean_ctor_set(x_413, 0, x_440); -x_441 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_441, 0, x_413); -lean_ctor_set(x_441, 1, x_434); -return x_441; +lean_ctor_set(x_438, 0, x_433); +lean_ctor_set(x_438, 1, x_437); +lean_ctor_set(x_411, 0, x_438); +x_439 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_439, 0, x_411); +lean_ctor_set(x_439, 1, x_432); +return x_439; } } else { -lean_object* x_442; lean_object* x_443; lean_object* x_444; lean_object* x_445; lean_object* x_446; lean_object* x_447; lean_object* x_448; lean_object* x_449; lean_object* x_450; lean_object* x_451; lean_object* x_452; -x_442 = lean_ctor_get(x_413, 0); -lean_inc(x_442); -lean_dec(x_413); -x_443 = lean_ctor_get(x_412, 1); +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; +x_440 = lean_ctor_get(x_411, 0); +lean_inc(x_440); +lean_dec(x_411); +x_441 = lean_ctor_get(x_410, 1); +lean_inc(x_441); +if (lean_is_exclusive(x_410)) { + lean_ctor_release(x_410, 0); + lean_ctor_release(x_410, 1); + x_442 = x_410; +} else { + lean_dec_ref(x_410); + x_442 = lean_box(0); +} +x_443 = lean_ctor_get(x_440, 0); lean_inc(x_443); -if (lean_is_exclusive(x_412)) { - lean_ctor_release(x_412, 0); - lean_ctor_release(x_412, 1); - x_444 = x_412; +x_444 = lean_ctor_get(x_440, 1); +lean_inc(x_444); +if (lean_is_exclusive(x_440)) { + lean_ctor_release(x_440, 0); + lean_ctor_release(x_440, 1); + x_445 = x_440; } else { - lean_dec_ref(x_412); - x_444 = lean_box(0); + lean_dec_ref(x_440); + x_445 = lean_box(0); } -x_445 = lean_ctor_get(x_442, 0); -lean_inc(x_445); -x_446 = lean_ctor_get(x_442, 1); -lean_inc(x_446); -if (lean_is_exclusive(x_442)) { - lean_ctor_release(x_442, 0); - lean_ctor_release(x_442, 1); - x_447 = x_442; +x_446 = l_Lean_Syntax_setArg(x_9, x_8, x_444); +x_447 = l_Lean_Syntax_setArg(x_1, x_8, x_446); +if (lean_is_scalar(x_445)) { + x_448 = lean_alloc_ctor(0, 2, 0); } else { - lean_dec_ref(x_442); - x_447 = lean_box(0); + x_448 = x_445; } -x_448 = l_Lean_Syntax_setArg(x_9, x_8, x_446); -x_449 = l_Lean_Syntax_setArg(x_1, x_8, x_448); -if (lean_is_scalar(x_447)) { +lean_ctor_set(x_448, 0, x_443); +lean_ctor_set(x_448, 1, x_447); +x_449 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_449, 0, x_448); +if (lean_is_scalar(x_442)) { x_450 = lean_alloc_ctor(0, 2, 0); } else { - x_450 = x_447; + x_450 = x_442; } -lean_ctor_set(x_450, 0, x_445); -lean_ctor_set(x_450, 1, x_449); -x_451 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_451, 0, x_450); -if (lean_is_scalar(x_444)) { - x_452 = lean_alloc_ctor(0, 2, 0); -} else { - x_452 = x_444; -} -lean_ctor_set(x_452, 0, x_451); -lean_ctor_set(x_452, 1, x_443); -return x_452; +lean_ctor_set(x_450, 0, x_449); +lean_ctor_set(x_450, 1, x_441); +return x_450; } } } else { -uint8_t x_453; +uint8_t x_451; lean_dec(x_9); lean_dec(x_1); -x_453 = !lean_is_exclusive(x_412); -if (x_453 == 0) +x_451 = !lean_is_exclusive(x_410); +if (x_451 == 0) { -return x_412; +return x_410; } else { -lean_object* x_454; lean_object* x_455; lean_object* x_456; -x_454 = lean_ctor_get(x_412, 0); -x_455 = lean_ctor_get(x_412, 1); -lean_inc(x_455); -lean_inc(x_454); -lean_dec(x_412); -x_456 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_456, 0, x_454); -lean_ctor_set(x_456, 1, x_455); -return x_456; -} -} -} -} -else -{ -lean_object* x_457; lean_object* x_458; -lean_dec(x_10); -x_457 = l_Lean_Syntax_getArg(x_9, x_8); -x_458 = l___private_Lean_Elab_Declaration_0__Lean_Elab_Command_expandDeclIdNamespace_x3f(x_457, x_2, x_3); -if (lean_obj_tag(x_458) == 0) -{ -lean_object* x_459; -x_459 = lean_ctor_get(x_458, 0); -lean_inc(x_459); -if (lean_obj_tag(x_459) == 0) -{ -uint8_t x_460; -lean_dec(x_9); -lean_dec(x_1); -x_460 = !lean_is_exclusive(x_458); -if (x_460 == 0) -{ -lean_object* x_461; lean_object* x_462; -x_461 = lean_ctor_get(x_458, 0); -lean_dec(x_461); -x_462 = lean_box(0); -lean_ctor_set(x_458, 0, x_462); -return x_458; -} -else -{ -lean_object* x_463; lean_object* x_464; lean_object* x_465; -x_463 = lean_ctor_get(x_458, 1); -lean_inc(x_463); -lean_dec(x_458); -x_464 = lean_box(0); -x_465 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_465, 0, x_464); -lean_ctor_set(x_465, 1, x_463); -return x_465; -} -} -else -{ -uint8_t x_466; -x_466 = !lean_is_exclusive(x_459); -if (x_466 == 0) -{ -uint8_t x_467; -x_467 = !lean_is_exclusive(x_458); -if (x_467 == 0) -{ -lean_object* x_468; lean_object* x_469; uint8_t x_470; -x_468 = lean_ctor_get(x_459, 0); -x_469 = lean_ctor_get(x_458, 0); -lean_dec(x_469); -x_470 = !lean_is_exclusive(x_468); -if (x_470 == 0) -{ -lean_object* x_471; lean_object* x_472; lean_object* x_473; -x_471 = lean_ctor_get(x_468, 1); -x_472 = l_Lean_Syntax_setArg(x_9, x_8, x_471); -x_473 = l_Lean_Syntax_setArg(x_1, x_8, x_472); -lean_ctor_set(x_468, 1, x_473); -return x_458; -} -else -{ -lean_object* x_474; lean_object* x_475; lean_object* x_476; lean_object* x_477; lean_object* x_478; -x_474 = lean_ctor_get(x_468, 0); -x_475 = lean_ctor_get(x_468, 1); -lean_inc(x_475); -lean_inc(x_474); -lean_dec(x_468); -x_476 = l_Lean_Syntax_setArg(x_9, x_8, x_475); -x_477 = l_Lean_Syntax_setArg(x_1, x_8, x_476); -x_478 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_478, 0, x_474); -lean_ctor_set(x_478, 1, x_477); -lean_ctor_set(x_459, 0, x_478); -return x_458; -} -} -else -{ -lean_object* x_479; lean_object* x_480; lean_object* x_481; lean_object* x_482; lean_object* x_483; lean_object* x_484; lean_object* x_485; lean_object* x_486; lean_object* x_487; -x_479 = lean_ctor_get(x_459, 0); -x_480 = lean_ctor_get(x_458, 1); -lean_inc(x_480); -lean_dec(x_458); -x_481 = lean_ctor_get(x_479, 0); -lean_inc(x_481); -x_482 = lean_ctor_get(x_479, 1); -lean_inc(x_482); -if (lean_is_exclusive(x_479)) { - lean_ctor_release(x_479, 0); - lean_ctor_release(x_479, 1); - x_483 = x_479; -} else { - lean_dec_ref(x_479); - x_483 = lean_box(0); -} -x_484 = l_Lean_Syntax_setArg(x_9, x_8, x_482); -x_485 = l_Lean_Syntax_setArg(x_1, x_8, x_484); -if (lean_is_scalar(x_483)) { - x_486 = lean_alloc_ctor(0, 2, 0); -} else { - x_486 = x_483; -} -lean_ctor_set(x_486, 0, x_481); -lean_ctor_set(x_486, 1, x_485); -lean_ctor_set(x_459, 0, x_486); -x_487 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_487, 0, x_459); -lean_ctor_set(x_487, 1, x_480); -return x_487; -} -} -else -{ -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; -x_488 = lean_ctor_get(x_459, 0); -lean_inc(x_488); -lean_dec(x_459); -x_489 = lean_ctor_get(x_458, 1); -lean_inc(x_489); -if (lean_is_exclusive(x_458)) { - lean_ctor_release(x_458, 0); - lean_ctor_release(x_458, 1); - x_490 = x_458; -} else { - lean_dec_ref(x_458); - x_490 = lean_box(0); -} -x_491 = lean_ctor_get(x_488, 0); -lean_inc(x_491); -x_492 = lean_ctor_get(x_488, 1); -lean_inc(x_492); -if (lean_is_exclusive(x_488)) { - lean_ctor_release(x_488, 0); - lean_ctor_release(x_488, 1); - x_493 = x_488; -} else { - lean_dec_ref(x_488); - x_493 = lean_box(0); -} -x_494 = l_Lean_Syntax_setArg(x_9, x_8, x_492); -x_495 = l_Lean_Syntax_setArg(x_1, x_8, x_494); -if (lean_is_scalar(x_493)) { - x_496 = lean_alloc_ctor(0, 2, 0); -} else { - x_496 = x_493; -} -lean_ctor_set(x_496, 0, x_491); -lean_ctor_set(x_496, 1, x_495); -x_497 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_497, 0, x_496); -if (lean_is_scalar(x_490)) { - x_498 = lean_alloc_ctor(0, 2, 0); -} else { - x_498 = x_490; -} -lean_ctor_set(x_498, 0, x_497); -lean_ctor_set(x_498, 1, x_489); -return x_498; -} -} -} -else -{ -uint8_t x_499; -lean_dec(x_9); -lean_dec(x_1); -x_499 = !lean_is_exclusive(x_458); -if (x_499 == 0) -{ -return x_458; -} -else -{ -lean_object* x_500; lean_object* x_501; lean_object* x_502; -x_500 = lean_ctor_get(x_458, 0); -x_501 = lean_ctor_get(x_458, 1); -lean_inc(x_501); -lean_inc(x_500); -lean_dec(x_458); -x_502 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_502, 0, x_500); -lean_ctor_set(x_502, 1, x_501); -return x_502; +lean_object* x_452; lean_object* x_453; lean_object* x_454; +x_452 = lean_ctor_get(x_410, 0); +x_453 = lean_ctor_get(x_410, 1); +lean_inc(x_453); +lean_inc(x_452); +lean_dec(x_410); +x_454 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_454, 0, x_452); +lean_ctor_set(x_454, 1, x_453); +return x_454; } } } @@ -5942,7 +5726,7 @@ x_8 = lean_name_eq(x_4, x_7); if (x_8 == 0) { lean_object* x_9; uint8_t x_10; -x_9 = l___private_Lean_Elab_Declaration_0__Lean_Elab_Command_expandDeclNamespace_x3f___closed__28; +x_9 = l___private_Lean_Elab_Declaration_0__Lean_Elab_Command_expandDeclNamespace_x3f___closed__26; x_10 = lean_name_eq(x_4, x_9); lean_dec(x_4); if (x_10 == 0) @@ -6822,22 +6606,22 @@ x_14 = lean_unsigned_to_nat(1u); x_15 = l_Lean_Syntax_getArg(x_1, x_14); lean_inc(x_15); x_16 = l_Lean_Syntax_getKind(x_15); -x_17 = l___private_Lean_Elab_Declaration_0__Lean_Elab_Command_expandDeclNamespace_x3f___closed__20; +x_17 = l___private_Lean_Elab_Declaration_0__Lean_Elab_Command_expandDeclNamespace_x3f___closed__18; x_18 = lean_name_eq(x_16, x_17); if (x_18 == 0) { lean_object* x_19; uint8_t x_20; -x_19 = l___private_Lean_Elab_Declaration_0__Lean_Elab_Command_expandDeclNamespace_x3f___closed__22; +x_19 = l___private_Lean_Elab_Declaration_0__Lean_Elab_Command_expandDeclNamespace_x3f___closed__20; x_20 = lean_name_eq(x_16, x_19); if (x_20 == 0) { lean_object* x_21; uint8_t x_22; -x_21 = l___private_Lean_Elab_Declaration_0__Lean_Elab_Command_expandDeclNamespace_x3f___closed__24; +x_21 = l___private_Lean_Elab_Declaration_0__Lean_Elab_Command_expandDeclNamespace_x3f___closed__22; x_22 = lean_name_eq(x_16, x_21); if (x_22 == 0) { lean_object* x_23; uint8_t x_24; -x_23 = l___private_Lean_Elab_Declaration_0__Lean_Elab_Command_expandDeclNamespace_x3f___closed__26; +x_23 = l___private_Lean_Elab_Declaration_0__Lean_Elab_Command_expandDeclNamespace_x3f___closed__24; x_24 = lean_name_eq(x_16, x_23); lean_dec(x_16); if (x_24 == 0) @@ -7177,7 +6961,7 @@ static lean_object* _init_l___regBuiltin_Lean_Elab_Command_elabDeclaration_declR _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(168u); +x_1 = lean_unsigned_to_nat(167u); x_2 = lean_unsigned_to_nat(0u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -7189,7 +6973,7 @@ static lean_object* _init_l___regBuiltin_Lean_Elab_Command_elabDeclaration_declR _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(189u); +x_1 = lean_unsigned_to_nat(188u); x_2 = lean_unsigned_to_nat(41u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -7217,7 +7001,7 @@ static lean_object* _init_l___regBuiltin_Lean_Elab_Command_elabDeclaration_declR _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(168u); +x_1 = lean_unsigned_to_nat(167u); x_2 = lean_unsigned_to_nat(4u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -7229,7 +7013,7 @@ static lean_object* _init_l___regBuiltin_Lean_Elab_Command_elabDeclaration_declR _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(168u); +x_1 = lean_unsigned_to_nat(167u); x_2 = lean_unsigned_to_nat(19u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -7288,7 +7072,7 @@ x_6 = lean_unsigned_to_nat(1u); x_7 = l_Lean_Syntax_getArg(x_5, x_6); lean_dec(x_5); x_8 = l_Lean_Syntax_getKind(x_7); -x_9 = l___private_Lean_Elab_Declaration_0__Lean_Elab_Command_expandDeclNamespace_x3f___closed__22; +x_9 = l___private_Lean_Elab_Declaration_0__Lean_Elab_Command_expandDeclNamespace_x3f___closed__20; x_10 = lean_name_eq(x_8, x_9); lean_dec(x_8); if (x_10 == 0) @@ -8670,7 +8454,7 @@ static lean_object* _init_l___regBuiltin_Lean_Elab_Command_expandMutualNamespace _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(233u); +x_1 = lean_unsigned_to_nat(232u); x_2 = lean_unsigned_to_nat(0u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -8682,7 +8466,7 @@ static lean_object* _init_l___regBuiltin_Lean_Elab_Command_expandMutualNamespace _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(250u); +x_1 = lean_unsigned_to_nat(249u); x_2 = lean_unsigned_to_nat(34u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -8710,7 +8494,7 @@ static lean_object* _init_l___regBuiltin_Lean_Elab_Command_expandMutualNamespace _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(233u); +x_1 = lean_unsigned_to_nat(232u); x_2 = lean_unsigned_to_nat(4u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -8722,7 +8506,7 @@ static lean_object* _init_l___regBuiltin_Lean_Elab_Command_expandMutualNamespace _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(233u); +x_1 = lean_unsigned_to_nat(232u); x_2 = lean_unsigned_to_nat(25u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -9146,7 +8930,7 @@ static lean_object* _init_l___regBuiltin_Lean_Elab_Command_expandMutualElement_d _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(253u); +x_1 = lean_unsigned_to_nat(252u); x_2 = lean_unsigned_to_nat(0u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -9158,7 +8942,7 @@ static lean_object* _init_l___regBuiltin_Lean_Elab_Command_expandMutualElement_d _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(263u); +x_1 = lean_unsigned_to_nat(262u); x_2 = lean_unsigned_to_nat(26u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -9186,7 +8970,7 @@ static lean_object* _init_l___regBuiltin_Lean_Elab_Command_expandMutualElement_d _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(253u); +x_1 = lean_unsigned_to_nat(252u); x_2 = lean_unsigned_to_nat(4u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -9198,7 +8982,7 @@ static lean_object* _init_l___regBuiltin_Lean_Elab_Command_expandMutualElement_d _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(253u); +x_1 = lean_unsigned_to_nat(252u); x_2 = lean_unsigned_to_nat(23u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -9446,7 +9230,7 @@ static lean_object* _init_l___regBuiltin_Lean_Elab_Command_expandMutualPreamble_ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(266u); +x_1 = lean_unsigned_to_nat(265u); x_2 = lean_unsigned_to_nat(0u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -9458,7 +9242,7 @@ static lean_object* _init_l___regBuiltin_Lean_Elab_Command_expandMutualPreamble_ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(273u); +x_1 = lean_unsigned_to_nat(272u); x_2 = lean_unsigned_to_nat(74u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -9486,7 +9270,7 @@ static lean_object* _init_l___regBuiltin_Lean_Elab_Command_expandMutualPreamble_ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(266u); +x_1 = lean_unsigned_to_nat(265u); x_2 = lean_unsigned_to_nat(4u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -9498,7 +9282,7 @@ static lean_object* _init_l___regBuiltin_Lean_Elab_Command_expandMutualPreamble_ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(266u); +x_1 = lean_unsigned_to_nat(265u); x_2 = lean_unsigned_to_nat(24u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -10061,7 +9845,7 @@ static lean_object* _init_l___regBuiltin_Lean_Elab_Command_elabMutual_declRange_ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(276u); +x_1 = lean_unsigned_to_nat(275u); x_2 = lean_unsigned_to_nat(0u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -10073,7 +9857,7 @@ static lean_object* _init_l___regBuiltin_Lean_Elab_Command_elabMutual_declRange_ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(293u); +x_1 = lean_unsigned_to_nat(292u); x_2 = lean_unsigned_to_nat(37u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -10101,7 +9885,7 @@ static lean_object* _init_l___regBuiltin_Lean_Elab_Command_elabMutual_declRange_ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(276u); +x_1 = lean_unsigned_to_nat(275u); x_2 = lean_unsigned_to_nat(4u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -10113,7 +9897,7 @@ static lean_object* _init_l___regBuiltin_Lean_Elab_Command_elabMutual_declRange_ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(276u); +x_1 = lean_unsigned_to_nat(275u); x_2 = lean_unsigned_to_nat(14u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -11075,7 +10859,7 @@ static lean_object* _init_l___regBuiltin_Lean_Elab_Command_elabAttr_declRange___ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(296u); +x_1 = lean_unsigned_to_nat(295u); x_2 = lean_unsigned_to_nat(34u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -11087,7 +10871,7 @@ static lean_object* _init_l___regBuiltin_Lean_Elab_Command_elabAttr_declRange___ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(313u); +x_1 = lean_unsigned_to_nat(312u); x_2 = lean_unsigned_to_nat(39u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -11115,7 +10899,7 @@ static lean_object* _init_l___regBuiltin_Lean_Elab_Command_elabAttr_declRange___ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(296u); +x_1 = lean_unsigned_to_nat(295u); x_2 = lean_unsigned_to_nat(38u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -11127,7 +10911,7 @@ static lean_object* _init_l___regBuiltin_Lean_Elab_Command_elabAttr_declRange___ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(296u); +x_1 = lean_unsigned_to_nat(295u); x_2 = lean_unsigned_to_nat(46u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -13969,7 +13753,7 @@ static lean_object* _init_l___regBuiltin_Lean_Elab_Command_expandInitialize_decl _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(339u); +x_1 = lean_unsigned_to_nat(338u); x_2 = lean_unsigned_to_nat(49u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -13981,7 +13765,7 @@ static lean_object* _init_l___regBuiltin_Lean_Elab_Command_expandInitialize_decl _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(340u); +x_1 = lean_unsigned_to_nat(339u); x_2 = lean_unsigned_to_nat(34u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -14009,7 +13793,7 @@ static lean_object* _init_l___regBuiltin_Lean_Elab_Command_expandInitialize_decl _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(339u); +x_1 = lean_unsigned_to_nat(338u); x_2 = lean_unsigned_to_nat(53u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -14021,7 +13805,7 @@ static lean_object* _init_l___regBuiltin_Lean_Elab_Command_expandInitialize_decl _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(339u); +x_1 = lean_unsigned_to_nat(338u); x_2 = lean_unsigned_to_nat(69u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -14136,7 +13920,7 @@ static lean_object* _init_l___regBuiltin_Lean_Elab_Command_expandBuiltinInitiali _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(342u); +x_1 = lean_unsigned_to_nat(341u); x_2 = lean_unsigned_to_nat(57u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -14148,7 +13932,7 @@ static lean_object* _init_l___regBuiltin_Lean_Elab_Command_expandBuiltinInitiali _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(343u); +x_1 = lean_unsigned_to_nat(342u); x_2 = lean_unsigned_to_nat(33u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -14176,7 +13960,7 @@ static lean_object* _init_l___regBuiltin_Lean_Elab_Command_expandBuiltinInitiali _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(342u); +x_1 = lean_unsigned_to_nat(341u); x_2 = lean_unsigned_to_nat(61u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -14188,7 +13972,7 @@ static lean_object* _init_l___regBuiltin_Lean_Elab_Command_expandBuiltinInitiali _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(342u); +x_1 = lean_unsigned_to_nat(341u); x_2 = lean_unsigned_to_nat(84u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -14333,10 +14117,6 @@ l___private_Lean_Elab_Declaration_0__Lean_Elab_Command_expandDeclNamespace_x3f__ lean_mark_persistent(l___private_Lean_Elab_Declaration_0__Lean_Elab_Command_expandDeclNamespace_x3f___closed__25); l___private_Lean_Elab_Declaration_0__Lean_Elab_Command_expandDeclNamespace_x3f___closed__26 = _init_l___private_Lean_Elab_Declaration_0__Lean_Elab_Command_expandDeclNamespace_x3f___closed__26(); lean_mark_persistent(l___private_Lean_Elab_Declaration_0__Lean_Elab_Command_expandDeclNamespace_x3f___closed__26); -l___private_Lean_Elab_Declaration_0__Lean_Elab_Command_expandDeclNamespace_x3f___closed__27 = _init_l___private_Lean_Elab_Declaration_0__Lean_Elab_Command_expandDeclNamespace_x3f___closed__27(); -lean_mark_persistent(l___private_Lean_Elab_Declaration_0__Lean_Elab_Command_expandDeclNamespace_x3f___closed__27); -l___private_Lean_Elab_Declaration_0__Lean_Elab_Command_expandDeclNamespace_x3f___closed__28 = _init_l___private_Lean_Elab_Declaration_0__Lean_Elab_Command_expandDeclNamespace_x3f___closed__28(); -lean_mark_persistent(l___private_Lean_Elab_Declaration_0__Lean_Elab_Command_expandDeclNamespace_x3f___closed__28); l_Lean_addDeclarationRanges___at_Lean_Elab_Command_elabAxiom___spec__3___closed__1 = _init_l_Lean_addDeclarationRanges___at_Lean_Elab_Command_elabAxiom___spec__3___closed__1(); lean_mark_persistent(l_Lean_addDeclarationRanges___at_Lean_Elab_Command_elabAxiom___spec__3___closed__1); l_Lean_Elab_addDeclarationRanges___at_Lean_Elab_Command_elabAxiom___spec__1___closed__1 = _init_l_Lean_Elab_addDeclarationRanges___at_Lean_Elab_Command_elabAxiom___spec__1___closed__1(); diff --git a/stage0/stdlib/Lean/Elab/DefView.c b/stage0/stdlib/Lean/Elab/DefView.c index 8650dbde4f..e2a708dba6 100644 --- a/stage0/stdlib/Lean/Elab/DefView.c +++ b/stage0/stdlib/Lean/Elab/DefView.c @@ -33,7 +33,6 @@ lean_object* l_Lean_Syntax_getOptional_x3f(lean_object*); uint8_t l_Lean_Expr_isProp(lean_object*); static lean_object* l_Lean_Elab_Command_mkInstanceName___closed__1; LEAN_EXPORT lean_object* l___private_Lean_Elab_DefView_0__Lean_Elab_beqDefKind____x40_Lean_Elab_DefView___hyg_15____boxed(lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_DefView___hyg_1491____closed__1; lean_object* l_Lean_SourceInfo_fromRef(lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Command_mkDefViewOfInstance___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_maxRecDepthErrorMessage; @@ -41,7 +40,6 @@ LEAN_EXPORT lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Comma LEAN_EXPORT lean_object* l_Lean_throwMaxRecDepthAt___at_Lean_Elab_Command_mkDefViewOfInstance___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Command_mkDefViewOfInstance___closed__13; static lean_object* l_Lean_Elab_Command_mkDefViewOfOpaque___closed__3; -static lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_DefView___hyg_1491____closed__3; LEAN_EXPORT lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_Elab_Command_mkDefViewOfInstance___spec__11(lean_object*, lean_object*, lean_object*); lean_object* lean_st_ref_get(lean_object*, lean_object*); uint8_t lean_name_eq(lean_object*, lean_object*); @@ -49,15 +47,12 @@ static lean_object* l_Lean_Elab_Command_mkDefViewOfInstance___closed__1; lean_object* l_Lean_mkIdentFrom(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Command_mkInstanceName___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_toSubarray___rarg(lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_DefView___hyg_1491____closed__4; lean_object* lean_array_push(lean_object*, lean_object*); lean_object* lean_array_get_size(lean_object*); LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Elab_Command_mkDefViewOfInstance___spec__3(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_string_append(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Command_mkInstanceName___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Command_mkDefViewOfAbbrev___closed__1; -static lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_DefView___hyg_1491____closed__2; -static lean_object* l_Lean_Elab_Command_isDefLike___closed__12; LEAN_EXPORT lean_object* l_Lean_Elab_Command_mkInstanceName___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Command_mkDefViewOfOpaque(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_synthesizeSyntheticMVars(uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -146,7 +141,6 @@ static lean_object* l_Lean_Elab_Command_mkDefViewOfInstance___closed__6; size_t lean_usize_of_nat(lean_object*); LEAN_EXPORT uint8_t l_Lean_Elab_DefKind_isTheorem(uint8_t); LEAN_EXPORT lean_object* l_Lean_Elab_Command_mkFreshInstanceName(lean_object*); -static lean_object* l_Lean_Elab_Command_isDefLike___closed__13; LEAN_EXPORT lean_object* l_Lean_Elab_Command_mkInstanceName___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_EXPORT lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_mkDefViewOfInstance___spec__5(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Command_mkDefViewOfOpaque___closed__7; @@ -172,12 +166,13 @@ lean_object* l_Lean_Syntax_getKind(lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Command_mkInstanceName(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Command_mkFreshInstanceName___boxed(lean_object*); static lean_object* l_Lean_throwMaxRecDepthAt___at_Lean_Elab_Command_mkInstanceName___spec__4___closed__1; -LEAN_EXPORT lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_DefView___hyg_1491_(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_DefView___hyg_1469_(lean_object*); static lean_object* l_Lean_Elab_Command_mkInstanceName___closed__3; LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at_Lean_Elab_Command_mkInstanceName___spec__1___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwMaxRecDepthAt___at_Lean_Elab_Command_mkInstanceName___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_ReaderT_pure___at_Lean_Elab_liftMacroM___spec__2___rarg___boxed(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_throwMaxRecDepthAt___at_Lean_Elab_Command_mkInstanceName___spec__4___closed__2; +static lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_DefView___hyg_1469____closed__2; static lean_object* l_Lean_Elab_Command_isDefLike___closed__6; lean_object* l_Lean_Elab_Command_getMainModule___rarg(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Command_mkInstanceName___lambda__1___closed__3; @@ -193,6 +188,7 @@ LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Elab_Command_mkDefView___sp uint8_t l_Lean_Syntax_isNone(lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_mkDefViewOfInstance___spec__10(lean_object*, lean_object*); lean_object* l_Lean_Elab_Modifiers_addAttribute(lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_DefView___hyg_1469____closed__3; static lean_object* l_Lean_Elab_Command_mkInstanceName___lambda__2___closed__1; static lean_object* l_Lean_Elab_Command_mkDefViewOfInstance___closed__9; lean_object* l_Lean_Meta_instantiateMVars(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -218,6 +214,7 @@ static lean_object* l_Lean_Elab_Command_mkDefViewOfOpaque___lambda__2___closed__ static lean_object* l_Lean_Elab_Command_mkDefViewOfInstance___closed__18; lean_object* l_Lean_Syntax_getArg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at_Lean_Elab_Command_mkInstanceName___spec__1___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_DefView___hyg_1469____closed__4; LEAN_EXPORT lean_object* l_Lean_Elab_Command_mkDefView(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at_Lean_Elab_Command_mkInstanceName___spec__1___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at_Lean_Elab_Command_mkInstanceName___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); @@ -232,6 +229,7 @@ LEAN_EXPORT lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Comma static lean_object* l_Lean_Elab_Command_mkDefViewOfOpaque___closed__6; lean_object* l_Lean_Elab_Command_getScope___rarg(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Command_mkDefViewOfInstance___closed__14; +static lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_DefView___hyg_1469____closed__1; static lean_object* l_Lean_Elab_instInhabitedDefView___closed__2; static lean_object* l_Lean_Elab_Command_mkDefViewOfInstance___closed__5; LEAN_EXPORT lean_object* l_Lean_Elab_DefView_deriving_x3f___default; @@ -4131,7 +4129,7 @@ static lean_object* _init_l_Lean_Elab_Command_isDefLike___closed__7() { _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("constant", 8); +x_1 = lean_mk_string_from_bytes("opaque", 6); return x_1; } } @@ -4148,24 +4146,6 @@ return x_3; static lean_object* _init_l_Lean_Elab_Command_isDefLike___closed__9() { _start: { -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("opaque", 6); -return x_1; -} -} -static lean_object* _init_l_Lean_Elab_Command_isDefLike___closed__10() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Command_mkDefViewOfInstance___closed__15; -x_2 = l_Lean_Elab_Command_isDefLike___closed__9; -x_3 = lean_name_mk_string(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Elab_Command_isDefLike___closed__11() { -_start: -{ lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Elab_Command_mkDefViewOfInstance___closed__15; x_2 = l_Lean_Elab_Command_mkDefViewOfInstance___closed__7; @@ -4173,7 +4153,7 @@ x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Command_isDefLike___closed__12() { +static lean_object* _init_l_Lean_Elab_Command_isDefLike___closed__10() { _start: { lean_object* x_1; @@ -4181,12 +4161,12 @@ x_1 = lean_mk_string_from_bytes("example", 7); return x_1; } } -static lean_object* _init_l_Lean_Elab_Command_isDefLike___closed__13() { +static lean_object* _init_l_Lean_Elab_Command_isDefLike___closed__11() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Elab_Command_mkDefViewOfInstance___closed__15; -x_2 = l_Lean_Elab_Command_isDefLike___closed__12; +x_2 = l_Lean_Elab_Command_isDefLike___closed__10; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } @@ -4216,21 +4196,32 @@ x_10 = lean_name_eq(x_2, x_9); if (x_10 == 0) { lean_object* x_11; uint8_t x_12; -x_11 = l_Lean_Elab_Command_isDefLike___closed__10; +x_11 = l_Lean_Elab_Command_isDefLike___closed__9; x_12 = lean_name_eq(x_2, x_11); if (x_12 == 0) { lean_object* x_13; uint8_t x_14; x_13 = l_Lean_Elab_Command_isDefLike___closed__11; x_14 = lean_name_eq(x_2, x_13); -if (x_14 == 0) -{ -lean_object* x_15; uint8_t x_16; -x_15 = l_Lean_Elab_Command_isDefLike___closed__13; -x_16 = lean_name_eq(x_2, x_15); lean_dec(x_2); +return x_14; +} +else +{ +uint8_t x_15; +lean_dec(x_2); +x_15 = 1; +return x_15; +} +} +else +{ +uint8_t x_16; +lean_dec(x_2); +x_16 = 1; return x_16; } +} else { uint8_t x_17; @@ -4255,30 +4246,6 @@ x_19 = 1; return x_19; } } -else -{ -uint8_t x_20; -lean_dec(x_2); -x_20 = 1; -return x_20; -} -} -else -{ -uint8_t x_21; -lean_dec(x_2); -x_21 = 1; -return x_21; -} -} -else -{ -uint8_t x_22; -lean_dec(x_2); -x_22 = 1; -return x_22; -} -} } LEAN_EXPORT lean_object* l_Lean_Elab_Command_isDefLike___boxed(lean_object* x_1) { _start: @@ -4386,102 +4353,89 @@ x_14 = lean_name_eq(x_6, x_13); if (x_14 == 0) { lean_object* x_15; uint8_t x_16; -x_15 = l_Lean_Elab_Command_isDefLike___closed__10; +x_15 = l_Lean_Elab_Command_isDefLike___closed__9; x_16 = lean_name_eq(x_6, x_15); if (x_16 == 0) { lean_object* x_17; uint8_t x_18; x_17 = l_Lean_Elab_Command_isDefLike___closed__11; x_18 = lean_name_eq(x_6, x_17); +lean_dec(x_6); if (x_18 == 0) { -lean_object* x_19; uint8_t x_20; -x_19 = l_Lean_Elab_Command_isDefLike___closed__13; -x_20 = lean_name_eq(x_6, x_19); -lean_dec(x_6); -if (x_20 == 0) -{ -lean_object* x_21; lean_object* x_22; +lean_object* x_19; lean_object* x_20; lean_dec(x_2); lean_dec(x_1); -x_21 = l_Lean_Elab_Command_mkDefView___closed__2; -x_22 = l_Lean_throwError___at_Lean_Elab_Command_mkDefView___spec__1(x_21, x_3, x_4, x_5); +x_19 = l_Lean_Elab_Command_mkDefView___closed__2; +x_20 = l_Lean_throwError___at_Lean_Elab_Command_mkDefView___spec__1(x_19, x_3, x_4, x_5); lean_dec(x_4); -return x_22; +return x_20; } else { -lean_object* x_23; lean_object* x_24; +lean_object* x_21; lean_object* x_22; lean_dec(x_4); lean_dec(x_3); -x_23 = l_Lean_Elab_Command_mkDefViewOfExample(x_1, x_2); -x_24 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_24, 0, x_23); -lean_ctor_set(x_24, 1, x_5); +x_21 = l_Lean_Elab_Command_mkDefViewOfExample(x_1, x_2); +x_22 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_22, 0, x_21); +lean_ctor_set(x_22, 1, x_5); +return x_22; +} +} +else +{ +lean_object* x_23; +lean_dec(x_6); +x_23 = l_Lean_Elab_Command_mkDefViewOfInstance(x_1, x_2, x_3, x_4, x_5); +return x_23; +} +} +else +{ +lean_object* x_24; +lean_dec(x_6); +x_24 = l_Lean_Elab_Command_mkDefViewOfOpaque(x_1, x_2, x_3, x_4, x_5); return x_24; } } else { -lean_object* x_25; +lean_object* x_25; lean_object* x_26; lean_dec(x_6); -x_25 = l_Lean_Elab_Command_mkDefViewOfInstance(x_1, x_2, x_3, x_4, x_5); -return x_25; -} -} -else -{ -lean_object* x_26; -lean_dec(x_6); -x_26 = l_Lean_Elab_Command_mkDefViewOfOpaque(x_1, x_2, x_3, x_4, x_5); +lean_dec(x_4); +lean_dec(x_3); +x_25 = l_Lean_Elab_Command_mkDefViewOfTheorem(x_1, x_2); +x_26 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_26, 0, x_25); +lean_ctor_set(x_26, 1, x_5); return x_26; } } else { -lean_object* x_27; +lean_object* x_27; lean_object* x_28; lean_dec(x_6); -x_27 = l_Lean_Elab_Command_mkDefViewOfOpaque(x_1, x_2, x_3, x_4, x_5); -return x_27; +lean_dec(x_4); +lean_dec(x_3); +x_27 = l_Lean_Elab_Command_mkDefViewOfDef(x_1, x_2); +x_28 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_28, 0, x_27); +lean_ctor_set(x_28, 1, x_5); +return x_28; } } else { -lean_object* x_28; lean_object* x_29; +lean_object* x_29; lean_object* x_30; lean_dec(x_6); lean_dec(x_4); lean_dec(x_3); -x_28 = l_Lean_Elab_Command_mkDefViewOfTheorem(x_1, x_2); -x_29 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_29, 0, x_28); -lean_ctor_set(x_29, 1, x_5); -return x_29; -} -} -else -{ -lean_object* x_30; lean_object* x_31; -lean_dec(x_6); -lean_dec(x_4); -lean_dec(x_3); -x_30 = l_Lean_Elab_Command_mkDefViewOfDef(x_1, x_2); -x_31 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_31, 0, x_30); -lean_ctor_set(x_31, 1, x_5); -return x_31; -} -} -else -{ -lean_object* x_32; lean_object* x_33; -lean_dec(x_6); -lean_dec(x_4); -lean_dec(x_3); -x_32 = l_Lean_Elab_Command_mkDefViewOfAbbrev(x_1, x_2); -x_33 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_33, 0, x_32); -lean_ctor_set(x_33, 1, x_5); -return x_33; +x_29 = l_Lean_Elab_Command_mkDefViewOfAbbrev(x_1, x_2); +x_30 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_30, 0, x_29); +lean_ctor_set(x_30, 1, x_5); +return x_30; } } } @@ -4494,7 +4448,7 @@ lean_dec(x_3); return x_5; } } -static lean_object* _init_l_Lean_Elab_Command_initFn____x40_Lean_Elab_DefView___hyg_1491____closed__1() { +static lean_object* _init_l_Lean_Elab_Command_initFn____x40_Lean_Elab_DefView___hyg_1469____closed__1() { _start: { lean_object* x_1; @@ -4502,17 +4456,17 @@ x_1 = lean_mk_string_from_bytes("Elab", 4); return x_1; } } -static lean_object* _init_l_Lean_Elab_Command_initFn____x40_Lean_Elab_DefView___hyg_1491____closed__2() { +static lean_object* _init_l_Lean_Elab_Command_initFn____x40_Lean_Elab_DefView___hyg_1469____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Elab_Command_initFn____x40_Lean_Elab_DefView___hyg_1491____closed__1; +x_2 = l_Lean_Elab_Command_initFn____x40_Lean_Elab_DefView___hyg_1469____closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Command_initFn____x40_Lean_Elab_DefView___hyg_1491____closed__3() { +static lean_object* _init_l_Lean_Elab_Command_initFn____x40_Lean_Elab_DefView___hyg_1469____closed__3() { _start: { lean_object* x_1; @@ -4520,21 +4474,21 @@ x_1 = lean_mk_string_from_bytes("definition", 10); return x_1; } } -static lean_object* _init_l_Lean_Elab_Command_initFn____x40_Lean_Elab_DefView___hyg_1491____closed__4() { +static lean_object* _init_l_Lean_Elab_Command_initFn____x40_Lean_Elab_DefView___hyg_1469____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Command_initFn____x40_Lean_Elab_DefView___hyg_1491____closed__2; -x_2 = l_Lean_Elab_Command_initFn____x40_Lean_Elab_DefView___hyg_1491____closed__3; +x_1 = l_Lean_Elab_Command_initFn____x40_Lean_Elab_DefView___hyg_1469____closed__2; +x_2 = l_Lean_Elab_Command_initFn____x40_Lean_Elab_DefView___hyg_1469____closed__3; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_DefView___hyg_1491_(lean_object* x_1) { +LEAN_EXPORT lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_DefView___hyg_1469_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; -x_2 = l_Lean_Elab_Command_initFn____x40_Lean_Elab_DefView___hyg_1491____closed__4; +x_2 = l_Lean_Elab_Command_initFn____x40_Lean_Elab_DefView___hyg_1469____closed__4; x_3 = l_Lean_registerTraceClass(x_2, x_1); return x_3; } @@ -4725,23 +4679,19 @@ l_Lean_Elab_Command_isDefLike___closed__10 = _init_l_Lean_Elab_Command_isDefLike lean_mark_persistent(l_Lean_Elab_Command_isDefLike___closed__10); l_Lean_Elab_Command_isDefLike___closed__11 = _init_l_Lean_Elab_Command_isDefLike___closed__11(); lean_mark_persistent(l_Lean_Elab_Command_isDefLike___closed__11); -l_Lean_Elab_Command_isDefLike___closed__12 = _init_l_Lean_Elab_Command_isDefLike___closed__12(); -lean_mark_persistent(l_Lean_Elab_Command_isDefLike___closed__12); -l_Lean_Elab_Command_isDefLike___closed__13 = _init_l_Lean_Elab_Command_isDefLike___closed__13(); -lean_mark_persistent(l_Lean_Elab_Command_isDefLike___closed__13); l_Lean_Elab_Command_mkDefView___closed__1 = _init_l_Lean_Elab_Command_mkDefView___closed__1(); lean_mark_persistent(l_Lean_Elab_Command_mkDefView___closed__1); l_Lean_Elab_Command_mkDefView___closed__2 = _init_l_Lean_Elab_Command_mkDefView___closed__2(); lean_mark_persistent(l_Lean_Elab_Command_mkDefView___closed__2); -l_Lean_Elab_Command_initFn____x40_Lean_Elab_DefView___hyg_1491____closed__1 = _init_l_Lean_Elab_Command_initFn____x40_Lean_Elab_DefView___hyg_1491____closed__1(); -lean_mark_persistent(l_Lean_Elab_Command_initFn____x40_Lean_Elab_DefView___hyg_1491____closed__1); -l_Lean_Elab_Command_initFn____x40_Lean_Elab_DefView___hyg_1491____closed__2 = _init_l_Lean_Elab_Command_initFn____x40_Lean_Elab_DefView___hyg_1491____closed__2(); -lean_mark_persistent(l_Lean_Elab_Command_initFn____x40_Lean_Elab_DefView___hyg_1491____closed__2); -l_Lean_Elab_Command_initFn____x40_Lean_Elab_DefView___hyg_1491____closed__3 = _init_l_Lean_Elab_Command_initFn____x40_Lean_Elab_DefView___hyg_1491____closed__3(); -lean_mark_persistent(l_Lean_Elab_Command_initFn____x40_Lean_Elab_DefView___hyg_1491____closed__3); -l_Lean_Elab_Command_initFn____x40_Lean_Elab_DefView___hyg_1491____closed__4 = _init_l_Lean_Elab_Command_initFn____x40_Lean_Elab_DefView___hyg_1491____closed__4(); -lean_mark_persistent(l_Lean_Elab_Command_initFn____x40_Lean_Elab_DefView___hyg_1491____closed__4); -res = l_Lean_Elab_Command_initFn____x40_Lean_Elab_DefView___hyg_1491_(lean_io_mk_world()); +l_Lean_Elab_Command_initFn____x40_Lean_Elab_DefView___hyg_1469____closed__1 = _init_l_Lean_Elab_Command_initFn____x40_Lean_Elab_DefView___hyg_1469____closed__1(); +lean_mark_persistent(l_Lean_Elab_Command_initFn____x40_Lean_Elab_DefView___hyg_1469____closed__1); +l_Lean_Elab_Command_initFn____x40_Lean_Elab_DefView___hyg_1469____closed__2 = _init_l_Lean_Elab_Command_initFn____x40_Lean_Elab_DefView___hyg_1469____closed__2(); +lean_mark_persistent(l_Lean_Elab_Command_initFn____x40_Lean_Elab_DefView___hyg_1469____closed__2); +l_Lean_Elab_Command_initFn____x40_Lean_Elab_DefView___hyg_1469____closed__3 = _init_l_Lean_Elab_Command_initFn____x40_Lean_Elab_DefView___hyg_1469____closed__3(); +lean_mark_persistent(l_Lean_Elab_Command_initFn____x40_Lean_Elab_DefView___hyg_1469____closed__3); +l_Lean_Elab_Command_initFn____x40_Lean_Elab_DefView___hyg_1469____closed__4 = _init_l_Lean_Elab_Command_initFn____x40_Lean_Elab_DefView___hyg_1469____closed__4(); +lean_mark_persistent(l_Lean_Elab_Command_initFn____x40_Lean_Elab_DefView___hyg_1469____closed__4); +res = l_Lean_Elab_Command_initFn____x40_Lean_Elab_DefView___hyg_1469_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); return lean_io_result_mk_ok(lean_box(0)); diff --git a/stage0/stdlib/Lean/Elab/Print.c b/stage0/stdlib/Lean/Elab/Print.c index 600ed83ac5..f847dc8f53 100644 --- a/stage0/stdlib/Lean/Elab/Print.c +++ b/stage0/stdlib/Lean/Elab/Print.c @@ -1879,7 +1879,7 @@ static lean_object* _init_l___private_Lean_Elab_Print_0__Lean_Elab_Command_print _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("constant", 8); +x_1 = lean_mk_string_from_bytes("opaque", 6); return x_1; } } diff --git a/stage0/stdlib/Lean/Linter/Basic.c b/stage0/stdlib/Lean/Linter/Basic.c index b43c4764da..7faf0db788 100644 --- a/stage0/stdlib/Lean/Linter/Basic.c +++ b/stage0/stdlib/Lean/Linter/Basic.c @@ -1863,7 +1863,7 @@ static lean_object* _init_l_Lean_Linter_unusedVariables_isInConstantOrAxiom___ra _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("constant", 8); +x_1 = lean_mk_string_from_bytes("opaque", 6); return x_1; } } diff --git a/stage0/stdlib/Lean/Parser/Command.c b/stage0/stdlib/Lean/Parser/Command.c index 0b01c2ec2f..ca29fa566f 100644 --- a/stage0/stdlib/Lean/Parser/Command.c +++ b/stage0/stdlib/Lean/Parser/Command.c @@ -26,6 +26,7 @@ static lean_object* l_Lean_Parser_Command_inductive___elambda__1___closed__3; static lean_object* l_Lean_Parser_Command_attribute_formatter___closed__11; static lean_object* l_Lean_Parser_Command_builtin__initialize___elambda__1___closed__5; static lean_object* l_Lean_Parser_Command_example___elambda__1___closed__5; +static lean_object* l_Lean_Parser_Command_opaque___closed__10; static lean_object* l_Lean_Parser_Command_initialize___elambda__1___closed__23; LEAN_EXPORT lean_object* l_Lean_Parser_Command_eraseAttr; static lean_object* l___regBuiltin_Lean_Parser_Command_structure_parenthesizer___closed__1; @@ -80,7 +81,6 @@ static lean_object* l_Lean_Parser_Command_structCtor___closed__8; static lean_object* l_Lean_Parser_Command_namedPrio___elambda__1___closed__1; static lean_object* l_Lean_Parser_Command_nonrec___elambda__1___closed__9; static lean_object* l_Lean_Parser_Command_structExplicitBinder_parenthesizer___closed__1; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__33; static lean_object* l_Lean_Parser_Command_optDeriving_parenthesizer___closed__3; static lean_object* l_Lean_Parser_Command_optDeriving___closed__2; static lean_object* l_Lean_Parser_Command_namedPrio___elambda__1___closed__4; @@ -134,7 +134,6 @@ static lean_object* l_Lean_Parser_Command_printAxioms_parenthesizer___closed__4; static lean_object* l_Lean_Parser_Command_def___elambda__1___closed__6; static lean_object* l_Lean_Parser_Command_structExplicitBinder___elambda__1___closed__7; LEAN_EXPORT lean_object* l_Lean_Parser_Command_exit_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Parser_Command_constant___closed__6; static lean_object* l_Lean_Parser_Command_check__failure___elambda__1___closed__7; LEAN_EXPORT lean_object* l_Lean_Parser_Command_visibility___elambda__1(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_structExplicitBinder___closed__8; @@ -154,7 +153,6 @@ static lean_object* l_Lean_Parser_Command_mutual___elambda__1___closed__4; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_structure_formatter(lean_object*); static lean_object* l_Lean_Parser_Command_axiom_parenthesizer___closed__5; static lean_object* l_Lean_Parser_Command_axiom___closed__5; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__23; static lean_object* l___regBuiltin_Lean_Parser_Command_terminationByCore_formatter___closed__1; static lean_object* l___regBuiltin_Lean_Parser_Command_noncomputable_formatter___closed__1; static lean_object* l_Lean_Parser_Command_section___closed__3; @@ -173,6 +171,7 @@ static lean_object* l_Lean_Parser_Command_structCtor_formatter___closed__1; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_structCtor_formatter(lean_object*); static lean_object* l_Lean_Parser_Tactic_set__option___closed__1; static lean_object* l_Lean_Parser_Command_namedPrio___elambda__1___closed__13; +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__17; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Term_precheckedQuot_parenthesizer(lean_object*); static lean_object* l_Lean_Parser_Term_quot___elambda__1___closed__7; LEAN_EXPORT lean_object* l_Lean_Parser_Command_exit___elambda__1(lean_object*, lean_object*); @@ -181,7 +180,6 @@ static lean_object* l_Lean_Parser_Command_classInductive_formatter___closed__3; static lean_object* l_Lean_Parser_Command_declModifiers_formatter___closed__18; static lean_object* l_Lean_Parser_Command_abbrev___elambda__1___closed__2; static lean_object* l_Lean_Parser_Command_extends___closed__2; -static lean_object* l_Lean_Parser_Command_constant___elambda__1___closed__12; static lean_object* l_Lean_Parser_Command_namedPrio_formatter___closed__11; static lean_object* l_Lean_Parser_Command_structExplicitBinder_formatter___closed__13; static lean_object* l_Lean_Parser_Command_open___closed__5; @@ -197,7 +195,6 @@ static lean_object* l_Lean_Parser_Command_structFields_parenthesizer___closed__7 LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_noncomputableSection_declRange(lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_Command_opaque_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_structExplicitBinder_parenthesizer___closed__8; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__13; static lean_object* l_Lean_Parser_Command_whereStructInst_parenthesizer___closed__1; lean_object* l_Lean_Parser_ParserState_mkError(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_instance___closed__4; @@ -209,6 +206,7 @@ static lean_object* l___regBuiltin_Lean_Parser_Command_initialize_declRange___cl static lean_object* l_Lean_Parser_Command_mutual___elambda__1___closed__27; static lean_object* l_Lean_Parser_Command_openScoped_formatter___closed__2; static lean_object* l_Lean_Parser_Term_open___closed__6; +static lean_object* l_Lean_Parser_Command_opaque_parenthesizer___closed__5; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_open_formatter(lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_Command_visibility; static lean_object* l___regBuiltin_Lean_Parser_Command_example_parenthesizer___closed__2; @@ -219,6 +217,7 @@ static lean_object* l_Lean_Parser_Command_namedPrio_parenthesizer___closed__2; LEAN_EXPORT lean_object* l_Lean_Parser_Command_optDefDeriving_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_inductive_parenthesizer___closed__10; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_section(lean_object*); +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__8; static lean_object* l_Lean_Parser_Command_structInstBinder___elambda__1___closed__6; static lean_object* l_Lean_Parser_Command_declModifiers_formatter___closed__15; LEAN_EXPORT lean_object* l_Lean_Parser_Command_inductive___elambda__1(lean_object*, lean_object*); @@ -330,11 +329,11 @@ static lean_object* l_Lean_Parser_Command_terminationByCore_parenthesizer___clos static lean_object* l_Lean_Parser_Command_structCtor___closed__4; static lean_object* l_Lean_Parser_Command_opaque___elambda__1___closed__3; static lean_object* l_Lean_Parser_Command_decreasingBy___elambda__1___closed__7; +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__9; static lean_object* l_Lean_Parser_Command_noncomputableSection___elambda__1___closed__8; static lean_object* l_Lean_Parser_Command_terminationByCore_formatter___closed__5; lean_object* l_Lean_Parser_many(lean_object*); static lean_object* l_Lean_Parser_Command_declModifiers_formatter___closed__3; -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_constant_parenthesizer(lean_object*); static lean_object* l_Lean_Parser_Command_extends_parenthesizer___closed__2; static lean_object* l___regBuiltin_Lean_Parser_Command_set__option_declRange___closed__4; static lean_object* l_Lean_Parser_Command_ctor_parenthesizer___closed__3; @@ -355,15 +354,14 @@ static lean_object* l_Lean_Parser_Command_extends_parenthesizer___closed__1; static lean_object* l_Lean_Parser_Command_protected___elambda__1___closed__2; static lean_object* l_Lean_Parser_Command_nonrec___closed__5; static lean_object* l_Lean_Parser_Command_noncomputableSection_formatter___closed__6; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__38; static lean_object* l___regBuiltin_Lean_Parser_Term_quot_parenthesizer___closed__1; static lean_object* l_Lean_Parser_Command_set__option___elambda__1___closed__6; LEAN_EXPORT lean_object* l_Lean_Parser_Command_end_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_optDefDeriving_formatter___closed__3; static lean_object* l_Lean_Parser_Term_set__option___closed__1; static lean_object* l_Lean_Parser_Command_abbrev___closed__10; +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__27; static lean_object* l_Lean_Parser_Command_noncomputable___elambda__1___closed__11; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__21; static lean_object* l___regBuiltin_Lean_Parser_Command_namespace_declRange___closed__5; static lean_object* l_Lean_Parser_Command_whereStructField___elambda__1___closed__6; static lean_object* l_Lean_Parser_Command_opaque___elambda__1___closed__5; @@ -393,6 +391,7 @@ static lean_object* l___regBuiltin_Lean_Parser_Tactic_set__option_declRange___cl LEAN_EXPORT lean_object* l_Lean_Parser_Command_classInductive___elambda__1(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_Command_openHiding; static lean_object* l_Lean_Parser_Command_synth___elambda__1___closed__7; +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__4; static lean_object* l_Lean_Parser_Term_open___elambda__1___closed__9; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_declaration_declRange(lean_object*); static lean_object* l_Lean_Parser_Command_terminationByCore___elambda__1___closed__3; @@ -417,6 +416,7 @@ static lean_object* l___regBuiltin_Lean_Parser_Command_section_declRange___close static lean_object* l___regBuiltin_Lean_Parser_Command_ctor_parenthesizer___closed__2; static lean_object* l_Lean_Parser_Tactic_set__option_formatter___closed__5; static lean_object* l_Lean_Parser_Tactic_open_parenthesizer___closed__5; +static lean_object* l_Lean_Parser_Command_opaque_parenthesizer___closed__6; static lean_object* l___regBuiltin_Lean_Parser_Term_precheckedQuot_declRange___closed__4; LEAN_EXPORT lean_object* l_Lean_Parser_Command_noncomputableSection; static lean_object* l_Lean_Parser_Command_partial___elambda__1___closed__7; @@ -461,6 +461,7 @@ static lean_object* l_Lean_Parser_Command_openScoped___closed__3; LEAN_EXPORT lean_object* l_Lean_Parser_Command_openOnly; static lean_object* l___regBuiltin_Lean_Parser_Command_reduce_declRange___closed__1; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_openOnly_formatter(lean_object*); +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__2; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_print_parenthesizer(lean_object*); lean_object* l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_noncomputableSection___elambda__1___closed__9; @@ -474,6 +475,7 @@ static lean_object* l_Lean_Parser_Command_abbrev_formatter___closed__8; static lean_object* l_Lean_Parser_Command_in___closed__3; static lean_object* l_Lean_Parser_Command_print___elambda__1___closed__5; static lean_object* l___regBuiltin_Lean_Parser_Term_set__option_parenthesizer___closed__2; +static lean_object* l_Lean_Parser_Command_opaque___elambda__1___closed__14; static lean_object* l_Lean_Parser_Command_namedPrio___elambda__1___closed__2; LEAN_EXPORT lean_object* l_Lean_Parser_Command_export_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_doSeq___elambda__1(lean_object*, lean_object*); @@ -535,7 +537,6 @@ LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_universe_parenthesiz static lean_object* l_Lean_Parser_Tactic_set__option___elambda__1___closed__5; static lean_object* l_Lean_Parser_Command_section_formatter___closed__2; static lean_object* l___regBuiltin_Lean_Parser_Command_protected_parenthesizer___closed__1; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__34; static lean_object* l_Lean_Parser_Command_unsafe___elambda__1___closed__11; static lean_object* l_Lean_Parser_Command_declaration___elambda__1___closed__12; static lean_object* l_Lean_Parser_Command_terminationHint1_formatter___closed__1; @@ -544,6 +545,7 @@ static lean_object* l_Lean_Parser_Command_classTk___closed__6; static lean_object* l___regBuiltin_Lean_Parser_Command_deriving_formatter___closed__1; static lean_object* l___regBuiltin_Lean_Parser_Command_ctor_parenthesizer___closed__1; LEAN_EXPORT lean_object* l_Lean_Parser_Command_decreasingBy___elambda__1(lean_object*, lean_object*); +static lean_object* l_Lean_Parser_Command_opaque___elambda__1___closed__15; static lean_object* l_Lean_Parser_Command_exit___closed__1; static lean_object* l_Lean_Parser_Command_ctor_parenthesizer___closed__1; static lean_object* l_Lean_Parser_Command_structure_formatter___closed__17; @@ -673,6 +675,7 @@ static lean_object* l_Lean_Parser_Command_def___elambda__1___closed__14; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_quot_declRange(lean_object*); static lean_object* l_Lean_Parser_Command_theorem___closed__5; static lean_object* l___regBuiltin_Lean_Parser_Command_in_formatter___closed__1; +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__33; static lean_object* l___regBuiltin_Lean_Parser_Command_variable_parenthesizer___closed__1; static lean_object* l_Lean_Parser_Command_structImplicitBinder_formatter___closed__7; static lean_object* l_Lean_Parser_Command_terminationHint1___elambda__1___closed__4; @@ -709,7 +712,6 @@ static lean_object* l_Lean_Parser_Tactic_open___closed__3; static lean_object* l_Lean_Parser_Command_visibility___closed__1; static lean_object* l_Lean_Parser_Term_precheckedQuot_formatter___closed__1; static lean_object* l_Lean_Parser_Command_exit___elambda__1___closed__4; -static lean_object* l_Lean_Parser_Command_constant_formatter___closed__7; static lean_object* l___regBuiltin_Lean_Parser_Command_decreasingBy_parenthesizer___closed__2; static lean_object* l_Lean_Parser_Command_moduleDoc___elambda__1___closed__11; static lean_object* l_Lean_Parser_Command_openScoped___elambda__1___closed__5; @@ -753,16 +755,15 @@ static lean_object* l_Lean_Parser_Command_structure___closed__2; lean_object* l_Lean_Parser_priorityParser_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_declaration___elambda__1___closed__2; static lean_object* l_Lean_Parser_Command_structFields___closed__4; +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__23; static lean_object* l_Lean_Parser_Command_set__option___elambda__1___closed__3; static lean_object* l_Lean_Parser_Command_structSimpleBinder___closed__4; static lean_object* l_Lean_Parser_Command_structImplicitBinder___elambda__1___closed__14; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__17; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_export(lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_Command_mutual; static lean_object* l_Lean_Parser_Command_structure___elambda__1___closed__7; static lean_object* l_Lean_Parser_Term_set__option___closed__6; static lean_object* l_Lean_Parser_Command_initialize___elambda__1___closed__17; -static lean_object* l_Lean_Parser_Command_constant___closed__9; static lean_object* l_Lean_Parser_Command_structure_formatter___closed__4; static lean_object* l_Lean_Parser_Command_structure___closed__1; static lean_object* l_Lean_Parser_Command_structureTk___elambda__1___closed__1; @@ -782,6 +783,7 @@ static lean_object* l_Lean_Parser_Command_resolve__name_parenthesizer___closed__ LEAN_EXPORT lean_object* l_Lean_Parser_Command_reduce___elambda__1(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_namedPrio___closed__5; static lean_object* l_Lean_Parser_Command_classInductive___elambda__1___closed__5; +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__13; static lean_object* l_Lean_Parser_Command_exit___elambda__1___closed__9; static lean_object* l_Lean_Parser_Command_declValEqns_formatter___closed__3; static lean_object* l_Lean_Parser_Command_structExplicitBinder___elambda__1___closed__3; @@ -798,7 +800,6 @@ static lean_object* l_Lean_Parser_Command_namedPrio___elambda__1___closed__8; static lean_object* l___regBuiltin_Lean_Parser_Command_partial_parenthesizer___closed__1; static lean_object* l_Lean_Parser_Command_structure___elambda__1___closed__24; static lean_object* l_Lean_Parser_Command_opaque___closed__6; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__8; lean_object* l_Lean_Parser_orelseFn(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_instance_formatter___closed__7; static lean_object* l_Lean_Parser_Command_visibility___closed__2; @@ -916,7 +917,6 @@ static lean_object* l___regBuiltin_Lean_Parser_Term_open_declRange___closed__4; LEAN_EXPORT lean_object* l_Lean_Parser_Command_abbrev_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_initialize_formatter___closed__4; static lean_object* l_Lean_Parser_Command_genInjectiveTheorems___elambda__1___closed__11; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__9; static lean_object* l_Lean_Parser_Command_inductive___elambda__1___closed__10; static lean_object* l_Lean_Parser_Command_structExplicitBinder_parenthesizer___closed__9; static lean_object* l_Lean_Parser_Command_printAxioms___elambda__1___closed__3; @@ -939,13 +939,14 @@ LEAN_EXPORT lean_object* l_Lean_Parser_Command_visibility_parenthesizer(lean_obj static lean_object* l_Lean_Parser_Command_whereStructInst___elambda__1___closed__16; static lean_object* l_Lean_Parser_Command_whereStructInst___elambda__1___closed__7; static lean_object* l_Lean_Parser_Command_eraseAttr_parenthesizer___closed__5; +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__38; static lean_object* l_Lean_Parser_Command_reduce___elambda__1___closed__11; lean_object* l_Lean_Parser_Term_attrInstance_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_exit___closed__6; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__27; static lean_object* l_Lean_Parser_Command_builtin__initialize_parenthesizer___closed__3; static lean_object* l_Lean_Parser_Command_terminationHintMany_formatter___closed__2; static lean_object* l_Lean_Parser_Command_eval_parenthesizer___closed__4; +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__21; static lean_object* l_Lean_Parser_Command_derivingClasses___closed__12; static lean_object* l_Lean_Parser_Command_print___elambda__1___closed__2; static lean_object* l_Lean_Parser_Command_structure___elambda__1___closed__10; @@ -967,7 +968,6 @@ static lean_object* l_Lean_Parser_Command_terminationBy_parenthesizer___closed__ static lean_object* l_Lean_Parser_Term_precheckedQuot_parenthesizer___closed__3; static lean_object* l_Lean_Parser_Command_declValSimple_parenthesizer___closed__5; static lean_object* l___regBuiltin_Lean_Parser_Command_printAxioms_declRange___closed__7; -static lean_object* l_Lean_Parser_Command_constant___elambda__1___closed__11; static lean_object* l_Lean_Parser_Command_namedPrio___closed__10; lean_object* l_Lean_Parser_atomicFn(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_declaration___closed__10; @@ -983,7 +983,6 @@ static lean_object* l_Lean_Parser_Command_whereStructField___closed__4; static lean_object* l_Lean_Parser_Command_synth___closed__7; LEAN_EXPORT lean_object* l_Lean_Parser_Command_extends; static lean_object* l_Lean_Parser_Command_deriving___closed__5; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__4; static lean_object* l_Lean_Parser_Command_openScoped___elambda__1___closed__12; static lean_object* l___regBuiltin_Lean_Parser_Command_section_parenthesizer___closed__1; static lean_object* l___regBuiltin_Lean_Parser_Command_resolve__name_declRange___closed__7; @@ -1053,7 +1052,6 @@ static lean_object* l___regBuiltin_Lean_Parser_Command_declaration_parenthesizer static lean_object* l___regBuiltin_Lean_Parser_Term_set__option_declRange___closed__1; LEAN_EXPORT lean_object* l_Lean_Parser_Command_structFields___elambda__1(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Term_set__option___elambda__1___closed__9; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__2; static lean_object* l_Lean_Parser_Command_optNamedPrio___closed__3; static lean_object* l_Lean_Parser_Command_export___elambda__1___closed__8; static lean_object* l_Lean_Parser_Command_mutual___elambda__1___closed__1; @@ -1078,7 +1076,6 @@ static lean_object* l_Lean_Parser_Command_structExplicitBinder_formatter___close static lean_object* l_Lean_Parser_Term_precheckedQuot_formatter___closed__4; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_classInductive_formatter(lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_Command_set__option_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Parser_Command_constant___closed__1; static lean_object* l_Lean_Parser_Command_optDefDeriving_parenthesizer___closed__4; static lean_object* l_Lean_Parser_Command_structFields___elambda__1___closed__1; static lean_object* l_Lean_Parser_Command_genInjectiveTheorems___elambda__1___closed__13; @@ -1157,7 +1154,6 @@ static lean_object* l_Lean_Parser_Command_terminationBy___closed__7; static lean_object* l_Lean_Parser_Command_declValEqns___closed__4; lean_object* l_Lean_Parser_many_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_initialize_formatter___closed__9; -static lean_object* l_Lean_Parser_Command_constant___closed__7; LEAN_EXPORT lean_object* l_Lean_Parser_Command_terminationBy_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_def___closed__6; static lean_object* l_Lean_Parser_Command_section_formatter___closed__1; @@ -1190,6 +1186,7 @@ LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_deriving(lean_object static lean_object* l_Lean_Parser_Command_declSig_parenthesizer___closed__4; LEAN_EXPORT lean_object* l_Lean_Parser_Command_namedPrio_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_Command_deriving_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__34; static lean_object* l___regBuiltin_Lean_Parser_Command_section_parenthesizer___closed__2; static lean_object* l_Lean_Parser_Command_openSimple___elambda__1___closed__9; static lean_object* l_Lean_Parser_Command_declModifiers___elambda__2___closed__20; @@ -1240,6 +1237,7 @@ static lean_object* l___regBuiltin_Lean_Parser_Command_def_formatter___closed__2 static lean_object* l_Lean_Parser_Command_deriving___closed__6; static lean_object* l_Lean_Parser_Command_mutual___closed__6; static lean_object* l_Lean_Parser_Command_private___closed__5; +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__37; static lean_object* l_Lean_Parser_Command_export_parenthesizer___closed__4; static lean_object* l_Lean_Parser_Command_initialize___elambda__1___closed__5; static lean_object* l_Lean_Parser_Command_namedPrio_formatter___closed__2; @@ -1335,7 +1333,6 @@ static lean_object* l_Lean_Parser_Command_terminationHintMany___closed__19; static lean_object* l_Lean_Parser_Command_initialize___closed__8; static lean_object* l_Lean_Parser_Command_namedPrio___closed__1; static lean_object* l_Lean_Parser_Command_terminationByElement_formatter___closed__7; -static lean_object* l_Lean_Parser_Command_constant_parenthesizer___closed__5; static lean_object* l_Lean_Parser_Command_def_formatter___closed__7; static lean_object* l_Lean_Parser_Command_print___closed__7; static lean_object* l_Lean_Parser_Command_universe___elambda__1___closed__3; @@ -1347,6 +1344,7 @@ LEAN_EXPORT lean_object* l_Lean_Parser_Command_eraseAttr___elambda__1(lean_objec static lean_object* l_Lean_Parser_Command_reduce___closed__5; static lean_object* l_Lean_Parser_Command_declValSimple_formatter___closed__6; LEAN_EXPORT lean_object* l_Lean_Parser_Command_private_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__25; static lean_object* l_Lean_Parser_Command_classInductive_formatter___closed__6; static lean_object* l_Lean_Parser_Command_noncomputable___closed__7; static lean_object* l_Lean_Parser_Command_attribute_formatter___closed__2; @@ -1363,11 +1361,9 @@ static lean_object* l_Lean_Parser_Command_optDefDeriving_formatter___closed__1; static lean_object* l_Lean_Parser_Command_print_parenthesizer___closed__1; static lean_object* l_Lean_Parser_Command_axiom___elambda__1___closed__11; static lean_object* l_Lean_Parser_Command_structSimpleBinder_formatter___closed__5; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__3; static lean_object* l___regBuiltin_Lean_Parser_Command_section_declRange___closed__2; LEAN_EXPORT lean_object* l_Lean_Parser_Command_structure; static lean_object* l_Lean_Parser_Command_declModifiers___closed__6; -LEAN_EXPORT lean_object* l_Lean_Parser_Command_constant_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_terminationByElement___elambda__1___closed__2; static lean_object* l_Lean_Parser_Command_whereStructInst_parenthesizer___closed__6; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Term_quot_parenthesizer(lean_object*); @@ -1458,6 +1454,7 @@ static lean_object* l_Lean_Parser_Command_deriving___elambda__1___closed__16; static lean_object* l_Lean_Parser_Command_namedPrio___elambda__1___closed__7; static lean_object* l___regBuiltin_Lean_Parser_Tactic_open_declRange___closed__4; static lean_object* l_Lean_Parser_Command_openHiding___elambda__1___closed__3; +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__29; extern lean_object* l_Lean_PrettyPrinter_parenthesizerAttribute; static lean_object* l___regBuiltin_Lean_Parser_Command_noncomputableSection_parenthesizer___closed__2; LEAN_EXPORT lean_object* l_Lean_Parser_Command_noncomputable___elambda__1(lean_object*, lean_object*); @@ -1478,7 +1475,6 @@ LEAN_EXPORT lean_object* l_Lean_Parser_Command_noncomputableSection___elambda__1 static lean_object* l_Lean_Parser_Command_structInstBinder___elambda__1___closed__8; static lean_object* l_Lean_Parser_Command_initialize___elambda__1___closed__15; static lean_object* l_Lean_Parser_Command_in_formatter___closed__3; -static lean_object* l_Lean_Parser_Command_constant___elambda__1___closed__16; static lean_object* l___regBuiltin_Lean_Parser_Command_mutual_declRange___closed__1; static lean_object* l_Lean_Parser_Command_optionValue_formatter___closed__2; static lean_object* l_Lean_Parser_Command_export___elambda__1___closed__10; @@ -1494,7 +1490,6 @@ static lean_object* l_Lean_Parser_Command_namedPrio___elambda__1___closed__3; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_synth_formatter(lean_object*); extern lean_object* l_Lean_Parser_Term_binderDefault; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_example_parenthesizer(lean_object*); -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__28; static lean_object* l___regBuiltin_Lean_Parser_Term_quot_formatter___closed__3; static lean_object* l_Lean_Parser_Command_optDeriving_formatter___closed__3; static lean_object* l_Lean_Parser_Command_structExplicitBinder___elambda__1___closed__4; @@ -1504,7 +1499,7 @@ LEAN_EXPORT lean_object* l_Lean_Parser_Command_terminationByCore_parenthesizer(l static lean_object* l_Lean_Parser_Command_structFields_parenthesizer___closed__6; static lean_object* l_Lean_Parser_Command_openSimple_parenthesizer___closed__1; static lean_object* l_Lean_Parser_Command_decreasingBy_formatter___closed__2; -LEAN_EXPORT lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457_(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425_(lean_object*); static lean_object* l_Lean_Parser_Command_reduce___elambda__1___closed__8; static lean_object* l_Lean_Parser_Command_initialize___closed__4; static lean_object* l_Lean_Parser_Command_def___elambda__1___closed__4; @@ -1531,7 +1526,6 @@ static lean_object* l_Lean_Parser_Command_declModifiers___elambda__2___closed__1 static lean_object* l_Lean_Parser_Command_attribute_parenthesizer___closed__9; static lean_object* l_Lean_Parser_Command_set__option_formatter___closed__4; static lean_object* l___regBuiltin_Lean_Parser_Command_terminationByCore_parenthesizer___closed__1; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__14; static lean_object* l_Lean_Parser_Command_declSig_parenthesizer___closed__3; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_structFields_parenthesizer(lean_object*); static lean_object* l_Lean_Parser_Command_structure_formatter___closed__6; @@ -1544,17 +1538,14 @@ static lean_object* l___regBuiltin_Lean_Parser_Command_open_declRange___closed__ static lean_object* l_Lean_Parser_Command_moduleDoc___elambda__1___closed__3; static lean_object* l_Lean_Parser_Command_terminationBy___closed__1; static lean_object* l_Lean_Parser_Command_declModifiers___elambda__2___closed__3; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__5; static lean_object* l_Lean_Parser_Command_whereStructInst___closed__9; static lean_object* l_Lean_Parser_Command_genInjectiveTheorems___elambda__1___closed__5; LEAN_EXPORT lean_object* l_Lean_Parser_Command_optNamedPrio_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__30; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_printAxioms_declRange(lean_object*); static lean_object* l_Lean_Parser_Command_check__failure_formatter___closed__4; static lean_object* l_Lean_Parser_Command_exit___elambda__1___closed__2; static lean_object* l_Lean_Parser_Term_open___elambda__1___closed__12; static lean_object* l_Lean_Parser_Command_terminationBy_parenthesizer___closed__3; -static lean_object* l_Lean_Parser_Command_constant___closed__8; static lean_object* l_Lean_Parser_Command_deriving___elambda__1___closed__9; static lean_object* l___regBuiltin_Lean_Parser_Command_open_parenthesizer___closed__2; static lean_object* l_Lean_Parser_Command_abbrev_parenthesizer___closed__7; @@ -1583,7 +1574,6 @@ static lean_object* l_Lean_Parser_Command_moduleDoc___elambda__1___closed__5; LEAN_EXPORT lean_object* l_Lean_Parser_Command_structInstBinder; static lean_object* l_Lean_Parser_Command_attribute_parenthesizer___closed__3; static lean_object* l_Lean_Parser_Command_quot_parenthesizer___closed__5; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__18; static lean_object* l_Lean_Parser_Command_structure_parenthesizer___closed__3; static lean_object* l_Lean_Parser_Command_theorem_formatter___closed__8; static lean_object* l___regBuiltin_Lean_Parser_Tactic_open_declRange___closed__6; @@ -1600,7 +1590,6 @@ LEAN_EXPORT lean_object* l_Lean_Parser_Command_declValEqns_formatter(lean_object static lean_object* l___regBuiltin_Lean_Parser_Command_open_declRange___closed__3; static lean_object* l___regBuiltin_Lean_Parser_Command_mutual_declRange___closed__2; static lean_object* l_Lean_Parser_Command_optDeclSig_formatter___closed__3; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__15; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_declValSimple_formatter(lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_Command_terminationByCore___elambda__1(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_classInductive_formatter___closed__8; @@ -1640,6 +1629,7 @@ static lean_object* l___regBuiltin_Lean_Parser_Command_namedPrio_parenthesizer__ LEAN_EXPORT lean_object* l_Lean_Parser_Command_in___elambda__1(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_set__option___closed__10; static lean_object* l_Lean_Parser_Command_unsafe___elambda__1___closed__10; +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__22; static lean_object* l_Lean_Parser_Command_declModifiers___elambda__2___closed__18; static lean_object* l_Lean_Parser_Term_precheckedQuot_parenthesizer___closed__4; static lean_object* l_Lean_Parser_Command_whereStructField_formatter___closed__2; @@ -1692,7 +1682,6 @@ lean_object* l_Lean_Parser_nodeInfo(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_exit___elambda__1___closed__1; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Tactic_open_declRange(lean_object*); LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_builtin__initialize_formatter(lean_object*); -static lean_object* l_Lean_Parser_Command_constant_parenthesizer___closed__3; lean_object* l_Lean_Parser_checkLhsPrecFn(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_Command_eval_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_attribute___closed__3; @@ -1731,7 +1720,6 @@ static lean_object* l_Lean_Parser_Command_declModifiers_parenthesizer___closed__ static lean_object* l_Lean_Parser_Command_openRenaming_parenthesizer___closed__4; LEAN_EXPORT lean_object* l_Lean_Parser_Command_mutual___elambda__1(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_set__option_parenthesizer(lean_object*); -static lean_object* l_Lean_Parser_Command_constant___closed__2; static lean_object* l_Lean_Parser_Command_openOnly_formatter___closed__4; lean_object* l_Lean_Parser_Term_bracketedBinder_parenthesizer___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_instance_formatter___closed__2; @@ -1740,7 +1728,6 @@ static lean_object* l_Lean_Parser_Command_terminationByCore_formatter___closed__ static lean_object* l_Lean_Parser_Command_export_parenthesizer___closed__8; static lean_object* l_Lean_Parser_Command_whereStructInst_parenthesizer___closed__5; static lean_object* l_Lean_Parser_Command_opaque_formatter___closed__1; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__6; static lean_object* l_Lean_Parser_Command_openDecl___closed__6; static lean_object* l_Lean_Parser_Command_protected_formatter___closed__1; static lean_object* l_Lean_Parser_Term_quot___elambda__1___closed__9; @@ -1801,7 +1788,6 @@ static lean_object* l_Lean_Parser_Command_whereStructField_parenthesizer___close static lean_object* l_Lean_Parser_Command_optionValue_parenthesizer___closed__2; static lean_object* l___regBuiltin_Lean_Parser_Command_init__quot_declRange___closed__3; static lean_object* l_Lean_Parser_Command_optDeclSig_parenthesizer___closed__7; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__37; static lean_object* l_Lean_Parser_Command_noncomputableSection___elambda__1___closed__6; static lean_object* l_Lean_Parser_Command_derivingClasses___closed__11; static lean_object* l_Lean_Parser_Command_openSimple_formatter___closed__2; @@ -1825,7 +1811,6 @@ LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_exit(lean_object*); static lean_object* l_Lean_Parser_Command_example_formatter___closed__5; static lean_object* l_Lean_Parser_Command_printAxioms_formatter___closed__3; LEAN_EXPORT lean_object* l_Lean_Parser_Command_theorem_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Parser_Command_constant_parenthesizer___closed__7; lean_object* l_Lean_Parser_manyIndent_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_export___closed__4; LEAN_EXPORT lean_object* l_Lean_Parser_Term_quot___elambda__1(lean_object*, lean_object*); @@ -1895,7 +1880,6 @@ LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_reduce_parenthesizer static lean_object* l_Lean_Parser_Command_optNamedPrio_formatter___closed__1; static lean_object* l_Lean_Parser_Command_openHiding_parenthesizer___closed__9; static lean_object* l_Lean_Parser_Command_optDeriving_formatter___closed__1; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__25; static lean_object* l___regBuiltin_Lean_Parser_Term_precheckedQuot_parenthesizer___closed__2; static lean_object* l_Lean_Parser_Term_quot___elambda__1___closed__17; LEAN_EXPORT lean_object* l_Lean_Parser_Command_axiom_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1909,6 +1893,7 @@ static lean_object* l_Lean_Parser_Command_optDeclSig___elambda__1___closed__3; static lean_object* l_Lean_Parser_Command_opaque___elambda__1___closed__7; static lean_object* l_Lean_Parser_Command_check__failure___closed__4; static lean_object* l_Lean_Parser_Command_print___closed__5; +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__3; static lean_object* l_Lean_Parser_Command_in___elambda__1___closed__5; static lean_object* l_Lean_Parser_Tactic_set__option___closed__5; LEAN_EXPORT lean_object* l_Lean_Parser_Command_genInjectiveTheorems_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1986,7 +1971,6 @@ lean_object* l_Lean_Parser_Term_structInst___elambda__1(lean_object*, lean_objec static lean_object* l_Lean_Parser_Command_structure_parenthesizer___closed__5; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Term_open_parenthesizer(lean_object*); static lean_object* l_Lean_Parser_Command_openRenaming___elambda__1___closed__8; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__29; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_init__quot_formatter(lean_object*); static lean_object* l_Lean_Parser_Command_unsafe___closed__5; static lean_object* l_Lean_Parser_Command_mutual___closed__9; @@ -2013,6 +1997,7 @@ static lean_object* l___regBuiltin_Lean_Parser_Term_open_parenthesizer___closed_ static lean_object* l_Lean_Parser_Command_namespace___elambda__1___closed__2; static lean_object* l_Lean_Parser_Command_section___elambda__1___closed__3; static lean_object* l_Lean_Parser_Command_export_parenthesizer___closed__3; +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__14; static lean_object* l_Lean_Parser_Command_attribute_formatter___closed__9; static lean_object* l___regBuiltin_Lean_Parser_Command_universe_declRange___closed__3; static lean_object* l_Lean_Parser_Command_nonrec___elambda__1___closed__3; @@ -2029,6 +2014,7 @@ static lean_object* l___regBuiltin_Lean_Parser_Command_genInjectiveTheorems_decl static lean_object* l_Lean_Parser_Command_optDeriving___elambda__1___closed__2; LEAN_EXPORT lean_object* l_Lean_Parser_Command_check_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_end___closed__3; +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__28; static lean_object* l_Lean_Parser_Command_openScoped___elambda__1___closed__8; static lean_object* l_Lean_Parser_Command_structImplicitBinder___elambda__1___closed__10; static lean_object* l_Lean_Parser_Command_noncomputableSection_formatter___closed__4; @@ -2077,6 +2063,7 @@ static lean_object* l_Lean_Parser_Command_declModifiers___closed__3; static lean_object* l_Lean_Parser_Command_optDefDeriving___closed__7; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_printAxioms_parenthesizer(lean_object*); static lean_object* l_Lean_Parser_Command_end___closed__7; +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__5; LEAN_EXPORT lean_object* l_Lean_Parser_Command_whereStructField; LEAN_EXPORT lean_object* l_Lean_Parser_Command_end_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_opaque_formatter___closed__4; @@ -2086,10 +2073,11 @@ static lean_object* l_Lean_Parser_Command_classInductive___closed__1; LEAN_EXPORT lean_object* l_Lean_Parser_Command_exit_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_deriving_declRange(lean_object*); static lean_object* l_Lean_Parser_Command_openSimple___elambda__1___closed__6; +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__30; static lean_object* l_Lean_Parser_Term_open___elambda__1___closed__11; -static lean_object* l_Lean_Parser_Command_declaration_parenthesizer___closed__14; extern lean_object* l_Lean_Parser_Term_whereDecls; static lean_object* l_Lean_Parser_Command_structureTk___elambda__1___closed__6; +static lean_object* l_Lean_Parser_Command_opaque___elambda__1___closed__16; static lean_object* l_Lean_Parser_Command_export___closed__1; LEAN_EXPORT lean_object* l_Lean_Parser_Command_set__option___elambda__1(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_whereStructInst_formatter___closed__5; @@ -2110,7 +2098,6 @@ static lean_object* l_Lean_Parser_Command_section___closed__2; static lean_object* l_Lean_Parser_Command_openScoped_parenthesizer___closed__2; static lean_object* l_Lean_Parser_Command_optDefDeriving___closed__10; static lean_object* l_Lean_Parser_Command_def_formatter___closed__10; -static lean_object* l_Lean_Parser_Command_declaration_formatter___closed__14; static lean_object* l_Lean_Parser_Command_namedPrio___elambda__1___closed__18; static lean_object* l_Lean_Parser_Term_open___closed__4; static lean_object* l_Lean_Parser_Command_optionValue___closed__4; @@ -2132,6 +2119,7 @@ static lean_object* l_Lean_Parser_Command_in___elambda__1___closed__6; static lean_object* l___regBuiltin_Lean_Parser_Command_exit_parenthesizer___closed__2; LEAN_EXPORT lean_object* l_Lean_Parser_Command_terminationHintMany_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___regBuiltin_Lean_Parser_Command_openScoped_parenthesizer___closed__2; +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__18; LEAN_EXPORT lean_object* l_Lean_Parser_Command_variable___elambda__1(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_quot_formatter___closed__3; extern lean_object* l_Lean_Parser_parserAliasesRef; @@ -2144,6 +2132,7 @@ lean_object* l_Lean_Parser_termParser_formatter___rarg(lean_object*, lean_object static lean_object* l_Lean_Parser_Command_structCtor___closed__2; static lean_object* l_Lean_Parser_Command_example_formatter___closed__4; static lean_object* l_Lean_Parser_Command_init__quot___closed__7; +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__15; static lean_object* l_Lean_Parser_Command_set__option___elambda__1___closed__5; static lean_object* l_Lean_Parser_Command_openOnly_parenthesizer___closed__1; static lean_object* l_Lean_Parser_Command_terminationSuffix_formatter___closed__1; @@ -2176,7 +2165,6 @@ static lean_object* l_Lean_Parser_Command_openHiding_parenthesizer___closed__2; static lean_object* l_Lean_Parser_Command_variable___elambda__1___closed__4; static lean_object* l_Lean_Parser_Command_variable_parenthesizer___closed__2; static lean_object* l_Lean_Parser_Command_check__failure_parenthesizer___closed__3; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__22; static lean_object* l_Lean_Parser_Command_instance_formatter___closed__5; static lean_object* l_Lean_Parser_Command_abbrev_parenthesizer___closed__5; static lean_object* l_Lean_Parser_Command_mutual_parenthesizer___closed__1; @@ -2289,12 +2277,12 @@ static lean_object* l_Lean_Parser_Command_terminationBy_formatter___closed__2; static lean_object* l_Lean_Parser_Command_structCtor_parenthesizer___closed__2; static lean_object* l_Lean_Parser_Command_openHiding_parenthesizer___closed__1; static lean_object* l_Lean_Parser_Term_quot_parenthesizer___closed__7; -static lean_object* l_Lean_Parser_Command_constant___elambda__1___closed__10; LEAN_EXPORT lean_object* l_Lean_Parser_Command_open_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_open___closed__7; static lean_object* l_Lean_Parser_Command_structCtor___closed__1; static lean_object* l_Lean_Parser_Command_abbrev_formatter___closed__7; static lean_object* l_Lean_Parser_Command_open_formatter___closed__5; +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__6; static lean_object* l___regBuiltin_Lean_Parser_Tactic_open_declRange___closed__1; static lean_object* l_Lean_Parser_Term_quot___elambda__1___closed__11; static lean_object* l_Lean_Parser_Command_openRenaming_parenthesizer___closed__7; @@ -2410,7 +2398,6 @@ static lean_object* l_Lean_Parser_Command_derivingClasses_formatter___closed__2; static lean_object* l_Lean_Parser_Command_structImplicitBinder_formatter___closed__8; static lean_object* l___regBuiltin_Lean_Parser_Command_terminationByElement_formatter___closed__2; static lean_object* l_Lean_Parser_Command_partial___closed__1; -static lean_object* l_Lean_Parser_Command_constant_parenthesizer___closed__1; static lean_object* l_Lean_Parser_Command_variable_parenthesizer___closed__4; static lean_object* l_Lean_Parser_Command_abbrev___elambda__1___closed__3; static lean_object* l___regBuiltin_Lean_Parser_Command_synth_parenthesizer___closed__1; @@ -2422,7 +2409,6 @@ static lean_object* l_Lean_Parser_Command_terminationBy___elambda__1___closed__3 static lean_object* l_Lean_Parser_Command_declModifiers___elambda__2___closed__2; static lean_object* l_Lean_Parser_Command_deriving___elambda__1___closed__6; static lean_object* l_Lean_Parser_Command_classInductive___closed__4; -static lean_object* l_Lean_Parser_Command_constant___closed__5; static lean_object* l_Lean_Parser_Command_extends___elambda__1___closed__4; static lean_object* l_Lean_Parser_Command_universe___closed__2; static lean_object* l_Lean_Parser_Command_declModifiers_formatter___closed__11; @@ -2490,6 +2476,7 @@ LEAN_EXPORT lean_object* l_Lean_Parser_Command_moduleDoc_formatter(lean_object*, static lean_object* l_Lean_Parser_Command_declaration___closed__9; static lean_object* l_Lean_Parser_Command_declModifiers___closed__7; static lean_object* l_Lean_Parser_Command_moduleDoc___elambda__1___closed__6; +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__16; static lean_object* l___regBuiltin_Lean_Parser_Command_end_declRange___closed__2; static lean_object* l_Lean_Parser_Tactic_open_formatter___closed__3; static lean_object* l_Lean_Parser_Command_set__option___closed__3; @@ -2525,7 +2512,6 @@ static lean_object* l_Lean_Parser_Command_terminationByCore___closed__5; static lean_object* l_Lean_Parser_Command_reduce_parenthesizer___closed__1; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Term_open_declRange(lean_object*); static lean_object* l___regBuiltin_Lean_Parser_Term_set__option_formatter___closed__1; -static lean_object* l_Lean_Parser_Command_constant_formatter___closed__1; static lean_object* l_Lean_Parser_Command_terminationSuffix___closed__1; static lean_object* l_Lean_Parser_Command_private___elambda__1___closed__8; static lean_object* l_Lean_Parser_Command_decreasingBy___elambda__1___closed__1; @@ -2548,7 +2534,6 @@ static lean_object* l_Lean_Parser_Command_axiom_formatter___closed__2; static lean_object* l_Lean_Parser_Command_terminationByElement___elambda__1___closed__3; static lean_object* l_Lean_Parser_Command_classTk___elambda__1___closed__4; static lean_object* l_Lean_Parser_Command_structInstBinder_parenthesizer___closed__4; -static lean_object* l_Lean_Parser_Command_constant___elambda__1___closed__6; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_variable_declRange(lean_object*); static lean_object* l_Lean_Parser_Command_theorem_formatter___closed__1; static lean_object* l_Lean_Parser_Command_instance___elambda__1___closed__17; @@ -2609,6 +2594,7 @@ static lean_object* l_Lean_Parser_Command_abbrev___closed__8; static lean_object* l_Lean_Parser_Command_inductive___elambda__1___closed__1; static lean_object* l_Lean_Parser_Command_initialize_formatter___closed__3; static lean_object* l_Lean_Parser_Command_exit_formatter___closed__1; +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__24; static lean_object* l_Lean_Parser_Term_open___closed__9; static lean_object* l_Lean_Parser_Command_open___elambda__1___closed__8; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_exit_parenthesizer(lean_object*); @@ -2750,6 +2736,7 @@ static lean_object* l_Lean_Parser_Command_structExplicitBinder_parenthesizer___c lean_object* l_Lean_PrettyPrinter_Formatter_withPosition_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___regBuiltin_Lean_Parser_Tactic_open_parenthesizer___closed__2; LEAN_EXPORT lean_object* l_Lean_Parser_Command_terminationHint(lean_object*); +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__10; lean_object* l_Lean_Parser_withResultOfFn(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_genInjectiveTheorems___elambda__1___closed__4; static lean_object* l___regBuiltin_Lean_Parser_Tactic_set__option_declRange___closed__7; @@ -2768,6 +2755,7 @@ static lean_object* l_Lean_Parser_Command_declModifiers_formatter___closed__19; static lean_object* l_Lean_Parser_Command_eraseAttr_formatter___closed__4; static lean_object* l_Lean_Parser_Command_declValEqns___elambda__1___closed__1; static lean_object* l_Lean_Parser_Command_eraseAttr___closed__2; +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__32; static lean_object* l___regBuiltin_Lean_Parser_Command_structSimpleBinder_parenthesizer___closed__1; static lean_object* l_Lean_Parser_Command_namedPrio___closed__12; static lean_object* l_Lean_Parser_Command_noncomputable___closed__3; @@ -2798,6 +2786,7 @@ static lean_object* l_Lean_Parser_Command_decreasingBy___elambda__1___closed__4; static lean_object* l_Lean_Parser_Command_structInstBinder___closed__1; static lean_object* l_Lean_Parser_Command_terminationByCore___elambda__1___closed__8; static lean_object* l_Lean_Parser_Command_terminationByElement_formatter___closed__9; +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__20; static lean_object* l_Lean_Parser_Command_mutual_parenthesizer___closed__13; static lean_object* l_Lean_Parser_Command_mutual___closed__10; static lean_object* l_Lean_Parser_Command_structureTk___elambda__1___closed__12; @@ -2868,7 +2857,6 @@ static lean_object* l_Lean_Parser_Command_check___closed__6; static lean_object* l_Lean_Parser_Command_openRenamingItem___elambda__1___closed__7; LEAN_EXPORT lean_object* l_Lean_Parser_Command_openDecl_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_decreasingBy___elambda__1___closed__9; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__7; LEAN_EXPORT lean_object* l_Lean_Parser_Command_structSimpleBinder; lean_object* l_Lean_Parser_mkAntiquot_parenthesizer___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_extends___closed__4; @@ -2893,11 +2881,9 @@ lean_object* l_Lean_Parser_ppLine_parenthesizer___boxed(lean_object*, lean_objec static lean_object* l_Lean_Parser_Command_eraseAttr_formatter___closed__1; static lean_object* l_Lean_Parser_Command_declId_parenthesizer___closed__7; static lean_object* l_Lean_Parser_Command_unsafe___closed__3; -static lean_object* l_Lean_Parser_Command_constant_formatter___closed__4; static lean_object* l_Lean_Parser_Command_universe___closed__8; static lean_object* l_Lean_Parser_Command_set__option___closed__9; static lean_object* l_Lean_Parser_Command_declValSimple___elambda__1___closed__12; -static lean_object* l_Lean_Parser_Command_constant_parenthesizer___closed__2; static lean_object* l_Lean_Parser_Term_precheckedQuot___elambda__1___closed__2; static lean_object* l_Lean_Parser_Command_terminationBy___elambda__1___closed__1; static lean_object* l_Lean_Parser_Command_ctor___elambda__1___closed__10; @@ -2985,7 +2971,6 @@ static lean_object* l_Lean_Parser_Command_example___elambda__1___closed__9; static lean_object* l_Lean_Parser_Command_noncomputableSection_parenthesizer___closed__2; static lean_object* l_Lean_Parser_Command_optDeriving___elambda__1___closed__13; LEAN_EXPORT lean_object* l_Lean_Parser_Command_structureTk_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Parser_Command_constant_parenthesizer___closed__6; static lean_object* l_Lean_Parser_Command_structFields_formatter___closed__5; static lean_object* l_Lean_Parser_Command_declVal___closed__1; static lean_object* l_Lean_Parser_Command_openRenaming___closed__1; @@ -2997,7 +2982,6 @@ uint8_t lean_uint32_dec_eq(uint32_t, uint32_t); static lean_object* l_Lean_Parser_Command_reduce_formatter___closed__1; static lean_object* l_Lean_Parser_Command_terminationByElement___closed__5; static lean_object* l_Lean_Parser_Command_builtin__initialize_formatter___closed__2; -static lean_object* l_Lean_Parser_Command_constant___elambda__1___closed__15; static lean_object* l___regBuiltin_Lean_Parser_Command_moduleDoc_formatter___closed__1; static lean_object* l_Lean_Parser_Tactic_set__option_parenthesizer___closed__4; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_openHiding_formatter(lean_object*); @@ -3081,7 +3065,6 @@ static lean_object* l_Lean_Parser_Command_abbrev___closed__1; static lean_object* l_Lean_Parser_Command_namedPrio_parenthesizer___closed__6; LEAN_EXPORT lean_object* l_Lean_Parser_Command_optDeriving___elambda__1(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_optionValue___closed__2; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__16; static lean_object* l_Lean_Parser_Command_namespace_parenthesizer___closed__4; static lean_object* l_Lean_Parser_Command_open___closed__1; static lean_object* l_Lean_Parser_Command_declId___elambda__1___closed__11; @@ -3157,7 +3140,6 @@ static lean_object* l___regBuiltin_Lean_Parser_Command_declValEqns_formatter___c static lean_object* l_Lean_Parser_Command_attribute_parenthesizer___closed__11; static lean_object* l_Lean_Parser_Command_resolve__name_parenthesizer___closed__2; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_noncomputable_parenthesizer(lean_object*); -static lean_object* l_Lean_Parser_Command_constant___closed__3; static lean_object* l_Lean_Parser_Command_openHiding___elambda__1___closed__15; static lean_object* l___regBuiltin_Lean_Parser_Command_reduce_declRange___closed__6; static lean_object* l_Lean_Parser_Command_structInstBinder___closed__11; @@ -3221,13 +3203,11 @@ static lean_object* l_Lean_Parser_Command_opaque_parenthesizer___closed__4; static lean_object* l_Lean_Parser_Command_whereStructField___elambda__1___closed__4; static lean_object* l___regBuiltin_Lean_Parser_Command_deriving_declRange___closed__5; static lean_object* l___regBuiltin_Lean_Parser_Command_nonrec_parenthesizer___closed__2; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__24; static lean_object* l_Lean_Parser_Command_noncomputableSection_parenthesizer___closed__4; static lean_object* l_Lean_Parser_Command_openDecl___elambda__1___closed__2; static lean_object* l___regBuiltin_Lean_Parser_Command_resolve__name_declRange___closed__4; static lean_object* l_Lean_Parser_Command_open_formatter___closed__1; static lean_object* l_Lean_Parser_Command_private___closed__4; -static lean_object* l_Lean_Parser_Command_constant___elambda__1___closed__3; static lean_object* l_Lean_Parser_Command_reduce___closed__3; LEAN_EXPORT lean_object* l_Lean_Parser_Command_structure_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_open___elambda__1___closed__12; @@ -3251,7 +3231,6 @@ static lean_object* l_Lean_Parser_Command_declValSimple___closed__6; static lean_object* l_Lean_Parser_Command_structInstBinder___elambda__1___closed__13; static lean_object* l___regBuiltin_Lean_Parser_Term_precheckedQuot_declRange___closed__5; static lean_object* l_Lean_Parser_Command_check__failure___closed__6; -static lean_object* l_Lean_Parser_Command_constant___elambda__1___closed__5; static lean_object* l_Lean_Parser_Command_openHiding___elambda__1___closed__14; static lean_object* l_Lean_Parser_Command_inductive___elambda__1___closed__9; static lean_object* l_Lean_Parser_Command_whereStructInst___elambda__1___closed__2; @@ -3385,9 +3364,7 @@ static lean_object* l_Lean_Parser_Command_declSig___elambda__1___closed__1; static lean_object* l_Lean_Parser_Command_inductive___closed__1; static lean_object* l___regBuiltin_Lean_Parser_Command_mutual_parenthesizer___closed__1; static lean_object* l___regBuiltin_Lean_Parser_Command_attribute_declRange___closed__5; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__32; static lean_object* l_Lean_Parser_Command_terminationByElement___elambda__1___closed__17; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__10; static lean_object* l_Lean_Parser_Command_declValSimple___closed__4; static lean_object* l_Lean_Parser_Command_noncomputable_formatter___closed__2; static lean_object* l_Lean_Parser_Command_opaque___closed__2; @@ -3426,10 +3403,10 @@ static lean_object* l_Lean_Parser_Term_set__option___elambda__1___closed__7; LEAN_EXPORT lean_object* l_Lean_Parser_Command_axiom___elambda__1(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_structExplicitBinder_formatter___closed__10; static lean_object* l___regBuiltin_Lean_Parser_Command_print_declRange___closed__6; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__20; static lean_object* l_Lean_Parser_Command_set__option_parenthesizer___closed__7; extern lean_object* l_Lean_Parser_Tactic_tacticSeq; static lean_object* l_Lean_Parser_Command_openRenaming___closed__8; +static lean_object* l_Lean_Parser_Command_opaque_formatter___closed__7; static lean_object* l_Lean_Parser_Command_inductive___closed__12; static lean_object* l_Lean_Parser_Command_declSig___elambda__1___closed__9; static lean_object* l___regBuiltin_Lean_Parser_Command_check__failure_declRange___closed__4; @@ -3494,6 +3471,8 @@ static lean_object* l_Lean_Parser_Command_whereStructInst_parenthesizer___closed lean_object* l_Lean_Parser_Term_letDecl___elambda__1(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_deriving_parenthesizer___closed__2; static lean_object* l_Lean_Parser_Command_declValSimple___closed__8; +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__7; +static lean_object* l_Lean_Parser_Command_opaque___closed__9; static lean_object* l_Lean_Parser_Command_whereStructInst___elambda__1___closed__1; static lean_object* l_Lean_Parser_Command_openDecl___elambda__1___closed__3; static lean_object* l_Lean_Parser_Command_noncomputable___elambda__1___closed__9; @@ -3548,6 +3527,7 @@ static lean_object* l_Lean_Parser_Command_printAxioms___elambda__1___closed__9; static lean_object* l_Lean_Parser_Term_quot_parenthesizer___closed__6; static lean_object* l_Lean_Parser_Command_open_parenthesizer___closed__4; static lean_object* l_Lean_Parser_Command_structSimpleBinder___elambda__1___closed__6; +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__35; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_declaration_formatter(lean_object*); static lean_object* l_Lean_Parser_Command_nonrec___closed__1; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_instance_formatter(lean_object*); @@ -3558,7 +3538,6 @@ static lean_object* l_Lean_Parser_Command_def_parenthesizer___closed__9; static lean_object* l_Lean_Parser_Command_terminationBy___closed__5; static lean_object* l_Lean_Parser_Command_initialize_formatter___closed__10; static lean_object* l_Lean_Parser_Command_structFields___elambda__1___closed__7; -static lean_object* l_Lean_Parser_Command_constant___elambda__1___closed__8; LEAN_EXPORT lean_object* l_Lean_Parser_Command_attribute___elambda__1(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_optDeclSig_parenthesizer___closed__1; static lean_object* l_Lean_Parser_Command_structImplicitBinder___elambda__1___closed__9; @@ -3570,7 +3549,6 @@ static lean_object* l_Lean_Parser_Command_protected_parenthesizer___closed__1; static lean_object* l_Lean_Parser_Command_variable___closed__3; static lean_object* l_Lean_Parser_Command_mutual_parenthesizer___closed__7; LEAN_EXPORT lean_object* l_Lean_Parser_Command_optionValue; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__1; static lean_object* l_Lean_Parser_Command_check__failure_parenthesizer___closed__2; static lean_object* l_Lean_Parser_Command_nonrec___elambda__1___closed__12; static lean_object* l_Lean_Parser_Command_namedPrio_formatter___closed__10; @@ -3595,7 +3573,6 @@ static lean_object* l_Lean_Parser_Command_structure___elambda__1___closed__23; static lean_object* l___regBuiltin_Lean_Parser_Command_set__option_declRange___closed__1; static lean_object* l_Lean_Parser_Command_quot___closed__5; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_attribute_declRange(lean_object*); -static lean_object* l___regBuiltin_Lean_Parser_Command_constant_formatter___closed__1; static lean_object* l_Lean_Parser_Command_partial_parenthesizer___closed__1; static lean_object* l_Lean_Parser_Command_terminationByCore___closed__8; static lean_object* l_Lean_Parser_Command_structureTk___elambda__1___closed__4; @@ -3626,7 +3603,6 @@ static lean_object* l_Lean_Parser_Command_resolve__name___elambda__1___closed__7 static lean_object* l_Lean_Parser_Command_openRenamingItem___elambda__1___closed__11; uint8_t lean_nat_dec_eq(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_openHiding___closed__2; -static lean_object* l_Lean_Parser_Command_constant___closed__4; static lean_object* l___regBuiltin_Lean_Parser_Command_variable_declRange___closed__5; static lean_object* l_Lean_Parser_Command_optDeclSig_formatter___closed__10; static lean_object* l_Lean_Parser_Command_moduleDoc_formatter___closed__1; @@ -3644,6 +3620,7 @@ static lean_object* l_Lean_Parser_Command_opaque___elambda__1___closed__1; static lean_object* l___regBuiltin_Lean_Parser_Command_declValSimple_parenthesizer___closed__2; static lean_object* l_Lean_Parser_Command_openRenamingItem___closed__9; static lean_object* l_Lean_Parser_Command_openHiding___elambda__1___closed__19; +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__36; static lean_object* l_Lean_Parser_Command_terminationByCore___closed__4; static lean_object* l_Lean_Parser_Command_namedPrio_parenthesizer___closed__5; static lean_object* l_Lean_Parser_Command_universe_formatter___closed__3; @@ -3684,14 +3661,13 @@ static lean_object* l_Lean_Parser_Command_structureTk___closed__3; static lean_object* l_Lean_Parser_Command_variable_formatter___closed__1; static lean_object* l___regBuiltin_Lean_Parser_Command_open_declRange___closed__2; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_openHiding_parenthesizer(lean_object*); +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__26; static lean_object* l_Lean_Parser_Command_noncomputableSection___elambda__1___closed__11; static lean_object* l_Lean_Parser_Command_terminationBy_parenthesizer___closed__2; static lean_object* l_Lean_Parser_Command_declModifiers_formatter___closed__2; static lean_object* l___regBuiltin_Lean_Parser_Command_partial_formatter___closed__1; static lean_object* l_Lean_Parser_Command_set__option_formatter___closed__7; static lean_object* l_Lean_Parser_Command_axiom___elambda__1___closed__14; -static lean_object* l_Lean_Parser_Command_constant_formatter___closed__2; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__19; static lean_object* l_Lean_Parser_Command_nonrec___closed__6; static lean_object* l___regBuiltin_Lean_Parser_Command_variable_formatter___closed__1; static lean_object* l_Lean_Parser_Term_set__option___elambda__1___closed__8; @@ -3700,7 +3676,7 @@ static lean_object* l_Lean_Parser_Command_export_parenthesizer___closed__6; static lean_object* l_Lean_Parser_Command_in_parenthesizer___closed__2; lean_object* l_Lean_Parser_numLit_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_noncomputableSection_formatter(lean_object*); -static lean_object* l_Lean_Parser_Command_constant___elambda__1___closed__4; +static lean_object* l_Lean_Parser_Command_opaque_formatter___closed__5; static lean_object* l_Lean_Parser_Command_deriving_parenthesizer___closed__6; static lean_object* l_Lean_Parser_Command_optDeclSig_parenthesizer___closed__2; static lean_object* l_Lean_Parser_Command_declaration_parenthesizer___closed__3; @@ -3741,7 +3717,6 @@ static lean_object* l_Lean_Parser_Command_print___closed__4; static lean_object* l_Lean_Parser_Command_whereStructField___closed__2; static lean_object* l_Lean_Parser_Command_declaration___closed__8; static lean_object* l_Lean_Parser_Term_open___closed__7; -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_constant_formatter(lean_object*); static lean_object* l_Lean_Parser_Command_noncomputableSection_parenthesizer___closed__5; lean_object* l_Lean_Parser_Term_matchAltsWhereDecls___elambda__1(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_structInstBinder___elambda__1___closed__7; @@ -3771,7 +3746,6 @@ static lean_object* l_Lean_Parser_Command_mutual___elambda__1___closed__6; static lean_object* l_Lean_Parser_Command_terminationByElement___closed__4; static lean_object* l_Lean_Parser_Command_def___closed__8; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_whereStructInst_formatter(lean_object*); -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__11; static lean_object* l___regBuiltin_Lean_Parser_Command_noncomputableSection_declRange___closed__7; static lean_object* l_Lean_Parser_Command_whereStructField___closed__1; LEAN_EXPORT lean_object* l_Lean_Parser_Command_open___elambda__1___lambda__1___boxed(lean_object*, lean_object*, lean_object*); @@ -3785,7 +3759,6 @@ LEAN_EXPORT lean_object* l_Lean_Parser_Command_declValSimple; static lean_object* l_Lean_Parser_Command_eval_formatter___closed__4; static lean_object* l___regBuiltin_Lean_Parser_Command_optDeriving_parenthesizer___closed__2; static lean_object* l_Lean_Parser_Command_abbrev___elambda__1___closed__11; -LEAN_EXPORT lean_object* l_Lean_Parser_Command_constant_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___regBuiltin_Lean_Parser_Command_universe_declRange___closed__4; static lean_object* l_Lean_Parser_Command_resolve__name___closed__5; static lean_object* l_Lean_Parser_Command_check__failure_formatter___closed__2; @@ -3826,7 +3799,6 @@ lean_object* l_Lean_Parser_unicodeSymbol_parenthesizer(lean_object*, lean_object static lean_object* l_Lean_Parser_Command_declVal_formatter___closed__1; static lean_object* l_Lean_Parser_Command_structure___closed__13; static lean_object* l_Lean_Parser_Command_check___closed__2; -static lean_object* l_Lean_Parser_Command_constant___elambda__1___closed__7; static lean_object* l_Lean_Parser_Command_open___elambda__1___closed__5; static lean_object* l_Lean_Parser_Command_declSig___closed__5; static lean_object* l_Lean_Parser_Command_structureTk___elambda__1___closed__11; @@ -3866,6 +3838,7 @@ static lean_object* l_Lean_Parser_Command_resolve__name___elambda__1___closed__1 static lean_object* l_Lean_Parser_Command_unsafe___elambda__1___closed__1; static lean_object* l_Lean_Parser_Command_structInstBinder___elambda__1___closed__16; static lean_object* l_Lean_Parser_Command_declValSimple_parenthesizer___closed__9; +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__12; LEAN_EXPORT lean_object* l_Lean_Parser_Command_open_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_classTk___closed__3; static lean_object* l_Lean_Parser_Command_whereStructInst___elambda__1___closed__5; @@ -3877,7 +3850,6 @@ static lean_object* l_Lean_Parser_Command_whereStructInst_formatter___closed__6; static lean_object* l_Lean_Parser_Command_optDeclSig_parenthesizer___closed__9; static lean_object* l_Lean_Parser_Command_instance___closed__11; static lean_object* l_Lean_Parser_Command_synth___elambda__1___closed__6; -static lean_object* l___regBuiltin_Lean_Parser_Command_constant_formatter___closed__2; static lean_object* l_Lean_Parser_Command_structImplicitBinder___elambda__1___closed__1; static lean_object* l_Lean_Parser_Command_declValSimple_formatter___closed__8; static lean_object* l_Lean_Parser_Term_quot___elambda__1___closed__20; @@ -3903,7 +3875,6 @@ static lean_object* l_Lean_Parser_Command_abbrev___elambda__1___closed__10; static lean_object* l_Lean_Parser_Command_set__option___closed__2; static lean_object* l_Lean_Parser_Command_init__quot___elambda__1___closed__6; static lean_object* l_Lean_Parser_Command_attribute___elambda__1___closed__17; -static lean_object* l_Lean_Parser_Command_constant___elambda__1___closed__14; static lean_object* l_Lean_Parser_Command_check__failure_parenthesizer___closed__4; static lean_object* l_Lean_Parser_Command_universe___elambda__1___closed__11; static lean_object* l_Lean_Parser_Term_set__option___elambda__1___closed__5; @@ -3923,9 +3894,11 @@ static lean_object* l_Lean_Parser_Command_universe___closed__6; static lean_object* l_Lean_Parser_Command_quot___elambda__1___closed__1; static lean_object* l_Lean_Parser_Command_optDeclSig___closed__7; static lean_object* l_Lean_Parser_Command_attribute___closed__11; +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__31; static lean_object* l_Lean_Parser_Command_open_parenthesizer___closed__6; static lean_object* l_Lean_Parser_Command_attribute___elambda__1___closed__8; static lean_object* l_Lean_Parser_Command_declModifiers_formatter___closed__13; +static lean_object* l_Lean_Parser_Command_opaque_parenthesizer___closed__7; static lean_object* l_Lean_Parser_Command_optDeriving___elambda__1___closed__12; static lean_object* l_Lean_Parser_Command_builtin__initialize___closed__1; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_open(lean_object*); @@ -4104,12 +4077,10 @@ static lean_object* l_Lean_Parser_Command_attribute___elambda__1___closed__27; static lean_object* l_Lean_Parser_Command_reduce___closed__2; static lean_object* l_Lean_Parser_Command_quot___elambda__1___closed__19; static lean_object* l_Lean_Parser_Command_axiom___closed__2; -LEAN_EXPORT lean_object* l_Lean_Parser_Command_constant___elambda__1(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_openOnly___elambda__1___closed__8; static lean_object* l_Lean_Parser_Command_inductive_formatter___closed__5; static lean_object* l_Lean_Parser_Command_whereStructInst___elambda__1___closed__3; static lean_object* l_Lean_Parser_Command_derivingClasses___closed__14; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__35; static lean_object* l_Lean_Parser_Command_instance_formatter___closed__10; static lean_object* l_Lean_Parser_Command_structure___elambda__1___closed__4; static lean_object* l_Lean_Parser_Command_check__failure_formatter___closed__3; @@ -4141,6 +4112,7 @@ static lean_object* l_Lean_Parser_Command_deriving___closed__11; static lean_object* l_Lean_Parser_Command_namespace___elambda__1___closed__10; static lean_object* l_Lean_Parser_Command_def___closed__9; static lean_object* l_Lean_Parser_Command_structureTk___closed__6; +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__1; static lean_object* l_Lean_Parser_Command_initialize___elambda__1___closed__26; static lean_object* l___regBuiltin_Lean_Parser_Command_init__quot_declRange___closed__2; lean_object* l_Lean_Parser_Term_binderDefault_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -4197,7 +4169,6 @@ static lean_object* l_Lean_Parser_Tactic_set__option___elambda__1___closed__8; static lean_object* l_Lean_Parser_Command_openHiding_parenthesizer___closed__3; static lean_object* l_Lean_Parser_Tactic_open___closed__7; LEAN_EXPORT lean_object* l_Lean_Parser_Command_printAxioms; -static lean_object* l_Lean_Parser_Command_declaration___closed__18; static lean_object* l_Lean_Parser_Command_ctor___closed__11; static lean_object* l_Lean_Parser_Command_def___closed__4; static lean_object* l_Lean_Parser_Command_openScoped___elambda__1___closed__1; @@ -4207,7 +4178,6 @@ static lean_object* l_Lean_Parser_Command_builtin__initialize___elambda__1___clo lean_object* l_Lean_PrettyPrinter_Parenthesizer_trailingNode_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_mutual___elambda__1___closed__15; static lean_object* l_Lean_Parser_Command_declId___elambda__1___closed__15; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__36; LEAN_EXPORT lean_object* l_Lean_Parser_Command_whereStructInst___elambda__1(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Term_precheckedQuot___elambda__1___closed__9; static lean_object* l_Lean_Parser_Command_extends___closed__6; @@ -4233,7 +4203,6 @@ static lean_object* l_Lean_Parser_Command_openHiding___elambda__1___closed__4; static lean_object* l_Lean_Parser_Command_derivingClasses_formatter___closed__6; static lean_object* l_Lean_Parser_Command_structInstBinder_parenthesizer___closed__7; static lean_object* l___regBuiltin_Lean_Parser_Tactic_open_declRange___closed__3; -static lean_object* l_Lean_Parser_Command_constant___closed__10; static lean_object* l___regBuiltin_Lean_Parser_Command_initialize_declRange___closed__1; static lean_object* l_Lean_Parser_Command_protected___closed__7; LEAN_EXPORT lean_object* l_Lean_Parser_Command_axiom; @@ -4273,7 +4242,6 @@ static lean_object* l_Lean_Parser_Command_terminationHintMany___closed__18; LEAN_EXPORT lean_object* l_Lean_Parser_Command_check__failure; static lean_object* l_Lean_Parser_Command_printAxioms___elambda__1___closed__2; LEAN_EXPORT lean_object* l_Lean_Parser_Command_open___elambda__1___lambda__1(lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__26; static lean_object* l_Lean_Parser_Command_structExplicitBinder_formatter___closed__12; static lean_object* l_Lean_Parser_Command_optionValue_parenthesizer___closed__5; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_abbrev_formatter(lean_object*); @@ -4293,6 +4261,7 @@ static lean_object* l_Lean_Parser_Command_extends_parenthesizer___closed__5; LEAN_EXPORT lean_object* l_Lean_Parser_Term_set__option_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_unsafe___elambda__1___closed__8; static lean_object* l_Lean_Parser_Command_opaque___closed__7; +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__19; static lean_object* l_Lean_Parser_Command_optDefDeriving___closed__4; static lean_object* l_Lean_Parser_Command_synth___elambda__1___closed__8; static lean_object* l_Lean_Parser_Command_openRenamingItem_formatter___closed__4; @@ -4394,6 +4363,7 @@ static lean_object* l_Lean_Parser_Command_resolve__name___elambda__1___closed__1 static lean_object* l_Lean_Parser_Command_print_parenthesizer___closed__2; static lean_object* l_Lean_Parser_Command_openOnly___closed__3; LEAN_EXPORT lean_object* l_Lean_Parser_Command_declValSimple_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__11; static lean_object* l_Lean_Parser_Command_structFields___elambda__1___closed__14; static lean_object* l_Lean_Parser_Command_inductive___closed__10; static lean_object* l_Lean_Parser_Command_genInjectiveTheorems___elambda__1___closed__7; @@ -4450,11 +4420,11 @@ static lean_object* l_Lean_Parser_Command_whereStructInst_formatter___closed__12 lean_object* l_Lean_Parser_ident_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_Command_optDeriving_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_declModifiers_formatter___closed__9; -static lean_object* l_Lean_Parser_Command_constant___elambda__1___closed__13; static lean_object* l_Lean_Parser_Command_openDecl___closed__2; static lean_object* l_Lean_Parser_Command_abbrev___closed__6; static lean_object* l_Lean_Parser_Command_terminationBy___elambda__1___closed__10; static lean_object* l_Lean_Parser_Command_example___closed__2; +static lean_object* l_Lean_Parser_Command_opaque_formatter___closed__6; static lean_object* l___regBuiltin_Lean_Parser_Command_openOnly_formatter___closed__2; LEAN_EXPORT lean_object* l_Lean_Parser_Command_declValEqns_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_mutual___closed__5; @@ -4498,9 +4468,7 @@ static lean_object* l_Lean_Parser_Command_inductive_parenthesizer___closed__2; static lean_object* l_Lean_Parser_Command_initialize_parenthesizer___closed__4; static lean_object* l_Lean_Parser_Command_openRenaming___elambda__1___closed__13; static lean_object* l_Lean_Parser_Command_set__option___elambda__1___closed__11; -static lean_object* l___regBuiltin_Lean_Parser_Command_constant_parenthesizer___closed__2; static lean_object* l_Lean_Parser_Command_deriving___elambda__1___closed__14; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__12; static lean_object* l_Lean_Parser_Command_moduleDoc___elambda__1___closed__9; static lean_object* l___regBuiltin_Lean_Parser_Command_structInstBinder_parenthesizer___closed__1; static lean_object* l_Lean_Parser_Command_declId___closed__6; @@ -4532,7 +4500,6 @@ static lean_object* l_Lean_Parser_Term_precheckedQuot___closed__2; static lean_object* l_Lean_Parser_Command_openDecl___closed__4; lean_object* lean_nat_to_int(lean_object*); static lean_object* l_Lean_Parser_Command_eval___closed__2; -static lean_object* l_Lean_Parser_Command_constant___elambda__1___closed__9; static lean_object* l___regBuiltin_Lean_Parser_Command_resolve__name_declRange___closed__6; static lean_object* l_Lean_Parser_Command_openRenamingItem_parenthesizer___closed__2; static lean_object* l_Lean_Parser_Command_resolve__name___closed__4; @@ -4566,12 +4533,10 @@ static lean_object* l___regBuiltin_Lean_Parser_Command_export_declRange___closed static lean_object* l_Lean_Parser_Command_declId_parenthesizer___closed__4; LEAN_EXPORT lean_object* l_Lean_Parser_Command_classInductive_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_export___closed__10; -static lean_object* l_Lean_Parser_Command_constant___elambda__1___closed__2; static lean_object* l_Lean_Parser_Term_open___elambda__1___closed__3; static lean_object* l_Lean_Parser_Command_initialize___closed__6; static lean_object* l_Lean_Parser_Command_declValSimple___elambda__1___closed__16; static lean_object* l_Lean_Parser_Command_optDeriving___closed__3; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__31; lean_object* l_Lean_Parser_unicodeSymbolFnAux(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_printAxioms___elambda__1___closed__13; static lean_object* l_Lean_Parser_Term_open___elambda__1___closed__5; @@ -4604,7 +4569,6 @@ static lean_object* l_Lean_Parser_Command_deriving___elambda__1___closed__5; static lean_object* l_Lean_Parser_Command_structInstBinder_formatter___closed__4; static lean_object* l_Lean_Parser_Command_attribute_formatter___closed__3; static lean_object* l_Lean_Parser_Command_namedPrio___elambda__1___closed__11; -static lean_object* l_Lean_Parser_Command_constant_formatter___closed__3; static lean_object* l___regBuiltin_Lean_Parser_Command_classInductive_parenthesizer___closed__2; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_universe_declRange(lean_object*); static lean_object* l_Lean_Parser_Term_set__option___elambda__1___closed__6; @@ -4616,7 +4580,6 @@ static lean_object* l_Lean_Parser_Command_openOnly_formatter___closed__3; static lean_object* l_Lean_Parser_Command_attribute_parenthesizer___closed__10; static lean_object* l_Lean_Parser_Command_check___closed__1; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Term_precheckedQuot(lean_object*); -static lean_object* l_Lean_Parser_Command_constant_formatter___closed__5; LEAN_EXPORT lean_object* l_Lean_Parser_Command_eval_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_strLit; static lean_object* l_Lean_Parser_Command_mutual___elambda__1___closed__25; @@ -4639,7 +4602,6 @@ static lean_object* l_Lean_Parser_Command_set__option___closed__6; static lean_object* l_Lean_Parser_Command_axiom___closed__9; lean_object* l_Lean_PrettyPrinter_Formatter_andthen_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_partial___elambda__1___closed__9; -static lean_object* l_Lean_Parser_Command_constant___elambda__1___closed__1; static lean_object* l_Lean_Parser_Command_structCtor___elambda__1___closed__6; static lean_object* l_Lean_Parser_Command_theorem_formatter___closed__3; static lean_object* l_Lean_Parser_Command_terminationByElement___elambda__1___closed__22; @@ -4654,11 +4616,9 @@ static lean_object* l_Lean_Parser_Command_abbrev_parenthesizer___closed__4; static lean_object* l_Lean_Parser_Command_structure___closed__12; static lean_object* l___regBuiltin_Lean_Parser_Command_check_declRange___closed__1; static lean_object* l_Lean_Parser_Command_structInstBinder___elambda__1___closed__11; -static lean_object* l___regBuiltin_Lean_Parser_Command_constant_parenthesizer___closed__1; static lean_object* l_Lean_Parser_Command_declaration___elambda__1___closed__14; static lean_object* l_Lean_Parser_Command_whereStructInst_parenthesizer___closed__12; static lean_object* l___regBuiltin_Lean_Parser_Term_open_declRange___closed__6; -static lean_object* l_Lean_Parser_Command_constant_parenthesizer___closed__4; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_attribute_parenthesizer(lean_object*); static lean_object* l_Lean_Parser_Command_quot___closed__2; static lean_object* l_Lean_Parser_Command_inductive___elambda__1___closed__11; @@ -4694,7 +4654,6 @@ LEAN_EXPORT lean_object* l_Lean_Parser_Command_optionValue_formatter(lean_object static lean_object* l_Lean_Parser_Command_deriving___elambda__1___closed__18; static lean_object* l_Lean_Parser_Command_example___closed__1; LEAN_EXPORT lean_object* l_Lean_Parser_Command_protected_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Parser_Command_constant_formatter___closed__6; static lean_object* l_Lean_Parser_Command_open_formatter___closed__2; static lean_object* l_Lean_Parser_Command_attribute___elambda__1___closed__3; static lean_object* l_Lean_Parser_Command_openRenaming_formatter___closed__6; @@ -4703,7 +4662,6 @@ static lean_object* l_Lean_Parser_Command_resolve__name_parenthesizer___closed__ static lean_object* l_Lean_Parser_Command_inductive___elambda__1___closed__12; LEAN_EXPORT lean_object* l_Lean_Parser_Command_classTk_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_Command_whereStructInst; -static lean_object* l_Lean_Parser_Command_declaration___elambda__1___closed__18; static lean_object* l_Lean_Parser_Command_abbrev_parenthesizer___closed__8; static lean_object* l_Lean_Parser_Command_terminationHintMany___closed__3; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_variable(lean_object*); @@ -4776,7 +4734,6 @@ static lean_object* l_Lean_Parser_Command_structSimpleBinder___elambda__1___clos lean_object* l_Lean_Parser_andthenFn(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_declModifiers_parenthesizer___closed__3; static lean_object* l_Lean_Parser_Command_nonrec___elambda__1___closed__4; -LEAN_EXPORT lean_object* l_Lean_Parser_Command_constant; static lean_object* l_Lean_Parser_Command_structImplicitBinder___elambda__1___closed__13; static lean_object* l_Lean_Parser_Command_quot___elambda__1___closed__17; static lean_object* _init_l_Lean_Parser_Term_quot___elambda__1___lambda__1___closed__1() { @@ -18510,495 +18467,6 @@ x_1 = l_Lean_Parser_Command_theorem___closed__11; return x_1; } } -static lean_object* _init_l_Lean_Parser_Command_constant___elambda__1___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("constant", 8); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Command_constant___elambda__1___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_quot___elambda__1___closed__2; -x_2 = l_Lean_Parser_Command_constant___elambda__1___closed__1; -x_3 = lean_name_mk_string(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Command_constant___elambda__1___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Command_constant___elambda__1___closed__2; -x_2 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Command_constant___elambda__1___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Command_constant___elambda__1___closed__1; -x_2 = l_Lean_Parser_Command_constant___elambda__1___closed__3; -x_3 = 1; -x_4 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Command_constant___elambda__1___closed__5() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("constant ", 9); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Command_constant___elambda__1___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Command_constant___elambda__1___closed__5; -x_2 = l_String_trim(x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Command_constant___elambda__1___closed__7() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Command_constant___elambda__1___closed__6; -x_2 = lean_alloc_closure((void*)(l_Lean_Parser_Term_quot___elambda__1___lambda__1___boxed), 3, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Command_constant___elambda__1___closed__8() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Command_declValSimple; -x_2 = l_Lean_Parser_optional(x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Command_constant___elambda__1___closed__9() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Command_constant___elambda__1___closed__8; -x_2 = lean_ctor_get(x_1, 1); -lean_inc(x_2); -x_3 = l_Lean_Parser_Command_declSig___closed__6; -x_4 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); -lean_closure_set(x_4, 0, x_3); -lean_closure_set(x_4, 1, x_2); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Command_constant___elambda__1___closed__10() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_declId___closed__6; -x_2 = l_Lean_Parser_Command_constant___elambda__1___closed__9; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Command_constant___elambda__1___closed__11() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_constant___elambda__1___closed__7; -x_2 = l_Lean_Parser_Command_constant___elambda__1___closed__10; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Command_constant___elambda__1___closed__12() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_constant___elambda__1___closed__2; -x_2 = l_Lean_Parser_Command_constant___elambda__1___closed__11; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_nodeFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Command_constant___elambda__1___closed__13() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_constant___elambda__1___closed__12; -x_2 = l_Lean_Parser_Term_quot___elambda__1___closed__21; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Command_constant___elambda__1___closed__14() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Term_quot___elambda__1___closed__20; -x_2 = l_Lean_Parser_Command_constant___elambda__1___closed__13; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Command_constant___elambda__1___closed__15() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Term_quot___elambda__1___lambda__1___closed__1; -x_2 = l_Lean_Parser_Command_constant___elambda__1___closed__6; -x_3 = lean_string_append(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Command_constant___elambda__1___closed__16() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_constant___elambda__1___closed__15; -x_2 = l_Lean_Parser_Term_quot___elambda__1___lambda__1___closed__1; -x_3 = lean_string_append(x_1, x_2); -return x_3; -} -} -LEAN_EXPORT lean_object* l_Lean_Parser_Command_constant___elambda__1(lean_object* x_1, lean_object* x_2) { -_start: -{ -lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; uint32_t x_10; uint32_t x_11; uint8_t x_12; -x_3 = l_Lean_Parser_Command_constant___elambda__1___closed__8; -x_4 = lean_ctor_get(x_3, 1); -lean_inc(x_4); -x_5 = l_Lean_Parser_Command_constant___elambda__1___closed__4; -x_6 = lean_ctor_get(x_5, 1); -lean_inc(x_6); -x_7 = lean_ctor_get(x_1, 0); -lean_inc(x_7); -x_8 = lean_ctor_get(x_7, 0); -lean_inc(x_8); -lean_dec(x_7); -x_9 = lean_ctor_get(x_2, 2); -lean_inc(x_9); -x_10 = lean_string_utf8_get(x_8, x_9); -lean_dec(x_9); -x_11 = 36; -x_12 = lean_uint32_dec_eq(x_10, x_11); -if (x_12 == 0) -{ -lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; uint8_t x_17; -lean_dec(x_6); -x_13 = lean_unsigned_to_nat(1024u); -x_14 = l_Lean_Parser_checkPrecFn(x_13, x_1, x_2); -x_15 = lean_ctor_get(x_14, 4); -lean_inc(x_15); -x_16 = lean_box(0); -x_17 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_822____at_Lean_Parser_ParserState_hasError___spec__1(x_15, x_16); -lean_dec(x_15); -if (x_17 == 0) -{ -lean_dec(x_8); -lean_dec(x_4); -lean_dec(x_1); -return x_14; -} -else -{ -lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; uint32_t x_24; uint32_t x_25; uint8_t x_26; lean_object* x_27; -x_18 = lean_ctor_get(x_14, 0); -lean_inc(x_18); -x_19 = lean_array_get_size(x_18); -lean_dec(x_18); -x_20 = l_Lean_Parser_Command_constant___elambda__1___closed__6; -x_21 = l_Lean_Parser_Command_constant___elambda__1___closed__16; -lean_inc(x_1); -x_22 = l_Lean_Parser_symbolFnAux(x_20, x_21, x_1, x_14); -x_23 = lean_ctor_get(x_22, 2); -lean_inc(x_23); -x_24 = lean_string_utf8_get(x_8, x_23); -lean_dec(x_23); -lean_dec(x_8); -x_25 = 37; -x_26 = lean_uint32_dec_eq(x_24, x_25); -if (x_26 == 0) -{ -x_27 = x_22; -goto block_57; -} -else -{ -lean_object* x_58; -lean_inc(x_1); -x_58 = l_Lean_Parser_tokenAntiquotFn(x_1, x_22); -x_27 = x_58; -goto block_57; -} -block_57: -{ -lean_object* x_28; uint8_t x_29; -x_28 = lean_ctor_get(x_27, 4); -lean_inc(x_28); -x_29 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_822____at_Lean_Parser_ParserState_hasError___spec__1(x_28, x_16); -lean_dec(x_28); -if (x_29 == 0) -{ -lean_object* x_30; lean_object* x_31; lean_object* x_32; uint8_t x_33; -lean_dec(x_4); -x_30 = l_Lean_Parser_Command_constant___elambda__1___closed__2; -x_31 = l_Lean_Parser_ParserState_mkNode(x_27, x_30, x_19); -x_32 = lean_ctor_get(x_31, 4); -lean_inc(x_32); -x_33 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_822____at_Lean_Parser_ParserState_hasError___spec__1(x_32, x_16); -lean_dec(x_32); -if (x_33 == 0) -{ -lean_dec(x_1); -return x_31; -} -else -{ -lean_object* x_34; -x_34 = l_Lean_Parser_setLhsPrecFn(x_13, x_1, x_31); -lean_dec(x_1); -return x_34; -} -} -else -{ -lean_object* x_35; lean_object* x_36; uint8_t x_37; -lean_inc(x_1); -x_35 = l_Lean_Parser_Command_declId___elambda__1(x_1, x_27); -x_36 = lean_ctor_get(x_35, 4); -lean_inc(x_36); -x_37 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_822____at_Lean_Parser_ParserState_hasError___spec__1(x_36, x_16); -lean_dec(x_36); -if (x_37 == 0) -{ -lean_object* x_38; lean_object* x_39; lean_object* x_40; uint8_t x_41; -lean_dec(x_4); -x_38 = l_Lean_Parser_Command_constant___elambda__1___closed__2; -x_39 = l_Lean_Parser_ParserState_mkNode(x_35, x_38, x_19); -x_40 = lean_ctor_get(x_39, 4); -lean_inc(x_40); -x_41 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_822____at_Lean_Parser_ParserState_hasError___spec__1(x_40, x_16); -lean_dec(x_40); -if (x_41 == 0) -{ -lean_dec(x_1); -return x_39; -} -else -{ -lean_object* x_42; -x_42 = l_Lean_Parser_setLhsPrecFn(x_13, x_1, x_39); -lean_dec(x_1); -return x_42; -} -} -else -{ -lean_object* x_43; lean_object* x_44; uint8_t x_45; -lean_inc(x_1); -x_43 = l_Lean_Parser_Command_declSig___elambda__1(x_1, x_35); -x_44 = lean_ctor_get(x_43, 4); -lean_inc(x_44); -x_45 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_822____at_Lean_Parser_ParserState_hasError___spec__1(x_44, x_16); -lean_dec(x_44); -if (x_45 == 0) -{ -lean_object* x_46; lean_object* x_47; lean_object* x_48; uint8_t x_49; -lean_dec(x_4); -x_46 = l_Lean_Parser_Command_constant___elambda__1___closed__2; -x_47 = l_Lean_Parser_ParserState_mkNode(x_43, x_46, x_19); -x_48 = lean_ctor_get(x_47, 4); -lean_inc(x_48); -x_49 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_822____at_Lean_Parser_ParserState_hasError___spec__1(x_48, x_16); -lean_dec(x_48); -if (x_49 == 0) -{ -lean_dec(x_1); -return x_47; -} -else -{ -lean_object* x_50; -x_50 = l_Lean_Parser_setLhsPrecFn(x_13, x_1, x_47); -lean_dec(x_1); -return x_50; -} -} -else -{ -lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; uint8_t x_55; -lean_inc(x_1); -x_51 = lean_apply_2(x_4, x_1, x_43); -x_52 = l_Lean_Parser_Command_constant___elambda__1___closed__2; -x_53 = l_Lean_Parser_ParserState_mkNode(x_51, x_52, x_19); -x_54 = lean_ctor_get(x_53, 4); -lean_inc(x_54); -x_55 = l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_822____at_Lean_Parser_ParserState_hasError___spec__1(x_54, x_16); -lean_dec(x_54); -if (x_55 == 0) -{ -lean_dec(x_1); -return x_53; -} -else -{ -lean_object* x_56; -x_56 = l_Lean_Parser_setLhsPrecFn(x_13, x_1, x_53); -lean_dec(x_1); -return x_56; -} -} -} -} -} -} -} -else -{ -lean_object* x_59; uint8_t x_60; lean_object* x_61; -lean_dec(x_8); -lean_dec(x_4); -x_59 = l_Lean_Parser_Command_constant___elambda__1___closed__14; -x_60 = 1; -x_61 = l_Lean_Parser_orelseFnCore(x_6, x_59, x_60, x_1, x_2); -return x_61; -} -} -} -static lean_object* _init_l_Lean_Parser_Command_constant___closed__1() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Command_constant___elambda__1___closed__6; -x_2 = l_Lean_Parser_symbolInfo(x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Command_constant___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l_Lean_Parser_Command_declSig; -x_2 = lean_ctor_get(x_1, 0); -lean_inc(x_2); -x_3 = l_Lean_Parser_Command_constant___elambda__1___closed__8; -x_4 = lean_ctor_get(x_3, 0); -lean_inc(x_4); -x_5 = l_Lean_Parser_andthenInfo(x_2, x_4); -return x_5; -} -} -static lean_object* _init_l_Lean_Parser_Command_constant___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Command_declId; -x_2 = lean_ctor_get(x_1, 0); -lean_inc(x_2); -x_3 = l_Lean_Parser_Command_constant___closed__2; -x_4 = l_Lean_Parser_andthenInfo(x_2, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Command_constant___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_constant___closed__1; -x_2 = l_Lean_Parser_Command_constant___closed__3; -x_3 = l_Lean_Parser_andthenInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Command_constant___closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_constant___elambda__1___closed__2; -x_2 = l_Lean_Parser_Command_constant___closed__4; -x_3 = l_Lean_Parser_nodeInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Command_constant___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_constant___closed__5; -x_2 = l_Lean_Parser_epsilonInfo; -x_3 = l_Lean_Parser_andthenInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Command_constant___closed__7() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_epsilonInfo; -x_2 = l_Lean_Parser_Command_constant___closed__6; -x_3 = l_Lean_Parser_andthenInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Command_constant___closed__8() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Command_constant___elambda__1___closed__4; -x_2 = lean_ctor_get(x_1, 0); -lean_inc(x_2); -x_3 = l_Lean_Parser_Command_constant___closed__7; -x_4 = l_Lean_Parser_orelseInfo(x_2, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Parser_Command_constant___closed__9() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Command_constant___elambda__1), 2, 0); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Command_constant___closed__10() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_constant___closed__8; -x_2 = l_Lean_Parser_Command_constant___closed__9; -x_3 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_3, 0, x_1); -lean_ctor_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Command_constant() { -_start: -{ -lean_object* x_1; -x_1 = l_Lean_Parser_Command_constant___closed__10; -return x_1; -} -} static lean_object* _init_l_Lean_Parser_Command_opaque___elambda__1___closed__1() { _start: { @@ -19068,33 +18536,32 @@ return x_2; static lean_object* _init_l_Lean_Parser_Command_opaque___elambda__1___closed__8() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_opaque___elambda__1___closed__7; -x_2 = l_Lean_Parser_Command_constant___elambda__1___closed__10; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Command_declValSimple; +x_2 = l_Lean_Parser_optional(x_1); +return x_2; } } static lean_object* _init_l_Lean_Parser_Command_opaque___elambda__1___closed__9() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_opaque___elambda__1___closed__2; -x_2 = l_Lean_Parser_Command_opaque___elambda__1___closed__8; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_nodeFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_opaque___elambda__1___closed__8; +x_2 = lean_ctor_get(x_1, 1); +lean_inc(x_2); +x_3 = l_Lean_Parser_Command_declSig___closed__6; +x_4 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); +lean_closure_set(x_4, 0, x_3); +lean_closure_set(x_4, 1, x_2); +return x_4; } } static lean_object* _init_l_Lean_Parser_Command_opaque___elambda__1___closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_opaque___elambda__1___closed__9; -x_2 = l_Lean_Parser_Term_quot___elambda__1___closed__21; +x_1 = l_Lean_Parser_Command_declId___closed__6; +x_2 = l_Lean_Parser_Command_opaque___elambda__1___closed__9; x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); lean_closure_set(x_3, 0, x_1); lean_closure_set(x_3, 1, x_2); @@ -19105,7 +18572,7 @@ static lean_object* _init_l_Lean_Parser_Command_opaque___elambda__1___closed__11 _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Term_quot___elambda__1___closed__20; +x_1 = l_Lean_Parser_Command_opaque___elambda__1___closed__7; x_2 = l_Lean_Parser_Command_opaque___elambda__1___closed__10; x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); lean_closure_set(x_3, 0, x_1); @@ -19117,9 +18584,11 @@ static lean_object* _init_l_Lean_Parser_Command_opaque___elambda__1___closed__12 _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Term_quot___elambda__1___lambda__1___closed__1; -x_2 = l_Lean_Parser_Command_opaque___elambda__1___closed__6; -x_3 = lean_string_append(x_1, x_2); +x_1 = l_Lean_Parser_Command_opaque___elambda__1___closed__2; +x_2 = l_Lean_Parser_Command_opaque___elambda__1___closed__11; +x_3 = lean_alloc_closure((void*)(l_Lean_Parser_nodeFn), 4, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); return x_3; } } @@ -19128,6 +18597,40 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Command_opaque___elambda__1___closed__12; +x_2 = l_Lean_Parser_Term_quot___elambda__1___closed__21; +x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Parser_Command_opaque___elambda__1___closed__14() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_quot___elambda__1___closed__20; +x_2 = l_Lean_Parser_Command_opaque___elambda__1___closed__13; +x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Parser_Command_opaque___elambda__1___closed__15() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Term_quot___elambda__1___lambda__1___closed__1; +x_2 = l_Lean_Parser_Command_opaque___elambda__1___closed__6; +x_3 = lean_string_append(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Parser_Command_opaque___elambda__1___closed__16() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Command_opaque___elambda__1___closed__15; x_2 = l_Lean_Parser_Term_quot___elambda__1___lambda__1___closed__1; x_3 = lean_string_append(x_1, x_2); return x_3; @@ -19137,7 +18640,7 @@ LEAN_EXPORT lean_object* l_Lean_Parser_Command_opaque___elambda__1(lean_object* _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; uint32_t x_10; uint32_t x_11; uint8_t x_12; -x_3 = l_Lean_Parser_Command_constant___elambda__1___closed__8; +x_3 = l_Lean_Parser_Command_opaque___elambda__1___closed__8; x_4 = lean_ctor_get(x_3, 1); lean_inc(x_4); x_5 = l_Lean_Parser_Command_opaque___elambda__1___closed__4; @@ -19180,7 +18683,7 @@ lean_inc(x_18); x_19 = lean_array_get_size(x_18); lean_dec(x_18); x_20 = l_Lean_Parser_Command_opaque___elambda__1___closed__6; -x_21 = l_Lean_Parser_Command_opaque___elambda__1___closed__13; +x_21 = l_Lean_Parser_Command_opaque___elambda__1___closed__16; lean_inc(x_1); x_22 = l_Lean_Parser_symbolFnAux(x_20, x_21, x_1, x_14); x_23 = lean_ctor_get(x_22, 2); @@ -19331,7 +18834,7 @@ else lean_object* x_59; uint8_t x_60; lean_object* x_61; lean_dec(x_8); lean_dec(x_4); -x_59 = l_Lean_Parser_Command_opaque___elambda__1___closed__11; +x_59 = l_Lean_Parser_Command_opaque___elambda__1___closed__14; x_60 = 1; x_61 = l_Lean_Parser_orelseFnCore(x_6, x_59, x_60, x_1, x_2); return x_61; @@ -19350,29 +18853,35 @@ return x_2; static lean_object* _init_l_Lean_Parser_Command_opaque___closed__2() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_opaque___closed__1; -x_2 = l_Lean_Parser_Command_constant___closed__3; -x_3 = l_Lean_Parser_andthenInfo(x_1, x_2); -return x_3; +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l_Lean_Parser_Command_declSig; +x_2 = lean_ctor_get(x_1, 0); +lean_inc(x_2); +x_3 = l_Lean_Parser_Command_opaque___elambda__1___closed__8; +x_4 = lean_ctor_get(x_3, 0); +lean_inc(x_4); +x_5 = l_Lean_Parser_andthenInfo(x_2, x_4); +return x_5; } } static lean_object* _init_l_Lean_Parser_Command_opaque___closed__3() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_opaque___elambda__1___closed__2; -x_2 = l_Lean_Parser_Command_opaque___closed__2; -x_3 = l_Lean_Parser_nodeInfo(x_1, x_2); -return x_3; +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_declId; +x_2 = lean_ctor_get(x_1, 0); +lean_inc(x_2); +x_3 = l_Lean_Parser_Command_opaque___closed__2; +x_4 = l_Lean_Parser_andthenInfo(x_2, x_3); +return x_4; } } static lean_object* _init_l_Lean_Parser_Command_opaque___closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_opaque___closed__3; -x_2 = l_Lean_Parser_epsilonInfo; +x_1 = l_Lean_Parser_Command_opaque___closed__1; +x_2 = l_Lean_Parser_Command_opaque___closed__3; x_3 = l_Lean_Parser_andthenInfo(x_1, x_2); return x_3; } @@ -19381,25 +18890,45 @@ static lean_object* _init_l_Lean_Parser_Command_opaque___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_epsilonInfo; +x_1 = l_Lean_Parser_Command_opaque___elambda__1___closed__2; x_2 = l_Lean_Parser_Command_opaque___closed__4; -x_3 = l_Lean_Parser_andthenInfo(x_1, x_2); +x_3 = l_Lean_Parser_nodeInfo(x_1, x_2); return x_3; } } static lean_object* _init_l_Lean_Parser_Command_opaque___closed__6() { _start: { +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Command_opaque___closed__5; +x_2 = l_Lean_Parser_epsilonInfo; +x_3 = l_Lean_Parser_andthenInfo(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Parser_Command_opaque___closed__7() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_epsilonInfo; +x_2 = l_Lean_Parser_Command_opaque___closed__6; +x_3 = l_Lean_Parser_andthenInfo(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Parser_Command_opaque___closed__8() { +_start: +{ lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; x_1 = l_Lean_Parser_Command_opaque___elambda__1___closed__4; x_2 = lean_ctor_get(x_1, 0); lean_inc(x_2); -x_3 = l_Lean_Parser_Command_opaque___closed__5; +x_3 = l_Lean_Parser_Command_opaque___closed__7; x_4 = l_Lean_Parser_orelseInfo(x_2, x_3); return x_4; } } -static lean_object* _init_l_Lean_Parser_Command_opaque___closed__7() { +static lean_object* _init_l_Lean_Parser_Command_opaque___closed__9() { _start: { lean_object* x_1; @@ -19407,12 +18936,12 @@ x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Command_opaque___elambda__1), 2, return x_1; } } -static lean_object* _init_l_Lean_Parser_Command_opaque___closed__8() { +static lean_object* _init_l_Lean_Parser_Command_opaque___closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_opaque___closed__6; -x_2 = l_Lean_Parser_Command_opaque___closed__7; +x_1 = l_Lean_Parser_Command_opaque___closed__8; +x_2 = l_Lean_Parser_Command_opaque___closed__9; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); @@ -19423,7 +18952,7 @@ static lean_object* _init_l_Lean_Parser_Command_opaque() { _start: { lean_object* x_1; -x_1 = l_Lean_Parser_Command_opaque___closed__8; +x_1 = l_Lean_Parser_Command_opaque___closed__10; return x_1; } } @@ -27215,7 +26744,7 @@ static lean_object* _init_l_Lean_Parser_Command_declaration___elambda__1___close _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_opaque___closed__7; +x_1 = l_Lean_Parser_Command_opaque___closed__9; x_2 = l_Lean_Parser_Command_declaration___elambda__1___closed__9; x_3 = lean_alloc_closure((void*)(l_Lean_Parser_orelseFn), 4, 2); lean_closure_set(x_3, 0, x_1); @@ -27227,7 +26756,7 @@ static lean_object* _init_l_Lean_Parser_Command_declaration___elambda__1___close _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_constant___closed__9; +x_1 = l_Lean_Parser_Command_theorem___closed__10; x_2 = l_Lean_Parser_Command_declaration___elambda__1___closed__10; x_3 = lean_alloc_closure((void*)(l_Lean_Parser_orelseFn), 4, 2); lean_closure_set(x_3, 0, x_1); @@ -27239,7 +26768,7 @@ static lean_object* _init_l_Lean_Parser_Command_declaration___elambda__1___close _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_theorem___closed__10; +x_1 = l_Lean_Parser_Command_def___closed__11; x_2 = l_Lean_Parser_Command_declaration___elambda__1___closed__11; x_3 = lean_alloc_closure((void*)(l_Lean_Parser_orelseFn), 4, 2); lean_closure_set(x_3, 0, x_1); @@ -27251,7 +26780,7 @@ static lean_object* _init_l_Lean_Parser_Command_declaration___elambda__1___close _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_def___closed__11; +x_1 = l_Lean_Parser_Command_abbrev___closed__9; x_2 = l_Lean_Parser_Command_declaration___elambda__1___closed__12; x_3 = lean_alloc_closure((void*)(l_Lean_Parser_orelseFn), 4, 2); lean_closure_set(x_3, 0, x_1); @@ -27263,9 +26792,9 @@ static lean_object* _init_l_Lean_Parser_Command_declaration___elambda__1___close _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_abbrev___closed__9; +x_1 = l_Lean_Parser_Command_declModifiers___closed__10; x_2 = l_Lean_Parser_Command_declaration___elambda__1___closed__13; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_orelseFn), 4, 2); +x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); lean_closure_set(x_3, 0, x_1); lean_closure_set(x_3, 1, x_2); return x_3; @@ -27275,9 +26804,9 @@ static lean_object* _init_l_Lean_Parser_Command_declaration___elambda__1___close _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_declModifiers___closed__10; +x_1 = l_Lean_Parser_Command_declaration___elambda__1___closed__2; x_2 = l_Lean_Parser_Command_declaration___elambda__1___closed__14; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); +x_3 = lean_alloc_closure((void*)(l_Lean_Parser_nodeFn), 4, 2); lean_closure_set(x_3, 0, x_1); lean_closure_set(x_3, 1, x_2); return x_3; @@ -27287,9 +26816,9 @@ static lean_object* _init_l_Lean_Parser_Command_declaration___elambda__1___close _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_declaration___elambda__1___closed__2; -x_2 = l_Lean_Parser_Command_declaration___elambda__1___closed__15; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_nodeFn), 4, 2); +x_1 = l_Lean_Parser_Command_declaration___elambda__1___closed__15; +x_2 = l_Lean_Parser_Term_quot___elambda__1___closed__21; +x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); lean_closure_set(x_3, 0, x_1); lean_closure_set(x_3, 1, x_2); return x_3; @@ -27299,20 +26828,8 @@ static lean_object* _init_l_Lean_Parser_Command_declaration___elambda__1___close _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_declaration___elambda__1___closed__16; -x_2 = l_Lean_Parser_Term_quot___elambda__1___closed__21; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Command_declaration___elambda__1___closed__18() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Term_quot___elambda__1___closed__20; -x_2 = l_Lean_Parser_Command_declaration___elambda__1___closed__17; +x_2 = l_Lean_Parser_Command_declaration___elambda__1___closed__16; x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); lean_closure_set(x_3, 0, x_1); lean_closure_set(x_3, 1, x_2); @@ -27393,7 +26910,7 @@ else { lean_object* x_26; lean_object* x_27; uint8_t x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; uint8_t x_33; x_26 = l_Lean_Parser_Command_abbrev___closed__9; -x_27 = l_Lean_Parser_Command_declaration___elambda__1___closed__13; +x_27 = l_Lean_Parser_Command_declaration___elambda__1___closed__12; x_28 = 1; lean_inc(x_1); x_29 = l_Lean_Parser_orelseFnCore(x_26, x_27, x_28, x_1, x_18); @@ -27421,7 +26938,7 @@ return x_34; else { lean_object* x_35; uint8_t x_36; lean_object* x_37; -x_35 = l_Lean_Parser_Command_declaration___elambda__1___closed__18; +x_35 = l_Lean_Parser_Command_declaration___elambda__1___closed__17; x_36 = 1; x_37 = l_Lean_Parser_orelseFnCore(x_4, x_35, x_36, x_1, x_2); return x_37; @@ -27515,7 +27032,7 @@ static lean_object* _init_l_Lean_Parser_Command_declaration___closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Command_constant; +x_1 = l_Lean_Parser_Command_theorem; x_2 = lean_ctor_get(x_1, 0); lean_inc(x_2); x_3 = l_Lean_Parser_Command_declaration___closed__7; @@ -27527,7 +27044,7 @@ static lean_object* _init_l_Lean_Parser_Command_declaration___closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Command_theorem; +x_1 = l_Lean_Parser_Command_def; x_2 = lean_ctor_get(x_1, 0); lean_inc(x_2); x_3 = l_Lean_Parser_Command_declaration___closed__8; @@ -27539,7 +27056,7 @@ static lean_object* _init_l_Lean_Parser_Command_declaration___closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Command_def; +x_1 = l_Lean_Parser_Command_abbrev; x_2 = lean_ctor_get(x_1, 0); lean_inc(x_2); x_3 = l_Lean_Parser_Command_declaration___closed__9; @@ -27551,33 +27068,31 @@ static lean_object* _init_l_Lean_Parser_Command_declaration___closed__11() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Command_abbrev; +x_1 = l_Lean_Parser_Command_declaration___closed__1; x_2 = lean_ctor_get(x_1, 0); lean_inc(x_2); x_3 = l_Lean_Parser_Command_declaration___closed__10; -x_4 = l_Lean_Parser_orelseInfo(x_2, x_3); +x_4 = l_Lean_Parser_andthenInfo(x_2, x_3); return x_4; } } static lean_object* _init_l_Lean_Parser_Command_declaration___closed__12() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Command_declaration___closed__1; -x_2 = lean_ctor_get(x_1, 0); -lean_inc(x_2); -x_3 = l_Lean_Parser_Command_declaration___closed__11; -x_4 = l_Lean_Parser_andthenInfo(x_2, x_3); -return x_4; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Command_declaration___elambda__1___closed__2; +x_2 = l_Lean_Parser_Command_declaration___closed__11; +x_3 = l_Lean_Parser_nodeInfo(x_1, x_2); +return x_3; } } static lean_object* _init_l_Lean_Parser_Command_declaration___closed__13() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_declaration___elambda__1___closed__2; -x_2 = l_Lean_Parser_Command_declaration___closed__12; -x_3 = l_Lean_Parser_nodeInfo(x_1, x_2); +x_1 = l_Lean_Parser_Command_declaration___closed__12; +x_2 = l_Lean_Parser_epsilonInfo; +x_3 = l_Lean_Parser_andthenInfo(x_1, x_2); return x_3; } } @@ -27585,8 +27100,8 @@ static lean_object* _init_l_Lean_Parser_Command_declaration___closed__14() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_declaration___closed__13; -x_2 = l_Lean_Parser_epsilonInfo; +x_1 = l_Lean_Parser_epsilonInfo; +x_2 = l_Lean_Parser_Command_declaration___closed__13; x_3 = l_Lean_Parser_andthenInfo(x_1, x_2); return x_3; } @@ -27594,26 +27109,16 @@ return x_3; static lean_object* _init_l_Lean_Parser_Command_declaration___closed__15() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_epsilonInfo; -x_2 = l_Lean_Parser_Command_declaration___closed__14; -x_3 = l_Lean_Parser_andthenInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Command_declaration___closed__16() { -_start: -{ lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; x_1 = l_Lean_Parser_Command_declaration___elambda__1___closed__4; x_2 = lean_ctor_get(x_1, 0); lean_inc(x_2); -x_3 = l_Lean_Parser_Command_declaration___closed__15; +x_3 = l_Lean_Parser_Command_declaration___closed__14; x_4 = l_Lean_Parser_orelseInfo(x_2, x_3); return x_4; } } -static lean_object* _init_l_Lean_Parser_Command_declaration___closed__17() { +static lean_object* _init_l_Lean_Parser_Command_declaration___closed__16() { _start: { lean_object* x_1; @@ -27621,12 +27126,12 @@ x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Command_declaration___elambda__1) return x_1; } } -static lean_object* _init_l_Lean_Parser_Command_declaration___closed__18() { +static lean_object* _init_l_Lean_Parser_Command_declaration___closed__17() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_declaration___closed__16; -x_2 = l_Lean_Parser_Command_declaration___closed__17; +x_1 = l_Lean_Parser_Command_declaration___closed__15; +x_2 = l_Lean_Parser_Command_declaration___closed__16; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); @@ -27637,7 +27142,7 @@ static lean_object* _init_l_Lean_Parser_Command_declaration() { _start: { lean_object* x_1; -x_1 = l_Lean_Parser_Command_declaration___closed__18; +x_1 = l_Lean_Parser_Command_declaration___closed__17; return x_1; } } @@ -27658,7 +27163,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_declaration_declRan _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(98u); +x_1 = lean_unsigned_to_nat(97u); x_2 = lean_unsigned_to_nat(24u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -27670,8 +27175,8 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_declaration_declRan _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(99u); -x_2 = lean_unsigned_to_nat(177u); +x_1 = lean_unsigned_to_nat(98u); +x_2 = lean_unsigned_to_nat(162u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); @@ -27685,7 +27190,7 @@ lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_obj x_1 = l___regBuiltin_Lean_Parser_Command_declaration_declRange___closed__1; x_2 = lean_unsigned_to_nat(24u); x_3 = l___regBuiltin_Lean_Parser_Command_declaration_declRange___closed__2; -x_4 = lean_unsigned_to_nat(177u); +x_4 = lean_unsigned_to_nat(162u); x_5 = lean_alloc_ctor(0, 4, 0); lean_ctor_set(x_5, 0, x_1); lean_ctor_set(x_5, 1, x_2); @@ -27698,7 +27203,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_declaration_declRan _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(98u); +x_1 = lean_unsigned_to_nat(97u); x_2 = lean_unsigned_to_nat(28u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -27710,7 +27215,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_declaration_declRan _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(98u); +x_1 = lean_unsigned_to_nat(97u); x_2 = lean_unsigned_to_nat(39u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -30602,131 +30107,6 @@ x_6 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_5, x_1); return x_6; } } -static lean_object* _init_l_Lean_Parser_Command_constant_formatter___closed__1() { -_start: -{ -lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; lean_object* x_5; -x_1 = l_Lean_Parser_Command_constant___elambda__1___closed__1; -x_2 = l_Lean_Parser_Command_constant___elambda__1___closed__3; -x_3 = 1; -x_4 = lean_box(x_3); -x_5 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_formatter___boxed), 8, 3); -lean_closure_set(x_5, 0, x_1); -lean_closure_set(x_5, 1, x_2); -lean_closure_set(x_5, 2, x_4); -return x_5; -} -} -static lean_object* _init_l_Lean_Parser_Command_constant_formatter___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Command_constant___elambda__1___closed__5; -x_2 = lean_alloc_closure((void*)(l_Lean_Parser_symbol_formatter), 6, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Command_constant_formatter___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l___regBuiltin_Lean_Parser_Command_declValSimple_formatter___closed__2; -x_2 = lean_alloc_closure((void*)(l_Lean_Parser_optional_formatter), 6, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Command_constant_formatter___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_theorem_formatter___closed__3; -x_2 = l_Lean_Parser_Command_constant_formatter___closed__3; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Command_constant_formatter___closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Parser_Command_declId_formatter___closed__2; -x_2 = l_Lean_Parser_Command_constant_formatter___closed__4; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Command_constant_formatter___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_constant_formatter___closed__2; -x_2 = l_Lean_Parser_Command_constant_formatter___closed__5; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Command_constant_formatter___closed__7() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Command_constant___elambda__1___closed__2; -x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean_Parser_Command_constant_formatter___closed__6; -x_4 = lean_alloc_closure((void*)(l_Lean_Parser_leadingNode_formatter___boxed), 8, 3); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_2); -lean_closure_set(x_4, 2, x_3); -return x_4; -} -} -LEAN_EXPORT lean_object* l_Lean_Parser_Command_constant_formatter(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { -_start: -{ -lean_object* x_6; lean_object* x_7; lean_object* x_8; -x_6 = l_Lean_Parser_Command_constant_formatter___closed__1; -x_7 = l_Lean_Parser_Command_constant_formatter___closed__7; -x_8 = l_Lean_PrettyPrinter_Formatter_orelse_formatter(x_6, x_7, x_1, x_2, x_3, x_4, x_5); -return x_8; -} -} -static lean_object* _init_l___regBuiltin_Lean_Parser_Command_constant_formatter___closed__1() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_constant___elambda__1___closed__2; -x_2 = l___regBuiltin_Lean_Parser_Term_quot_formatter___closed__1; -x_3 = lean_name_mk_string(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_Lean_Parser_Command_constant_formatter___closed__2() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Command_constant_formatter), 5, 0); -return x_1; -} -} -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_constant_formatter(lean_object* x_1) { -_start: -{ -lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; -x_2 = l___regBuiltin_Lean_Parser_Term_quot_formatter___closed__3; -x_3 = l_Lean_Parser_Command_constant___elambda__1___closed__2; -x_4 = l___regBuiltin_Lean_Parser_Command_constant_formatter___closed__1; -x_5 = l___regBuiltin_Lean_Parser_Command_constant_formatter___closed__2; -x_6 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_5, x_1); -return x_6; -} -} static lean_object* _init_l_Lean_Parser_Command_opaque_formatter___closed__1() { _start: { @@ -30755,22 +30135,56 @@ return x_2; static lean_object* _init_l_Lean_Parser_Command_opaque_formatter___closed__3() { _start: { +lean_object* x_1; lean_object* x_2; +x_1 = l___regBuiltin_Lean_Parser_Command_declValSimple_formatter___closed__2; +x_2 = lean_alloc_closure((void*)(l_Lean_Parser_optional_formatter), 6, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Parser_Command_opaque_formatter___closed__4() { +_start: +{ lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_opaque_formatter___closed__2; -x_2 = l_Lean_Parser_Command_constant_formatter___closed__5; +x_1 = l_Lean_Parser_Command_theorem_formatter___closed__3; +x_2 = l_Lean_Parser_Command_opaque_formatter___closed__3; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); lean_closure_set(x_3, 0, x_1); lean_closure_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Command_opaque_formatter___closed__4() { +static lean_object* _init_l_Lean_Parser_Command_opaque_formatter___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___regBuiltin_Lean_Parser_Command_declId_formatter___closed__2; +x_2 = l_Lean_Parser_Command_opaque_formatter___closed__4; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Parser_Command_opaque_formatter___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Command_opaque_formatter___closed__2; +x_2 = l_Lean_Parser_Command_opaque_formatter___closed__5; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Parser_Command_opaque_formatter___closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; x_1 = l_Lean_Parser_Command_opaque___elambda__1___closed__2; x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean_Parser_Command_opaque_formatter___closed__3; +x_3 = l_Lean_Parser_Command_opaque_formatter___closed__6; x_4 = lean_alloc_closure((void*)(l_Lean_Parser_leadingNode_formatter___boxed), 8, 3); lean_closure_set(x_4, 0, x_1); lean_closure_set(x_4, 1, x_2); @@ -30783,7 +30197,7 @@ _start: { lean_object* x_6; lean_object* x_7; lean_object* x_8; x_6 = l_Lean_Parser_Command_opaque_formatter___closed__1; -x_7 = l_Lean_Parser_Command_opaque_formatter___closed__4; +x_7 = l_Lean_Parser_Command_opaque_formatter___closed__7; x_8 = l_Lean_PrettyPrinter_Formatter_orelse_formatter(x_6, x_7, x_1, x_2, x_3, x_4, x_5); return x_8; } @@ -33482,7 +32896,7 @@ static lean_object* _init_l_Lean_Parser_Command_declaration_formatter___closed__ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Parser_Command_constant_formatter___closed__2; +x_1 = l___regBuiltin_Lean_Parser_Command_theorem_formatter___closed__2; x_2 = l_Lean_Parser_Command_declaration_formatter___closed__8; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_orelse_formatter), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -33494,7 +32908,7 @@ static lean_object* _init_l_Lean_Parser_Command_declaration_formatter___closed__ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Parser_Command_theorem_formatter___closed__2; +x_1 = l___regBuiltin_Lean_Parser_Command_def_formatter___closed__2; x_2 = l_Lean_Parser_Command_declaration_formatter___closed__9; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_orelse_formatter), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -33506,7 +32920,7 @@ static lean_object* _init_l_Lean_Parser_Command_declaration_formatter___closed__ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Parser_Command_def_formatter___closed__2; +x_1 = l___regBuiltin_Lean_Parser_Command_abbrev_formatter___closed__2; x_2 = l_Lean_Parser_Command_declaration_formatter___closed__10; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_orelse_formatter), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -33518,9 +32932,9 @@ static lean_object* _init_l_Lean_Parser_Command_declaration_formatter___closed__ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Parser_Command_abbrev_formatter___closed__2; +x_1 = l_Lean_Parser_Command_declaration_formatter___closed__2; x_2 = l_Lean_Parser_Command_declaration_formatter___closed__11; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_orelse_formatter), 7, 2); +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); lean_closure_set(x_3, 0, x_1); lean_closure_set(x_3, 1, x_2); return x_3; @@ -33529,22 +32943,10 @@ return x_3; static lean_object* _init_l_Lean_Parser_Command_declaration_formatter___closed__13() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_declaration_formatter___closed__2; -x_2 = l_Lean_Parser_Command_declaration_formatter___closed__12; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Command_declaration_formatter___closed__14() { -_start: -{ lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; x_1 = l_Lean_Parser_Command_declaration___elambda__1___closed__2; x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean_Parser_Command_declaration_formatter___closed__13; +x_3 = l_Lean_Parser_Command_declaration_formatter___closed__12; x_4 = lean_alloc_closure((void*)(l_Lean_Parser_leadingNode_formatter___boxed), 8, 3); lean_closure_set(x_4, 0, x_1); lean_closure_set(x_4, 1, x_2); @@ -33557,7 +32959,7 @@ _start: { lean_object* x_6; lean_object* x_7; lean_object* x_8; x_6 = l_Lean_Parser_Command_declaration_formatter___closed__1; -x_7 = l_Lean_Parser_Command_declaration_formatter___closed__14; +x_7 = l_Lean_Parser_Command_declaration_formatter___closed__13; x_8 = l_Lean_PrettyPrinter_Formatter_orelse_formatter(x_6, x_7, x_1, x_2, x_3, x_4, x_5); return x_8; } @@ -36438,131 +35840,6 @@ x_6 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_5, x_1); return x_6; } } -static lean_object* _init_l_Lean_Parser_Command_constant_parenthesizer___closed__1() { -_start: -{ -lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; lean_object* x_5; -x_1 = l_Lean_Parser_Command_constant___elambda__1___closed__1; -x_2 = l_Lean_Parser_Command_constant___elambda__1___closed__3; -x_3 = 1; -x_4 = lean_box(x_3); -x_5 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot_parenthesizer___boxed), 8, 3); -lean_closure_set(x_5, 0, x_1); -lean_closure_set(x_5, 1, x_2); -lean_closure_set(x_5, 2, x_4); -return x_5; -} -} -static lean_object* _init_l_Lean_Parser_Command_constant_parenthesizer___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Command_constant___elambda__1___closed__5; -x_2 = lean_alloc_closure((void*)(l_Lean_Parser_symbol_parenthesizer), 6, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Command_constant_parenthesizer___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l___regBuiltin_Lean_Parser_Command_declValSimple_parenthesizer___closed__2; -x_2 = lean_alloc_closure((void*)(l_Lean_Parser_optional_parenthesizer), 6, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Command_constant_parenthesizer___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_theorem_parenthesizer___closed__3; -x_2 = l_Lean_Parser_Command_constant_parenthesizer___closed__3; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Command_constant_parenthesizer___closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Parser_Command_declId_parenthesizer___closed__2; -x_2 = l_Lean_Parser_Command_constant_parenthesizer___closed__4; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Command_constant_parenthesizer___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_constant_parenthesizer___closed__2; -x_2 = l_Lean_Parser_Command_constant_parenthesizer___closed__5; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Command_constant_parenthesizer___closed__7() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Command_constant___elambda__1___closed__2; -x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean_Parser_Command_constant_parenthesizer___closed__6; -x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer___boxed), 8, 3); -lean_closure_set(x_4, 0, x_1); -lean_closure_set(x_4, 1, x_2); -lean_closure_set(x_4, 2, x_3); -return x_4; -} -} -LEAN_EXPORT lean_object* l_Lean_Parser_Command_constant_parenthesizer(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { -_start: -{ -lean_object* x_6; lean_object* x_7; lean_object* x_8; -x_6 = l_Lean_Parser_Command_constant_parenthesizer___closed__1; -x_7 = l_Lean_Parser_Command_constant_parenthesizer___closed__7; -x_8 = l_Lean_PrettyPrinter_Parenthesizer_withAntiquot_parenthesizer(x_6, x_7, x_1, x_2, x_3, x_4, x_5); -return x_8; -} -} -static lean_object* _init_l___regBuiltin_Lean_Parser_Command_constant_parenthesizer___closed__1() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_constant___elambda__1___closed__2; -x_2 = l___regBuiltin_Lean_Parser_Term_quot_parenthesizer___closed__1; -x_3 = lean_name_mk_string(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___regBuiltin_Lean_Parser_Command_constant_parenthesizer___closed__2() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Command_constant_parenthesizer), 5, 0); -return x_1; -} -} -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_constant_parenthesizer(lean_object* x_1) { -_start: -{ -lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; -x_2 = l___regBuiltin_Lean_Parser_Term_quot_parenthesizer___closed__3; -x_3 = l_Lean_Parser_Command_constant___elambda__1___closed__2; -x_4 = l___regBuiltin_Lean_Parser_Command_constant_parenthesizer___closed__1; -x_5 = l___regBuiltin_Lean_Parser_Command_constant_parenthesizer___closed__2; -x_6 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_5, x_1); -return x_6; -} -} static lean_object* _init_l_Lean_Parser_Command_opaque_parenthesizer___closed__1() { _start: { @@ -36591,22 +35868,56 @@ return x_2; static lean_object* _init_l_Lean_Parser_Command_opaque_parenthesizer___closed__3() { _start: { +lean_object* x_1; lean_object* x_2; +x_1 = l___regBuiltin_Lean_Parser_Command_declValSimple_parenthesizer___closed__2; +x_2 = lean_alloc_closure((void*)(l_Lean_Parser_optional_parenthesizer), 6, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Parser_Command_opaque_parenthesizer___closed__4() { +_start: +{ lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_opaque_parenthesizer___closed__2; -x_2 = l_Lean_Parser_Command_constant_parenthesizer___closed__5; +x_1 = l_Lean_Parser_Command_theorem_parenthesizer___closed__3; +x_2 = l_Lean_Parser_Command_opaque_parenthesizer___closed__3; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); lean_closure_set(x_3, 0, x_1); lean_closure_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Command_opaque_parenthesizer___closed__4() { +static lean_object* _init_l_Lean_Parser_Command_opaque_parenthesizer___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___regBuiltin_Lean_Parser_Command_declId_parenthesizer___closed__2; +x_2 = l_Lean_Parser_Command_opaque_parenthesizer___closed__4; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Parser_Command_opaque_parenthesizer___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Command_opaque_parenthesizer___closed__2; +x_2 = l_Lean_Parser_Command_opaque_parenthesizer___closed__5; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Parser_Command_opaque_parenthesizer___closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; x_1 = l_Lean_Parser_Command_opaque___elambda__1___closed__2; x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean_Parser_Command_opaque_parenthesizer___closed__3; +x_3 = l_Lean_Parser_Command_opaque_parenthesizer___closed__6; x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer___boxed), 8, 3); lean_closure_set(x_4, 0, x_1); lean_closure_set(x_4, 1, x_2); @@ -36619,7 +35930,7 @@ _start: { lean_object* x_6; lean_object* x_7; lean_object* x_8; x_6 = l_Lean_Parser_Command_opaque_parenthesizer___closed__1; -x_7 = l_Lean_Parser_Command_opaque_parenthesizer___closed__4; +x_7 = l_Lean_Parser_Command_opaque_parenthesizer___closed__7; x_8 = l_Lean_PrettyPrinter_Parenthesizer_withAntiquot_parenthesizer(x_6, x_7, x_1, x_2, x_3, x_4, x_5); return x_8; } @@ -39320,7 +38631,7 @@ static lean_object* _init_l_Lean_Parser_Command_declaration_parenthesizer___clos _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Parser_Command_constant_parenthesizer___closed__2; +x_1 = l___regBuiltin_Lean_Parser_Command_theorem_parenthesizer___closed__2; x_2 = l_Lean_Parser_Command_declaration_parenthesizer___closed__8; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -39332,7 +38643,7 @@ static lean_object* _init_l_Lean_Parser_Command_declaration_parenthesizer___clos _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Parser_Command_theorem_parenthesizer___closed__2; +x_1 = l___regBuiltin_Lean_Parser_Command_def_parenthesizer___closed__2; x_2 = l_Lean_Parser_Command_declaration_parenthesizer___closed__9; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -39344,7 +38655,7 @@ static lean_object* _init_l_Lean_Parser_Command_declaration_parenthesizer___clos _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Parser_Command_def_parenthesizer___closed__2; +x_1 = l___regBuiltin_Lean_Parser_Command_abbrev_parenthesizer___closed__2; x_2 = l_Lean_Parser_Command_declaration_parenthesizer___closed__10; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -39356,9 +38667,9 @@ static lean_object* _init_l_Lean_Parser_Command_declaration_parenthesizer___clos _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Parser_Command_abbrev_parenthesizer___closed__2; +x_1 = l_Lean_Parser_Command_declaration_parenthesizer___closed__2; x_2 = l_Lean_Parser_Command_declaration_parenthesizer___closed__11; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer), 7, 2); +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); lean_closure_set(x_3, 0, x_1); lean_closure_set(x_3, 1, x_2); return x_3; @@ -39367,22 +38678,10 @@ return x_3; static lean_object* _init_l_Lean_Parser_Command_declaration_parenthesizer___closed__13() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_declaration_parenthesizer___closed__2; -x_2 = l_Lean_Parser_Command_declaration_parenthesizer___closed__12; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Command_declaration_parenthesizer___closed__14() { -_start: -{ lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; x_1 = l_Lean_Parser_Command_declaration___elambda__1___closed__2; x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean_Parser_Command_declaration_parenthesizer___closed__13; +x_3 = l_Lean_Parser_Command_declaration_parenthesizer___closed__12; x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer___boxed), 8, 3); lean_closure_set(x_4, 0, x_1); lean_closure_set(x_4, 1, x_2); @@ -39395,7 +38694,7 @@ _start: { lean_object* x_6; lean_object* x_7; lean_object* x_8; x_6 = l_Lean_Parser_Command_declaration_parenthesizer___closed__1; -x_7 = l_Lean_Parser_Command_declaration_parenthesizer___closed__14; +x_7 = l_Lean_Parser_Command_declaration_parenthesizer___closed__13; x_8 = l_Lean_PrettyPrinter_Parenthesizer_withAntiquot_parenthesizer(x_6, x_7, x_1, x_2, x_3, x_4, x_5); return x_8; } @@ -40082,7 +39381,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_deriving_declRange_ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(100u); +x_1 = lean_unsigned_to_nat(99u); x_2 = lean_unsigned_to_nat(24u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -40094,7 +39393,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_deriving_declRange_ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(100u); +x_1 = lean_unsigned_to_nat(99u); x_2 = lean_unsigned_to_nat(138u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -40122,7 +39421,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_deriving_declRange_ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(100u); +x_1 = lean_unsigned_to_nat(99u); x_2 = lean_unsigned_to_nat(28u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -40134,7 +39433,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_deriving_declRange_ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(100u); +x_1 = lean_unsigned_to_nat(99u); x_2 = lean_unsigned_to_nat(38u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -40909,7 +40208,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_noncomputableSectio _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(101u); +x_1 = lean_unsigned_to_nat(100u); x_2 = lean_unsigned_to_nat(24u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -40921,7 +40220,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_noncomputableSectio _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(101u); +x_1 = lean_unsigned_to_nat(100u); x_2 = lean_unsigned_to_nat(115u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -40949,7 +40248,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_noncomputableSectio _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(101u); +x_1 = lean_unsigned_to_nat(100u); x_2 = lean_unsigned_to_nat(28u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -40961,7 +40260,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_noncomputableSectio _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(101u); +x_1 = lean_unsigned_to_nat(100u); x_2 = lean_unsigned_to_nat(48u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -41578,7 +40877,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_section_declRange__ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(102u); +x_1 = lean_unsigned_to_nat(101u); x_2 = lean_unsigned_to_nat(24u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -41590,7 +40889,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_section_declRange__ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(102u); +x_1 = lean_unsigned_to_nat(101u); x_2 = lean_unsigned_to_nat(89u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -41618,7 +40917,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_section_declRange__ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(102u); +x_1 = lean_unsigned_to_nat(101u); x_2 = lean_unsigned_to_nat(28u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -41630,7 +40929,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_section_declRange__ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(102u); +x_1 = lean_unsigned_to_nat(101u); x_2 = lean_unsigned_to_nat(37u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -42232,7 +41531,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_namespace_declRange _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(103u); +x_1 = lean_unsigned_to_nat(102u); x_2 = lean_unsigned_to_nat(24u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -42244,7 +41543,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_namespace_declRange _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(103u); +x_1 = lean_unsigned_to_nat(102u); x_2 = lean_unsigned_to_nat(82u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -42272,7 +41571,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_namespace_declRange _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(103u); +x_1 = lean_unsigned_to_nat(102u); x_2 = lean_unsigned_to_nat(28u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -42284,7 +41583,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_namespace_declRange _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(103u); +x_1 = lean_unsigned_to_nat(102u); x_2 = lean_unsigned_to_nat(39u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -42939,7 +42238,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_end_declRange___clo _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(104u); +x_1 = lean_unsigned_to_nat(103u); x_2 = lean_unsigned_to_nat(24u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -42951,7 +42250,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_end_declRange___clo _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(104u); +x_1 = lean_unsigned_to_nat(103u); x_2 = lean_unsigned_to_nat(85u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -42979,7 +42278,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_end_declRange___clo _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(104u); +x_1 = lean_unsigned_to_nat(103u); x_2 = lean_unsigned_to_nat(28u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -42991,7 +42290,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_end_declRange___clo _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(104u); +x_1 = lean_unsigned_to_nat(103u); x_2 = lean_unsigned_to_nat(33u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -43647,7 +42946,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_variable_declRange_ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(105u); +x_1 = lean_unsigned_to_nat(104u); x_2 = lean_unsigned_to_nat(24u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -43659,7 +42958,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_variable_declRange_ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(105u); +x_1 = lean_unsigned_to_nat(104u); x_2 = lean_unsigned_to_nat(114u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -43687,7 +42986,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_variable_declRange_ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(105u); +x_1 = lean_unsigned_to_nat(104u); x_2 = lean_unsigned_to_nat(28u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -43699,7 +42998,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_variable_declRange_ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(105u); +x_1 = lean_unsigned_to_nat(104u); x_2 = lean_unsigned_to_nat(38u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -44374,7 +43673,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_universe_declRange_ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(106u); +x_1 = lean_unsigned_to_nat(105u); x_2 = lean_unsigned_to_nat(24u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -44386,7 +43685,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_universe_declRange_ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(106u); +x_1 = lean_unsigned_to_nat(105u); x_2 = lean_unsigned_to_nat(87u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -44414,7 +43713,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_universe_declRange_ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(106u); +x_1 = lean_unsigned_to_nat(105u); x_2 = lean_unsigned_to_nat(28u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -44426,7 +43725,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_universe_declRange_ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(106u); +x_1 = lean_unsigned_to_nat(105u); x_2 = lean_unsigned_to_nat(38u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -45076,7 +44375,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_check_declRange___c _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(107u); +x_1 = lean_unsigned_to_nat(106u); x_2 = lean_unsigned_to_nat(24u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -45088,7 +44387,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_check_declRange___c _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(107u); +x_1 = lean_unsigned_to_nat(106u); x_2 = lean_unsigned_to_nat(84u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -45116,7 +44415,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_check_declRange___c _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(107u); +x_1 = lean_unsigned_to_nat(106u); x_2 = lean_unsigned_to_nat(28u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -45128,7 +44427,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_check_declRange___c _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(107u); +x_1 = lean_unsigned_to_nat(106u); x_2 = lean_unsigned_to_nat(33u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -45778,7 +45077,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_check__failure_decl _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(108u); +x_1 = lean_unsigned_to_nat(107u); x_2 = lean_unsigned_to_nat(24u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -45790,7 +45089,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_check__failure_decl _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(108u); +x_1 = lean_unsigned_to_nat(107u); x_2 = lean_unsigned_to_nat(92u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -45818,7 +45117,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_check__failure_decl _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(108u); +x_1 = lean_unsigned_to_nat(107u); x_2 = lean_unsigned_to_nat(28u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -45830,7 +45129,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_check__failure_decl _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(108u); +x_1 = lean_unsigned_to_nat(107u); x_2 = lean_unsigned_to_nat(41u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -46480,7 +45779,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_reduce_declRange___ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(109u); +x_1 = lean_unsigned_to_nat(108u); x_2 = lean_unsigned_to_nat(24u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -46492,7 +45791,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_reduce_declRange___ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(109u); +x_1 = lean_unsigned_to_nat(108u); x_2 = lean_unsigned_to_nat(85u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -46520,7 +45819,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_reduce_declRange___ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(109u); +x_1 = lean_unsigned_to_nat(108u); x_2 = lean_unsigned_to_nat(28u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -46532,7 +45831,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_reduce_declRange___ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(109u); +x_1 = lean_unsigned_to_nat(108u); x_2 = lean_unsigned_to_nat(34u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -47182,7 +46481,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_eval_declRange___cl _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(110u); +x_1 = lean_unsigned_to_nat(109u); x_2 = lean_unsigned_to_nat(24u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -47194,7 +46493,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_eval_declRange___cl _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(110u); +x_1 = lean_unsigned_to_nat(109u); x_2 = lean_unsigned_to_nat(83u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -47222,7 +46521,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_eval_declRange___cl _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(110u); +x_1 = lean_unsigned_to_nat(109u); x_2 = lean_unsigned_to_nat(28u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -47234,7 +46533,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_eval_declRange___cl _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(110u); +x_1 = lean_unsigned_to_nat(109u); x_2 = lean_unsigned_to_nat(32u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -47884,7 +47183,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_synth_declRange___c _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(111u); +x_1 = lean_unsigned_to_nat(110u); x_2 = lean_unsigned_to_nat(24u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -47896,7 +47195,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_synth_declRange___c _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(111u); +x_1 = lean_unsigned_to_nat(110u); x_2 = lean_unsigned_to_nat(84u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -47924,7 +47223,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_synth_declRange___c _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(111u); +x_1 = lean_unsigned_to_nat(110u); x_2 = lean_unsigned_to_nat(28u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -47936,7 +47235,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_synth_declRange___c _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(111u); +x_1 = lean_unsigned_to_nat(110u); x_2 = lean_unsigned_to_nat(33u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -48494,7 +47793,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_exit_declRange___cl _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(112u); +x_1 = lean_unsigned_to_nat(111u); x_2 = lean_unsigned_to_nat(24u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -48506,7 +47805,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_exit_declRange___cl _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(112u); +x_1 = lean_unsigned_to_nat(111u); x_2 = lean_unsigned_to_nat(68u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -48534,7 +47833,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_exit_declRange___cl _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(112u); +x_1 = lean_unsigned_to_nat(111u); x_2 = lean_unsigned_to_nat(28u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -48546,7 +47845,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_exit_declRange___cl _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(112u); +x_1 = lean_unsigned_to_nat(111u); x_2 = lean_unsigned_to_nat(32u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -49206,7 +48505,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_print_declRange___c _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(113u); +x_1 = lean_unsigned_to_nat(112u); x_2 = lean_unsigned_to_nat(24u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -49218,7 +48517,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_print_declRange___c _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(113u); +x_1 = lean_unsigned_to_nat(112u); x_2 = lean_unsigned_to_nat(92u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -49246,7 +48545,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_print_declRange___c _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(113u); +x_1 = lean_unsigned_to_nat(112u); x_2 = lean_unsigned_to_nat(28u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -49258,7 +48557,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_print_declRange___c _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(113u); +x_1 = lean_unsigned_to_nat(112u); x_2 = lean_unsigned_to_nat(33u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -49963,7 +49262,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_printAxioms_declRan _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(114u); +x_1 = lean_unsigned_to_nat(113u); x_2 = lean_unsigned_to_nat(24u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -49975,7 +49274,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_printAxioms_declRan _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(114u); +x_1 = lean_unsigned_to_nat(113u); x_2 = lean_unsigned_to_nat(110u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -50003,7 +49302,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_printAxioms_declRan _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(114u); +x_1 = lean_unsigned_to_nat(113u); x_2 = lean_unsigned_to_nat(28u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -50015,7 +49314,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_printAxioms_declRan _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(114u); +x_1 = lean_unsigned_to_nat(113u); x_2 = lean_unsigned_to_nat(39u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -50691,7 +49990,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_resolve__name_declR _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(115u); +x_1 = lean_unsigned_to_nat(114u); x_2 = lean_unsigned_to_nat(24u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -50703,7 +50002,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_resolve__name_declR _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(115u); +x_1 = lean_unsigned_to_nat(114u); x_2 = lean_unsigned_to_nat(86u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -50731,7 +50030,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_resolve__name_declR _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(115u); +x_1 = lean_unsigned_to_nat(114u); x_2 = lean_unsigned_to_nat(28u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -50743,7 +50042,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_resolve__name_declR _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(115u); +x_1 = lean_unsigned_to_nat(114u); x_2 = lean_unsigned_to_nat(42u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -51293,7 +50592,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_init__quot_declRang _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(116u); +x_1 = lean_unsigned_to_nat(115u); x_2 = lean_unsigned_to_nat(24u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -51305,7 +50604,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_init__quot_declRang _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(116u); +x_1 = lean_unsigned_to_nat(115u); x_2 = lean_unsigned_to_nat(72u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -51333,7 +50632,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_init__quot_declRang _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(116u); +x_1 = lean_unsigned_to_nat(115u); x_2 = lean_unsigned_to_nat(28u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -51345,7 +50644,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_init__quot_declRang _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(116u); +x_1 = lean_unsigned_to_nat(115u); x_2 = lean_unsigned_to_nat(39u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -52181,7 +51480,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_set__option_declRan _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(118u); +x_1 = lean_unsigned_to_nat(117u); x_2 = lean_unsigned_to_nat(24u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -52193,7 +51492,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_set__option_declRan _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(118u); +x_1 = lean_unsigned_to_nat(117u); x_2 = lean_unsigned_to_nat(109u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -52221,7 +51520,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_set__option_declRan _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(118u); +x_1 = lean_unsigned_to_nat(117u); x_2 = lean_unsigned_to_nat(28u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -52233,7 +51532,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_set__option_declRan _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(118u); +x_1 = lean_unsigned_to_nat(117u); x_2 = lean_unsigned_to_nat(40u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -53780,7 +53079,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_attribute_declRange _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(120u); +x_1 = lean_unsigned_to_nat(119u); x_2 = lean_unsigned_to_nat(24u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -53792,7 +53091,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_attribute_declRange _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(120u); +x_1 = lean_unsigned_to_nat(119u); x_2 = lean_unsigned_to_nat(152u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -53820,7 +53119,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_attribute_declRange _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(120u); +x_1 = lean_unsigned_to_nat(119u); x_2 = lean_unsigned_to_nat(28u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -53832,7 +53131,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_attribute_declRange _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(120u); +x_1 = lean_unsigned_to_nat(119u); x_2 = lean_unsigned_to_nat(39u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -55092,7 +54391,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_export_declRange___ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(121u); +x_1 = lean_unsigned_to_nat(120u); x_2 = lean_unsigned_to_nat(24u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -55104,7 +54403,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_export_declRange___ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(121u); +x_1 = lean_unsigned_to_nat(120u); x_2 = lean_unsigned_to_nat(109u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -55132,7 +54431,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_export_declRange___ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(121u); +x_1 = lean_unsigned_to_nat(120u); x_2 = lean_unsigned_to_nat(28u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -55144,7 +54443,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_export_declRange___ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(121u); +x_1 = lean_unsigned_to_nat(120u); x_2 = lean_unsigned_to_nat(36u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -58537,7 +57836,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_open_declRange___cl _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(129u); +x_1 = lean_unsigned_to_nat(128u); x_2 = lean_unsigned_to_nat(24u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -58549,7 +57848,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_open_declRange___cl _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(129u); +x_1 = lean_unsigned_to_nat(128u); x_2 = lean_unsigned_to_nat(90u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -58577,7 +57876,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_open_declRange___cl _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(129u); +x_1 = lean_unsigned_to_nat(128u); x_2 = lean_unsigned_to_nat(28u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -58589,7 +57888,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_open_declRange___cl _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(129u); +x_1 = lean_unsigned_to_nat(128u); x_2 = lean_unsigned_to_nat(34u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -60860,7 +60159,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_mutual_declRange___ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(131u); +x_1 = lean_unsigned_to_nat(130u); x_2 = lean_unsigned_to_nat(24u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -60872,7 +60171,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_mutual_declRange___ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(131u); +x_1 = lean_unsigned_to_nat(130u); x_2 = lean_unsigned_to_nat(169u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -60900,7 +60199,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_mutual_declRange___ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(131u); +x_1 = lean_unsigned_to_nat(130u); x_2 = lean_unsigned_to_nat(28u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -60912,7 +60211,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_mutual_declRange___ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(131u); +x_1 = lean_unsigned_to_nat(130u); x_2 = lean_unsigned_to_nat(36u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -61944,7 +61243,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_initialize_declRang _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(132u); +x_1 = lean_unsigned_to_nat(131u); x_2 = lean_unsigned_to_nat(24u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -61956,7 +61255,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_initialize_declRang _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(132u); +x_1 = lean_unsigned_to_nat(131u); x_2 = lean_unsigned_to_nat(173u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -61984,7 +61283,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_initialize_declRang _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(132u); +x_1 = lean_unsigned_to_nat(131u); x_2 = lean_unsigned_to_nat(28u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -61996,7 +61295,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_initialize_declRang _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(132u); +x_1 = lean_unsigned_to_nat(131u); x_2 = lean_unsigned_to_nat(40u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -62855,7 +62154,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_builtin__initialize _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(133u); +x_1 = lean_unsigned_to_nat(132u); x_2 = lean_unsigned_to_nat(24u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -62867,7 +62166,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_builtin__initialize _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(133u); +x_1 = lean_unsigned_to_nat(132u); x_2 = lean_unsigned_to_nat(189u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -62895,7 +62194,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_builtin__initialize _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(133u); +x_1 = lean_unsigned_to_nat(132u); x_2 = lean_unsigned_to_nat(28u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -62907,7 +62206,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_builtin__initialize _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(133u); +x_1 = lean_unsigned_to_nat(132u); x_2 = lean_unsigned_to_nat(48u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -63385,7 +62684,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_in_declRange___clos _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(135u); +x_1 = lean_unsigned_to_nat(134u); x_2 = lean_unsigned_to_nat(24u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -63397,7 +62696,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_in_declRange___clos _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(135u); +x_1 = lean_unsigned_to_nat(134u); x_2 = lean_unsigned_to_nat(87u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -63425,7 +62724,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_in_declRange___clos _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(135u); +x_1 = lean_unsigned_to_nat(134u); x_2 = lean_unsigned_to_nat(28u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -63437,7 +62736,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_in_declRange___clos _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(135u); +x_1 = lean_unsigned_to_nat(134u); x_2 = lean_unsigned_to_nat(32u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -64049,7 +63348,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_genInjectiveTheorem _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(140u); +x_1 = lean_unsigned_to_nat(139u); x_2 = lean_unsigned_to_nat(24u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -64061,7 +63360,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_genInjectiveTheorem _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(140u); +x_1 = lean_unsigned_to_nat(139u); x_2 = lean_unsigned_to_nat(102u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -64089,7 +63388,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_genInjectiveTheorem _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(140u); +x_1 = lean_unsigned_to_nat(139u); x_2 = lean_unsigned_to_nat(28u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -64101,7 +63400,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Command_genInjectiveTheorem _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(140u); +x_1 = lean_unsigned_to_nat(139u); x_2 = lean_unsigned_to_nat(48u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -64381,7 +63680,7 @@ x_1 = l_Lean_Parser_Command_ctor___closed__2; return x_1; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__1() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -64391,7 +63690,7 @@ x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__2() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__2() { _start: { lean_object* x_1; lean_object* x_2; @@ -64401,7 +63700,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__3() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__3() { _start: { lean_object* x_1; @@ -64409,7 +63708,7 @@ x_1 = l_Lean_Parser_parserAliasesRef; return x_1; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__4() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__4() { _start: { lean_object* x_1; @@ -64417,17 +63716,17 @@ x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Command_declModifiersF_formatter) return x_1; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__5() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__5() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__4; +x_1 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__4; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__6() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__6() { _start: { lean_object* x_1; @@ -64435,7 +63734,7 @@ x_1 = l_Lean_PrettyPrinter_Formatter_formatterAliasesRef; return x_1; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__7() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__7() { _start: { lean_object* x_1; @@ -64443,17 +63742,17 @@ x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Command_declModifiersF_parenthesi return x_1; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__8() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__8() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__7; +x_1 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__7; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__9() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__9() { _start: { lean_object* x_1; @@ -64461,7 +63760,7 @@ x_1 = l_Lean_PrettyPrinter_Parenthesizer_parenthesizerAliasesRef; return x_1; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__10() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__10() { _start: { lean_object* x_1; @@ -64469,17 +63768,17 @@ x_1 = lean_mk_string_from_bytes("nestedDeclModifiers", 19); return x_1; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__11() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__11() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__10; +x_2 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__10; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__12() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__12() { _start: { lean_object* x_1; lean_object* x_2; @@ -64489,7 +63788,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__13() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__13() { _start: { lean_object* x_1; @@ -64497,17 +63796,17 @@ x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Command_declModifiersT_formatter) return x_1; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__14() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__14() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__13; +x_1 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__13; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__15() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__15() { _start: { lean_object* x_1; @@ -64515,17 +63814,17 @@ x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Command_declModifiersT_parenthesi return x_1; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__16() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__16() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__15; +x_1 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__15; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__17() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__17() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -64535,7 +63834,7 @@ x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__18() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__18() { _start: { lean_object* x_1; lean_object* x_2; @@ -64545,7 +63844,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__19() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__19() { _start: { lean_object* x_1; lean_object* x_2; @@ -64555,7 +63854,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__20() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__20() { _start: { lean_object* x_1; lean_object* x_2; @@ -64565,7 +63864,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__21() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__21() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -64575,7 +63874,7 @@ x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__22() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__22() { _start: { lean_object* x_1; lean_object* x_2; @@ -64585,7 +63884,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__23() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__23() { _start: { lean_object* x_1; lean_object* x_2; @@ -64595,7 +63894,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__24() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__24() { _start: { lean_object* x_1; lean_object* x_2; @@ -64605,7 +63904,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__25() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__25() { _start: { lean_object* x_1; @@ -64613,17 +63912,17 @@ x_1 = lean_mk_string_from_bytes("declVal", 7); return x_1; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__26() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__26() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__25; +x_2 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__25; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__27() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__27() { _start: { lean_object* x_1; lean_object* x_2; @@ -64633,7 +63932,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__28() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__28() { _start: { lean_object* x_1; lean_object* x_2; @@ -64643,7 +63942,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__29() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__29() { _start: { lean_object* x_1; lean_object* x_2; @@ -64653,7 +63952,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__30() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__30() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -64663,7 +63962,7 @@ x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__31() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__31() { _start: { lean_object* x_1; lean_object* x_2; @@ -64673,7 +63972,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__32() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__32() { _start: { lean_object* x_1; lean_object* x_2; @@ -64683,7 +63982,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__33() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__33() { _start: { lean_object* x_1; lean_object* x_2; @@ -64693,7 +63992,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__34() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__34() { _start: { lean_object* x_1; @@ -64701,17 +64000,17 @@ x_1 = lean_mk_string_from_bytes("openDecl", 8); return x_1; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__35() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__35() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__34; +x_2 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__34; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__36() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__36() { _start: { lean_object* x_1; lean_object* x_2; @@ -64721,7 +64020,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__37() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__37() { _start: { lean_object* x_1; lean_object* x_2; @@ -64731,7 +64030,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__38() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__38() { _start: { lean_object* x_1; lean_object* x_2; @@ -64741,13 +64040,13 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457_(lean_object* x_1) { +LEAN_EXPORT lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_2 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__3; -x_3 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__1; -x_4 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__2; +x_2 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__3; +x_3 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__1; +x_4 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__2; x_5 = l_Lean_Parser_registerAliasCore___rarg(x_2, x_3, x_4, x_1); if (lean_obj_tag(x_5) == 0) { @@ -64755,8 +64054,8 @@ lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; x_6 = lean_ctor_get(x_5, 1); lean_inc(x_6); lean_dec(x_5); -x_7 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__6; -x_8 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__5; +x_7 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__6; +x_8 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__5; x_9 = l_Lean_Parser_registerAliasCore___rarg(x_7, x_3, x_8, x_6); if (lean_obj_tag(x_9) == 0) { @@ -64764,8 +64063,8 @@ lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; x_10 = lean_ctor_get(x_9, 1); lean_inc(x_10); lean_dec(x_9); -x_11 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__9; -x_12 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__8; +x_11 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__9; +x_12 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__8; x_13 = l_Lean_Parser_registerAliasCore___rarg(x_11, x_3, x_12, x_10); if (lean_obj_tag(x_13) == 0) { @@ -64773,8 +64072,8 @@ lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; x_14 = lean_ctor_get(x_13, 1); lean_inc(x_14); lean_dec(x_13); -x_15 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__11; -x_16 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__12; +x_15 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__11; +x_16 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__12; x_17 = l_Lean_Parser_registerAliasCore___rarg(x_2, x_15, x_16, x_14); if (lean_obj_tag(x_17) == 0) { @@ -64782,7 +64081,7 @@ lean_object* x_18; lean_object* x_19; lean_object* x_20; x_18 = lean_ctor_get(x_17, 1); lean_inc(x_18); lean_dec(x_17); -x_19 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__14; +x_19 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__14; x_20 = l_Lean_Parser_registerAliasCore___rarg(x_7, x_15, x_19, x_18); if (lean_obj_tag(x_20) == 0) { @@ -64790,7 +64089,7 @@ lean_object* x_21; lean_object* x_22; lean_object* x_23; x_21 = lean_ctor_get(x_20, 1); lean_inc(x_21); lean_dec(x_20); -x_22 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__16; +x_22 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__16; x_23 = l_Lean_Parser_registerAliasCore___rarg(x_11, x_15, x_22, x_21); if (lean_obj_tag(x_23) == 0) { @@ -64798,8 +64097,8 @@ lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; x_24 = lean_ctor_get(x_23, 1); lean_inc(x_24); lean_dec(x_23); -x_25 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__17; -x_26 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__18; +x_25 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__17; +x_26 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__18; x_27 = l_Lean_Parser_registerAliasCore___rarg(x_2, x_25, x_26, x_24); if (lean_obj_tag(x_27) == 0) { @@ -64807,7 +64106,7 @@ lean_object* x_28; lean_object* x_29; lean_object* x_30; x_28 = lean_ctor_get(x_27, 1); lean_inc(x_28); lean_dec(x_27); -x_29 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__19; +x_29 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__19; x_30 = l_Lean_Parser_registerAliasCore___rarg(x_7, x_25, x_29, x_28); if (lean_obj_tag(x_30) == 0) { @@ -64815,7 +64114,7 @@ lean_object* x_31; lean_object* x_32; lean_object* x_33; x_31 = lean_ctor_get(x_30, 1); lean_inc(x_31); lean_dec(x_30); -x_32 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__20; +x_32 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__20; x_33 = l_Lean_Parser_registerAliasCore___rarg(x_11, x_25, x_32, x_31); if (lean_obj_tag(x_33) == 0) { @@ -64823,8 +64122,8 @@ lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; x_34 = lean_ctor_get(x_33, 1); lean_inc(x_34); lean_dec(x_33); -x_35 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__21; -x_36 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__22; +x_35 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__21; +x_36 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__22; x_37 = l_Lean_Parser_registerAliasCore___rarg(x_2, x_35, x_36, x_34); if (lean_obj_tag(x_37) == 0) { @@ -64832,7 +64131,7 @@ lean_object* x_38; lean_object* x_39; lean_object* x_40; x_38 = lean_ctor_get(x_37, 1); lean_inc(x_38); lean_dec(x_37); -x_39 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__23; +x_39 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__23; x_40 = l_Lean_Parser_registerAliasCore___rarg(x_7, x_35, x_39, x_38); if (lean_obj_tag(x_40) == 0) { @@ -64840,7 +64139,7 @@ lean_object* x_41; lean_object* x_42; lean_object* x_43; x_41 = lean_ctor_get(x_40, 1); lean_inc(x_41); lean_dec(x_40); -x_42 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__24; +x_42 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__24; x_43 = l_Lean_Parser_registerAliasCore___rarg(x_11, x_35, x_42, x_41); if (lean_obj_tag(x_43) == 0) { @@ -64848,8 +64147,8 @@ lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; x_44 = lean_ctor_get(x_43, 1); lean_inc(x_44); lean_dec(x_43); -x_45 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__26; -x_46 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__27; +x_45 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__26; +x_46 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__27; x_47 = l_Lean_Parser_registerAliasCore___rarg(x_2, x_45, x_46, x_44); if (lean_obj_tag(x_47) == 0) { @@ -64857,7 +64156,7 @@ lean_object* x_48; lean_object* x_49; lean_object* x_50; x_48 = lean_ctor_get(x_47, 1); lean_inc(x_48); lean_dec(x_47); -x_49 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__28; +x_49 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__28; x_50 = l_Lean_Parser_registerAliasCore___rarg(x_7, x_45, x_49, x_48); if (lean_obj_tag(x_50) == 0) { @@ -64865,7 +64164,7 @@ lean_object* x_51; lean_object* x_52; lean_object* x_53; x_51 = lean_ctor_get(x_50, 1); lean_inc(x_51); lean_dec(x_50); -x_52 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__29; +x_52 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__29; x_53 = l_Lean_Parser_registerAliasCore___rarg(x_11, x_45, x_52, x_51); if (lean_obj_tag(x_53) == 0) { @@ -64873,8 +64172,8 @@ lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; x_54 = lean_ctor_get(x_53, 1); lean_inc(x_54); lean_dec(x_53); -x_55 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__30; -x_56 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__31; +x_55 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__30; +x_56 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__31; x_57 = l_Lean_Parser_registerAliasCore___rarg(x_2, x_55, x_56, x_54); if (lean_obj_tag(x_57) == 0) { @@ -64882,7 +64181,7 @@ lean_object* x_58; lean_object* x_59; lean_object* x_60; x_58 = lean_ctor_get(x_57, 1); lean_inc(x_58); lean_dec(x_57); -x_59 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__32; +x_59 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__32; x_60 = l_Lean_Parser_registerAliasCore___rarg(x_7, x_55, x_59, x_58); if (lean_obj_tag(x_60) == 0) { @@ -64890,7 +64189,7 @@ lean_object* x_61; lean_object* x_62; lean_object* x_63; x_61 = lean_ctor_get(x_60, 1); lean_inc(x_61); lean_dec(x_60); -x_62 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__33; +x_62 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__33; x_63 = l_Lean_Parser_registerAliasCore___rarg(x_11, x_55, x_62, x_61); if (lean_obj_tag(x_63) == 0) { @@ -64898,8 +64197,8 @@ lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; x_64 = lean_ctor_get(x_63, 1); lean_inc(x_64); lean_dec(x_63); -x_65 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__35; -x_66 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__36; +x_65 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__35; +x_66 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__36; x_67 = l_Lean_Parser_registerAliasCore___rarg(x_2, x_65, x_66, x_64); if (lean_obj_tag(x_67) == 0) { @@ -64907,7 +64206,7 @@ lean_object* x_68; lean_object* x_69; lean_object* x_70; x_68 = lean_ctor_get(x_67, 1); lean_inc(x_68); lean_dec(x_67); -x_69 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__37; +x_69 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__37; x_70 = l_Lean_Parser_registerAliasCore___rarg(x_7, x_65, x_69, x_68); if (lean_obj_tag(x_70) == 0) { @@ -64915,7 +64214,7 @@ lean_object* x_71; lean_object* x_72; lean_object* x_73; x_71 = lean_ctor_get(x_70, 1); lean_inc(x_71); lean_dec(x_70); -x_72 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__38; +x_72 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__38; x_73 = l_Lean_Parser_registerAliasCore___rarg(x_11, x_65, x_72, x_71); return x_73; } @@ -65810,7 +65109,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Term_open_declRange___close _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(157u); +x_1 = lean_unsigned_to_nat(156u); x_2 = lean_unsigned_to_nat(21u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -65822,7 +65121,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Term_open_declRange___close _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(157u); +x_1 = lean_unsigned_to_nat(156u); x_2 = lean_unsigned_to_nat(125u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -65850,7 +65149,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Term_open_declRange___close _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(157u); +x_1 = lean_unsigned_to_nat(156u); x_2 = lean_unsigned_to_nat(25u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -65862,7 +65161,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Term_open_declRange___close _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(157u); +x_1 = lean_unsigned_to_nat(156u); x_2 = lean_unsigned_to_nat(31u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -66620,7 +65919,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Term_set__option_declRange_ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(158u); +x_1 = lean_unsigned_to_nat(157u); x_2 = lean_unsigned_to_nat(21u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -66632,7 +65931,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Term_set__option_declRange_ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(158u); +x_1 = lean_unsigned_to_nat(157u); x_2 = lean_unsigned_to_nat(145u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -66660,7 +65959,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Term_set__option_declRange_ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(158u); +x_1 = lean_unsigned_to_nat(157u); x_2 = lean_unsigned_to_nat(25u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -66672,7 +65971,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Term_set__option_declRange_ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(158u); +x_1 = lean_unsigned_to_nat(157u); x_2 = lean_unsigned_to_nat(37u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -67412,7 +66711,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Tactic_open_declRange___clo _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(162u); +x_1 = lean_unsigned_to_nat(161u); x_2 = lean_unsigned_to_nat(23u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -67424,7 +66723,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Tactic_open_declRange___clo _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(162u); +x_1 = lean_unsigned_to_nat(161u); x_2 = lean_unsigned_to_nat(126u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -67452,7 +66751,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Tactic_open_declRange___clo _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(162u); +x_1 = lean_unsigned_to_nat(161u); x_2 = lean_unsigned_to_nat(27u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -67464,7 +66763,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Tactic_open_declRange___clo _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(162u); +x_1 = lean_unsigned_to_nat(161u); x_2 = lean_unsigned_to_nat(33u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -68190,7 +67489,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Tactic_set__option_declRang _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(163u); +x_1 = lean_unsigned_to_nat(162u); x_2 = lean_unsigned_to_nat(23u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -68202,7 +67501,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Tactic_set__option_declRang _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(163u); +x_1 = lean_unsigned_to_nat(162u); x_2 = lean_unsigned_to_nat(146u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -68230,7 +67529,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Tactic_set__option_declRang _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(163u); +x_1 = lean_unsigned_to_nat(162u); x_2 = lean_unsigned_to_nat(27u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -68242,7 +67541,7 @@ static lean_object* _init_l___regBuiltin_Lean_Parser_Tactic_set__option_declRang _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(163u); +x_1 = lean_unsigned_to_nat(162u); x_2 = lean_unsigned_to_nat(39u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -70271,60 +69570,6 @@ l_Lean_Parser_Command_theorem___closed__11 = _init_l_Lean_Parser_Command_theorem lean_mark_persistent(l_Lean_Parser_Command_theorem___closed__11); l_Lean_Parser_Command_theorem = _init_l_Lean_Parser_Command_theorem(); lean_mark_persistent(l_Lean_Parser_Command_theorem); -l_Lean_Parser_Command_constant___elambda__1___closed__1 = _init_l_Lean_Parser_Command_constant___elambda__1___closed__1(); -lean_mark_persistent(l_Lean_Parser_Command_constant___elambda__1___closed__1); -l_Lean_Parser_Command_constant___elambda__1___closed__2 = _init_l_Lean_Parser_Command_constant___elambda__1___closed__2(); -lean_mark_persistent(l_Lean_Parser_Command_constant___elambda__1___closed__2); -l_Lean_Parser_Command_constant___elambda__1___closed__3 = _init_l_Lean_Parser_Command_constant___elambda__1___closed__3(); -lean_mark_persistent(l_Lean_Parser_Command_constant___elambda__1___closed__3); -l_Lean_Parser_Command_constant___elambda__1___closed__4 = _init_l_Lean_Parser_Command_constant___elambda__1___closed__4(); -lean_mark_persistent(l_Lean_Parser_Command_constant___elambda__1___closed__4); -l_Lean_Parser_Command_constant___elambda__1___closed__5 = _init_l_Lean_Parser_Command_constant___elambda__1___closed__5(); -lean_mark_persistent(l_Lean_Parser_Command_constant___elambda__1___closed__5); -l_Lean_Parser_Command_constant___elambda__1___closed__6 = _init_l_Lean_Parser_Command_constant___elambda__1___closed__6(); -lean_mark_persistent(l_Lean_Parser_Command_constant___elambda__1___closed__6); -l_Lean_Parser_Command_constant___elambda__1___closed__7 = _init_l_Lean_Parser_Command_constant___elambda__1___closed__7(); -lean_mark_persistent(l_Lean_Parser_Command_constant___elambda__1___closed__7); -l_Lean_Parser_Command_constant___elambda__1___closed__8 = _init_l_Lean_Parser_Command_constant___elambda__1___closed__8(); -lean_mark_persistent(l_Lean_Parser_Command_constant___elambda__1___closed__8); -l_Lean_Parser_Command_constant___elambda__1___closed__9 = _init_l_Lean_Parser_Command_constant___elambda__1___closed__9(); -lean_mark_persistent(l_Lean_Parser_Command_constant___elambda__1___closed__9); -l_Lean_Parser_Command_constant___elambda__1___closed__10 = _init_l_Lean_Parser_Command_constant___elambda__1___closed__10(); -lean_mark_persistent(l_Lean_Parser_Command_constant___elambda__1___closed__10); -l_Lean_Parser_Command_constant___elambda__1___closed__11 = _init_l_Lean_Parser_Command_constant___elambda__1___closed__11(); -lean_mark_persistent(l_Lean_Parser_Command_constant___elambda__1___closed__11); -l_Lean_Parser_Command_constant___elambda__1___closed__12 = _init_l_Lean_Parser_Command_constant___elambda__1___closed__12(); -lean_mark_persistent(l_Lean_Parser_Command_constant___elambda__1___closed__12); -l_Lean_Parser_Command_constant___elambda__1___closed__13 = _init_l_Lean_Parser_Command_constant___elambda__1___closed__13(); -lean_mark_persistent(l_Lean_Parser_Command_constant___elambda__1___closed__13); -l_Lean_Parser_Command_constant___elambda__1___closed__14 = _init_l_Lean_Parser_Command_constant___elambda__1___closed__14(); -lean_mark_persistent(l_Lean_Parser_Command_constant___elambda__1___closed__14); -l_Lean_Parser_Command_constant___elambda__1___closed__15 = _init_l_Lean_Parser_Command_constant___elambda__1___closed__15(); -lean_mark_persistent(l_Lean_Parser_Command_constant___elambda__1___closed__15); -l_Lean_Parser_Command_constant___elambda__1___closed__16 = _init_l_Lean_Parser_Command_constant___elambda__1___closed__16(); -lean_mark_persistent(l_Lean_Parser_Command_constant___elambda__1___closed__16); -l_Lean_Parser_Command_constant___closed__1 = _init_l_Lean_Parser_Command_constant___closed__1(); -lean_mark_persistent(l_Lean_Parser_Command_constant___closed__1); -l_Lean_Parser_Command_constant___closed__2 = _init_l_Lean_Parser_Command_constant___closed__2(); -lean_mark_persistent(l_Lean_Parser_Command_constant___closed__2); -l_Lean_Parser_Command_constant___closed__3 = _init_l_Lean_Parser_Command_constant___closed__3(); -lean_mark_persistent(l_Lean_Parser_Command_constant___closed__3); -l_Lean_Parser_Command_constant___closed__4 = _init_l_Lean_Parser_Command_constant___closed__4(); -lean_mark_persistent(l_Lean_Parser_Command_constant___closed__4); -l_Lean_Parser_Command_constant___closed__5 = _init_l_Lean_Parser_Command_constant___closed__5(); -lean_mark_persistent(l_Lean_Parser_Command_constant___closed__5); -l_Lean_Parser_Command_constant___closed__6 = _init_l_Lean_Parser_Command_constant___closed__6(); -lean_mark_persistent(l_Lean_Parser_Command_constant___closed__6); -l_Lean_Parser_Command_constant___closed__7 = _init_l_Lean_Parser_Command_constant___closed__7(); -lean_mark_persistent(l_Lean_Parser_Command_constant___closed__7); -l_Lean_Parser_Command_constant___closed__8 = _init_l_Lean_Parser_Command_constant___closed__8(); -lean_mark_persistent(l_Lean_Parser_Command_constant___closed__8); -l_Lean_Parser_Command_constant___closed__9 = _init_l_Lean_Parser_Command_constant___closed__9(); -lean_mark_persistent(l_Lean_Parser_Command_constant___closed__9); -l_Lean_Parser_Command_constant___closed__10 = _init_l_Lean_Parser_Command_constant___closed__10(); -lean_mark_persistent(l_Lean_Parser_Command_constant___closed__10); -l_Lean_Parser_Command_constant = _init_l_Lean_Parser_Command_constant(); -lean_mark_persistent(l_Lean_Parser_Command_constant); l_Lean_Parser_Command_opaque___elambda__1___closed__1 = _init_l_Lean_Parser_Command_opaque___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Command_opaque___elambda__1___closed__1); l_Lean_Parser_Command_opaque___elambda__1___closed__2 = _init_l_Lean_Parser_Command_opaque___elambda__1___closed__2(); @@ -70351,6 +69596,12 @@ l_Lean_Parser_Command_opaque___elambda__1___closed__12 = _init_l_Lean_Parser_Com lean_mark_persistent(l_Lean_Parser_Command_opaque___elambda__1___closed__12); l_Lean_Parser_Command_opaque___elambda__1___closed__13 = _init_l_Lean_Parser_Command_opaque___elambda__1___closed__13(); lean_mark_persistent(l_Lean_Parser_Command_opaque___elambda__1___closed__13); +l_Lean_Parser_Command_opaque___elambda__1___closed__14 = _init_l_Lean_Parser_Command_opaque___elambda__1___closed__14(); +lean_mark_persistent(l_Lean_Parser_Command_opaque___elambda__1___closed__14); +l_Lean_Parser_Command_opaque___elambda__1___closed__15 = _init_l_Lean_Parser_Command_opaque___elambda__1___closed__15(); +lean_mark_persistent(l_Lean_Parser_Command_opaque___elambda__1___closed__15); +l_Lean_Parser_Command_opaque___elambda__1___closed__16 = _init_l_Lean_Parser_Command_opaque___elambda__1___closed__16(); +lean_mark_persistent(l_Lean_Parser_Command_opaque___elambda__1___closed__16); l_Lean_Parser_Command_opaque___closed__1 = _init_l_Lean_Parser_Command_opaque___closed__1(); lean_mark_persistent(l_Lean_Parser_Command_opaque___closed__1); l_Lean_Parser_Command_opaque___closed__2 = _init_l_Lean_Parser_Command_opaque___closed__2(); @@ -70367,6 +69618,10 @@ l_Lean_Parser_Command_opaque___closed__7 = _init_l_Lean_Parser_Command_opaque___ lean_mark_persistent(l_Lean_Parser_Command_opaque___closed__7); l_Lean_Parser_Command_opaque___closed__8 = _init_l_Lean_Parser_Command_opaque___closed__8(); lean_mark_persistent(l_Lean_Parser_Command_opaque___closed__8); +l_Lean_Parser_Command_opaque___closed__9 = _init_l_Lean_Parser_Command_opaque___closed__9(); +lean_mark_persistent(l_Lean_Parser_Command_opaque___closed__9); +l_Lean_Parser_Command_opaque___closed__10 = _init_l_Lean_Parser_Command_opaque___closed__10(); +lean_mark_persistent(l_Lean_Parser_Command_opaque___closed__10); l_Lean_Parser_Command_opaque = _init_l_Lean_Parser_Command_opaque(); lean_mark_persistent(l_Lean_Parser_Command_opaque); l_Lean_Parser_Command_instance___elambda__1___closed__1 = _init_l_Lean_Parser_Command_instance___elambda__1___closed__1(); @@ -71349,8 +70604,6 @@ l_Lean_Parser_Command_declaration___elambda__1___closed__16 = _init_l_Lean_Parse lean_mark_persistent(l_Lean_Parser_Command_declaration___elambda__1___closed__16); l_Lean_Parser_Command_declaration___elambda__1___closed__17 = _init_l_Lean_Parser_Command_declaration___elambda__1___closed__17(); lean_mark_persistent(l_Lean_Parser_Command_declaration___elambda__1___closed__17); -l_Lean_Parser_Command_declaration___elambda__1___closed__18 = _init_l_Lean_Parser_Command_declaration___elambda__1___closed__18(); -lean_mark_persistent(l_Lean_Parser_Command_declaration___elambda__1___closed__18); l_Lean_Parser_Command_declaration___closed__1 = _init_l_Lean_Parser_Command_declaration___closed__1(); lean_mark_persistent(l_Lean_Parser_Command_declaration___closed__1); l_Lean_Parser_Command_declaration___closed__2 = _init_l_Lean_Parser_Command_declaration___closed__2(); @@ -71385,8 +70638,6 @@ l_Lean_Parser_Command_declaration___closed__16 = _init_l_Lean_Parser_Command_dec lean_mark_persistent(l_Lean_Parser_Command_declaration___closed__16); l_Lean_Parser_Command_declaration___closed__17 = _init_l_Lean_Parser_Command_declaration___closed__17(); lean_mark_persistent(l_Lean_Parser_Command_declaration___closed__17); -l_Lean_Parser_Command_declaration___closed__18 = _init_l_Lean_Parser_Command_declaration___closed__18(); -lean_mark_persistent(l_Lean_Parser_Command_declaration___closed__18); l_Lean_Parser_Command_declaration = _init_l_Lean_Parser_Command_declaration(); lean_mark_persistent(l_Lean_Parser_Command_declaration); res = l___regBuiltin_Lean_Parser_Command_declaration(lean_io_mk_world()); @@ -71875,27 +71126,6 @@ lean_mark_persistent(l___regBuiltin_Lean_Parser_Command_theorem_formatter___clos res = l___regBuiltin_Lean_Parser_Command_theorem_formatter(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l_Lean_Parser_Command_constant_formatter___closed__1 = _init_l_Lean_Parser_Command_constant_formatter___closed__1(); -lean_mark_persistent(l_Lean_Parser_Command_constant_formatter___closed__1); -l_Lean_Parser_Command_constant_formatter___closed__2 = _init_l_Lean_Parser_Command_constant_formatter___closed__2(); -lean_mark_persistent(l_Lean_Parser_Command_constant_formatter___closed__2); -l_Lean_Parser_Command_constant_formatter___closed__3 = _init_l_Lean_Parser_Command_constant_formatter___closed__3(); -lean_mark_persistent(l_Lean_Parser_Command_constant_formatter___closed__3); -l_Lean_Parser_Command_constant_formatter___closed__4 = _init_l_Lean_Parser_Command_constant_formatter___closed__4(); -lean_mark_persistent(l_Lean_Parser_Command_constant_formatter___closed__4); -l_Lean_Parser_Command_constant_formatter___closed__5 = _init_l_Lean_Parser_Command_constant_formatter___closed__5(); -lean_mark_persistent(l_Lean_Parser_Command_constant_formatter___closed__5); -l_Lean_Parser_Command_constant_formatter___closed__6 = _init_l_Lean_Parser_Command_constant_formatter___closed__6(); -lean_mark_persistent(l_Lean_Parser_Command_constant_formatter___closed__6); -l_Lean_Parser_Command_constant_formatter___closed__7 = _init_l_Lean_Parser_Command_constant_formatter___closed__7(); -lean_mark_persistent(l_Lean_Parser_Command_constant_formatter___closed__7); -l___regBuiltin_Lean_Parser_Command_constant_formatter___closed__1 = _init_l___regBuiltin_Lean_Parser_Command_constant_formatter___closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Parser_Command_constant_formatter___closed__1); -l___regBuiltin_Lean_Parser_Command_constant_formatter___closed__2 = _init_l___regBuiltin_Lean_Parser_Command_constant_formatter___closed__2(); -lean_mark_persistent(l___regBuiltin_Lean_Parser_Command_constant_formatter___closed__2); -res = l___regBuiltin_Lean_Parser_Command_constant_formatter(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); l_Lean_Parser_Command_opaque_formatter___closed__1 = _init_l_Lean_Parser_Command_opaque_formatter___closed__1(); lean_mark_persistent(l_Lean_Parser_Command_opaque_formatter___closed__1); l_Lean_Parser_Command_opaque_formatter___closed__2 = _init_l_Lean_Parser_Command_opaque_formatter___closed__2(); @@ -71904,6 +71134,12 @@ l_Lean_Parser_Command_opaque_formatter___closed__3 = _init_l_Lean_Parser_Command lean_mark_persistent(l_Lean_Parser_Command_opaque_formatter___closed__3); l_Lean_Parser_Command_opaque_formatter___closed__4 = _init_l_Lean_Parser_Command_opaque_formatter___closed__4(); lean_mark_persistent(l_Lean_Parser_Command_opaque_formatter___closed__4); +l_Lean_Parser_Command_opaque_formatter___closed__5 = _init_l_Lean_Parser_Command_opaque_formatter___closed__5(); +lean_mark_persistent(l_Lean_Parser_Command_opaque_formatter___closed__5); +l_Lean_Parser_Command_opaque_formatter___closed__6 = _init_l_Lean_Parser_Command_opaque_formatter___closed__6(); +lean_mark_persistent(l_Lean_Parser_Command_opaque_formatter___closed__6); +l_Lean_Parser_Command_opaque_formatter___closed__7 = _init_l_Lean_Parser_Command_opaque_formatter___closed__7(); +lean_mark_persistent(l_Lean_Parser_Command_opaque_formatter___closed__7); l___regBuiltin_Lean_Parser_Command_opaque_formatter___closed__1 = _init_l___regBuiltin_Lean_Parser_Command_opaque_formatter___closed__1(); lean_mark_persistent(l___regBuiltin_Lean_Parser_Command_opaque_formatter___closed__1); l___regBuiltin_Lean_Parser_Command_opaque_formatter___closed__2 = _init_l___regBuiltin_Lean_Parser_Command_opaque_formatter___closed__2(); @@ -72369,8 +71605,6 @@ l_Lean_Parser_Command_declaration_formatter___closed__12 = _init_l_Lean_Parser_C lean_mark_persistent(l_Lean_Parser_Command_declaration_formatter___closed__12); l_Lean_Parser_Command_declaration_formatter___closed__13 = _init_l_Lean_Parser_Command_declaration_formatter___closed__13(); lean_mark_persistent(l_Lean_Parser_Command_declaration_formatter___closed__13); -l_Lean_Parser_Command_declaration_formatter___closed__14 = _init_l_Lean_Parser_Command_declaration_formatter___closed__14(); -lean_mark_persistent(l_Lean_Parser_Command_declaration_formatter___closed__14); l___regBuiltin_Lean_Parser_Command_declaration_formatter___closed__1 = _init_l___regBuiltin_Lean_Parser_Command_declaration_formatter___closed__1(); lean_mark_persistent(l___regBuiltin_Lean_Parser_Command_declaration_formatter___closed__1); l___regBuiltin_Lean_Parser_Command_declaration_formatter___closed__2 = _init_l___regBuiltin_Lean_Parser_Command_declaration_formatter___closed__2(); @@ -72844,27 +72078,6 @@ lean_mark_persistent(l___regBuiltin_Lean_Parser_Command_theorem_parenthesizer___ res = l___regBuiltin_Lean_Parser_Command_theorem_parenthesizer(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l_Lean_Parser_Command_constant_parenthesizer___closed__1 = _init_l_Lean_Parser_Command_constant_parenthesizer___closed__1(); -lean_mark_persistent(l_Lean_Parser_Command_constant_parenthesizer___closed__1); -l_Lean_Parser_Command_constant_parenthesizer___closed__2 = _init_l_Lean_Parser_Command_constant_parenthesizer___closed__2(); -lean_mark_persistent(l_Lean_Parser_Command_constant_parenthesizer___closed__2); -l_Lean_Parser_Command_constant_parenthesizer___closed__3 = _init_l_Lean_Parser_Command_constant_parenthesizer___closed__3(); -lean_mark_persistent(l_Lean_Parser_Command_constant_parenthesizer___closed__3); -l_Lean_Parser_Command_constant_parenthesizer___closed__4 = _init_l_Lean_Parser_Command_constant_parenthesizer___closed__4(); -lean_mark_persistent(l_Lean_Parser_Command_constant_parenthesizer___closed__4); -l_Lean_Parser_Command_constant_parenthesizer___closed__5 = _init_l_Lean_Parser_Command_constant_parenthesizer___closed__5(); -lean_mark_persistent(l_Lean_Parser_Command_constant_parenthesizer___closed__5); -l_Lean_Parser_Command_constant_parenthesizer___closed__6 = _init_l_Lean_Parser_Command_constant_parenthesizer___closed__6(); -lean_mark_persistent(l_Lean_Parser_Command_constant_parenthesizer___closed__6); -l_Lean_Parser_Command_constant_parenthesizer___closed__7 = _init_l_Lean_Parser_Command_constant_parenthesizer___closed__7(); -lean_mark_persistent(l_Lean_Parser_Command_constant_parenthesizer___closed__7); -l___regBuiltin_Lean_Parser_Command_constant_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Command_constant_parenthesizer___closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Parser_Command_constant_parenthesizer___closed__1); -l___regBuiltin_Lean_Parser_Command_constant_parenthesizer___closed__2 = _init_l___regBuiltin_Lean_Parser_Command_constant_parenthesizer___closed__2(); -lean_mark_persistent(l___regBuiltin_Lean_Parser_Command_constant_parenthesizer___closed__2); -res = l___regBuiltin_Lean_Parser_Command_constant_parenthesizer(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); l_Lean_Parser_Command_opaque_parenthesizer___closed__1 = _init_l_Lean_Parser_Command_opaque_parenthesizer___closed__1(); lean_mark_persistent(l_Lean_Parser_Command_opaque_parenthesizer___closed__1); l_Lean_Parser_Command_opaque_parenthesizer___closed__2 = _init_l_Lean_Parser_Command_opaque_parenthesizer___closed__2(); @@ -72873,6 +72086,12 @@ l_Lean_Parser_Command_opaque_parenthesizer___closed__3 = _init_l_Lean_Parser_Com lean_mark_persistent(l_Lean_Parser_Command_opaque_parenthesizer___closed__3); l_Lean_Parser_Command_opaque_parenthesizer___closed__4 = _init_l_Lean_Parser_Command_opaque_parenthesizer___closed__4(); lean_mark_persistent(l_Lean_Parser_Command_opaque_parenthesizer___closed__4); +l_Lean_Parser_Command_opaque_parenthesizer___closed__5 = _init_l_Lean_Parser_Command_opaque_parenthesizer___closed__5(); +lean_mark_persistent(l_Lean_Parser_Command_opaque_parenthesizer___closed__5); +l_Lean_Parser_Command_opaque_parenthesizer___closed__6 = _init_l_Lean_Parser_Command_opaque_parenthesizer___closed__6(); +lean_mark_persistent(l_Lean_Parser_Command_opaque_parenthesizer___closed__6); +l_Lean_Parser_Command_opaque_parenthesizer___closed__7 = _init_l_Lean_Parser_Command_opaque_parenthesizer___closed__7(); +lean_mark_persistent(l_Lean_Parser_Command_opaque_parenthesizer___closed__7); l___regBuiltin_Lean_Parser_Command_opaque_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Command_opaque_parenthesizer___closed__1(); lean_mark_persistent(l___regBuiltin_Lean_Parser_Command_opaque_parenthesizer___closed__1); l___regBuiltin_Lean_Parser_Command_opaque_parenthesizer___closed__2 = _init_l___regBuiltin_Lean_Parser_Command_opaque_parenthesizer___closed__2(); @@ -73338,8 +72557,6 @@ l_Lean_Parser_Command_declaration_parenthesizer___closed__12 = _init_l_Lean_Pars lean_mark_persistent(l_Lean_Parser_Command_declaration_parenthesizer___closed__12); l_Lean_Parser_Command_declaration_parenthesizer___closed__13 = _init_l_Lean_Parser_Command_declaration_parenthesizer___closed__13(); lean_mark_persistent(l_Lean_Parser_Command_declaration_parenthesizer___closed__13); -l_Lean_Parser_Command_declaration_parenthesizer___closed__14 = _init_l_Lean_Parser_Command_declaration_parenthesizer___closed__14(); -lean_mark_persistent(l_Lean_Parser_Command_declaration_parenthesizer___closed__14); l___regBuiltin_Lean_Parser_Command_declaration_parenthesizer___closed__1 = _init_l___regBuiltin_Lean_Parser_Command_declaration_parenthesizer___closed__1(); lean_mark_persistent(l___regBuiltin_Lean_Parser_Command_declaration_parenthesizer___closed__1); l___regBuiltin_Lean_Parser_Command_declaration_parenthesizer___closed__2 = _init_l___regBuiltin_Lean_Parser_Command_declaration_parenthesizer___closed__2(); @@ -76733,83 +75950,83 @@ l_Lean_Parser_Command_declModifiersF = _init_l_Lean_Parser_Command_declModifiers lean_mark_persistent(l_Lean_Parser_Command_declModifiersF); l_Lean_Parser_Command_declModifiersT = _init_l_Lean_Parser_Command_declModifiersT(); lean_mark_persistent(l_Lean_Parser_Command_declModifiersT); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__1 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__1(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__1); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__2 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__2(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__2); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__3 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__3(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__3); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__4 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__4(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__4); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__5 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__5(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__5); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__6 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__6(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__6); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__7 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__7(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__7); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__8 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__8(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__8); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__9 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__9(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__9); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__10 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__10(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__10); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__11 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__11(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__11); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__12 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__12(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__12); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__13 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__13(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__13); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__14 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__14(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__14); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__15 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__15(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__15); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__16 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__16(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__16); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__17 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__17(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__17); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__18 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__18(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__18); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__19 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__19(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__19); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__20 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__20(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__20); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__21 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__21(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__21); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__22 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__22(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__22); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__23 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__23(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__23); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__24 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__24(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__24); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__25 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__25(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__25); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__26 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__26(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__26); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__27 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__27(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__27); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__28 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__28(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__28); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__29 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__29(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__29); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__30 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__30(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__30); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__31 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__31(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__31); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__32 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__32(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__32); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__33 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__33(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__33); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__34 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__34(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__34); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__35 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__35(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__35); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__36 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__36(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__36); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__37 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__37(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__37); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__38 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__38(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457____closed__38); -res = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2457_(lean_io_mk_world()); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__1 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__1(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__1); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__2 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__2(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__2); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__3 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__3(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__3); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__4 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__4(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__4); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__5 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__5(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__5); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__6 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__6(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__6); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__7 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__7(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__7); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__8 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__8(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__8); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__9 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__9(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__9); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__10 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__10(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__10); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__11 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__11(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__11); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__12 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__12(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__12); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__13 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__13(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__13); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__14 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__14(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__14); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__15 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__15(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__15); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__16 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__16(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__16); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__17 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__17(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__17); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__18 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__18(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__18); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__19 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__19(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__19); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__20 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__20(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__20); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__21 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__21(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__21); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__22 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__22(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__22); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__23 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__23(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__23); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__24 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__24(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__24); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__25 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__25(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__25); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__26 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__26(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__26); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__27 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__27(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__27); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__28 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__28(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__28); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__29 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__29(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__29); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__30 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__30(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__30); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__31 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__31(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__31); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__32 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__32(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__32); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__33 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__33(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__33); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__34 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__34(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__34); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__35 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__35(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__35); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__36 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__36(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__36); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__37 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__37(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__37); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__38 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__38(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425____closed__38); +res = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_2425_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_Lean_Parser_Term_open___elambda__1___closed__1 = _init_l_Lean_Parser_Term_open___elambda__1___closed__1(); diff --git a/stage0/stdlib/Lean/Server/Rpc/Deriving.c b/stage0/stdlib/Lean/Server/Rpc/Deriving.c index 29bea2730e..3122b22488 100644 --- a/stage0/stdlib/Lean/Server/Rpc/Deriving.c +++ b/stage0/stdlib/Lean/Server/Rpc/Deriving.c @@ -2157,7 +2157,7 @@ static lean_object* _init_l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_Rp _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("constant", 8); +x_1 = lean_mk_string_from_bytes("opaque", 6); return x_1; } }