From ab262abdaa362b74bf4ec373aaa98d488b053ed1 Mon Sep 17 00:00:00 2001 From: Leonardo de Moura Date: Sun, 16 Oct 2022 14:41:30 -0700 Subject: [PATCH] chore: update stage0 --- stage0/src/Init/Prelude.lean | 46 +- stage0/src/Lean/Compiler/IR/CompilerM.lean | 48 +- stage0/src/Lean/Compiler/LCNF.lean | 4 +- stage0/src/Lean/Compiler/LCNF/CSE.lean | 4 +- stage0/src/Lean/Compiler/LCNF/Passes.lean | 6 +- stage0/src/Lean/Compiler/LCNF/Probing.lean | 50 +- .../src/Lean/Compiler/LCNF/ReduceArity.lean | 125 + stage0/src/Lean/Compiler/LCNF/ToLCNF.lean | 2 +- stage0/src/Lean/Elab/Quotation.lean | 27 +- stage0/src/Lean/Environment.lean | 1 + stage0/src/Lean/Meta/ExprDefEq.lean | 66 +- stage0/src/Lean/MetavarContext.lean | 1 + stage0/stdlib/Init/Meta.c | 1724 +- stage0/stdlib/Init/Prelude.c | 202 +- stage0/stdlib/Lean/Compiler/IR.c | 70 +- stage0/stdlib/Lean/Compiler/IR/Boxing.c | 18 +- stage0/stdlib/Lean/Compiler/IR/Checker.c | 16 +- stage0/stdlib/Lean/Compiler/IR/CompilerM.c | 2154 +- stage0/stdlib/Lean/Compiler/IR/RC.c | 15 +- stage0/stdlib/Lean/Compiler/LCNF.c | 10 +- stage0/stdlib/Lean/Compiler/LCNF/CSE.c | 56 +- stage0/stdlib/Lean/Compiler/LCNF/Main.c | 22 +- stage0/stdlib/Lean/Compiler/LCNF/Passes.c | 768 +- stage0/stdlib/Lean/Compiler/LCNF/Probing.c | 3596 ++- .../stdlib/Lean/Compiler/LCNF/ReduceArity.c | 2087 ++ .../Lean/Compiler/LCNF/Simp/InlineCandidate.c | 36 +- stage0/stdlib/Lean/Compiler/LCNF/SpecInfo.c | 6 +- stage0/stdlib/Lean/Compiler/LCNF/ToLCNF.c | 267 +- stage0/stdlib/Lean/Elab/App.c | 340 +- stage0/stdlib/Lean/Elab/Binders.c | 16 +- stage0/stdlib/Lean/Elab/Command.c | 28 +- stage0/stdlib/Lean/Elab/Deriving/Basic.c | 26 +- stage0/stdlib/Lean/Elab/Deriving/DecEq.c | 16 +- stage0/stdlib/Lean/Elab/Do.c | 6 +- stage0/stdlib/Lean/Elab/Extra.c | 6 +- stage0/stdlib/Lean/Elab/Inductive.c | 60 +- stage0/stdlib/Lean/Elab/Match.c | 52 +- stage0/stdlib/Lean/Elab/PreDefinition/Eqns.c | 42 +- stage0/stdlib/Lean/Elab/PreDefinition/Main.c | 6 +- .../Lean/Elab/PreDefinition/Structural/Main.c | 6 +- .../stdlib/Lean/Elab/PreDefinition/WF/Main.c | 6 +- stage0/stdlib/Lean/Elab/Quotation.c | 6639 +++-- stage0/stdlib/Lean/Elab/StructInst.c | 6 +- stage0/stdlib/Lean/Elab/Structure.c | 52 +- stage0/stdlib/Lean/Elab/Syntax.c | 16 +- stage0/stdlib/Lean/Elab/SyntheticMVars.c | 26 +- stage0/stdlib/Lean/Elab/Tactic/Basic.c | 22 +- stage0/stdlib/Lean/Elab/Tactic/Induction.c | 16 +- stage0/stdlib/Lean/Elab/Term.c | 54 +- stage0/stdlib/Lean/Meta/Basic.c | 18 +- stage0/stdlib/Lean/Meta/Check.c | 6 +- stage0/stdlib/Lean/Meta/ExprDefEq.c | 23196 +++++++--------- stage0/stdlib/Lean/Meta/GetConst.c | 6 +- stage0/stdlib/Lean/Meta/IndPredBelow.c | 6 +- stage0/stdlib/Lean/Meta/LevelDefEq.c | 8 +- stage0/stdlib/Lean/Meta/Match/Match.c | 182 +- stage0/stdlib/Lean/Meta/SynthInstance.c | 8 +- stage0/stdlib/Lean/Meta/Tactic/ElimInfo.c | 2 +- stage0/stdlib/Lean/Meta/Tactic/Simp/Rewrite.c | 2 +- stage0/stdlib/Lean/Meta/Tactic/Split.c | 6 +- stage0/stdlib/Lean/Meta/UnificationHint.c | 6 +- stage0/stdlib/Lean/Meta/WHNF.c | 8 +- stage0/stdlib/Lean/MetavarContext.c | 6 +- stage0/stdlib/Lean/Parser/Extra.c | 1212 +- .../Delaborator/TopDownAnalyze.c | 26 +- 65 files changed, 23465 insertions(+), 20101 deletions(-) create mode 100644 stage0/src/Lean/Compiler/LCNF/ReduceArity.lean create mode 100644 stage0/stdlib/Lean/Compiler/LCNF/ReduceArity.c diff --git a/stage0/src/Init/Prelude.lean b/stage0/src/Init/Prelude.lean index cd35b70356..0c45882ab5 100644 --- a/stage0/src/Init/Prelude.lean +++ b/stage0/src/Init/Prelude.lean @@ -2512,31 +2512,31 @@ def Array.mkArray1 {α : Type u} (a₁ : α) : Array α := /-- Create array `#[a₁, a₂]` -/ def Array.mkArray2 {α : Type u} (a₁ a₂ : α) : Array α := - ((mkEmpty 1).push a₁).push a₂ + ((mkEmpty 2).push a₁).push a₂ /-- Create array `#[a₁, a₂, a₃]` -/ def Array.mkArray3 {α : Type u} (a₁ a₂ a₃ : α) : Array α := - (((mkEmpty 1).push a₁).push a₂).push a₃ + (((mkEmpty 3).push a₁).push a₂).push a₃ /-- Create array `#[a₁, a₂, a₃, a₄]` -/ def Array.mkArray4 {α : Type u} (a₁ a₂ a₃ a₄ : α) : Array α := - ((((mkEmpty 1).push a₁).push a₂).push a₃).push a₄ + ((((mkEmpty 4).push a₁).push a₂).push a₃).push a₄ /-- Create array `#[a₁, a₂, a₃, a₄, a₅]` -/ def Array.mkArray5 {α : Type u} (a₁ a₂ a₃ a₄ a₅ : α) : Array α := - (((((mkEmpty 1).push a₁).push a₂).push a₃).push a₄).push a₅ + (((((mkEmpty 5).push a₁).push a₂).push a₃).push a₄).push a₅ /-- Create array `#[a₁, a₂, a₃, a₄, a₅, a₆]` -/ def Array.mkArray6 {α : Type u} (a₁ a₂ a₃ a₄ a₅ a₆ : α) : Array α := - ((((((mkEmpty 1).push a₁).push a₂).push a₃).push a₄).push a₅).push a₆ + ((((((mkEmpty 6).push a₁).push a₂).push a₃).push a₄).push a₅).push a₆ /-- Create array `#[a₁, a₂, a₃, a₄, a₅, a₆, a₇]` -/ def Array.mkArray7 {α : Type u} (a₁ a₂ a₃ a₄ a₅ a₆ a₇ : α) : Array α := - (((((((mkEmpty 1).push a₁).push a₂).push a₃).push a₄).push a₅).push a₆).push a₇ + (((((((mkEmpty 7).push a₁).push a₂).push a₃).push a₄).push a₅).push a₆).push a₇ /-- Create array `#[a₁, a₂, a₃, a₄, a₅, a₆, a₇, a₈]` -/ def Array.mkArray8 {α : Type u} (a₁ a₂ a₃ a₄ a₅ a₆ a₇ a₈ : α) : Array α := - ((((((((mkEmpty 1).push a₁).push a₂).push a₃).push a₄).push a₅).push a₆).push a₇).push a₈ + ((((((((mkEmpty 8).push a₁).push a₂).push a₃).push a₄).push a₅).push a₆).push a₇).push a₈ /-- Set an element in an array without bounds checks, using a `Fin` index. @@ -3577,6 +3577,38 @@ inductive Syntax where -/ | ident (info : SourceInfo) (rawVal : Substring) (val : Name) (preresolved : List Syntax.Preresolved) : Syntax +/-- Create syntax node with 1 child -/ +def Syntax.node1 (info : SourceInfo) (kind : SyntaxNodeKind) (a₁ : Syntax) : Syntax := + Syntax.node info kind (Array.mkArray1 a₁) + +/-- Create syntax node with 2 children -/ +def Syntax.node2 (info : SourceInfo) (kind : SyntaxNodeKind) (a₁ a₂ : Syntax) : Syntax := + Syntax.node info kind (Array.mkArray2 a₁ a₂) + +/-- Create syntax node with 3 children -/ +def Syntax.node3 (info : SourceInfo) (kind : SyntaxNodeKind) (a₁ a₂ a₃ : Syntax) : Syntax := + Syntax.node info kind (Array.mkArray3 a₁ a₂ a₃) + +/-- Create syntax node with 4 children -/ +def Syntax.node4 (info : SourceInfo) (kind : SyntaxNodeKind) (a₁ a₂ a₃ a₄ : Syntax) : Syntax := + Syntax.node info kind (Array.mkArray4 a₁ a₂ a₃ a₄) + +/-- Create syntax node with 5 children -/ +def Syntax.node5 (info : SourceInfo) (kind : SyntaxNodeKind) (a₁ a₂ a₃ a₄ a₅ : Syntax) : Syntax := + Syntax.node info kind (Array.mkArray5 a₁ a₂ a₃ a₄ a₅) + +/-- Create syntax node with 6 children -/ +def Syntax.node6 (info : SourceInfo) (kind : SyntaxNodeKind) (a₁ a₂ a₃ a₄ a₅ a₆ : Syntax) : Syntax := + Syntax.node info kind (Array.mkArray6 a₁ a₂ a₃ a₄ a₅ a₆) + +/-- Create syntax node with 7 children -/ +def Syntax.node7 (info : SourceInfo) (kind : SyntaxNodeKind) (a₁ a₂ a₃ a₄ a₅ a₆ a₇ : Syntax) : Syntax := + Syntax.node info kind (Array.mkArray7 a₁ a₂ a₃ a₄ a₅ a₆ a₇) + +/-- Create syntax node with 8 children -/ +def Syntax.node8 (info : SourceInfo) (kind : SyntaxNodeKind) (a₁ a₂ a₃ a₄ a₅ a₆ a₇ a₈ : Syntax) : Syntax := + Syntax.node info kind (Array.mkArray8 a₁ a₂ a₃ a₄ a₅ a₆ a₇ a₈) + /-- `SyntaxNodeKinds` is a set of `SyntaxNodeKind` (implemented as a list). -/ def SyntaxNodeKinds := List SyntaxNodeKind diff --git a/stage0/src/Lean/Compiler/IR/CompilerM.lean b/stage0/src/Lean/Compiler/IR/CompilerM.lean index 159ce7ff10..b104dbec08 100644 --- a/stage0/src/Lean/Compiler/IR/CompilerM.lean +++ b/stage0/src/Lean/Compiler/IR/CompilerM.lean @@ -69,34 +69,38 @@ private def logMessageIfAux {α : Type} [ToFormat α] (optName : Name) (a : α) @[inline] def modifyEnv (f : Environment → Environment) : CompilerM Unit := modify fun s => { s with env := f s.env } -abbrev DeclMap := SMap Name Decl +abbrev DeclMap := PHashMap Name Decl -/-- Create an array of decls to be saved on .olean file. - `decls` may contain duplicate entries, but we assume the one that occurs last is the most recent one. -/ -private def mkEntryArray (decls : List Decl) : Array Decl := - /- Remove duplicates by adding decls into a map -/ - let map : HashMap Name Decl := {} - let map := decls.foldl (init := map) fun map decl => map.insert decl.name decl - map.fold (fun a _ v => a.push v) #[] +private abbrev declLt (a b : Decl) := + Name.quickLt a.name b.name + +private abbrev sortDecls (decls : Array Decl) : Array Decl := + decls.qsort declLt + +private abbrev findAtSorted? (decls : Array Decl) (declName : Name) : Option Decl := + let tmpDecl := Decl.extern declName #[] default default + decls.binSearch tmpDecl declLt builtin_initialize declMapExt : SimplePersistentEnvExtension Decl DeclMap ← registerSimplePersistentEnvExtension { - addImportedFn := fun as => - let m : DeclMap := mkStateFromImportedEntries (fun s (d : Decl) => s.insert d.name d) {} as - m.switch, - addEntryFn := fun s d => s.insert d.name d, - toArrayFn := mkEntryArray + addImportedFn := fun _ => {} + addEntryFn := fun s d => s.insert d.name d + toArrayFn := fun s => + let decls := s.foldl (init := #[]) fun decls decl => decls.push decl + sortDecls decls } @[export lean_ir_find_env_decl] -def findEnvDecl (env : Environment) (n : Name) : Option Decl := - (declMapExt.getState env).find? n +def findEnvDecl (env : Environment) (declName : Name) : Option Decl := + match env.getModuleIdxFor? declName with + | some modIdx => findAtSorted? (declMapExt.getModuleEntries env modIdx) declName + | none => declMapExt.getState env |>.find? declName def findDecl (n : Name) : CompilerM (Option Decl) := return findEnvDecl (← get).env n def containsDecl (n : Name) : CompilerM Bool := - return (declMapExt.getState (← get).env).contains n + return (← findDecl n).isSome def getDecl (n : Name) : CompilerM Decl := do let (some decl) ← findDecl n | throw s!"unknown declaration '{n}'" @@ -104,7 +108,7 @@ def getDecl (n : Name) : CompilerM Decl := do @[export lean_ir_add_decl] def addDeclAux (env : Environment) (decl : Decl) : Environment := - declMapExt.addEntry env decl + declMapExt.addEntry (env.addExtraName decl.name) decl def getDecls (env : Environment) : List Decl := declMapExt.getEntries env @@ -113,7 +117,7 @@ def getEnv : CompilerM Environment := do let s ← get; pure s.env def addDecl (decl : Decl) : CompilerM Unit := - modifyEnv fun env => declMapExt.addEntry env decl + modifyEnv fun env => declMapExt.addEntry (env.addExtraName decl.name) decl def addDecls (decls : Array Decl) : CompilerM Unit := decls.forM addDecl @@ -121,7 +125,7 @@ def addDecls (decls : Array Decl) : CompilerM Unit := def findEnvDecl' (env : Environment) (n : Name) (decls : Array Decl) : Option Decl := match decls.find? (fun decl => decl.name == n) with | some decl => some decl - | none => (declMapExt.getState env).find? n + | none => findEnvDecl env n def findDecl' (n : Name) (decls : Array Decl) : CompilerM (Option Decl) := return findEnvDecl' (← get).env n decls @@ -130,15 +134,15 @@ def containsDecl' (n : Name) (decls : Array Decl) : CompilerM Bool := do if decls.any fun decl => decl.name == n then return true else - return (declMapExt.getState (← get).env).contains n + containsDecl n def getDecl' (n : Name) (decls : Array Decl) : CompilerM Decl := do let (some decl) ← findDecl' n decls | throw s!"unknown declaration '{n}'" - pure decl + return decl @[export lean_decl_get_sorry_dep] def getSorryDep (env : Environment) (declName : Name) : Option Name := - match (declMapExt.getState env).find? declName with + match findEnvDecl env declName with | some (.fdecl (info := { sorryDep? := dep?, .. }) ..) => dep? | _ => none diff --git a/stage0/src/Lean/Compiler/LCNF.lean b/stage0/src/Lean/Compiler/LCNF.lean index 05b81b16b4..b3341af389 100644 --- a/stage0/src/Lean/Compiler/LCNF.lean +++ b/stage0/src/Lean/Compiler/LCNF.lean @@ -38,4 +38,6 @@ import Lean.Compiler.LCNF.ForEachExpr import Lean.Compiler.LCNF.MonoTypes import Lean.Compiler.LCNF.ToMono import Lean.Compiler.LCNF.MonadScope -import Lean.Compiler.LCNF.Closure \ No newline at end of file +import Lean.Compiler.LCNF.Closure +import Lean.Compiler.LCNF.LambdaLifting +import Lean.Compiler.LCNF.ReduceArity diff --git a/stage0/src/Lean/Compiler/LCNF/CSE.lean b/stage0/src/Lean/Compiler/LCNF/CSE.lean index f1e4884af0..6e1761c204 100644 --- a/stage0/src/Lean/Compiler/LCNF/CSE.lean +++ b/stage0/src/Lean/Compiler/LCNF/CSE.lean @@ -103,8 +103,8 @@ def Decl.cse (decl : Decl) : CompilerM Decl := do let value ← decl.value.cse return { decl with value } -def cse : Pass := - .mkPerDeclaration `cse Decl.cse .base +def cse (phase : Phase := .base) (occurrence := 0) : Pass := + .mkPerDeclaration `cse Decl.cse phase occurrence builtin_initialize registerTraceClass `Compiler.cse (inherited := true) diff --git a/stage0/src/Lean/Compiler/LCNF/Passes.lean b/stage0/src/Lean/Compiler/LCNF/Passes.lean index 3b9dd01b36..2bcde2b867 100644 --- a/stage0/src/Lean/Compiler/LCNF/Passes.lean +++ b/stage0/src/Lean/Compiler/LCNF/Passes.lean @@ -15,6 +15,7 @@ import Lean.Compiler.LCNF.PhaseExt import Lean.Compiler.LCNF.ToMono import Lean.Compiler.LCNF.LambdaLifting import Lean.Compiler.LCNF.FloatLetIn +import Lean.Compiler.LCNF.ReduceArity namespace Lean.Compiler.LCNF @@ -53,16 +54,19 @@ def builtinPassManager : PassManager := { eagerLambdaLifting, specialize, simp (occurrence := 2), - cse, + cse (occurrence := 1), saveBase, -- End of base phase toMono, simp (occurrence := 3) (phase := .mono), reduceJpArity (phase := .mono), extendJoinPointContext, floatLetIn (phase := .mono) (occurrence := 1), + reduceArity, simp (occurrence := 4) (phase := .mono), + floatLetIn (phase := .mono) (occurrence := 2), lambdaLifting, simp (occurrence := 5) (phase := .mono), + cse (occurrence := 2) (phase := .mono), -- TODO: reduce function arity saveMono -- End of mono phase ] diff --git a/stage0/src/Lean/Compiler/LCNF/Probing.lean b/stage0/src/Lean/Compiler/LCNF/Probing.lean index 570cf4e607..3537dcd671 100644 --- a/stage0/src/Lean/Compiler/LCNF/Probing.lean +++ b/stage0/src/Lean/Compiler/LCNF/Probing.lean @@ -23,6 +23,12 @@ def filter (f : α → CompilerM Bool) : Probe α α := fun data => data.filterM @[inline] def sorted [Inhabited α] [inst : LT α] [DecidableRel inst.lt] : Probe α α := fun data => return data.qsort (· < ·) +@[inline] +def sortedBySize : Probe Decl (Nat × Decl) := fun decls => + let decls := decls.map fun decl => (decl.size, decl) + return decls.qsort fun (sz₁, decl₁) (sz₂, decl₂) => + if sz₁ == sz₂ then Name.lt decl₁.name decl₂.name else sz₁ < sz₂ + def countUnique [ToString α] [BEq α] [Hashable α] : Probe α (α × Nat) := fun data => do let mut map := HashMap.empty for d in data do @@ -45,12 +51,27 @@ where start (decls : Array Decl) : StateRefT (Array Expr) CompilerM Unit := decls.forM (fun decl => decl.forEachExpr go skipTypes) +partial def getJps : Probe Decl FunDecl := fun decls => do + let (_, res) ← start decls |>.run #[] + return res +where + go (code : Code) : StateRefT (Array FunDecl) CompilerM Unit := do + match code with + | .let _ k => go k + | .fun decl k => go decl.value; go k + | .jp decl k => modify (·.push decl); go decl.value; go k + | .cases cs => cs.alts.forM (go ·.getCode) + | .jmp .. | .return .. | .unreach .. => return () + + start (decls : Array Decl) : StateRefT (Array FunDecl) CompilerM Unit := + decls.forM fun decl => go decl.value + partial def filterByLet (f : LetDecl → CompilerM Bool) : Probe Decl Decl := filter (fun decl => go decl.value) where go : Code → CompilerM Bool | .let decl k => do if (← f decl) then return true else go k - | .fun _ k | .jp _ k => go k + | .fun decl k | .jp decl k => go decl.value <||> go k | .cases cs => cs.alts.anyM (go ·.getCode) | .jmp .. | .return .. | .unreach .. => return false @@ -59,7 +80,7 @@ partial def filterByFun (f : FunDecl → CompilerM Bool) : Probe Decl Decl := where go : Code → CompilerM Bool | .let _ k | .jp _ k => go k - | .fun decl k => do if (← f decl) then return true else go k + | .fun decl k => do if (← f decl) then return true else go decl.value <||> go k | .cases cs => cs.alts.anyM (go ·.getCode) | .jmp .. | .return .. | .unreach .. => return false @@ -67,8 +88,9 @@ partial def filterByJp (f : FunDecl → CompilerM Bool) : Probe Decl Decl := filter (fun decl => go decl.value) where go : Code → CompilerM Bool - | .let _ k | .fun _ k => go k - | .jp decl k => do if (← f decl) then return true else go k + | .let _ k => go k + | .fun decl k => go decl.value <||> go k + | .jp decl k => do if (← f decl) then return true else go decl.value <||> go k | .cases cs => cs.alts.anyM (go ·.getCode) | .jmp .. | .return .. | .unreach .. => return false @@ -77,7 +99,7 @@ partial def filterByFunDecl (f : FunDecl → CompilerM Bool) : Probe Decl Decl : where go : Code → CompilerM Bool | .let _ k => go k - | .fun decl k | .jp decl k => do if (← f decl) then return true else go k + | .fun decl k | .jp decl k => do if (← f decl) then return true else go decl.value <||> go k | .cases cs => cs.alts.anyM (go ·.getCode) | .jmp .. | .return .. | .unreach .. => return false @@ -85,7 +107,8 @@ partial def filterByCases (f : Cases → CompilerM Bool) : Probe Decl Decl := filter (fun decl => go decl.value) where go : Code → CompilerM Bool - | .let _ k => go k | .fun _ k | .jp _ k => go k + | .let _ k => go k + | .fun decl k | .jp decl k => go decl.value <||> go k | .cases cs => do if (← f cs) then return true else cs.alts.anyM (go ·.getCode) | .jmp .. | .return .. | .unreach .. => return false @@ -93,7 +116,8 @@ partial def filterByJmp (f : FVarId → Array Expr → CompilerM Bool) : Probe D filter (fun decl => go decl.value) where go : Code → CompilerM Bool - | .let _ k | .fun _ k | .jp _ k => go k + | .let _ k => go k + | .fun decl k | .jp decl k => go decl.value <||> go k | .cases cs => cs.alts.anyM (go ·.getCode) | .jmp fn var => f fn var | .return .. | .unreach .. => return false @@ -102,7 +126,8 @@ partial def filterByReturn (f : FVarId → CompilerM Bool) : Probe Decl Decl := filter (fun decl => go decl.value) where go : Code → CompilerM Bool - | .let _ k | .fun _ k | .jp _ k => go k + | .let _ k => go k + | .fun decl k | .jp decl k => go decl.value <||> go k | .cases cs => cs.alts.anyM (go ·.getCode) | .jmp .. | .unreach .. => return false | .return var => f var @@ -111,7 +136,8 @@ partial def filterByUnreach (f : Expr → CompilerM Bool) : Probe Decl Decl := filter (fun decl => go decl.value) where go : Code → CompilerM Bool - | .let _ k | .fun _ k | .jp _ k => go k + | .let _ k => go k + | .fun decl k | .jp decl k => go decl.value <||> go k | .cases cs => cs.alts.anyM (go ·.getCode) | .jmp .. | .return .. => return false | .unreach typ => f typ @@ -130,6 +156,12 @@ def count : Probe α Nat := fun data => return #[data.size] @[inline] def sum : Probe Nat Nat := fun data => return #[data.foldl (init := 0) (·+·)] +@[inline] +def tail (n : Nat) : Probe α α := fun data => return data[data.size - n:] + +@[inline] +def head (n : Nat) : Probe α α := fun data => return data[:n] + def runOnModule (moduleName : Name) (probe : Probe Decl β) (phase : Phase := Phase.base): CoreM (Array β) := do let ext := getExt phase let env ← getEnv diff --git a/stage0/src/Lean/Compiler/LCNF/ReduceArity.lean b/stage0/src/Lean/Compiler/LCNF/ReduceArity.lean new file mode 100644 index 0000000000..4e7933e23b --- /dev/null +++ b/stage0/src/Lean/Compiler/LCNF/ReduceArity.lean @@ -0,0 +1,125 @@ +/- +Copyright (c) 2022 Microsoft Corporation. All rights reserved. +Released under Apache 2.0 license as described in the file LICENSE. +Authors: Leonardo de Moura +-/ +import Lean.Compiler.LCNF.CompilerM +import Lean.Compiler.LCNF.PhaseExt + +namespace Lean.Compiler.LCNF +namespace ReduceArity + +/-! +# Function arity reduction + +This module finds "used" parameters in a declaration, and then +create an auxliary declaration that contains only used parameters. +For example: +``` +def f (x y : Nat) : Nat := + let _x.1 := Nat.add x x + let _x.2 := Nat.mul _x.1 _x.1 + _x.2 +``` +is converted into +``` +def f._rarg (x : Nat) : Nat := + let _x.1 := Nat.add x x + let _x.2 := Nat.mul _x.1 _x.1 + _x.2 +def f (x y : Nat) : Nat := + let _x.1 := f._rarg x + _x.1 +``` +Note that any `f` full application is going to be inlined in the next `simp` pass. + +This module has basic support for detecting "unused" variables in recursive definitions. +For example, the `y` in the following definition in correctly treated as "unused" +``` +def f (x y : Nat) : Nat := + cases x + | zero => x + | succ _x.1 => + let _x.2 := f _x.1 y + let _x.3 := Nat.mul _x.2 _x.2 + _x.3 +``` +This module does not have similar support for mutual recursive applications. +We assume this limitation is irrelevant in practice. +-/ + +structure Context where + decl : Decl + params : FVarIdSet + +structure State where + used : FVarIdSet := {} + +abbrev FindUsedM := ReaderT Context <| StateRefT State CompilerM + +def visitFVar (fvarId : FVarId) : FindUsedM Unit := do + if (← read).params.contains fvarId then + modify fun s => { s with used := s.used.insert fvarId } + +def visitArg (e : Expr) : FindUsedM Unit := do + let .fvar fvarId := e | return () + visitFVar fvarId + +def visitExpr (e : Expr) : FindUsedM Unit := do + match e with + | .fvar fvarId => visitFVar fvarId + | .lit .. | .const .. | .sort .. | .forallE .. | .lam .. | .letE .. | .bvar .. | .mvar .. => return () + | .mdata _ b => visitExpr b + | .proj _ _ b => visitExpr b + | .app .. => + let f := e.getAppFn + let args := e.getAppArgs + let decl := (← read).decl + if f.isConstOf decl.name then + for param in decl.params, arg in args do + unless arg.isFVarOf param.fvarId do + visitArg arg + for arg in args[decl.params.size:] do + visitArg arg + else + visitArg f + args.forM visitArg + +partial def visit (code : Code) : FindUsedM Unit := do + match code with + | .let decl k => + visitExpr decl.value + visit k + | .jp decl k | .fun decl k => + visit decl.value; visit k + | .cases c => + visitFVar c.discr + c.alts.forM fun alt => visit alt.getCode + | .jmp _ args => args.forM visitArg + | .return fvarId => visitFVar fvarId + | .unreach _ => return () + +def collectUsedParams (decl : Decl) : CompilerM FVarIdSet := do + let params := decl.params.foldl (init := {}) fun s p => s.insert p.fvarId + let (_, { used, .. }) ← visit decl.value |>.run { decl, params } |>.run {} + return used + +end ReduceArity +open ReduceArity + +def Decl.reduceArity (decl : Decl) : CompilerM Decl := do + let used ← collectUsedParams decl + if used.size == decl.params.size then + return decl -- Declarations uses all parameters + else + trace[Compiler.reduceArity] "{decl.name}, used params: {used.toList.map mkFVar}" + -- TODO: create auxiliary function wth used parameters only + return decl + +def reduceArity : Pass := + .mkPerDeclaration `reduceArity (Decl.reduceArity ·) .mono + +builtin_initialize + registerTraceClass `Compiler.reduceArity (inherited := true) + +end Lean.Compiler.LCNF \ No newline at end of file diff --git a/stage0/src/Lean/Compiler/LCNF/ToLCNF.lean b/stage0/src/Lean/Compiler/LCNF/ToLCNF.lean index 84f78e080a..cd13425a9c 100644 --- a/stage0/src/Lean/Compiler/LCNF/ToLCNF.lean +++ b/stage0/src/Lean/Compiler/LCNF/ToLCNF.lean @@ -714,7 +714,7 @@ where return .fvar funDecl.fvarId visitMData (mdata : MData) (e : Expr) : M Expr := do - if let some (.app (.lam n t b ..) v) := letFunAnnotation? e then + if let some (.app (.lam n t b ..) v) := letFunAnnotation? (.mdata mdata e) then visitLet (.letE n t v b (nonDep := true)) #[] else if isCompilerRelevantMData mdata then mkAuxLetDecl <| .mdata mdata (← visit e) diff --git a/stage0/src/Lean/Elab/Quotation.lean b/stage0/src/Lean/Elab/Quotation.lean index 4cff33b336..272cbf57fd 100644 --- a/stage0/src/Lean/Elab/Quotation.lean +++ b/stage0/src/Lean/Elab/Quotation.lean @@ -77,19 +77,32 @@ def ArrayStxBuilder := Sum (Array Term) Term namespace ArrayStxBuilder -def empty : ArrayStxBuilder := Sum.inl #[] +def empty : ArrayStxBuilder := .inl #[] def build : ArrayStxBuilder → Term - | Sum.inl elems => quote elems - | Sum.inr arr => arr + | .inl elems => quote elems + | .inr arr => arr def push (b : ArrayStxBuilder) (elem : Syntax) : ArrayStxBuilder := match b with - | Sum.inl elems => Sum.inl <| elems.push elem - | Sum.inr arr => Sum.inr <| mkCApp ``Array.push #[arr, elem] + | .inl elems => .inl <| elems.push elem + | .inr arr => .inr <| mkCApp ``Array.push #[arr, elem] def append (b : ArrayStxBuilder) (arr : Syntax) (appendName := ``Array.append) : ArrayStxBuilder := - Sum.inr <| mkCApp appendName #[b.build, arr] + .inr <| mkCApp appendName #[b.build, arr] + +def mkNode (b : ArrayStxBuilder) (k : SyntaxNodeKind) : TermElabM Term := do + let k := quote k + match b with + | .inl #[a₁] => `(Syntax.node1 info $(k) $(a₁)) + | .inl #[a₁, a₂] => `(Syntax.node2 info $(k) $(a₁) $(a₂)) + | .inl #[a₁, a₂, a₃] => `(Syntax.node3 info $(k) $(a₁) $(a₂) $(a₃)) + | .inl #[a₁, a₂, a₃, a₄] => `(Syntax.node4 info $(k) $(a₁) $(a₂) $(a₃) $(a₄)) + | .inl #[a₁, a₂, a₃, a₄, a₅] => `(Syntax.node5 info $(k) $(a₁) $(a₂) $(a₃) $(a₄) $(a₅)) + | .inl #[a₁, a₂, a₃, a₄, a₅, a₆] => `(Syntax.node6 info $(k) $(a₁) $(a₂) $(a₃) $(a₄) $(a₅) $(a₆)) + | .inl #[a₁, a₂, a₃, a₄, a₅, a₆, a₇] => `(Syntax.node7 info $(k) $(a₁) $(a₂) $(a₃) $(a₄) $(a₅) $(a₆) $(a₇)) + | .inl #[a₁, a₂, a₃, a₄, a₅, a₆, a₇, a₈] => `(Syntax.node8 info $(k) $(a₁) $(a₂) $(a₃) $(a₄) $(a₅) $(a₆) $(a₇) $(a₈)) + | _ => `(Syntax.node info $(k) $(b.build)) end ArrayStxBuilder @@ -186,7 +199,7 @@ private partial def quoteSyntax : Syntax → TermElabM Term else do let arg ← quoteSyntax arg args := args.push arg - `(Syntax.node info $(quote k) $(args.build)) + args.mkNode k | Syntax.atom _ val => `(Syntax.atom info $(quote val)) | Syntax.missing => throwUnsupportedSyntax diff --git a/stage0/src/Lean/Environment.lean b/stage0/src/Lean/Environment.lean index 8ea1b315ff..93690de4d3 100644 --- a/stage0/src/Lean/Environment.lean +++ b/stage0/src/Lean/Environment.lean @@ -869,6 +869,7 @@ class MonadEnv (m : Type → Type) where export MonadEnv (getEnv modifyEnv) +@[alwaysInline] instance (m n) [MonadLift m n] [MonadEnv m] : MonadEnv n where getEnv := liftM (getEnv : m Environment) modifyEnv := fun f => liftM (modifyEnv f : m Unit) diff --git a/stage0/src/Lean/Meta/ExprDefEq.lean b/stage0/src/Lean/Meta/ExprDefEq.lean index f23c964efc..bb57345edb 100644 --- a/stage0/src/Lean/Meta/ExprDefEq.lean +++ b/stage0/src/Lean/Meta/ExprDefEq.lean @@ -639,9 +639,6 @@ instance : MonadCache Expr Expr CheckAssignmentM where findCached? := findCached? cache := cache -@[inline] private def visit (f : Expr → CheckAssignmentM Expr) (e : Expr) : CheckAssignmentM Expr := - if !e.hasExprMVar && !e.hasFVar then pure e else checkCache e (fun _ => f e) - private def addAssignmentInfo (msg : MessageData) : CheckAssignmentM MessageData := do let ctx ← read return m!"{msg} @ {mkMVar ctx.mvarId} {ctx.fvars} := {ctx.rhs}" @@ -665,7 +662,7 @@ mutual else let lctx := ctxMeta.lctx match lctx.findFVar? fvar with - | some (.ldecl (value := v) ..) => visit check v + | some (.ldecl (value := v) ..) => check v | _ => if ctx.fvars.contains fvar then pure fvar else @@ -755,10 +752,10 @@ mutual e.withApp fun f args => do let ctxMeta ← readThe Meta.Context if f.isMVar && ctxMeta.config.ctxApprox && args.all Expr.isFVar then - let f ← visit checkMVar f + let f ← check f catchInternalId outOfScopeExceptionId (do - let args ← args.mapM (visit check) + let args ← args.mapM check return mkAppN f args) (fun ex => do if !f.isMVar then @@ -777,36 +774,39 @@ mutual else throw ex) else - let f ← visit check f - let args ← args.mapM (visit check) + let f ← check f + let args ← args.mapM check return mkAppN f args partial def check (e : Expr) : CheckAssignmentM Expr := do - match e with - | Expr.mdata _ b => return e.updateMData! (← visit check b) - | Expr.proj _ _ s => return e.updateProj! (← visit check s) - | Expr.lam _ d b _ => return e.updateLambdaE! (← visit check d) (← visit check b) - | Expr.forallE _ d b _ => return e.updateForallE! (← visit check d) (← visit check b) - | Expr.letE _ t v b _ => return e.updateLet! (← visit check t) (← visit check v) (← visit check b) - | Expr.bvar .. => return e - | Expr.sort .. => return e - | Expr.const .. => return e - | Expr.lit .. => return e - | Expr.fvar .. => visit checkFVar e - | Expr.mvar .. => visit checkMVar e - | Expr.app .. => - checkApp e - -- TODO: investigate whether the following feature is too expensive or not - /- - catchInternalIds [checkAssignmentExceptionId, outOfScopeExceptionId] - (checkApp e) - fun ex => do - let e' ← whnfR e - if e != e' then - check e' - else - throw ex - -/ + if !e.hasExprMVar && !e.hasFVar then + return e + else checkCache e fun _ => + match e with + | Expr.mdata _ b => return e.updateMData! (← check b) + | Expr.proj _ _ s => return e.updateProj! (← check s) + | Expr.lam _ d b _ => return e.updateLambdaE! (← check d) (← check b) + | Expr.forallE _ d b _ => return e.updateForallE! (← check d) (← check b) + | Expr.letE _ t v b _ => return e.updateLet! (← check t) (← check v) (← check b) + | Expr.bvar .. => return e + | Expr.sort .. => return e + | Expr.const .. => return e + | Expr.lit .. => return e + | Expr.fvar .. => checkFVar e + | Expr.mvar .. => checkMVar e + | Expr.app .. => + checkApp e + -- TODO: investigate whether the following feature is too expensive or not + /- + catchInternalIds [checkAssignmentExceptionId, outOfScopeExceptionId] + (checkApp e) + fun ex => do + let e' ← whnfR e + if e != e' then + check e' + else + throw ex + -/ end end CheckAssignment diff --git a/stage0/src/Lean/MetavarContext.lean b/stage0/src/Lean/MetavarContext.lean index 126475c775..b15fafae8d 100644 --- a/stage0/src/Lean/MetavarContext.lean +++ b/stage0/src/Lean/MetavarContext.lean @@ -330,6 +330,7 @@ class MonadMCtx (m : Type → Type) where export MonadMCtx (getMCtx modifyMCtx) +@[alwaysInline] instance (m n) [MonadLift m n] [MonadMCtx m] : MonadMCtx n where getMCtx := liftM (getMCtx : m _) modifyMCtx := fun f => liftM (modifyMCtx f : m _) diff --git a/stage0/stdlib/Init/Meta.c b/stage0/stdlib/Init/Meta.c index cacdf5030e..cfa12a956a 100644 --- a/stage0/stdlib/Init/Meta.c +++ b/stage0/stdlib/Init/Meta.c @@ -18,59 +18,58 @@ lean_object* l_List_reverse___rarg(lean_object*); LEAN_EXPORT lean_object* l_Array_getSepElems___rarg___boxed(lean_object*); static uint8_t l_Lean_versionString___closed__2; static lean_object* l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_2249____closed__2; -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__10; +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12608____closed__9; static lean_object* l_Lean_Parser_Tactic_dsimpAutoUnfold___closed__10; LEAN_EXPORT lean_object* l_Lean_Syntax_decodeScientificLitVal_x3f_decode___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_mkCIdentFrom(lean_object*, lean_object*, uint8_t); static lean_object* l_Lean_Parser_Tactic_simpAllKind___closed__3; LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_version_getMajor___boxed(lean_object*); -static lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20429____closed__3; -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12617____closed__8; lean_object* lean_string_push(lean_object*, uint32_t); LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Syntax_decodeOctalLitAux___boxed(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__31; -static lean_object* l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__7; LEAN_EXPORT lean_object* l_Lean_Syntax_isIdOrAtom_x3f___boxed(lean_object*); lean_object* lean_array_set(lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12617____closed__9; -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__12; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_dsimpKind; LEAN_EXPORT uint32_t l_Lean_TSyntax_getChar(lean_object*); LEAN_EXPORT lean_object* l_Lean_instQuoteArrayMkStr1(lean_object*); static lean_object* l_Lean_Parser_Tactic_declareSimpLikeTactic___closed__6; -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12617____closed__17; +static lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_23040____closed__6; +static lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__6; static lean_object* l_Lean_Parser_Tactic_simpAllArith___closed__3; lean_object* l_Lean_extractMacroScopes(lean_object*); +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12608____closed__4; LEAN_EXPORT lean_object* l_Lean_mkIdentFromRef(lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__123; static lean_object* l_Lean_Parser_Tactic_dsimpKind___closed__2; static lean_object* l_Lean_Parser_Tactic_declareSimpLikeTactic___closed__15; -static lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20429____closed__5; size_t lean_usize_add(size_t, size_t); LEAN_EXPORT lean_object* l_Lean_Syntax_isNatLit_x3f___boxed(lean_object*); static lean_object* l_Lean_Syntax_unsetTrailing___closed__1; static lean_object* l_Lean_Parser_Tactic_simpArithAutoUnfold___closed__6; static lean_object* l_Lean_Syntax_instReprPreresolved___closed__1; static lean_object* l_Lean_Parser_Tactic_simpAutoUnfold___closed__19; +static lean_object* l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__22; LEAN_EXPORT lean_object* l_Lean_Syntax_setTailInfoAux(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Syntax_instCoeTailSepArrayArraySyntax___boxed(lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__16; static lean_object* l_Lean_Syntax_mkNumLit___closed__2; -static lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_23049____closed__1; LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Syntax_updateFirst___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT uint8_t l_Lean_Meta_DSimp_Config_decide___default; LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Syntax_decodeDecimalLitAux___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT uint8_t l_Lean_Meta_DSimp_Config_zeta___default; +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12608____closed__8; LEAN_EXPORT lean_object* l_Lean_Syntax_decodeScientificLitVal_x3f_decodeAfterExp___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_mkSepArray___spec__1(lean_object*, lean_object*, size_t, size_t, lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__105; static lean_object* l_Lean_Parser_Tactic_simpAllKind___closed__5; +static lean_object* l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__7; LEAN_EXPORT uint8_t lean_is_inaccessible_user_name(lean_object*); static lean_object* l_Lean_Parser_Tactic_declareSimpLikeTactic___closed__5; static lean_object* l_Lean_Parser_Tactic_simpArithAutoUnfold___closed__2; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__106; -static lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_23049____closed__6; +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12608____closed__17; static lean_object* l_Lean_TSyntax_getScientific___closed__2; +static lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_23040____closed__1; static lean_object* l_Lean_Parser_Tactic_declareSimpLikeTactic___closed__3; static lean_object* l_Lean_versionString___closed__1; LEAN_EXPORT lean_object* l_Lean_TSyntax_getScientific___boxed(lean_object*); @@ -88,12 +87,10 @@ static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__59; LEAN_EXPORT lean_object* l_Lean_Syntax_getTrailingSize(lean_object*); static lean_object* l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_2667____rarg___closed__10; -static lean_object* l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__22; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__108; static lean_object* l_Lean_Parser_Tactic_simpAllKind___closed__6; static lean_object* l_Lean_Name_reprPrec___closed__7; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__49; -static lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__12; LEAN_EXPORT uint8_t l_Lean_Meta_DSimp_Config_autoUnfold___default; LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Syntax_updateFirst___at_Lean_Syntax_setHeadInfoAux___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_TSyntax_instCoeScientificLitTerm(lean_object*); @@ -105,7 +102,6 @@ LEAN_EXPORT lean_object* l___private_Init_Meta_0__Array_filterSepElemsMAux___rar static lean_object* l_Lean_Parser_Tactic_simpArith___closed__8; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__24; LEAN_EXPORT lean_object* l_Lean_TSyntax_instCoeTSyntaxConsSyntaxNodeKind___rarg___boxed(lean_object*); -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12617____closed__4; static lean_object* l_Lean_Parser_Tactic_declareSimpLikeTactic___closed__18; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__71; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__7; @@ -124,7 +120,6 @@ static lean_object* l_Lean_termEval__prio_____closed__9; LEAN_EXPORT lean_object* l_Lean_versionStringCore; static lean_object* l_Lean_versionString___closed__8; LEAN_EXPORT uint32_t l_Lean_idBeginEscape; -static lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__6; LEAN_EXPORT lean_object* l_Lean_instQuote___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_expandMacros___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_TSyntax_Compat_instCoeTailSyntaxTSyntax(lean_object*); @@ -184,10 +179,12 @@ static lean_object* l_Lean_toolchain___closed__4; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__85; LEAN_EXPORT lean_object* l_Lean_TSyntax_getNat(lean_object*); LEAN_EXPORT lean_object* l_Lean_Syntax_getHead_x3f(lean_object*); +static lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__12; static lean_object* l_Lean_Parser_Tactic_dsimpKind___closed__8; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__16; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__85; LEAN_EXPORT uint8_t l_Lean_Meta_DSimp_Config_eta___default; +static lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17766____closed__3; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__25; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__117; LEAN_EXPORT uint8_t l_Lean_Syntax_structEq(lean_object*, lean_object*); @@ -198,30 +195,32 @@ LEAN_EXPORT lean_object* l_Lean_Meta_EtaStructMode_noConfusion___rarg(uint8_t, u LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Syntax_decodeInterpStrQuotedChar(lean_object*, lean_object*); static lean_object* l_Lean_githash___closed__1; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__56; -static lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__15; LEAN_EXPORT lean_object* l_Lean_termEval__prec__; static lean_object* l_Lean_quoteNameMk___closed__8; LEAN_EXPORT lean_object* l_Lean___aux__Init__Meta______macroRules__Lean__termEval__prio____1(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__37; LEAN_EXPORT lean_object* l_Lean_TSyntax_instCoeIdentLevel___boxed(lean_object*); static lean_object* l_Lean_Parser_Tactic_declareSimpLikeTactic___closed__11; -static lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__18; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__3; +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__3; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__12; lean_object* lean_string_utf8_prev(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Syntax_isNatLitAux(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__76; LEAN_EXPORT lean_object* l_Lean_Syntax_SepArray_ofElemsUsingRef___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_23040____closed__3; static lean_object* l_Lean_Parser_Tactic_simpAutoUnfold___closed__12; +static lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17766____closed__5; lean_object* l_id___rarg___boxed(lean_object*); LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Syntax_decodeOctalLitAux(lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20429____closed__7; LEAN_EXPORT lean_object* l_Lean_instQuote(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20420____lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__17; static lean_object* l_Lean_Parser_Tactic_declareSimpLikeTactic___closed__4; LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Syntax_findAux___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__8; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__15; +static lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__11; LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Syntax_getHead_x3f___spec__1(lean_object*, lean_object*, size_t, size_t, lean_object*); uint8_t l_Char_isDigit(uint32_t); LEAN_EXPORT lean_object* l_Lean_Name_reprPrec(lean_object*, lean_object*); @@ -229,7 +228,7 @@ LEAN_EXPORT lean_object* l_Lean_Name_escapePart(lean_object*); LEAN_EXPORT lean_object* l_Lean_TSyntax_Compat_instCoeTailSyntaxTSyntax___rarg___boxed(lean_object*); static lean_object* l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_2667____rarg___closed__7; LEAN_EXPORT lean_object* l_Lean_withHeadRefOnly___rarg(lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__20; +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__16; LEAN_EXPORT lean_object* l_Lean_Syntax_decodeScientificLitVal_x3f_decodeExp(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_name_eq(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_isGreek___boxed(lean_object*); @@ -240,6 +239,7 @@ LEAN_EXPORT lean_object* l_Lean_TSyntax_instCoeNumLitTerm(lean_object*); LEAN_EXPORT uint32_t l_Lean_idEndEscape; static lean_object* l_Lean_Syntax_instCoeIdentTSyntaxConsSyntaxNodeKindMkStr4Nil___closed__2; LEAN_EXPORT lean_object* l_Lean_Name_escapePart___lambda__1___boxed(lean_object*); +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__24; static lean_object* l_Lean_Parser_Tactic_simpAllAutoUnfold___closed__11; LEAN_EXPORT lean_object* l_Lean_Syntax_decodeQuotedChar___boxed__const__5; static lean_object* l_Lean_Name_escapePart___closed__2; @@ -256,15 +256,14 @@ LEAN_EXPORT lean_object* l_Lean_Meta_EtaStructMode_toCtorIdx(uint8_t); static lean_object* l_Lean_Syntax_mkNumLit___closed__1; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__89; LEAN_EXPORT uint8_t l_Lean_Name_escapePart___lambda__1(uint32_t); -static lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__3; LEAN_EXPORT lean_object* l_Lean_Syntax_mkScientificLit(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__74; extern lean_object* l_Lean_Parser_Tactic_config; -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12617____closed__2; static lean_object* l_Lean_instQuoteNameMkStr1___closed__1; static lean_object* l_Lean_termEval__prec_____closed__3; lean_object* l_Lean_Name_mkStr2(lean_object*, lean_object*); static lean_object* l_Lean_TSyntax_expandInterpolatedStr___closed__3; +static lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20420____closed__6; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__30; static lean_object* l_Lean_Parser_Tactic_dsimpKind___closed__9; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__132; @@ -277,8 +276,6 @@ LEAN_EXPORT lean_object* l_Lean_mkHole___boxed(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__121; LEAN_EXPORT lean_object* l___private_Init_Meta_0__Array_filterSepElemsMAux___at_Array_filterSepElems___spec__2(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_TSyntax_getName___boxed(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20429____lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_23049____closed__3; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__18; lean_object* lean_array_push(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Name_toString___boxed(lean_object*, lean_object*); @@ -292,18 +289,22 @@ static lean_object* l_Lean_Parser_Tactic_simpAllKind___closed__7; lean_object* lean_string_append(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Syntax_instEmptyCollectionSepArray(lean_object*); LEAN_EXPORT lean_object* l_Std_Format_joinSep___at___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2394____spec__2(lean_object*, lean_object*); -static lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__11; +static lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_23040____closed__2; static lean_object* l_Lean_Parser_Tactic_dsimpKind___closed__4; static lean_object* l_Lean_Parser_Tactic_declareSimpLikeTactic___closed__17; LEAN_EXPORT lean_object* l_Lean_version_getSpecialDesc___boxed(lean_object*); +static lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17766____closed__7; lean_object* l_Lean_Name_mkStr3(lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__10; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__46; LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Syntax_decodeHexDigit___boxed(lean_object*, lean_object*); lean_object* lean_get_githash(lean_object*); LEAN_EXPORT lean_object* l_Lean_Syntax_setTailInfo(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_simpAutoUnfold___closed__6; +static lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__3; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__99; lean_object* lean_string_utf8_extract(lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__26; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__55; LEAN_EXPORT lean_object* l_Lean_Syntax_instCoeTSyntaxArrayArraySyntax(lean_object*); static lean_object* l_Lean_quoteNameMk___closed__4; @@ -315,34 +316,36 @@ static lean_object* l_Lean_Parser_Tactic_simpArithAutoUnfold___closed__1; static lean_object* l_Lean_Meta_instBEqEtaStructMode___closed__1; static lean_object* l___private_Init_Meta_0__Lean_quoteList___rarg___closed__3; lean_object* l___private_Init_Data_Repr_0__reprSourceInfo____x40_Init_Data_Repr___hyg_2311_(lean_object*, lean_object*); +static lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17766____closed__12; LEAN_EXPORT lean_object* l_Array_filterSepElemsM___at_Array_filterSepElems___spec__1(lean_object*, lean_object*); -static lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_23049____closed__5; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__50; static lean_object* l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2394____closed__6; -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__3; LEAN_EXPORT uint8_t l_Lean_Meta_Simp_Config_contextual___default; LEAN_EXPORT lean_object* l_Lean_Meta_TransparencyMode_toCtorIdx(uint8_t); static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__23; lean_object* lean_string_utf8_byte_size(lean_object*); +static lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_23040____closed__5; LEAN_EXPORT uint8_t l_Lean_Meta_instInhabitedTransparencyMode; LEAN_EXPORT lean_object* l_Lean_NameGenerator_namePrefix___default; static lean_object* l_Lean_instQuoteNameMkStr1___closed__2; +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12608____closed__2; LEAN_EXPORT lean_object* l_Array_filterSepElems___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_mkIdentFrom___boxed(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT uint8_t l___private_Init_Meta_0__Lean_Meta_beqTransparencyMode____x40_Init_Meta___hyg_12380_(uint8_t, uint8_t); +LEAN_EXPORT uint8_t l___private_Init_Meta_0__Lean_Meta_beqTransparencyMode____x40_Init_Meta___hyg_12371_(uint8_t, uint8_t); LEAN_EXPORT lean_object* l_Lean_Syntax_setHeadInfo(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_dsimpAutoUnfold___closed__7; static lean_object* l_Lean_Syntax_instCoeIdentTSyntaxConsSyntaxNodeKindMkStr4Nil___closed__1; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__79; +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__20; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__95; +static lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__5; static lean_object* l_Lean_Parser_Tactic_simpArithAutoUnfold___closed__8; LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_2667____rarg(lean_object*, lean_object*); static lean_object* l_Lean_instQuoteTermMkStr1___closed__1; LEAN_EXPORT lean_object* l_Lean_TSyntax_instCoeTSyntaxConsSyntaxNodeKindNil(lean_object*, lean_object*); +static lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__18; static lean_object* l_Lean_toolchain___closed__5; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__42; -static lean_object* l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__26; -static lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__5; uint8_t lean_usize_dec_lt(size_t, size_t); static lean_object* l_Lean_Parser_Tactic_simpAutoUnfold___closed__26; static lean_object* l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2394____closed__22; @@ -356,24 +359,20 @@ LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_quoteArray_go(lean_object LEAN_EXPORT lean_object* l_List_foldr___at_Lean_Syntax_decodeNameLit___spec__1(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_Format_joinSep___at___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2394____spec__5(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__92; -static lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_23049____closed__2; LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Syntax_isNatLitAux___boxed(lean_object*, lean_object*); static lean_object* l_Lean_Syntax_instBEqPreresolved___closed__1; LEAN_EXPORT lean_object* l_Lean_TSyntax_instCoeTSyntaxConsSyntaxNodeKind(lean_object*, lean_object*); -static lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20429____lambda__1___closed__1; LEAN_EXPORT lean_object* l_Lean_withHeadRefOnly___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT uint8_t l_Lean_Name_instDecidableEqName(lean_object*, lean_object*); -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__24; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__100; +static lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__15; LEAN_EXPORT uint8_t l___private_Init_Meta_0__Lean_Syntax_beqPreresolved____x40_Init_Meta___hyg_3156_(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Syntax_instCoeTSyntaxArray___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__16; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__53; LEAN_EXPORT lean_object* l_Lean_mkCIdentFromRef___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_version_specialDesc; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__112; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__76; -LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20429____lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_nat_add(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Syntax_mkSep___boxed(lean_object*, lean_object*); static lean_object* l___private_Init_Meta_0__Lean_quoteArray___rarg___closed__2; @@ -388,11 +387,11 @@ static lean_object* l_Lean_Parser_Tactic_declareSimpLikeTactic___closed__24; static lean_object* l_Lean_Meta_DSimp_instBEqConfig___closed__1; static lean_object* l_Lean_Parser_Tactic_tacticErw_______closed__5; static lean_object* l_Lean_versionStringCore___closed__2; -static lean_object* l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__6; static lean_object* l_Lean_Parser_Tactic_simpAllArith___closed__2; LEAN_EXPORT lean_object* l_Lean_Name_instReprName; static lean_object* l_Lean_Parser_Tactic_simpAllAutoUnfold___closed__5; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__12; +static lean_object* l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__25; LEAN_EXPORT lean_object* l_Lean_Name_toStringWithSep(lean_object*, uint8_t, lean_object*); static lean_object* l_Lean_Parser_Tactic_tacticErw_______closed__7; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__20; @@ -400,40 +399,38 @@ LEAN_EXPORT lean_object* l_Lean_Syntax_SepArray_ofElems(lean_object*, lean_objec static lean_object* l_Lean_Name_escapePart___closed__4; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__19; LEAN_EXPORT lean_object* l_Lean_Syntax_instCoeTermTSyntaxConsSyntaxNodeKindMkStr4Nil(lean_object*); +static lean_object* l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__2; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__28; LEAN_EXPORT lean_object* l_Lean_Syntax_instCoeTSepArrayTSyntaxArray(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Syntax_instCoeTSyntaxArray___spec__1(lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*); static lean_object* l_Lean_Parser_Tactic_simpArithAutoUnfold___closed__7; -static lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__8; static lean_object* l_Array_mapMUnsafe_map___at_Lean_expandMacros___spec__1___lambda__1___closed__3; +static lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__7; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__15; static lean_object* l_Lean_termEval__prio_____closed__4; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__18; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__75; -static lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__17; static lean_object* l_Lean_version_major___closed__1; LEAN_EXPORT lean_object* l_Lean_Meta_EtaStructMode_toCtorIdx___boxed(lean_object*); LEAN_EXPORT lean_object* l_Lean_TSyntax_expandInterpolatedStr___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Option_hasQuote___rarg___closed__4; static lean_object* l_Lean_Parser_Tactic_simpAllAutoUnfold___closed__7; LEAN_EXPORT uint8_t l_Lean_Meta_Simp_Config_etaStruct___default; +static lean_object* l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__6; lean_object* lean_string_utf8_next(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__58; static lean_object* l_Lean_Name_isInaccessibleUserName___closed__1; static lean_object* l_Lean_Syntax_mkStrLit___closed__2; LEAN_EXPORT lean_object* l_Lean_Name_instDecidableEqName___boxed(lean_object*, lean_object*); static lean_object* l_Lean_versionStringCore___closed__1; -static lean_object* l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__25; static lean_object* l_Lean_termEval__prio_____closed__2; LEAN_EXPORT lean_object* l_Lean_TSyntax_getId(lean_object*); static lean_object* l_Lean_instQuoteBoolMkStr1___closed__2; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__90; -static lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_23049____closed__7; LEAN_EXPORT lean_object* l_Lean_TSyntax_expandInterpolatedStrChunks___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17775____closed__3; +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__5; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__54; LEAN_EXPORT lean_object* l_Lean_Name_toStringWithSep_maybeEscape(uint8_t, lean_object*); -static lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__4; LEAN_EXPORT lean_object* l_Lean_Syntax_isLit_x3f___boxed(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_tacticErw_______closed__3; LEAN_EXPORT uint8_t l_Lean_Meta_DSimp_Config_proj___default; @@ -452,33 +449,36 @@ LEAN_EXPORT lean_object* l_Lean_Syntax_getSubstring_x3f(lean_object*, uint8_t, u LEAN_EXPORT lean_object* l_Lean_Syntax_SepArray_getElems___rarg(lean_object*); LEAN_EXPORT lean_object* l_Array_findSomeRevM_x3f_find___at_Lean_Syntax_getTailInfo_x3f___spec__1(lean_object*, lean_object*, lean_object*); LEAN_EXPORT uint8_t l_Lean_Meta_Simp_Config_singlePass___default; +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12608____closed__6; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__10; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__32; LEAN_EXPORT lean_object* l_Lean_Syntax_mkApp(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapSepElems___boxed(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__102; +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__15; LEAN_EXPORT lean_object* l_Lean_Syntax_instBEqTSyntax___boxed(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Simp_Config_maxSteps___default; -static lean_object* l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__2; LEAN_EXPORT lean_object* l_Lean_Syntax_TSepArray_getElems___rarg___boxed(lean_object*); static lean_object* l_Lean_TSyntax_expandInterpolatedStrChunks___closed__1; LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_version_getMinor___boxed(lean_object*); -static lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__9; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__43; -LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____boxed(lean_object*, lean_object*); static lean_object* l_Lean_evalPrio___closed__1; +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__18; uint8_t l_Lean_Name_hasMacroScopes(lean_object*); static uint8_t l_Lean_version_isRelease___closed__1; LEAN_EXPORT lean_object* l_Lean_Syntax_instBEqTSyntax(lean_object*); +static lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__17; static lean_object* l_Lean_Parser_Tactic_simpAutoUnfold___closed__10; static lean_object* l_Lean_termEval__prec_____closed__10; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__84; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__95; LEAN_EXPORT lean_object* l_Lean_Syntax_decodeScientificLitVal_x3f_decodeExp___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Syntax_isLit_x3f(lean_object*, lean_object*); static lean_object* l_Lean_Name_reprPrec___closed__2; LEAN_EXPORT lean_object* l_Lean_Meta_Simp_instInhabitedConfig; LEAN_EXPORT lean_object* l_Lean_Syntax_isScientificLit_x3f___boxed(lean_object*); +static lean_object* l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__1; LEAN_EXPORT lean_object* l_Lean_Syntax_isCharLit_x3f(lean_object*); lean_object* lean_array_fget(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Syntax_getTrailingSize___boxed(lean_object*); @@ -493,13 +493,12 @@ LEAN_EXPORT uint8_t l_Lean_Meta_Simp_Config_zeta___default; static lean_object* l_Lean_versionStringCore___closed__3; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__81; uint8_t lean_nat_dec_eq(lean_object*, lean_object*); -static lean_object* l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__28; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__73; LEAN_EXPORT lean_object* l_Array_isEqvAux___at_Lean_Syntax_structEq___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_expandMacros___spec__1___lambda__1___boxed(lean_object*); static lean_object* l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2394____closed__5; +static lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__8; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__120; -static lean_object* l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__14; static lean_object* l_Lean_Parser_Tactic_simpAutoUnfold___closed__20; static lean_object* l_Lean_Syntax_mkStrLit___closed__1; LEAN_EXPORT lean_object* l_Lean_Syntax_SepArray_ofElemsUsingRef___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); @@ -514,9 +513,8 @@ static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__32; LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_getEscapedNameParts_x3f(lean_object*, lean_object*); static lean_object* l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2394____closed__14; -static lean_object* l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__5; LEAN_EXPORT lean_object* l_Lean_Syntax_mkStrLit___boxed(lean_object*, lean_object*); -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12617____closed__6; +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__7; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__33; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__98; static lean_object* l_Lean___aux__Init__Meta______macroRules__Lean__Parser__Syntax__subPrec__1___closed__1; @@ -525,15 +523,15 @@ static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__20; static lean_object* l_Lean_termEval__prec_____closed__7; static lean_object* l_Lean_Parser_Tactic_simpAllArith___closed__9; -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__15; -static lean_object* l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__1; +static lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_23040____closed__7; +static lean_object* l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__3; LEAN_EXPORT lean_object* l_Lean_instQuoteNatNumLitKind(lean_object*); LEAN_EXPORT lean_object* l_Lean_TSyntax_instCoeScientificLitTerm___boxed(lean_object*); +static lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__9; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__61; static lean_object* l_Lean_Parser_Tactic_tacticErw_______closed__2; LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Syntax_decodeDecimalLitAux(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__127; -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__18; LEAN_EXPORT lean_object* l_Array_mapSepElemsM(lean_object*); static lean_object* l_Lean_Parser_Tactic_declareSimpLikeTactic___closed__10; LEAN_EXPORT lean_object* l_Lean_mkGroupNode(lean_object*); @@ -542,42 +540,45 @@ static lean_object* l_Lean_termEval__prio_____closed__1; static lean_object* l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2394____closed__16; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__46; static lean_object* l_Lean_mkGroupNode___closed__1; -static lean_object* l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__3; +static lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__4; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__25; LEAN_EXPORT lean_object* l_Lean_mkFreshId___rarg___lambda__1(lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__7; LEAN_EXPORT lean_object* l_Lean_Name_reprPrec___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Syntax_decodeScientificLitVal_x3f_decode(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_mkGroupNode___closed__2; -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__5; +static lean_object* l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__5; LEAN_EXPORT lean_object* l___private_Init_Meta_0__Array_mapSepElemsMAux(lean_object*); LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_2667____boxed(lean_object*); LEAN_EXPORT lean_object* l_Lean_Syntax_mkCApp(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_instQuoteSubstringMkStr1(lean_object*); static lean_object* l_Lean_Syntax_mkNameLit___closed__2; static lean_object* l_Lean_termEval__prio_____closed__6; +static lean_object* l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__18; static lean_object* l_Lean_versionStringCore___closed__5; LEAN_EXPORT lean_object* l_Lean_Syntax_isStrLit_x3f(lean_object*); static lean_object* l_Lean_Name_reprPrec___closed__1; static lean_object* l_Lean_Parser_Tactic_simpAllAutoUnfold___closed__3; -LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Meta_DSimp_beqConfig____x40_Init_Meta___hyg_12852____boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_getSepElems(lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_String_Basic_0__Substring_takeWhileAux___at___private_Init_Meta_0__Lean_Syntax_splitNameLitAux___spec__3(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__136; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__29; LEAN_EXPORT lean_object* l_Lean_monadNameGeneratorLift___rarg(lean_object*, lean_object*); -static lean_object* l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__18; +static lean_object* l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__28; LEAN_EXPORT lean_object* l_Lean_Syntax_SepArray_getElems(lean_object*); +static lean_object* l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__14; +static lean_object* l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__15; LEAN_EXPORT lean_object* l_Lean_Syntax_structEq___boxed(lean_object*, lean_object*); -static lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17775____closed__9; +static lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__2; static lean_object* l_Lean_Parser_Tactic_simpArithAutoUnfold___closed__5; -LEAN_EXPORT uint8_t l___private_Init_Meta_0__Lean_Meta_Simp_beqConfig____x40_Init_Meta___hyg_13424_(lean_object*, lean_object*); +LEAN_EXPORT uint8_t l___private_Init_Meta_0__Lean_Meta_Simp_beqConfig____x40_Init_Meta___hyg_13415_(lean_object*, lean_object*); LEAN_EXPORT uint8_t l_Lean_Meta_Simp_ConfigCtx_contextual___default; +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__23; LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_quoteList___rarg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Syntax_isFieldIdx_x3f(lean_object*); LEAN_EXPORT lean_object* l_Lean_TSyntax_expandInterpolatedStr(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Syntax_instCoeTSyntaxArrayTSepArray___boxed(lean_object*); LEAN_EXPORT lean_object* l_Lean_instQuoteStringStrLitKind(lean_object*); +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__13; lean_object* l_Lean_Syntax_getHeadInfo(lean_object*); LEAN_EXPORT lean_object* l_Lean_Syntax_SepArray_ofElems___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Syntax_decodeHexLitAux(lean_object*, lean_object*, lean_object*); @@ -588,7 +589,6 @@ static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean static lean_object* l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_2249____spec__1___closed__2; LEAN_EXPORT uint8_t l_Lean_isNumericSubscript(uint32_t); LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_mkSepArray___spec__1___lambda__1(lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20429____closed__6; LEAN_EXPORT lean_object* l_Lean_Syntax_instEmptyCollectionSepArray___boxed(lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__63; LEAN_EXPORT lean_object* l_Lean_Syntax_isScientificLit_x3f(lean_object*); @@ -606,16 +606,14 @@ lean_object* lean_array_get(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_instReprTransparencyMode; static lean_object* l_Lean_Parser_Tactic_simpAllArith___closed__4; LEAN_EXPORT lean_object* l_Lean_mkIdentFromRef___rarg___lambda__1(lean_object*, lean_object*, uint8_t, lean_object*); -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__22; static lean_object* l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_2249____spec__1___closed__10; -static lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17775____closed__10; +static lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20420____closed__5; LEAN_EXPORT lean_object* l_Lean_mkFreshId___rarg(lean_object*, lean_object*); lean_object* l_String_capitalize(lean_object*); LEAN_EXPORT lean_object* l_Lean_NameGenerator_next(lean_object*); LEAN_EXPORT lean_object* l_Lean_Syntax_decodeCharLit___boxed(lean_object*); LEAN_EXPORT lean_object* l_Lean_Syntax_decodeNatLitVal_x3f(lean_object*); -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__14; -LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12617_(uint8_t, lean_object*); +LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12608_(uint8_t, lean_object*); static lean_object* l_Lean_Parser_Tactic_declareSimpLikeTactic___closed__2; LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2394____boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Syntax_SepArray_getElems___boxed(lean_object*); @@ -625,14 +623,15 @@ static lean_object* l_Lean_mkNullNode___closed__2; static lean_object* l_Lean_Parser_Tactic_dsimpKind___closed__6; static lean_object* l_Lean_instQuoteSubstringMkStr1___closed__1; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__55; +static lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__1; static lean_object* l_Lean_Option_hasQuote___rarg___closed__6; extern lean_object* l_Lean_Parser_Tactic_simpStar; lean_object* lean_array_fset(lean_object*, lean_object*, lean_object*); LEAN_EXPORT uint8_t l_Lean_Internal_isStage0(lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__37; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__31; -static lean_object* l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__15; LEAN_EXPORT lean_object* l_Lean_withHeadRefOnly___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_TransparencyMode_noConfusion___rarg___boxed(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_simpAllKind___closed__12; LEAN_EXPORT lean_object* l_Lean_TSyntax_instCoeStrLitTerm(lean_object*); @@ -644,6 +643,7 @@ LEAN_EXPORT lean_object* lean_name_append_index_after(lean_object*, lean_object* LEAN_EXPORT lean_object* l_Lean_Name_eraseSuffix_x3f(lean_object*, lean_object*); static lean_object* l_Lean_Meta_Simp_instReprConfig___closed__1; LEAN_EXPORT lean_object* l_Array_getSepElems___rarg(lean_object*); +static lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20420____closed__7; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__91; extern lean_object* l_Lean_reservedMacroScope; static lean_object* l_Lean_Parser_Tactic_simpAllArithAutoUnfold___closed__6; @@ -664,7 +664,6 @@ static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean LEAN_EXPORT lean_object* l_Lean_Name_instToStringName(lean_object*); static lean_object* l_Lean_quoteNameMk___closed__2; static lean_object* l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2394____closed__4; -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12617____closed__11; LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_quoteArray(lean_object*); LEAN_EXPORT lean_object* l_Lean_Name_toStringWithSep_maybeEscape___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Name_modifyBase(lean_object*, lean_object*); @@ -680,6 +679,7 @@ lean_object* l_Nat_repr(lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__126; LEAN_EXPORT lean_object* l_Array_mapSepElemsM___at_Array_mapSepElems___spec__1___boxed(lean_object*, lean_object*); static lean_object* l___private_Init_Meta_0__Lean_Syntax_splitNameLitAux___closed__1; +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__22; static lean_object* l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_2667____rarg___closed__5; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__3; LEAN_EXPORT lean_object* l_Lean_TSyntax_Compat_instCoeTailSyntaxTSyntax___rarg(lean_object*); @@ -688,9 +688,7 @@ static lean_object* l_Lean_mkNullNode___closed__1; static lean_object* l_Array_mapMUnsafe_map___at_Lean_expandMacros___spec__1___lambda__1___closed__1; LEAN_EXPORT lean_object* l_Lean_instQuoteSubstringMkStr1___boxed(lean_object*); static lean_object* l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2394____closed__8; -static lean_object* l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__24; static lean_object* l_Lean_versionStringCore___closed__8; -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__13; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__133; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__53; static lean_object* l___private_Init_Meta_0__Lean_quoteArray___rarg___closed__1; @@ -698,53 +696,56 @@ LEAN_EXPORT lean_object* l_Lean_Internal_isStage0___boxed(lean_object*); static lean_object* l_Lean_Parser_Tactic_simpAllKind___closed__10; LEAN_EXPORT lean_object* l_Lean_Syntax_instCoeTSyntaxArrayTSepArray(lean_object*); lean_object* l_Lean_Syntax_getId(lean_object*); +static lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20420____lambda__1___closed__1; LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Syntax_splitNameLitAux(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_mkSepArray___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__23; +static lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17766____closed__10; LEAN_EXPORT lean_object* l_Lean_TSyntax_instCoeNameLitTerm(lean_object*); +static lean_object* l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__16; static lean_object* l_Lean_versionStringCore___closed__4; LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Syntax_decodeInterpStrQuotedChar___boxed(lean_object*, lean_object*); -static lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__2; +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12608____closed__10; extern lean_object* l_Lean_Parser_Tactic_rwRuleSeq; +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_23040____lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Syntax_instBEqSyntax___closed__1; -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__7; LEAN_EXPORT lean_object* l_Lean_TSyntax_instCoeTSyntaxConsSyntaxNodeKind___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_NameGenerator_idx___default; static lean_object* l_Lean_Parser_Tactic_simpAllArith___closed__5; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__30; LEAN_EXPORT lean_object* l_Lean_Meta_EtaStructMode_noConfusion___rarg___boxed(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_dsimpAutoUnfold___closed__6; +static lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17766____closed__9; static lean_object* l_Lean_Meta_instBEqTransparencyMode___closed__1; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__5; LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_TSyntax_expandInterpolatedStrChunks___spec__1___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_mkArray4___rarg(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_2667____rarg___closed__3; -static lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__1; lean_object* lean_array_to_list(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_mkFreshId(lean_object*); static lean_object* l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_2249____closed__6; static lean_object* l_Lean_Parser_Tactic_declareSimpLikeTactic___closed__7; -static lean_object* l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__16; lean_object* l_Lean_Macro_throwErrorAt___rarg(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__92; extern lean_object* l_Lean_Parser_Tactic_location; LEAN_EXPORT lean_object* l_Lean_Meta_TransparencyMode_toCtorIdx___boxed(lean_object*); LEAN_EXPORT lean_object* l_Lean_mkCIdent(lean_object*); -LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_version_getIsRelease___boxed(lean_object*); LEAN_EXPORT uint8_t l_Lean_Meta_Simp_Config_dsimp___default; +static lean_object* l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__24; LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Name_beq_match__1_splitter___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20420____lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_simpArithAutoUnfold___closed__3; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__124; static lean_object* l_Lean_Parser_Tactic_simpAutoUnfold___closed__16; +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12608____closed__14; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__134; uint32_t lean_string_utf8_get(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__131; static lean_object* l_Lean_Parser_Tactic_simpAutoUnfold___closed__3; LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Name_hasNum___boxed(lean_object*); +static lean_object* l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__4; static lean_object* l_Lean_Syntax_instReprTSyntax___closed__1; LEAN_EXPORT lean_object* l_Lean_Syntax_mkStrLit(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17775____lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_simpAllAutoUnfold___closed__4; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__93; static lean_object* l_Lean_Parser_Tactic_simpAutoUnfold___closed__18; @@ -754,17 +755,21 @@ static lean_object* l_Lean_Syntax_isCharLit_x3f___closed__2; static lean_object* l_Lean___aux__Init__Meta______macroRules__Lean__Parser__Syntax__subPrio__1___closed__2; LEAN_EXPORT lean_object* l_Lean_Syntax_instReprTSyntax___boxed(lean_object*); LEAN_EXPORT lean_object* l_Lean_Syntax_decodeScientificLitVal_x3f_decodeAfterExp(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*); +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__17; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__22; +static lean_object* l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__27; LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Syntax_beqPreresolved____x40_Init_Meta___hyg_3156____boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_repr___at___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2394____spec__1(lean_object*); LEAN_EXPORT lean_object* l_Lean_TSyntax_instCoeTSyntaxConsSyntaxNodeKindNil___rarg___boxed(lean_object*); -LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Meta_beqTransparencyMode____x40_Init_Meta___hyg_12380____boxed(lean_object*, lean_object*); +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__1; static lean_object* l_Lean_Parser_Tactic_simpAllArithAutoUnfold___closed__1; LEAN_EXPORT lean_object* l_Lean_mkOptionalNode(lean_object*); static lean_object* l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2394____closed__2; LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_version_getPatch___boxed(lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__27; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__9; +static lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20420____closed__4; +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__8; LEAN_EXPORT lean_object* l_Lean_Syntax_copyHeadTailInfoFrom(lean_object*, lean_object*); static lean_object* l_Lean_instQuoteBoolMkStr1___closed__3; LEAN_EXPORT lean_object* l_Lean_Syntax_instCoeTSyntaxArray(lean_object*, lean_object*, lean_object*, lean_object*); @@ -783,17 +788,17 @@ static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean static lean_object* l_Lean_version_patch___closed__1; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__21; uint8_t l_Array_isEmpty___rarg(lean_object*); -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12617____closed__16; -LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_22117_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20429_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_21273_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_19487_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17775_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18633_(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_23049_(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_22108_(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20420_(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_21264_(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_19478_(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17766_(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18624_(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_23040_(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__4; LEAN_EXPORT lean_object* l_Lean_mkIdentFromRef___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Substring_beq(lean_object*, lean_object*); +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12608____closed__16; LEAN_EXPORT lean_object* l_Lean_Name_toStringWithSep___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_filterSepElemsM(lean_object*); static lean_object* l_Lean_Name_reprPrec___closed__8; @@ -803,7 +808,6 @@ static lean_object* l_Lean_Parser_Tactic_simpAllArithAutoUnfold___closed__2; extern lean_object* l_Lean_instInhabitedSyntax; LEAN_EXPORT lean_object* l_Lean_version_getSpecialDesc(lean_object*); static lean_object* l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_2249____spec__1___closed__6; -static lean_object* l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__27; LEAN_EXPORT lean_object* l_List_beq___at___private_Init_Meta_0__Lean_Syntax_beqPreresolved____x40_Init_Meta___hyg_3156____spec__1___boxed(lean_object*, lean_object*); static lean_object* l_Lean_toolchain___closed__6; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__91; @@ -815,12 +819,11 @@ static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean static lean_object* l_Lean_Name_reprPrec___closed__9; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__17; LEAN_EXPORT lean_object* l_Lean_mkCIdentFromRef___rarg___lambda__1(lean_object*, lean_object*, uint8_t, lean_object*); -LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_mkSepArray(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Syntax_SepArray_ofElemsUsingRef___rarg(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18624____closed__1; static lean_object* l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_2667____rarg___closed__2; LEAN_EXPORT lean_object* l_Lean_Meta_Simp_Config_maxDischargeDepth___default; -static lean_object* l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__4; LEAN_EXPORT lean_object* l_Lean_TSyntax_getChar___boxed(lean_object*); LEAN_EXPORT lean_object* l_Lean_Syntax_TSepArray_getElems(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_isNumericSubscript___boxed(lean_object*); @@ -832,12 +835,16 @@ static lean_object* l_Lean_Parser_Tactic_simpArithAutoUnfold___closed__10; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__14; LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_TSyntax_expandInterpolatedStrChunks___spec__1___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Syntax_mkApp___closed__2; +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__21; LEAN_EXPORT lean_object* l_Lean_NameGenerator_mkChild(lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__129; LEAN_EXPORT lean_object* l_Lean_getGithash___boxed(lean_object*); +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__14; LEAN_EXPORT lean_object* l_Lean_Meta_instReprEtaStructMode; static lean_object* l_Lean_Syntax_isCharLit_x3f___closed__1; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__45; +static lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17766____closed__6; +LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_beqConfig____x40_Init_Meta___hyg_13415____boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Syntax_updateFirst___at_Lean_Syntax_setHeadInfoAux___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_TSyntax_instCoeNumLitTerm___boxed(lean_object*); static lean_object* l_Lean_Syntax_instReprSyntax___closed__1; @@ -845,7 +852,7 @@ lean_object* l_String_dropRight(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Syntax_isCharLit_x3f___boxed(lean_object*); LEAN_EXPORT lean_object* l_Lean_Syntax_splitNameLit(lean_object*); static lean_object* l___private_Init_Meta_0__Lean_quoteList___rarg___closed__6; -static lean_object* l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__8; +static lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20420____closed__2; LEAN_EXPORT lean_object* l_Lean_instQuoteProdMkStr1___rarg(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__31; size_t lean_usize_of_nat(lean_object*); @@ -853,38 +860,40 @@ static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean LEAN_EXPORT lean_object* l_repr___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_2249____spec__2(lean_object*); static lean_object* l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2394____closed__13; LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Syntax_decodeInterpStrLit(lean_object*); +static lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20420____closed__1; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__1; static lean_object* l_Lean_Parser_Tactic_dsimpAutoUnfold___closed__4; LEAN_EXPORT lean_object* l_Lean_version_minor; LEAN_EXPORT lean_object* l_Lean_Syntax_decodeStrLit___boxed(lean_object*); -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__1; -LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058_(lean_object*, lean_object*); -static lean_object* l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__23; +LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049_(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Meta_0__Array_mapSepElemsMAux___at_Array_mapSepElems___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__13; static lean_object* l_Lean_NameGenerator_namePrefix___default___closed__2; LEAN_EXPORT lean_object* l_Lean_TSyntax_instCoeDepTermMkConsSyntaxNodeKindMkStr1NilIdentIdent(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_addMacroScope(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17766____lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__44; LEAN_EXPORT lean_object* l_Lean_Syntax_instEmptyCollectionTSepArray(lean_object*, lean_object*); -static lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17775____closed__4; LEAN_EXPORT uint8_t l_Lean_isIdEndEscape(uint32_t); static lean_object* l_Lean_Parser_Tactic_simpAllArithAutoUnfold___closed__4; LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_version_getMajor(lean_object*); +static lean_object* l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__21; LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Syntax_updateLast___rarg(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Syntax_decodeNatLitVal_x3f___boxed(lean_object*); static lean_object* l_Lean_Parser_Tactic_simpAutoUnfold___closed__14; LEAN_EXPORT lean_object* l_Lean_Syntax_decodeCharLit(lean_object*); LEAN_EXPORT uint8_t l_Lean_version_isRelease; -LEAN_EXPORT uint8_t l___private_Init_Meta_0__Lean_Meta_DSimp_beqConfig____x40_Init_Meta___hyg_12852_(lean_object*, lean_object*); +LEAN_EXPORT uint8_t l___private_Init_Meta_0__Lean_Meta_DSimp_beqConfig____x40_Init_Meta___hyg_12843_(lean_object*, lean_object*); +static lean_object* l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__23; static lean_object* l_Lean_Syntax_decodeNatLitVal_x3f___closed__1; LEAN_EXPORT uint8_t l_Lean_Meta_Simp_Config_arith___default; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__59; static lean_object* l_Lean_Parser_Tactic_dsimpAutoUnfold___closed__5; LEAN_EXPORT lean_object* l_Lean_Meta_TransparencyMode_noConfusion___rarg(uint8_t, uint8_t, lean_object*); -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12617____closed__7; static lean_object* l_Lean_Parser_Tactic_declareSimpLikeTactic___closed__19; static lean_object* l_Lean___aux__Init__Meta______macroRules__Lean__Parser__Syntax__addPrio__1___closed__1; uint8_t l_Char_isAlpha(uint32_t); +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__6; static lean_object* l_Lean_Parser_Tactic_simpAllArithAutoUnfold___closed__8; LEAN_EXPORT lean_object* l_Lean_Option_hasQuote(lean_object*); LEAN_EXPORT uint8_t l_Lean_Syntax_isAtom(lean_object*); @@ -892,9 +901,9 @@ static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Array_getSepElems___spec__1(lean_object*); LEAN_EXPORT lean_object* l_Lean_TSyntax_Compat_instCoeTailArraySyntaxTSepArray___rarg___boxed(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__94; -static lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17775____closed__6; static lean_object* l_Lean_Parser_Tactic_simpAutoUnfold___closed__15; LEAN_EXPORT uint8_t l_Lean_isLetterLike(uint32_t); +static lean_object* l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__8; LEAN_EXPORT uint8_t l_Lean_Meta_DSimp_Config_beta___default; LEAN_EXPORT lean_object* l_Lean_evalPrec(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Syntax_isStrLit_x3f___boxed(lean_object*); @@ -904,17 +913,14 @@ LEAN_EXPORT lean_object* l_Lean_mkCIdentFromRef___rarg___lambda__1___boxed(lean_ lean_object* l_Lean_Macro_expandMacro_x3f(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__94; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_declareSimpLikeTactic; -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__21; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_simpArith; -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__17; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__8; extern lean_object* l_Lean_Parser_Tactic_simpLemma; -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__8; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__40; -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12617____closed__13; lean_object* l_Lean_mkAtomFrom(lean_object*, lean_object*, uint8_t); lean_object* l_Lean_TSyntaxArray_mkImpl___rarg___boxed(lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__4; +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12608____closed__7; static lean_object* l_Lean_termEval__prio_____closed__8; LEAN_EXPORT lean_object* l_Lean_Syntax_mkNumLit(lean_object*, lean_object*); static lean_object* l_Lean_instInhabitedNameGenerator___closed__1; @@ -922,10 +928,11 @@ static lean_object* l_Lean_Meta_TransparencyMode_noConfusion___rarg___closed__1; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__57; LEAN_EXPORT lean_object* l_Lean_Syntax_TSepArray_getElems___rarg(lean_object*); LEAN_EXPORT lean_object* l_Lean_Syntax_SepArray_ofElemsUsingRef(lean_object*); +static lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20420____closed__3; static lean_object* l_Lean_Parser_Tactic_simpAutoUnfold___closed__5; static lean_object* l_Lean_versionString___closed__7; static lean_object* l_Lean_Parser_Tactic_simpAllAutoUnfold___closed__13; -static lean_object* l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__13; +static lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18624____closed__2; LEAN_EXPORT lean_object* l_Lean_Syntax_unsetTrailing(lean_object*); static lean_object* l_Lean_termEval__prio_____closed__7; static lean_object* l_Array_mapMUnsafe_map___at_Lean_expandMacros___spec__1___lambda__1___closed__5; @@ -936,6 +943,7 @@ LEAN_EXPORT lean_object* l_Lean_Syntax_isIdOrAtom_x3f(lean_object*); LEAN_EXPORT lean_object* l_Lean_Syntax_instCoeTSyntaxArray___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_TSyntax_instCoeNumLitPrec___boxed(lean_object*); LEAN_EXPORT lean_object* l_Lean_mkIdentFromRef___rarg(lean_object*, lean_object*, lean_object*, uint8_t); +LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Meta_0__Array_mapSepElemsMAux___at_Array_mapSepElems___spec__2(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Name_beq_match__1_splitter___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Syntax_decodeQuotedChar___boxed__const__2; @@ -947,6 +955,7 @@ static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean static lean_object* l_Lean_Parser_Tactic_tacticErw_______closed__4; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__51; static lean_object* l_Lean_Parser_Tactic_declareSimpLikeTactic___closed__14; +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__19; static lean_object* l_Lean_Syntax_mkApp___closed__1; uint8_t lean_uint32_dec_eq(uint32_t, uint32_t); static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__24; @@ -957,6 +966,7 @@ lean_object* l_String_intercalate(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_EtaStructMode_noConfusion(lean_object*); static lean_object* l_Lean_instQuoteBoolMkStr1___closed__5; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__69; +static lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__14; static lean_object* l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_2249____closed__4; static lean_object* l_Lean_Syntax_instCoeTSepArrayTSyntaxArray___closed__1; LEAN_EXPORT lean_object* l_Lean_Syntax_instCoeTSepArrayTSyntaxArray___boxed(lean_object*, lean_object*); @@ -969,15 +979,13 @@ static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__86; uint8_t l_String_isEmpty(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_TransparencyMode_noConfusion(lean_object*); -static lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__19; static lean_object* l_Lean_Parser_Tactic_simpAllKind___closed__4; -static lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17775____closed__12; +LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Meta_beqTransparencyMode____x40_Init_Meta___hyg_12371____boxed(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_tacticErw_______closed__9; lean_object* l_Array_mkArray5___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12608____closed__13; static lean_object* l_Lean_Parser_Tactic_dsimpKind___closed__7; LEAN_EXPORT lean_object* l_Lean_mkHole(lean_object*, uint8_t); -static lean_object* l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__21; -static lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20429____closed__8; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__83; LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Array_getSepElems___spec__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_mkArray1___rarg(lean_object*); @@ -993,6 +1001,8 @@ static lean_object* l_Lean_Parser_Tactic_simpAllKind___closed__9; LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Syntax_getHead_x3f___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT uint8_t l_Lean_Meta_Simp_Config_eta___default; static lean_object* l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_2249____spec__1___closed__11; +LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Meta_DSimp_beqConfig____x40_Init_Meta___hyg_12843____boxed(lean_object*, lean_object*); +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__9; static lean_object* l_Lean_Parser_Tactic_tacticErw_______closed__8; LEAN_EXPORT uint8_t l_Lean_Syntax_hasArgs(lean_object*); static lean_object* l_Lean_toolchain___closed__1; @@ -1000,8 +1010,6 @@ static lean_object* l_Lean_Parser_Tactic_simpAllArith___closed__1; static lean_object* l_Lean_Parser_Tactic_simpAllKind___closed__11; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__11; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__135; -static lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20429____closed__4; -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__2; uint8_t l_String_isPrefixOf(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__45; LEAN_EXPORT lean_object* l_Lean_githash; @@ -1009,6 +1017,7 @@ LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_quoteList(lean_object*); uint8_t lean_nat_dec_le(lean_object*, lean_object*); static lean_object* l_Lean_Syntax_isFieldIdx_x3f___closed__2; static lean_object* l_Lean_instQuoteBoolMkStr1___closed__6; +static lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__22; LEAN_EXPORT lean_object* l_Lean_withHeadRefOnly(lean_object*); lean_object* l_String_quote(lean_object*); uint8_t l_Char_isAlphanum(uint32_t); @@ -1019,9 +1028,9 @@ LEAN_EXPORT lean_object* l_Lean_Meta_Simp_instReprConfig; LEAN_EXPORT lean_object* l_Lean_instInhabitedNameGenerator; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__82; LEAN_EXPORT uint8_t l_Lean_Syntax_instBEqTSyntax___rarg(lean_object*, lean_object*); +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__4; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__10; -static lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__14; -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__4; +static lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__19; lean_object* l_Lean_Syntax_getArgs(lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Syntax_SepArray_getElems___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_TSyntax_Compat_instCoeTailArraySyntaxTSepArray___rarg(lean_object*, lean_object*); @@ -1040,21 +1049,19 @@ LEAN_EXPORT lean_object* l_Lean_instQuoteBoolMkStr1___boxed(lean_object*); LEAN_EXPORT lean_object* l_Lean_quoteNameMk(lean_object*); LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Syntax_decodeInterpStrQuotedChar___boxed__const__1; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__88; +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__2; LEAN_EXPORT lean_object* l_Lean_TSyntax_instCoeNumLitPrio___boxed(lean_object*); static lean_object* l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_2249____closed__1; static lean_object* l_Lean_toolchain___closed__2; LEAN_EXPORT lean_object* l_Array_filterSepElems(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__34; LEAN_EXPORT lean_object* l_Array_mapSepElemsM___at_Array_mapSepElems___spec__1(lean_object*, lean_object*); -static lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18633____closed__1; -static lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__22; -LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761_(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752_(lean_object*, lean_object*); LEAN_EXPORT uint8_t l___private_Init_Meta_0__Lean_Name_hasNum(lean_object*); static lean_object* l_Lean_Syntax_mkScientificLit___closed__1; LEAN_EXPORT lean_object* l_Lean_Meta_instBEqEtaStructMode; LEAN_EXPORT uint8_t l_List_beq___at___private_Init_Meta_0__Lean_Syntax_beqPreresolved____x40_Init_Meta___hyg_3156____spec__1(lean_object*, lean_object*); static lean_object* l_Lean_Syntax_mkScientificLit___closed__2; -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12617____closed__10; LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_2249____boxed(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_dsimpAutoUnfold___closed__9; lean_object* l_String_toSubstring_x27(lean_object*); @@ -1067,15 +1074,14 @@ static lean_object* l_Lean_versionString___closed__5; LEAN_EXPORT lean_object* l_Lean_TSyntax_getScientific(lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__13; static lean_object* l_Lean_termEval__prec_____closed__11; -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__6; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__41; static lean_object* l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2394____closed__18; static lean_object* l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2394____closed__15; LEAN_EXPORT lean_object* l_Lean_Syntax_getOptionalIdent_x3f(lean_object*); +static lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20420____closed__8; static lean_object* l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_2667____rarg___closed__13; static lean_object* l_Lean_evalPrec___closed__1; LEAN_EXPORT lean_object* l_Lean_TSyntax_instCoeTSyntaxConsSyntaxNodeKindNil___boxed(lean_object*, lean_object*); -static lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17775____closed__5; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__70; static lean_object* l_Lean_Name_toStringWithSep___closed__1; LEAN_EXPORT lean_object* l_Lean_NameGenerator_curr(lean_object*); @@ -1085,14 +1091,12 @@ LEAN_EXPORT lean_object* l_Lean_Syntax_TSepArray_push___boxed(lean_object*); LEAN_EXPORT lean_object* l_Lean_Syntax_SepArray_getElems___rarg___boxed(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_DSimp_instBEqConfig; LEAN_EXPORT lean_object* l_Lean_Syntax_TSepArray_push(lean_object*); -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__19; LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_TSyntax_expandInterpolatedStrChunks___spec__1(lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404_(uint8_t, lean_object*); +LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395_(uint8_t, lean_object*); LEAN_EXPORT lean_object* l_Lean_Syntax_isNameLit_x3f___boxed(lean_object*); LEAN_EXPORT lean_object* l___private_Init_Meta_0__Array_mapSepElemsMAux___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_mkHole___closed__1; LEAN_EXPORT lean_object* l_Lean_TSyntax_getNat___boxed(lean_object*); -LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Meta_beqEtaStructMode____x40_Init_Meta___hyg_12593____boxed(lean_object*, lean_object*); lean_object* l_Array_mkArray7___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__72; lean_object* l_Array_mkArray2___rarg(lean_object*, lean_object*); @@ -1112,20 +1116,24 @@ static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_2667____rarg___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_List_beq___at_Lean_Syntax_structEq___spec__2___boxed(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_simpAutoUnfold___closed__23; +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12608____closed__12; lean_object* lean_nat_mul(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__62; static lean_object* l_Lean_Parser_Tactic_simpAllAutoUnfold___closed__12; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__54; LEAN_EXPORT lean_object* l_Lean_Syntax_mkNameLit(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_simpArithAutoUnfold___closed__9; +static lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_23040____closed__4; LEAN_EXPORT lean_object* l_Lean_mkCIdentFromRef___rarg(lean_object*, lean_object*, lean_object*, uint8_t); LEAN_EXPORT lean_object* l_Lean_Syntax_decodeQuotedChar___boxed__const__4; static lean_object* l_List_foldr___at_Lean_Syntax_decodeNameLit___spec__1___closed__1; +static lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_23040____closed__8; LEAN_EXPORT lean_object* l_Lean_Syntax_decodeQuotedChar___boxed__const__1; +static lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__16; static lean_object* l_Lean_TSyntax_expandInterpolatedStr___closed__1; static lean_object* l_Lean_Parser_Tactic_simpAllKind___closed__13; +static lean_object* l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__12; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__5; -static lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_23049____closed__4; LEAN_EXPORT lean_object* l_Lean_Syntax_instCoeTSyntaxArrayTSepArray___rarg(lean_object*, lean_object*); static lean_object* l_Lean_Meta_instReprEtaStructMode___closed__1; LEAN_EXPORT lean_object* l_Lean_Syntax_getTailInfo_x3f(lean_object*); @@ -1133,8 +1141,9 @@ uint8_t lean_nat_dec_eq(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Simp_instBEqConfig; static lean_object* l_Lean_termEval__prec_____closed__2; static lean_object* l_Lean_Parser_Tactic_simpAutoUnfold___closed__21; +LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Meta_beqEtaStructMode____x40_Init_Meta___hyg_12584____boxed(lean_object*, lean_object*); +static lean_object* l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__20; LEAN_EXPORT lean_object* l_Lean_Syntax_instBEqTSyntax___rarg___boxed(lean_object*, lean_object*); -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__9; LEAN_EXPORT uint8_t l_Lean_Meta_Simp_Config_iota___default; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__16; LEAN_EXPORT lean_object* l_Lean_Syntax_setInfo(lean_object*, lean_object*); @@ -1143,6 +1152,7 @@ static lean_object* l_Lean_Parser_Tactic_simpAutoUnfold___closed__13; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__82; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__29; LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_quoteArray_go___rarg(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__10; LEAN_EXPORT lean_object* l_Lean___aux__Init__Meta______macroRules__Lean__Parser__Syntax__addPrec__1(lean_object*, lean_object*, lean_object*); static lean_object* l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_2249____closed__3; LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_TSyntax_expandInterpolatedStrChunks___spec__1___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1159,9 +1169,7 @@ LEAN_EXPORT lean_object* l_Lean_Name_toString_maybePseudoSyntax___boxed(lean_obj static lean_object* l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_2249____spec__1___closed__7; LEAN_EXPORT lean_object* l_Lean_expandMacros(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__61; -static lean_object* l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__12; LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Syntax_updateLast(lean_object*); -static lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__16; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__2; LEAN_EXPORT lean_object* l_Lean_Syntax_decodeNameLit(lean_object*); static lean_object* l_Lean_Name_toString_maybePseudoSyntax___closed__1; @@ -1179,18 +1187,14 @@ lean_object* l_String_trim(lean_object*); LEAN_EXPORT lean_object* l_Lean_Syntax_decodeQuotedChar___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_isIdEndEscape___boxed(lean_object*); static lean_object* l_Lean_Parser_Tactic_declareSimpLikeTactic___closed__23; -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12617____closed__12; LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_mkSepArray___spec__1___lambda__1___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Syntax_getTailInfo_x3f___boxed(lean_object*); LEAN_EXPORT lean_object* l_Lean_Syntax_getTailInfo(lean_object*); LEAN_EXPORT lean_object* l_Lean_Syntax_getOptionalIdent_x3f___boxed(lean_object*); -static lean_object* l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__10; LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_2667_(lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__64; LEAN_EXPORT lean_object* l_Lean_TSyntax_instCoeStrLitTerm___boxed(lean_object*); -static lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__24; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__18; -static lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17775____closed__11; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__89; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__80; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__14; @@ -1199,14 +1203,11 @@ static lean_object* l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_ LEAN_EXPORT lean_object* l_List_foldr___at_Lean_Syntax_decodeNameLit___spec__1___boxed(lean_object*, lean_object*); static lean_object* l_Lean_termEval__prec_____closed__5; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__86; -static lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_23049____closed__8; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__47; static lean_object* l_Lean_Parser_Tactic_declareSimpLikeTactic___closed__21; -static lean_object* l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__20; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__60; static lean_object* l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_2667____rarg___closed__4; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__110; -LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17775____lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_mkCIdentFromRef(lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__74; LEAN_EXPORT lean_object* l_Lean_Syntax_decodeStrLit(lean_object*); @@ -1218,7 +1219,6 @@ LEAN_EXPORT lean_object* l_Lean_TSyntax_getString(lean_object*); LEAN_EXPORT lean_object* l_Lean_TSyntax_instCoeNameLitTerm___boxed(lean_object*); static lean_object* l_Lean_Parser_Tactic_declareSimpLikeTactic___closed__13; LEAN_EXPORT lean_object* l_Lean_TSyntax_getName(lean_object*); -LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_beqConfig____x40_Init_Meta___hyg_13424____boxed(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_simpAutoUnfold___closed__1; static lean_object* l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_2667____rarg___closed__9; static lean_object* l_Lean_TSyntax_getScientific___closed__1; @@ -1229,7 +1229,6 @@ static lean_object* l___private_Init_Meta_0__Lean_quoteArray_go___rarg___closed_ LEAN_EXPORT lean_object* l_Lean_TSyntax_instCoeTSyntaxConsSyntaxNodeKind___rarg(lean_object*); LEAN_EXPORT lean_object* l_Std_Format_joinSep___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_2249____spec__3(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__58; -static lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20429____closed__1; LEAN_EXPORT lean_object* l_Lean_mkCIdentFrom___boxed(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_mkHole___closed__2; extern lean_object* l_Lean_Parser_Tactic_simpErase; @@ -1238,6 +1237,7 @@ static lean_object* l_Lean_Parser_Tactic_simpAllAutoUnfold___closed__1; LEAN_EXPORT lean_object* l_Lean_Syntax_TSepArray_getElems___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Syntax_getTailInfo___boxed(lean_object*); static lean_object* l_Lean_TSyntax_expandInterpolatedStr___closed__5; +static lean_object* l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__19; LEAN_EXPORT lean_object* l_Lean_TSyntax_instCoeIdentTerm___boxed(lean_object*); static lean_object* l_Lean_termEval__prec_____closed__8; LEAN_EXPORT lean_object* l_Lean_Syntax_decodeQuotedChar___boxed__const__3; @@ -1261,12 +1261,13 @@ LEAN_EXPORT lean_object* l_Lean_instQuoteArrayMkStr1___rarg(lean_object*); static lean_object* l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_2667____rarg___closed__8; LEAN_EXPORT lean_object* l___private_Init_Data_String_Basic_0__Substring_takeWhileAux___at___private_Init_Meta_0__Lean_Syntax_splitNameLitAux___spec__2(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_tacticErw_______closed__10; -static lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20429____closed__2; LEAN_EXPORT uint8_t l_Lean_isSubScriptAlnum(uint32_t); static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__2; static lean_object* l_Lean_Name_reprPrec___closed__10; LEAN_EXPORT uint8_t l_Lean_Meta_Simp_Config_beta___default; LEAN_EXPORT lean_object* l_Lean_Syntax_getHead_x3f___lambda__1(lean_object*); +static lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17766____closed__11; +static lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__24; static lean_object* l_Lean_Option_hasQuote___rarg___closed__3; static lean_object* l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2394____closed__9; LEAN_EXPORT uint8_t l_List_beq___at_Lean_Syntax_structEq___spec__2(lean_object*, lean_object*); @@ -1293,9 +1294,8 @@ LEAN_EXPORT lean_object* l_Lean_toolchain; static lean_object* l_Lean_mkOptionalNode___closed__2; static lean_object* l_Lean_Parser_Tactic_simpArithAutoUnfold___closed__4; static lean_object* l_Lean_Parser_Tactic_declareSimpLikeTactic___closed__1; -static lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18633____closed__2; static lean_object* l_Lean_Syntax_getHead_x3f___closed__2; -static lean_object* l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__19; +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17766____lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_mkArray3___rarg(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_mkCIdentFrom___closed__2; static lean_object* l_Lean_origin___closed__1; @@ -1305,6 +1305,7 @@ LEAN_EXPORT lean_object* l_Lean_instQuoteListMkStr1___rarg(lean_object*); LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_quoteArray_go___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__52; +static lean_object* l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__11; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_dsimpAutoUnfold; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__27; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__9; @@ -1312,38 +1313,32 @@ static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean lean_object* l_Lean_SourceInfo_getPos_x3f(lean_object*, uint8_t); static lean_object* l_Lean_Parser_Tactic_declareSimpLikeTactic___closed__20; LEAN_EXPORT lean_object* l___private_Init_Meta_0__Array_filterSepElemsMAux___at_Array_filterSepElems___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__11; static lean_object* l_Lean_Meta_Simp_instBEqConfig___closed__1; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__23; LEAN_EXPORT lean_object* l_Lean_mkFreshId___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_termEval__prec_____closed__4; LEAN_EXPORT uint8_t l_Lean_Meta_Simp_Config_proj___default; LEAN_EXPORT lean_object* l_Lean_Meta_instBEqTransparencyMode; -LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_23049____lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Syntax_instCoeArraySyntaxSepArray(lean_object*); static lean_object* l_Lean_instQuoteProdMkStr1___rarg___closed__2; static lean_object* l_Lean_Parser_Tactic_tacticErw_______closed__11; static lean_object* l_Lean_Option_hasQuote___rarg___closed__5; LEAN_EXPORT lean_object* l_Lean_instQuoteStringStrLitKind___boxed(lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__87; -LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_23049____lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Syntax_find_x3f(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__41; -static lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__13; LEAN_EXPORT lean_object* l_Lean_Syntax_decodeStrLitAux___boxed(lean_object*, lean_object*, lean_object*); uint8_t l_List_isEmpty___rarg(lean_object*); lean_object* l_String_drop(lean_object*, lean_object*); -LEAN_EXPORT uint8_t l___private_Init_Meta_0__Lean_Meta_beqEtaStructMode____x40_Init_Meta___hyg_12593_(uint8_t, uint8_t); +LEAN_EXPORT uint8_t l___private_Init_Meta_0__Lean_Meta_beqEtaStructMode____x40_Init_Meta___hyg_12584_(uint8_t, uint8_t); LEAN_EXPORT lean_object* l_Lean_TSyntax_instCoeTSyntaxConsSyntaxNodeKindNil___rarg(lean_object*); LEAN_EXPORT lean_object* l_Array_filterSepElemsM___at_Array_filterSepElems___spec__1___boxed(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_simpAllAutoUnfold___closed__9; -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12617____closed__3; -static lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17775____closed__2; static lean_object* l_Lean_Parser_Tactic_simpAutoUnfold___closed__17; LEAN_EXPORT lean_object* l_Lean_monadNameGeneratorLift___rarg___lambda__1(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_TSyntax_expandInterpolatedStr___closed__2; +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12608____closed__5; static lean_object* l_Lean_Parser_Tactic_simpArith___closed__1; -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__11; lean_object* l_Nat_min(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__72; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__96; @@ -1351,7 +1346,6 @@ LEAN_EXPORT lean_object* l_Lean_instQuoteProdMkStr1(lean_object*, lean_object*); lean_object* l_Lean_Name_mkStr4(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Init_Meta_0__Lean_quoteList___rarg___closed__4; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__33; -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12617____closed__15; static lean_object* l_Lean_mkSepArray___closed__1; static lean_object* l_Lean_Parser_Tactic_simpArith___closed__5; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__68; @@ -1359,31 +1353,32 @@ static lean_object* l_Lean_Parser_Tactic_simpAutoUnfold___closed__8; static lean_object* l_Lean_Parser_Tactic_simpArith___closed__3; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__88; LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_TSyntax_expandInterpolatedStrChunks___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__21; LEAN_EXPORT lean_object* l_Lean_Syntax_instCoeTSyntaxArrayArraySyntax___boxed(lean_object*); LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2394_(lean_object*, lean_object*); -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12617____closed__18; LEAN_EXPORT lean_object* l_Lean_Name_getRoot___boxed(lean_object*); LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Syntax_decodeBinLitAux___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Name_getRoot(lean_object*); uint8_t lean_uint32_dec_le(uint32_t, uint32_t); static lean_object* l_Lean_Name_reprPrec___closed__5; +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12608____closed__15; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__22; -static lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__23; LEAN_EXPORT lean_object* l_Lean_mkSepArray___boxed(lean_object*, lean_object*); +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12608____closed__18; +static lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17766____closed__1; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__70; static lean_object* l_Lean_Syntax_instCoeTSyntaxArrayArraySyntax___closed__1; static lean_object* l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2394____closed__10; static lean_object* l_Lean_Name_reprPrec___closed__3; -static lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17775____closed__8; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__113; static lean_object* l___private_Init_Meta_0__Lean_quoteList___rarg___closed__2; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__35; LEAN_EXPORT uint8_t l_Lean_Name_toString_maybePseudoSyntax(lean_object*); -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12617____closed__5; static lean_object* l___private_Init_Meta_0__Lean_quoteArray_go___rarg___closed__2; -static lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17775____closed__7; +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_23040____lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__12; +static lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__10; LEAN_EXPORT lean_object* l_Lean_Syntax_instReprTSyntax(lean_object*); +static lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__20; LEAN_EXPORT lean_object* l_Lean_TSyntax_expandInterpolatedStr___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic_simpAllAutoUnfold___closed__2; static lean_object* l_Lean_termEval__prec_____closed__9; @@ -1396,7 +1391,7 @@ static lean_object* l_Array_getSepElems___rarg___closed__1; static lean_object* l_Lean_instQuoteBoolMkStr1___closed__7; LEAN_EXPORT lean_object* l_List_repr___at___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2394____spec__3(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Array_getSepElems___spec__1___rarg(lean_object*, size_t, size_t, lean_object*); -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12617____closed__14; +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12608____closed__3; static lean_object* l_Lean_Parser_Tactic_simpAllArith___closed__7; static lean_object* l_Lean_Parser_Tactic_declareSimpLikeTactic___closed__12; LEAN_EXPORT lean_object* l_Lean_Syntax_findAux(lean_object*, lean_object*); @@ -1404,9 +1399,11 @@ static lean_object* l_Lean_Name_escapePart___closed__3; LEAN_EXPORT lean_object* l_Lean_Syntax_instCoeTSyntaxArrayTSepArray___rarg___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Syntax_decodeStrLitAux(lean_object*, lean_object*, lean_object*); static lean_object* l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_2249____spec__1___closed__1; +static lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__23; uint8_t lean_string_utf8_at_end(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__40; static lean_object* l_Lean_Parser_Tactic_simpAllKind___closed__2; +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__11; static lean_object* l_Lean_Parser_Tactic_simpAutoUnfold___closed__7; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__67; static lean_object* l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2394____closed__20; @@ -1414,6 +1411,7 @@ LEAN_EXPORT lean_object* l_Lean_mkNode(lean_object*, lean_object*); static lean_object* l___private_Init_Meta_0__Lean_quoteList___rarg___closed__1; static lean_object* l_Lean_Syntax_instCoeIdentTSyntaxConsSyntaxNodeKindMkStr4Nil___closed__3; lean_object* lean_uint32_to_nat(uint32_t); +static lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__13; static lean_object* l_Lean_TSyntax_expandInterpolatedStr___closed__7; static lean_object* l_Array_forInUnsafe_loop___at_Lean_mkSepArray___spec__1___closed__1; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__51; @@ -1425,8 +1423,9 @@ LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Syntax_decodeInterpStrLit static lean_object* l_Lean___aux__Init__Meta______macroRules__Lean__Parser__Syntax__subPrec__1___closed__2; static lean_object* l_Lean_Parser_Tactic_simpArith___closed__4; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_simpAllKind; +static lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17766____closed__2; LEAN_EXPORT lean_object* l_Lean_TSyntax_expandInterpolatedStr___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17775____closed__1; +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12608____closed__1; static lean_object* l_List_foldr___at_Lean_Syntax_decodeNameLit___spec__1___closed__4; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__111; lean_object* lean_nat_to_int(lean_object*); @@ -1434,6 +1433,7 @@ static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean static lean_object* l_Lean_instQuoteSubstringMkStr1___closed__3; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__39; LEAN_EXPORT uint8_t l_Lean_Syntax_isToken(lean_object*, lean_object*); +static lean_object* l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__17; LEAN_EXPORT lean_object* l_Lean_Syntax_isFieldIdx_x3f___boxed(lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__36; static lean_object* l_Lean_Parser_Tactic_simpAutoUnfold___closed__24; @@ -1444,8 +1444,8 @@ LEAN_EXPORT lean_object* l_Lean_evalPrio(lean_object*, lean_object*, lean_object static lean_object* l_Lean_Parser_Tactic_simpAllArithAutoUnfold___closed__5; LEAN_EXPORT lean_object* l_Lean_Meta_Simp_defaultMaxSteps; static lean_object* l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_2249____spec__1___closed__3; -static lean_object* l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__9; LEAN_EXPORT lean_object* l_Lean_instQuoteTermMkStr1; +static lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17766____closed__4; static lean_object* l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_Meta___hyg_2394____closed__7; LEAN_EXPORT lean_object* l___private_Init_Data_String_Basic_0__Substring_takeWhileAux___at___private_Init_Meta_0__Lean_Syntax_splitNameLitAux___spec__1___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Syntax_SepArray_getElems___spec__1(lean_object*, size_t, size_t, lean_object*); @@ -1461,19 +1461,16 @@ static lean_object* l___private_Init_Meta_0__Lean_Syntax_reprSyntax____x40_Init_ static lean_object* l_Lean_Parser_Tactic_simpAllAutoUnfold___closed__8; static lean_object* l_Lean_termEval__prio_____closed__3; LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_simpArithAutoUnfold; -LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12617____boxed(lean_object*, lean_object*); static lean_object* l_Lean_TSyntax_Compat_instCoeTailArraySyntaxTSyntaxArray___closed__1; -static lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__10; static lean_object* l_Lean_Parser_Tactic_simpAutoUnfold___closed__4; static lean_object* l_Lean_Meta_Simp_instInhabitedConfig___closed__1; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__48; static lean_object* l_Lean_TSyntax_expandInterpolatedStr___lambda__1___closed__3; static lean_object* l_Lean_Parser_Tactic_simpAllKind___closed__1; -static lean_object* l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12617____closed__1; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__3; static lean_object* l_Lean___aux__Init__Meta______macroRules__Lean__Parser__Syntax__addPrec__1___closed__1; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__29; -static lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__20; +LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12608____boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Syntax_updateLast___at_Lean_Syntax_setTailInfoAux___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___closed__11; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__13; @@ -1483,17 +1480,20 @@ LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_quoteArray___rarg(lean_ob static lean_object* l_Lean_Parser_Tactic_simpAllArithAutoUnfold___closed__3; LEAN_EXPORT lean_object* l_Lean_Meta_DSimp_instReprConfig; static lean_object* l_List_repr_x27___at___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_2249____spec__1___closed__5; +static lean_object* l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12608____closed__11; static lean_object* l_Lean_Parser_Tactic_simpAutoUnfold___closed__9; uint8_t lean_string_dec_eq(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Syntax_mkLit(lean_object*, lean_object*, lean_object*); lean_object* l_Char_ofNat(lean_object*); +static lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__21; +static lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17766____closed__8; uint8_t lean_nat_dec_lt(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Meta_0__Array_mapSepElemsMAux___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_versionStringCore___closed__7; -static lean_object* l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__17; static lean_object* l_Lean_instQuoteSubstringMkStr1___closed__2; static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__declareSimpLikeTactic__1___lambda__1___closed__34; lean_object* l_Repr_addAppParen(lean_object*, lean_object*); +static lean_object* l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__9; static lean_object* l_Lean_Parser_Tactic_simpArith___closed__2; LEAN_EXPORT lean_object* l___private_Init_Data_String_Basic_0__Substring_takeWhileAux___at___private_Init_Meta_0__Lean_Syntax_splitNameLitAux___spec__1(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tactic__tacticErw______1___closed__15; @@ -18593,7 +18593,7 @@ x_1 = 0; return x_1; } } -LEAN_EXPORT uint8_t l___private_Init_Meta_0__Lean_Meta_beqTransparencyMode____x40_Init_Meta___hyg_12380_(uint8_t x_1, uint8_t x_2) { +LEAN_EXPORT uint8_t l___private_Init_Meta_0__Lean_Meta_beqTransparencyMode____x40_Init_Meta___hyg_12371_(uint8_t x_1, uint8_t x_2) { _start: { lean_object* x_3; lean_object* x_4; uint8_t x_5; @@ -18605,7 +18605,7 @@ lean_dec(x_3); return x_5; } } -LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Meta_beqTransparencyMode____x40_Init_Meta___hyg_12380____boxed(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Meta_beqTransparencyMode____x40_Init_Meta___hyg_12371____boxed(lean_object* x_1, lean_object* x_2) { _start: { uint8_t x_3; uint8_t x_4; uint8_t x_5; lean_object* x_6; @@ -18613,7 +18613,7 @@ x_3 = lean_unbox(x_1); lean_dec(x_1); x_4 = lean_unbox(x_2); lean_dec(x_2); -x_5 = l___private_Init_Meta_0__Lean_Meta_beqTransparencyMode____x40_Init_Meta___hyg_12380_(x_3, x_4); +x_5 = l___private_Init_Meta_0__Lean_Meta_beqTransparencyMode____x40_Init_Meta___hyg_12371_(x_3, x_4); x_6 = lean_box(x_5); return x_6; } @@ -18622,7 +18622,7 @@ static lean_object* _init_l_Lean_Meta_instBEqTransparencyMode___closed__1() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l___private_Init_Meta_0__Lean_Meta_beqTransparencyMode____x40_Init_Meta___hyg_12380____boxed), 2, 0); +x_1 = lean_alloc_closure((void*)(l___private_Init_Meta_0__Lean_Meta_beqTransparencyMode____x40_Init_Meta___hyg_12371____boxed), 2, 0); return x_1; } } @@ -18634,7 +18634,7 @@ x_1 = l_Lean_Meta_instBEqTransparencyMode___closed__1; return x_1; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__1() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__1() { _start: { lean_object* x_1; @@ -18642,33 +18642,33 @@ x_1 = lean_mk_string_from_bytes("Lean.Meta.TransparencyMode.all", 30); return x_1; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__2() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__1; +x_1 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__1; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__3() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_2249____closed__4; -x_2 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__2; +x_2 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__2; x_3 = lean_alloc_ctor(3, 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___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__4() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__4() { _start: { lean_object* x_1; uint8_t x_2; lean_object* x_3; -x_1 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__3; +x_1 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__3; x_2 = 0; x_3 = lean_alloc_ctor(5, 1, 1); lean_ctor_set(x_3, 0, x_1); @@ -18676,23 +18676,23 @@ lean_ctor_set_uint8(x_3, sizeof(void*)*1, x_2); return x_3; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__5() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_2249____closed__5; -x_2 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__2; +x_2 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__2; x_3 = lean_alloc_ctor(3, 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___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__6() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__6() { _start: { lean_object* x_1; uint8_t x_2; lean_object* x_3; -x_1 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__5; +x_1 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__5; x_2 = 0; x_3 = lean_alloc_ctor(5, 1, 1); lean_ctor_set(x_3, 0, x_1); @@ -18700,7 +18700,7 @@ lean_ctor_set_uint8(x_3, sizeof(void*)*1, x_2); return x_3; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__7() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__7() { _start: { lean_object* x_1; @@ -18708,33 +18708,33 @@ x_1 = lean_mk_string_from_bytes("Lean.Meta.TransparencyMode.default", 34); return x_1; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__8() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__8() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__7; +x_1 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__7; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__9() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_2249____closed__4; -x_2 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__8; +x_2 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__8; x_3 = lean_alloc_ctor(3, 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___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__10() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__10() { _start: { lean_object* x_1; uint8_t x_2; lean_object* x_3; -x_1 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__9; +x_1 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__9; x_2 = 0; x_3 = lean_alloc_ctor(5, 1, 1); lean_ctor_set(x_3, 0, x_1); @@ -18742,23 +18742,23 @@ lean_ctor_set_uint8(x_3, sizeof(void*)*1, x_2); return x_3; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__11() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__11() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_2249____closed__5; -x_2 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__8; +x_2 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__8; x_3 = lean_alloc_ctor(3, 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___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__12() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__12() { _start: { lean_object* x_1; uint8_t x_2; lean_object* x_3; -x_1 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__11; +x_1 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__11; x_2 = 0; x_3 = lean_alloc_ctor(5, 1, 1); lean_ctor_set(x_3, 0, x_1); @@ -18766,7 +18766,7 @@ lean_ctor_set_uint8(x_3, sizeof(void*)*1, x_2); return x_3; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__13() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__13() { _start: { lean_object* x_1; @@ -18774,33 +18774,33 @@ x_1 = lean_mk_string_from_bytes("Lean.Meta.TransparencyMode.reducible", 36); return x_1; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__14() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__14() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__13; +x_1 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__13; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__15() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__15() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_2249____closed__4; -x_2 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__14; +x_2 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__14; x_3 = lean_alloc_ctor(3, 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___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__16() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__16() { _start: { lean_object* x_1; uint8_t x_2; lean_object* x_3; -x_1 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__15; +x_1 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__15; x_2 = 0; x_3 = lean_alloc_ctor(5, 1, 1); lean_ctor_set(x_3, 0, x_1); @@ -18808,23 +18808,23 @@ lean_ctor_set_uint8(x_3, sizeof(void*)*1, x_2); return x_3; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__17() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__17() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_2249____closed__5; -x_2 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__14; +x_2 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__14; x_3 = lean_alloc_ctor(3, 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___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__18() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__18() { _start: { lean_object* x_1; uint8_t x_2; lean_object* x_3; -x_1 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__17; +x_1 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__17; x_2 = 0; x_3 = lean_alloc_ctor(5, 1, 1); lean_ctor_set(x_3, 0, x_1); @@ -18832,7 +18832,7 @@ lean_ctor_set_uint8(x_3, sizeof(void*)*1, x_2); return x_3; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__19() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__19() { _start: { lean_object* x_1; @@ -18840,33 +18840,33 @@ x_1 = lean_mk_string_from_bytes("Lean.Meta.TransparencyMode.instances", 36); return x_1; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__20() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__20() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__19; +x_1 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__19; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__21() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__21() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_2249____closed__4; -x_2 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__20; +x_2 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__20; x_3 = lean_alloc_ctor(3, 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___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__22() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__22() { _start: { lean_object* x_1; uint8_t x_2; lean_object* x_3; -x_1 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__21; +x_1 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__21; x_2 = 0; x_3 = lean_alloc_ctor(5, 1, 1); lean_ctor_set(x_3, 0, x_1); @@ -18874,23 +18874,23 @@ lean_ctor_set_uint8(x_3, sizeof(void*)*1, x_2); return x_3; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__23() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__23() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_2249____closed__5; -x_2 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__20; +x_2 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__20; x_3 = lean_alloc_ctor(3, 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___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__24() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__24() { _start: { lean_object* x_1; uint8_t x_2; lean_object* x_3; -x_1 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__23; +x_1 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__23; x_2 = 0; x_3 = lean_alloc_ctor(5, 1, 1); lean_ctor_set(x_3, 0, x_1); @@ -18898,7 +18898,7 @@ lean_ctor_set_uint8(x_3, sizeof(void*)*1, x_2); return x_3; } } -LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404_(uint8_t x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395_(uint8_t x_1, lean_object* x_2) { _start: { switch (x_1) { @@ -18910,14 +18910,14 @@ x_4 = lean_nat_dec_le(x_3, x_2); if (x_4 == 0) { lean_object* x_5; lean_object* x_6; -x_5 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__4; +x_5 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__4; x_6 = l_Repr_addAppParen(x_5, x_2); return x_6; } else { lean_object* x_7; lean_object* x_8; -x_7 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__6; +x_7 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__6; x_8 = l_Repr_addAppParen(x_7, x_2); return x_8; } @@ -18930,14 +18930,14 @@ x_10 = lean_nat_dec_le(x_9, x_2); if (x_10 == 0) { lean_object* x_11; lean_object* x_12; -x_11 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__10; +x_11 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__10; x_12 = l_Repr_addAppParen(x_11, x_2); return x_12; } else { lean_object* x_13; lean_object* x_14; -x_13 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__12; +x_13 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__12; x_14 = l_Repr_addAppParen(x_13, x_2); return x_14; } @@ -18950,14 +18950,14 @@ x_16 = lean_nat_dec_le(x_15, x_2); if (x_16 == 0) { lean_object* x_17; lean_object* x_18; -x_17 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__16; +x_17 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__16; x_18 = l_Repr_addAppParen(x_17, x_2); return x_18; } else { lean_object* x_19; lean_object* x_20; -x_19 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__18; +x_19 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__18; x_20 = l_Repr_addAppParen(x_19, x_2); return x_20; } @@ -18970,14 +18970,14 @@ x_22 = lean_nat_dec_le(x_21, x_2); if (x_22 == 0) { lean_object* x_23; lean_object* x_24; -x_23 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__22; +x_23 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__22; x_24 = l_Repr_addAppParen(x_23, x_2); return x_24; } else { lean_object* x_25; lean_object* x_26; -x_25 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__24; +x_25 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__24; x_26 = l_Repr_addAppParen(x_25, x_2); return x_26; } @@ -18985,13 +18985,13 @@ return x_26; } } } -LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____boxed(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____boxed(lean_object* x_1, lean_object* x_2) { _start: { uint8_t x_3; lean_object* x_4; x_3 = lean_unbox(x_1); lean_dec(x_1); -x_4 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404_(x_3, x_2); +x_4 = l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395_(x_3, x_2); lean_dec(x_2); return x_4; } @@ -19000,7 +19000,7 @@ static lean_object* _init_l_Lean_Meta_instReprTransparencyMode___closed__1() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____boxed), 2, 0); +x_1 = lean_alloc_closure((void*)(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____boxed), 2, 0); return x_1; } } @@ -19083,7 +19083,7 @@ x_1 = 0; return x_1; } } -LEAN_EXPORT uint8_t l___private_Init_Meta_0__Lean_Meta_beqEtaStructMode____x40_Init_Meta___hyg_12593_(uint8_t x_1, uint8_t x_2) { +LEAN_EXPORT uint8_t l___private_Init_Meta_0__Lean_Meta_beqEtaStructMode____x40_Init_Meta___hyg_12584_(uint8_t x_1, uint8_t x_2) { _start: { lean_object* x_3; lean_object* x_4; uint8_t x_5; @@ -19095,7 +19095,7 @@ lean_dec(x_3); return x_5; } } -LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Meta_beqEtaStructMode____x40_Init_Meta___hyg_12593____boxed(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Meta_beqEtaStructMode____x40_Init_Meta___hyg_12584____boxed(lean_object* x_1, lean_object* x_2) { _start: { uint8_t x_3; uint8_t x_4; uint8_t x_5; lean_object* x_6; @@ -19103,7 +19103,7 @@ x_3 = lean_unbox(x_1); lean_dec(x_1); x_4 = lean_unbox(x_2); lean_dec(x_2); -x_5 = l___private_Init_Meta_0__Lean_Meta_beqEtaStructMode____x40_Init_Meta___hyg_12593_(x_3, x_4); +x_5 = l___private_Init_Meta_0__Lean_Meta_beqEtaStructMode____x40_Init_Meta___hyg_12584_(x_3, x_4); x_6 = lean_box(x_5); return x_6; } @@ -19112,7 +19112,7 @@ static lean_object* _init_l_Lean_Meta_instBEqEtaStructMode___closed__1() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l___private_Init_Meta_0__Lean_Meta_beqEtaStructMode____x40_Init_Meta___hyg_12593____boxed), 2, 0); +x_1 = lean_alloc_closure((void*)(l___private_Init_Meta_0__Lean_Meta_beqEtaStructMode____x40_Init_Meta___hyg_12584____boxed), 2, 0); return x_1; } } @@ -19124,7 +19124,7 @@ x_1 = l_Lean_Meta_instBEqEtaStructMode___closed__1; return x_1; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12617____closed__1() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12608____closed__1() { _start: { lean_object* x_1; @@ -19132,33 +19132,33 @@ x_1 = lean_mk_string_from_bytes("Lean.Meta.EtaStructMode.all", 27); return x_1; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12617____closed__2() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12608____closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12617____closed__1; +x_1 = l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12608____closed__1; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12617____closed__3() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12608____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_2249____closed__4; -x_2 = l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12617____closed__2; +x_2 = l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12608____closed__2; x_3 = lean_alloc_ctor(3, 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___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12617____closed__4() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12608____closed__4() { _start: { lean_object* x_1; uint8_t x_2; lean_object* x_3; -x_1 = l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12617____closed__3; +x_1 = l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12608____closed__3; x_2 = 0; x_3 = lean_alloc_ctor(5, 1, 1); lean_ctor_set(x_3, 0, x_1); @@ -19166,23 +19166,23 @@ lean_ctor_set_uint8(x_3, sizeof(void*)*1, x_2); return x_3; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12617____closed__5() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12608____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_2249____closed__5; -x_2 = l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12617____closed__2; +x_2 = l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12608____closed__2; x_3 = lean_alloc_ctor(3, 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___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12617____closed__6() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12608____closed__6() { _start: { lean_object* x_1; uint8_t x_2; lean_object* x_3; -x_1 = l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12617____closed__5; +x_1 = l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12608____closed__5; x_2 = 0; x_3 = lean_alloc_ctor(5, 1, 1); lean_ctor_set(x_3, 0, x_1); @@ -19190,7 +19190,7 @@ lean_ctor_set_uint8(x_3, sizeof(void*)*1, x_2); return x_3; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12617____closed__7() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12608____closed__7() { _start: { lean_object* x_1; @@ -19198,33 +19198,33 @@ x_1 = lean_mk_string_from_bytes("Lean.Meta.EtaStructMode.notClasses", 34); return x_1; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12617____closed__8() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12608____closed__8() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12617____closed__7; +x_1 = l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12608____closed__7; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12617____closed__9() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12608____closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_2249____closed__4; -x_2 = l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12617____closed__8; +x_2 = l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12608____closed__8; x_3 = lean_alloc_ctor(3, 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___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12617____closed__10() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12608____closed__10() { _start: { lean_object* x_1; uint8_t x_2; lean_object* x_3; -x_1 = l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12617____closed__9; +x_1 = l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12608____closed__9; x_2 = 0; x_3 = lean_alloc_ctor(5, 1, 1); lean_ctor_set(x_3, 0, x_1); @@ -19232,23 +19232,23 @@ lean_ctor_set_uint8(x_3, sizeof(void*)*1, x_2); return x_3; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12617____closed__11() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12608____closed__11() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_2249____closed__5; -x_2 = l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12617____closed__8; +x_2 = l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12608____closed__8; x_3 = lean_alloc_ctor(3, 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___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12617____closed__12() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12608____closed__12() { _start: { lean_object* x_1; uint8_t x_2; lean_object* x_3; -x_1 = l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12617____closed__11; +x_1 = l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12608____closed__11; x_2 = 0; x_3 = lean_alloc_ctor(5, 1, 1); lean_ctor_set(x_3, 0, x_1); @@ -19256,7 +19256,7 @@ lean_ctor_set_uint8(x_3, sizeof(void*)*1, x_2); return x_3; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12617____closed__13() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12608____closed__13() { _start: { lean_object* x_1; @@ -19264,33 +19264,33 @@ x_1 = lean_mk_string_from_bytes("Lean.Meta.EtaStructMode.none", 28); return x_1; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12617____closed__14() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12608____closed__14() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12617____closed__13; +x_1 = l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12608____closed__13; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12617____closed__15() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12608____closed__15() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_2249____closed__4; -x_2 = l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12617____closed__14; +x_2 = l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12608____closed__14; x_3 = lean_alloc_ctor(3, 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___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12617____closed__16() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12608____closed__16() { _start: { lean_object* x_1; uint8_t x_2; lean_object* x_3; -x_1 = l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12617____closed__15; +x_1 = l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12608____closed__15; x_2 = 0; x_3 = lean_alloc_ctor(5, 1, 1); lean_ctor_set(x_3, 0, x_1); @@ -19298,23 +19298,23 @@ lean_ctor_set_uint8(x_3, sizeof(void*)*1, x_2); return x_3; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12617____closed__17() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12608____closed__17() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l___private_Init_Meta_0__Lean_Syntax_reprPreresolved____x40_Init_Meta___hyg_2249____closed__5; -x_2 = l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12617____closed__14; +x_2 = l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12608____closed__14; x_3 = lean_alloc_ctor(3, 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___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12617____closed__18() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12608____closed__18() { _start: { lean_object* x_1; uint8_t x_2; lean_object* x_3; -x_1 = l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12617____closed__17; +x_1 = l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12608____closed__17; x_2 = 0; x_3 = lean_alloc_ctor(5, 1, 1); lean_ctor_set(x_3, 0, x_1); @@ -19322,7 +19322,7 @@ lean_ctor_set_uint8(x_3, sizeof(void*)*1, x_2); return x_3; } } -LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12617_(uint8_t x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12608_(uint8_t x_1, lean_object* x_2) { _start: { switch (x_1) { @@ -19334,14 +19334,14 @@ x_4 = lean_nat_dec_le(x_3, x_2); if (x_4 == 0) { lean_object* x_5; lean_object* x_6; -x_5 = l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12617____closed__4; +x_5 = l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12608____closed__4; x_6 = l_Repr_addAppParen(x_5, x_2); return x_6; } else { lean_object* x_7; lean_object* x_8; -x_7 = l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12617____closed__6; +x_7 = l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12608____closed__6; x_8 = l_Repr_addAppParen(x_7, x_2); return x_8; } @@ -19354,14 +19354,14 @@ x_10 = lean_nat_dec_le(x_9, x_2); if (x_10 == 0) { lean_object* x_11; lean_object* x_12; -x_11 = l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12617____closed__10; +x_11 = l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12608____closed__10; x_12 = l_Repr_addAppParen(x_11, x_2); return x_12; } else { lean_object* x_13; lean_object* x_14; -x_13 = l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12617____closed__12; +x_13 = l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12608____closed__12; x_14 = l_Repr_addAppParen(x_13, x_2); return x_14; } @@ -19374,14 +19374,14 @@ x_16 = lean_nat_dec_le(x_15, x_2); if (x_16 == 0) { lean_object* x_17; lean_object* x_18; -x_17 = l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12617____closed__16; +x_17 = l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12608____closed__16; x_18 = l_Repr_addAppParen(x_17, x_2); return x_18; } else { lean_object* x_19; lean_object* x_20; -x_19 = l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12617____closed__18; +x_19 = l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12608____closed__18; x_20 = l_Repr_addAppParen(x_19, x_2); return x_20; } @@ -19389,13 +19389,13 @@ return x_20; } } } -LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12617____boxed(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12608____boxed(lean_object* x_1, lean_object* x_2) { _start: { uint8_t x_3; lean_object* x_4; x_3 = lean_unbox(x_1); lean_dec(x_1); -x_4 = l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12617_(x_3, x_2); +x_4 = l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12608_(x_3, x_2); lean_dec(x_2); return x_4; } @@ -19404,7 +19404,7 @@ static lean_object* _init_l_Lean_Meta_instReprEtaStructMode___closed__1() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12617____boxed), 2, 0); +x_1 = lean_alloc_closure((void*)(l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12608____boxed), 2, 0); return x_1; } } @@ -19506,7 +19506,7 @@ x_1 = l_Lean_Meta_DSimp_instInhabitedConfig___closed__1; return x_1; } } -LEAN_EXPORT uint8_t l___private_Init_Meta_0__Lean_Meta_DSimp_beqConfig____x40_Init_Meta___hyg_12852_(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT uint8_t l___private_Init_Meta_0__Lean_Meta_DSimp_beqConfig____x40_Init_Meta___hyg_12843_(lean_object* x_1, lean_object* x_2) { _start: { uint8_t x_3; uint8_t x_4; uint8_t x_5; uint8_t x_6; uint8_t x_7; uint8_t x_8; uint8_t x_9; uint8_t x_10; uint8_t x_11; uint8_t x_12; uint8_t x_13; uint8_t x_14; uint8_t x_15; uint8_t x_16; uint8_t x_17; uint8_t x_18; lean_object* x_19; lean_object* x_23; lean_object* x_29; lean_object* x_35; lean_object* x_43; uint8_t x_49; @@ -19659,7 +19659,7 @@ block_42: { uint8_t x_36; lean_dec(x_35); -x_36 = l___private_Init_Meta_0__Lean_Meta_beqEtaStructMode____x40_Init_Meta___hyg_12593_(x_6, x_14); +x_36 = l___private_Init_Meta_0__Lean_Meta_beqEtaStructMode____x40_Init_Meta___hyg_12584_(x_6, x_14); if (x_36 == 0) { uint8_t x_37; @@ -19784,11 +19784,11 @@ goto block_48; } } } -LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Meta_DSimp_beqConfig____x40_Init_Meta___hyg_12852____boxed(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Meta_DSimp_beqConfig____x40_Init_Meta___hyg_12843____boxed(lean_object* x_1, lean_object* x_2) { _start: { uint8_t x_3; lean_object* x_4; -x_3 = l___private_Init_Meta_0__Lean_Meta_DSimp_beqConfig____x40_Init_Meta___hyg_12852_(x_1, x_2); +x_3 = l___private_Init_Meta_0__Lean_Meta_DSimp_beqConfig____x40_Init_Meta___hyg_12843_(x_1, x_2); lean_dec(x_2); lean_dec(x_1); x_4 = lean_box(x_3); @@ -19799,7 +19799,7 @@ static lean_object* _init_l_Lean_Meta_DSimp_instBEqConfig___closed__1() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l___private_Init_Meta_0__Lean_Meta_DSimp_beqConfig____x40_Init_Meta___hyg_12852____boxed), 2, 0); +x_1 = lean_alloc_closure((void*)(l___private_Init_Meta_0__Lean_Meta_DSimp_beqConfig____x40_Init_Meta___hyg_12843____boxed), 2, 0); return x_1; } } @@ -19811,7 +19811,7 @@ x_1 = l_Lean_Meta_DSimp_instBEqConfig___closed__1; return x_1; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__1() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__1() { _start: { lean_object* x_1; @@ -19819,33 +19819,33 @@ x_1 = lean_mk_string_from_bytes("zeta", 4); return x_1; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__2() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__1; +x_1 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__1; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__3() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__2; +x_2 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__2; x_3 = lean_alloc_ctor(4, 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___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__4() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__3; +x_1 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__3; x_2 = l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_2667____rarg___closed__5; x_3 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -19853,7 +19853,7 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__5() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__5() { _start: { lean_object* x_1; lean_object* x_2; @@ -19862,7 +19862,7 @@ x_2 = lean_nat_to_int(x_1); return x_2; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__6() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__6() { _start: { lean_object* x_1; @@ -19870,17 +19870,17 @@ x_1 = lean_mk_string_from_bytes("beta", 4); return x_1; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__7() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__7() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__6; +x_1 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__6; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__8() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__8() { _start: { lean_object* x_1; @@ -19888,17 +19888,17 @@ x_1 = lean_mk_string_from_bytes("eta", 3); return x_1; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__9() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__9() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__8; +x_1 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__8; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__10() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__10() { _start: { lean_object* x_1; @@ -19906,17 +19906,17 @@ x_1 = lean_mk_string_from_bytes("etaStruct", 9); return x_1; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__11() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__11() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__10; +x_1 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__10; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__12() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__12() { _start: { lean_object* x_1; lean_object* x_2; @@ -19925,7 +19925,7 @@ x_2 = lean_nat_to_int(x_1); return x_2; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__13() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__13() { _start: { lean_object* x_1; @@ -19933,17 +19933,17 @@ x_1 = lean_mk_string_from_bytes("iota", 4); return x_1; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__14() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__14() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__13; +x_1 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__13; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__15() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__15() { _start: { lean_object* x_1; @@ -19951,17 +19951,17 @@ x_1 = lean_mk_string_from_bytes("proj", 4); return x_1; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__16() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__16() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__15; +x_1 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__15; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__17() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__17() { _start: { lean_object* x_1; @@ -19969,17 +19969,17 @@ x_1 = lean_mk_string_from_bytes("decide", 6); return x_1; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__18() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__18() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__17; +x_1 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__17; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__19() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__19() { _start: { lean_object* x_1; lean_object* x_2; @@ -19988,7 +19988,7 @@ x_2 = lean_nat_to_int(x_1); return x_2; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__20() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__20() { _start: { lean_object* x_1; @@ -19996,17 +19996,17 @@ x_1 = lean_mk_string_from_bytes("autoUnfold", 10); return x_1; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__21() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__21() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__20; +x_1 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__20; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__22() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__22() { _start: { lean_object* x_1; lean_object* x_2; @@ -20015,7 +20015,7 @@ x_2 = lean_nat_to_int(x_1); return x_2; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__23() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__23() { _start: { lean_object* x_1; lean_object* x_2; @@ -20025,23 +20025,23 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__24() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__24() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__22; -x_2 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__23; +x_1 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__22; +x_2 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__23; x_3 = lean_alloc_ctor(3, 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___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__25() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__25() { _start: { lean_object* x_1; uint8_t x_2; lean_object* x_3; -x_1 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__24; +x_1 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__24; x_2 = 0; x_3 = lean_alloc_ctor(5, 1, 1); lean_ctor_set(x_3, 0, x_1); @@ -20049,7 +20049,7 @@ lean_ctor_set_uint8(x_3, sizeof(void*)*1, x_2); return x_3; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__26() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__26() { _start: { lean_object* x_1; lean_object* x_2; @@ -20059,23 +20059,23 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__27() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__27() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__22; -x_2 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__26; +x_1 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__22; +x_2 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__26; x_3 = lean_alloc_ctor(3, 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___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__28() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__28() { _start: { lean_object* x_1; uint8_t x_2; lean_object* x_3; -x_1 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__27; +x_1 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__27; x_2 = 0; x_3 = lean_alloc_ctor(5, 1, 1); lean_ctor_set(x_3, 0, x_1); @@ -20083,7 +20083,7 @@ lean_ctor_set_uint8(x_3, sizeof(void*)*1, x_2); return x_3; } } -LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058_(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049_(lean_object* x_1, lean_object* x_2) { _start: { uint8_t x_3; uint8_t x_4; uint8_t x_5; uint8_t x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; uint8_t x_11; lean_object* x_12; uint8_t x_13; uint8_t x_14; uint8_t x_15; uint8_t x_16; lean_object* x_17; @@ -20092,8 +20092,8 @@ x_4 = lean_ctor_get_uint8(x_1, 1); x_5 = lean_ctor_get_uint8(x_1, 2); x_6 = lean_ctor_get_uint8(x_1, 3); x_7 = lean_unsigned_to_nat(0u); -x_8 = l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12617_(x_6, x_7); -x_9 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__12; +x_8 = l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12608_(x_6, x_7); +x_9 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__12; x_10 = lean_alloc_ctor(3, 2, 0); lean_ctor_set(x_10, 0, x_9); lean_ctor_set(x_10, 1, x_8); @@ -20108,28 +20108,28 @@ x_16 = lean_ctor_get_uint8(x_1, 7); if (x_3 == 0) { lean_object* x_118; -x_118 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__23; +x_118 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__23; x_17 = x_118; goto block_117; } else { lean_object* x_119; -x_119 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__26; +x_119 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__26; x_17 = x_119; goto block_117; } block_117: { lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; -x_18 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__5; +x_18 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__5; x_19 = lean_alloc_ctor(3, 2, 0); lean_ctor_set(x_19, 0, x_18); lean_ctor_set(x_19, 1, x_17); x_20 = lean_alloc_ctor(5, 1, 1); lean_ctor_set(x_20, 0, x_19); lean_ctor_set_uint8(x_20, sizeof(void*)*1, x_11); -x_21 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__4; +x_21 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__4; x_22 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_22, 0, x_21); lean_ctor_set(x_22, 1, x_20); @@ -20141,7 +20141,7 @@ x_25 = lean_box(1); x_26 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_26, 0, x_24); lean_ctor_set(x_26, 1, x_25); -x_27 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__7; +x_27 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__7; x_28 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_28, 0, x_26); lean_ctor_set(x_28, 1, x_27); @@ -20152,14 +20152,14 @@ lean_ctor_set(x_30, 1, x_29); if (x_4 == 0) { lean_object* x_115; -x_115 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__23; +x_115 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__23; x_31 = x_115; goto block_114; } else { lean_object* x_116; -x_116 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__26; +x_116 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__26; x_31 = x_116; goto block_114; } @@ -20181,7 +20181,7 @@ lean_ctor_set(x_35, 1, x_23); x_36 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_36, 0, x_35); lean_ctor_set(x_36, 1, x_25); -x_37 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__9; +x_37 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__9; x_38 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_38, 0, x_36); lean_ctor_set(x_38, 1, x_37); @@ -20191,14 +20191,14 @@ lean_ctor_set(x_39, 1, x_29); if (x_5 == 0) { lean_object* x_112; -x_112 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__23; +x_112 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__23; x_40 = x_112; goto block_111; } else { lean_object* x_113; -x_113 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__26; +x_113 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__26; x_40 = x_113; goto block_111; } @@ -20221,7 +20221,7 @@ lean_ctor_set(x_45, 1, x_23); x_46 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_46, 0, x_45); lean_ctor_set(x_46, 1, x_25); -x_47 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__11; +x_47 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__11; x_48 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_48, 0, x_46); lean_ctor_set(x_48, 1, x_47); @@ -20237,7 +20237,7 @@ lean_ctor_set(x_51, 1, x_23); x_52 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_52, 0, x_51); lean_ctor_set(x_52, 1, x_25); -x_53 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__14; +x_53 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__14; x_54 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_54, 0, x_52); lean_ctor_set(x_54, 1, x_53); @@ -20247,14 +20247,14 @@ lean_ctor_set(x_55, 1, x_29); if (x_13 == 0) { lean_object* x_109; -x_109 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__23; +x_109 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__23; x_56 = x_109; goto block_108; } else { lean_object* x_110; -x_110 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__26; +x_110 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__26; x_56 = x_110; goto block_108; } @@ -20276,7 +20276,7 @@ lean_ctor_set(x_60, 1, x_23); x_61 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_61, 0, x_60); lean_ctor_set(x_61, 1, x_25); -x_62 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__16; +x_62 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__16; x_63 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_63, 0, x_61); lean_ctor_set(x_63, 1, x_62); @@ -20286,14 +20286,14 @@ lean_ctor_set(x_64, 1, x_29); if (x_14 == 0) { lean_object* x_106; -x_106 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__23; +x_106 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__23; x_65 = x_106; goto block_105; } else { lean_object* x_107; -x_107 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__26; +x_107 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__26; x_65 = x_107; goto block_105; } @@ -20315,7 +20315,7 @@ lean_ctor_set(x_69, 1, x_23); x_70 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_70, 0, x_69); lean_ctor_set(x_70, 1, x_25); -x_71 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__18; +x_71 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__18; x_72 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_72, 0, x_70); lean_ctor_set(x_72, 1, x_71); @@ -20325,21 +20325,21 @@ lean_ctor_set(x_73, 1, x_29); if (x_15 == 0) { lean_object* x_103; -x_103 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__23; +x_103 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__23; x_74 = x_103; goto block_102; } else { lean_object* x_104; -x_104 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__26; +x_104 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__26; x_74 = x_104; goto block_102; } block_102: { lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; -x_75 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__19; +x_75 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__19; x_76 = lean_alloc_ctor(3, 2, 0); lean_ctor_set(x_76, 0, x_75); lean_ctor_set(x_76, 1, x_74); @@ -20355,7 +20355,7 @@ lean_ctor_set(x_79, 1, x_23); x_80 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_80, 0, x_79); lean_ctor_set(x_80, 1, x_25); -x_81 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__21; +x_81 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__21; x_82 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_82, 0, x_80); lean_ctor_set(x_82, 1, x_81); @@ -20365,7 +20365,7 @@ lean_ctor_set(x_83, 1, x_29); if (x_16 == 0) { lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; -x_84 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__25; +x_84 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__25; x_85 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_85, 0, x_83); lean_ctor_set(x_85, 1, x_84); @@ -20389,7 +20389,7 @@ return x_92; else { lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; -x_93 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__28; +x_93 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__28; x_94 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_94, 0, x_83); lean_ctor_set(x_94, 1, x_93); @@ -20418,11 +20418,11 @@ return x_101; } } } -LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____boxed(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058_(x_1, x_2); +x_3 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049_(x_1, x_2); lean_dec(x_2); lean_dec(x_1); return x_3; @@ -20432,7 +20432,7 @@ static lean_object* _init_l_Lean_Meta_DSimp_instReprConfig___closed__1() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____boxed), 2, 0); +x_1 = lean_alloc_closure((void*)(l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____boxed), 2, 0); return x_1; } } @@ -20606,7 +20606,7 @@ x_1 = l_Lean_Meta_Simp_instInhabitedConfig___closed__1; return x_1; } } -LEAN_EXPORT uint8_t l___private_Init_Meta_0__Lean_Meta_Simp_beqConfig____x40_Init_Meta___hyg_13424_(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT uint8_t l___private_Init_Meta_0__Lean_Meta_Simp_beqConfig____x40_Init_Meta___hyg_13415_(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; lean_object* x_4; uint8_t x_5; uint8_t x_6; uint8_t x_7; uint8_t x_8; uint8_t x_9; uint8_t x_10; uint8_t x_11; uint8_t x_12; uint8_t x_13; uint8_t x_14; uint8_t x_15; uint8_t x_16; uint8_t x_17; lean_object* x_18; lean_object* x_19; uint8_t x_20; uint8_t x_21; uint8_t x_22; uint8_t x_23; uint8_t x_24; uint8_t x_25; uint8_t x_26; uint8_t x_27; uint8_t x_28; uint8_t x_29; uint8_t x_30; uint8_t x_31; uint8_t x_32; lean_object* x_33; lean_object* x_37; lean_object* x_43; lean_object* x_49; lean_object* x_55; lean_object* x_61; lean_object* x_69; lean_object* x_75; lean_object* x_81; lean_object* x_87; lean_object* x_93; uint8_t x_99; @@ -20864,7 +20864,7 @@ block_68: { uint8_t x_62; lean_dec(x_61); -x_62 = l___private_Init_Meta_0__Lean_Meta_beqEtaStructMode____x40_Init_Meta___hyg_12593_(x_11, x_26); +x_62 = l___private_Init_Meta_0__Lean_Meta_beqEtaStructMode____x40_Init_Meta___hyg_12584_(x_11, x_26); if (x_62 == 0) { uint8_t x_63; @@ -21089,11 +21089,11 @@ goto block_92; } } } -LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_beqConfig____x40_Init_Meta___hyg_13424____boxed(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_beqConfig____x40_Init_Meta___hyg_13415____boxed(lean_object* x_1, lean_object* x_2) { _start: { uint8_t x_3; lean_object* x_4; -x_3 = l___private_Init_Meta_0__Lean_Meta_Simp_beqConfig____x40_Init_Meta___hyg_13424_(x_1, x_2); +x_3 = l___private_Init_Meta_0__Lean_Meta_Simp_beqConfig____x40_Init_Meta___hyg_13415_(x_1, x_2); lean_dec(x_2); lean_dec(x_1); x_4 = lean_box(x_3); @@ -21104,7 +21104,7 @@ static lean_object* _init_l_Lean_Meta_Simp_instBEqConfig___closed__1() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l___private_Init_Meta_0__Lean_Meta_Simp_beqConfig____x40_Init_Meta___hyg_13424____boxed), 2, 0); +x_1 = lean_alloc_closure((void*)(l___private_Init_Meta_0__Lean_Meta_Simp_beqConfig____x40_Init_Meta___hyg_13415____boxed), 2, 0); return x_1; } } @@ -21116,7 +21116,7 @@ x_1 = l_Lean_Meta_Simp_instBEqConfig___closed__1; return x_1; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__1() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__1() { _start: { lean_object* x_1; @@ -21124,33 +21124,33 @@ x_1 = lean_mk_string_from_bytes("maxSteps", 8); return x_1; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__2() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__1; +x_1 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__1; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__3() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__2; +x_2 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__2; x_3 = lean_alloc_ctor(4, 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___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__4() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__3; +x_1 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__3; x_2 = l___private_Init_Meta_0__Lean_Syntax_reprTSyntax____x40_Init_Meta___hyg_2667____rarg___closed__5; x_3 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -21158,7 +21158,7 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__5() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__5() { _start: { lean_object* x_1; lean_object* x_2; @@ -21167,7 +21167,7 @@ x_2 = lean_nat_to_int(x_1); return x_2; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__6() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__6() { _start: { lean_object* x_1; @@ -21175,17 +21175,17 @@ x_1 = lean_mk_string_from_bytes("maxDischargeDepth", 17); return x_1; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__7() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__7() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__6; +x_1 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__6; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__8() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__8() { _start: { lean_object* x_1; lean_object* x_2; @@ -21194,7 +21194,7 @@ x_2 = lean_nat_to_int(x_1); return x_2; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__9() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__9() { _start: { lean_object* x_1; @@ -21202,17 +21202,17 @@ x_1 = lean_mk_string_from_bytes("contextual", 10); return x_1; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__10() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__10() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__9; +x_1 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__9; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__11() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__11() { _start: { lean_object* x_1; @@ -21220,17 +21220,17 @@ x_1 = lean_mk_string_from_bytes("memoize", 7); return x_1; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__12() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__12() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__11; +x_1 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__11; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__13() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__13() { _start: { lean_object* x_1; lean_object* x_2; @@ -21239,7 +21239,7 @@ x_2 = lean_nat_to_int(x_1); return x_2; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__14() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__14() { _start: { lean_object* x_1; @@ -21247,17 +21247,17 @@ x_1 = lean_mk_string_from_bytes("singlePass", 10); return x_1; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__15() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__15() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__14; +x_1 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__14; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__16() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__16() { _start: { lean_object* x_1; @@ -21265,17 +21265,17 @@ x_1 = lean_mk_string_from_bytes("arith", 5); return x_1; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__17() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__17() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__16; +x_1 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__16; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__18() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__18() { _start: { lean_object* x_1; lean_object* x_2; @@ -21284,7 +21284,7 @@ x_2 = lean_nat_to_int(x_1); return x_2; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__19() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__19() { _start: { lean_object* x_1; @@ -21292,33 +21292,33 @@ x_1 = lean_mk_string_from_bytes("dsimp", 5); return x_1; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__20() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__20() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__19; +x_1 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__19; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__21() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__21() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__18; -x_2 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__23; +x_1 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__18; +x_2 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__23; x_3 = lean_alloc_ctor(3, 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___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__22() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__22() { _start: { lean_object* x_1; uint8_t x_2; lean_object* x_3; -x_1 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__21; +x_1 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__21; x_2 = 0; x_3 = lean_alloc_ctor(5, 1, 1); lean_ctor_set(x_3, 0, x_1); @@ -21326,23 +21326,23 @@ lean_ctor_set_uint8(x_3, sizeof(void*)*1, x_2); return x_3; } } -static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__23() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__23() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__18; -x_2 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__26; +x_1 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__18; +x_2 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__26; x_3 = lean_alloc_ctor(3, 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___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__24() { +static lean_object* _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__24() { _start: { lean_object* x_1; uint8_t x_2; lean_object* x_3; -x_1 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__23; +x_1 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__23; x_2 = 0; x_3 = lean_alloc_ctor(5, 1, 1); lean_ctor_set(x_3, 0, x_1); @@ -21350,7 +21350,7 @@ lean_ctor_set_uint8(x_3, sizeof(void*)*1, x_2); return x_3; } } -LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761_(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752_(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; uint8_t x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; uint8_t x_32; uint8_t x_33; uint8_t x_34; uint8_t x_35; uint8_t x_36; uint8_t x_37; uint8_t x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; uint8_t x_44; uint8_t x_45; uint8_t x_46; uint8_t x_47; uint8_t x_48; uint8_t x_49; lean_object* x_50; @@ -21359,7 +21359,7 @@ lean_inc(x_3); x_4 = l_Nat_repr(x_3); x_5 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_5, 0, x_4); -x_6 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__5; +x_6 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__5; x_7 = lean_alloc_ctor(3, 2, 0); lean_ctor_set(x_7, 0, x_6); lean_ctor_set(x_7, 1, x_5); @@ -21367,7 +21367,7 @@ x_8 = 0; x_9 = lean_alloc_ctor(5, 1, 1); lean_ctor_set(x_9, 0, x_7); lean_ctor_set_uint8(x_9, sizeof(void*)*1, x_8); -x_10 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__4; +x_10 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__4; x_11 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_11, 0, x_10); lean_ctor_set(x_11, 1, x_9); @@ -21379,7 +21379,7 @@ x_14 = lean_box(1); x_15 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_15, 0, x_13); lean_ctor_set(x_15, 1, x_14); -x_16 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__7; +x_16 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__7; x_17 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_17, 0, x_15); lean_ctor_set(x_17, 1, x_16); @@ -21392,7 +21392,7 @@ lean_inc(x_20); x_21 = l_Nat_repr(x_20); x_22 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_22, 0, x_21); -x_23 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__8; +x_23 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__8; x_24 = lean_alloc_ctor(3, 2, 0); lean_ctor_set(x_24, 0, x_23); lean_ctor_set(x_24, 1, x_22); @@ -21408,7 +21408,7 @@ lean_ctor_set(x_27, 1, x_12); x_28 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_28, 0, x_27); lean_ctor_set(x_28, 1, x_14); -x_29 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__10; +x_29 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__10; x_30 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_30, 0, x_28); lean_ctor_set(x_30, 1, x_29); @@ -21423,8 +21423,8 @@ x_36 = lean_ctor_get_uint8(x_1, sizeof(void*)*2 + 4); x_37 = lean_ctor_get_uint8(x_1, sizeof(void*)*2 + 5); x_38 = lean_ctor_get_uint8(x_1, sizeof(void*)*2 + 6); x_39 = lean_unsigned_to_nat(0u); -x_40 = l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12617_(x_38, x_39); -x_41 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__12; +x_40 = l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12608_(x_38, x_39); +x_41 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__12; x_42 = lean_alloc_ctor(3, 2, 0); lean_ctor_set(x_42, 0, x_41); lean_ctor_set(x_42, 1, x_40); @@ -21441,21 +21441,21 @@ lean_dec(x_1); if (x_32 == 0) { lean_object* x_210; -x_210 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__23; +x_210 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__23; x_50 = x_210; goto block_209; } else { lean_object* x_211; -x_211 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__26; +x_211 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__26; x_50 = x_211; goto block_209; } block_209: { lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; -x_51 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__22; +x_51 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__22; x_52 = lean_alloc_ctor(3, 2, 0); lean_ctor_set(x_52, 0, x_51); lean_ctor_set(x_52, 1, x_50); @@ -21471,7 +21471,7 @@ lean_ctor_set(x_55, 1, x_12); x_56 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_56, 0, x_55); lean_ctor_set(x_56, 1, x_14); -x_57 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__12; +x_57 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__12; x_58 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_58, 0, x_56); lean_ctor_set(x_58, 1, x_57); @@ -21481,21 +21481,21 @@ lean_ctor_set(x_59, 1, x_18); if (x_33 == 0) { lean_object* x_207; -x_207 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__23; +x_207 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__23; x_60 = x_207; goto block_206; } else { lean_object* x_208; -x_208 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__26; +x_208 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__26; x_60 = x_208; goto block_206; } block_206: { 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 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__13; +x_61 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__13; x_62 = lean_alloc_ctor(3, 2, 0); lean_ctor_set(x_62, 0, x_61); lean_ctor_set(x_62, 1, x_60); @@ -21511,7 +21511,7 @@ lean_ctor_set(x_65, 1, x_12); x_66 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_66, 0, x_65); lean_ctor_set(x_66, 1, x_14); -x_67 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__15; +x_67 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__15; x_68 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_68, 0, x_66); lean_ctor_set(x_68, 1, x_67); @@ -21521,14 +21521,14 @@ lean_ctor_set(x_69, 1, x_18); if (x_34 == 0) { lean_object* x_204; -x_204 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__23; +x_204 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__23; x_70 = x_204; goto block_203; } else { lean_object* x_205; -x_205 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__26; +x_205 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__26; x_70 = x_205; goto block_203; } @@ -21550,7 +21550,7 @@ lean_ctor_set(x_74, 1, x_12); x_75 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_75, 0, x_74); lean_ctor_set(x_75, 1, x_14); -x_76 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__2; +x_76 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__2; x_77 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_77, 0, x_75); lean_ctor_set(x_77, 1, x_76); @@ -21560,21 +21560,21 @@ lean_ctor_set(x_78, 1, x_18); if (x_35 == 0) { lean_object* x_201; -x_201 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__23; +x_201 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__23; x_79 = x_201; goto block_200; } else { lean_object* x_202; -x_202 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__26; +x_202 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__26; x_79 = x_202; goto block_200; } block_200: { lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; -x_80 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__5; +x_80 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__5; x_81 = lean_alloc_ctor(3, 2, 0); lean_ctor_set(x_81, 0, x_80); lean_ctor_set(x_81, 1, x_79); @@ -21590,7 +21590,7 @@ lean_ctor_set(x_84, 1, x_12); x_85 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_85, 0, x_84); lean_ctor_set(x_85, 1, x_14); -x_86 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__7; +x_86 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__7; x_87 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_87, 0, x_85); lean_ctor_set(x_87, 1, x_86); @@ -21600,14 +21600,14 @@ lean_ctor_set(x_88, 1, x_18); if (x_36 == 0) { lean_object* x_198; -x_198 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__23; +x_198 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__23; x_89 = x_198; goto block_197; } else { lean_object* x_199; -x_199 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__26; +x_199 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__26; x_89 = x_199; goto block_197; } @@ -21629,7 +21629,7 @@ lean_ctor_set(x_93, 1, x_12); x_94 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_94, 0, x_93); lean_ctor_set(x_94, 1, x_14); -x_95 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__9; +x_95 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__9; x_96 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_96, 0, x_94); lean_ctor_set(x_96, 1, x_95); @@ -21639,14 +21639,14 @@ lean_ctor_set(x_97, 1, x_18); if (x_37 == 0) { lean_object* x_195; -x_195 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__23; +x_195 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__23; x_98 = x_195; goto block_194; } else { lean_object* x_196; -x_196 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__26; +x_196 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__26; x_98 = x_196; goto block_194; } @@ -21669,7 +21669,7 @@ lean_ctor_set(x_103, 1, x_12); x_104 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_104, 0, x_103); lean_ctor_set(x_104, 1, x_14); -x_105 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__11; +x_105 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__11; x_106 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_106, 0, x_104); lean_ctor_set(x_106, 1, x_105); @@ -21685,7 +21685,7 @@ lean_ctor_set(x_109, 1, x_12); x_110 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_110, 0, x_109); lean_ctor_set(x_110, 1, x_14); -x_111 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__14; +x_111 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__14; x_112 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_112, 0, x_110); lean_ctor_set(x_112, 1, x_111); @@ -21695,14 +21695,14 @@ lean_ctor_set(x_113, 1, x_18); if (x_44 == 0) { lean_object* x_192; -x_192 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__23; +x_192 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__23; x_114 = x_192; goto block_191; } else { lean_object* x_193; -x_193 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__26; +x_193 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__26; x_114 = x_193; goto block_191; } @@ -21724,7 +21724,7 @@ lean_ctor_set(x_118, 1, x_12); x_119 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_119, 0, x_118); lean_ctor_set(x_119, 1, x_14); -x_120 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__16; +x_120 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__16; x_121 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_121, 0, x_119); lean_ctor_set(x_121, 1, x_120); @@ -21734,14 +21734,14 @@ lean_ctor_set(x_122, 1, x_18); if (x_45 == 0) { lean_object* x_189; -x_189 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__23; +x_189 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__23; x_123 = x_189; goto block_188; } else { lean_object* x_190; -x_190 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__26; +x_190 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__26; x_123 = x_190; goto block_188; } @@ -21763,7 +21763,7 @@ lean_ctor_set(x_127, 1, x_12); x_128 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_128, 0, x_127); lean_ctor_set(x_128, 1, x_14); -x_129 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__18; +x_129 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__18; x_130 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_130, 0, x_128); lean_ctor_set(x_130, 1, x_129); @@ -21773,21 +21773,21 @@ lean_ctor_set(x_131, 1, x_18); if (x_46 == 0) { lean_object* x_186; -x_186 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__23; +x_186 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__23; x_132 = x_186; goto block_185; } else { lean_object* x_187; -x_187 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__26; +x_187 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__26; x_132 = x_187; goto block_185; } block_185: { lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; -x_133 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__19; +x_133 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__19; x_134 = lean_alloc_ctor(3, 2, 0); lean_ctor_set(x_134, 0, x_133); lean_ctor_set(x_134, 1, x_132); @@ -21803,7 +21803,7 @@ lean_ctor_set(x_137, 1, x_12); x_138 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_138, 0, x_137); lean_ctor_set(x_138, 1, x_14); -x_139 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__17; +x_139 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__17; x_140 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_140, 0, x_138); lean_ctor_set(x_140, 1, x_139); @@ -21813,21 +21813,21 @@ lean_ctor_set(x_141, 1, x_18); if (x_47 == 0) { lean_object* x_183; -x_183 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__23; +x_183 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__23; x_142 = x_183; goto block_182; } else { lean_object* x_184; -x_184 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__26; +x_184 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__26; x_142 = x_184; goto block_182; } block_182: { lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; -x_143 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__18; +x_143 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__18; x_144 = lean_alloc_ctor(3, 2, 0); lean_ctor_set(x_144, 0, x_143); lean_ctor_set(x_144, 1, x_142); @@ -21843,7 +21843,7 @@ lean_ctor_set(x_147, 1, x_12); x_148 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_148, 0, x_147); lean_ctor_set(x_148, 1, x_14); -x_149 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__21; +x_149 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__21; x_150 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_150, 0, x_148); lean_ctor_set(x_150, 1, x_149); @@ -21853,14 +21853,14 @@ lean_ctor_set(x_151, 1, x_18); if (x_48 == 0) { lean_object* x_180; -x_180 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__23; +x_180 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__23; x_152 = x_180; goto block_179; } else { lean_object* x_181; -x_181 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__26; +x_181 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__26; x_152 = x_181; goto block_179; } @@ -21882,7 +21882,7 @@ lean_ctor_set(x_156, 1, x_12); x_157 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_157, 0, x_156); lean_ctor_set(x_157, 1, x_14); -x_158 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__20; +x_158 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__20; x_159 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_159, 0, x_157); lean_ctor_set(x_159, 1, x_158); @@ -21892,7 +21892,7 @@ lean_ctor_set(x_160, 1, x_18); if (x_49 == 0) { lean_object* x_161; lean_object* x_162; lean_object* x_163; lean_object* x_164; lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; lean_object* x_169; -x_161 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__22; +x_161 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__22; x_162 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_162, 0, x_160); lean_ctor_set(x_162, 1, x_161); @@ -21916,7 +21916,7 @@ return x_169; else { lean_object* x_170; lean_object* x_171; lean_object* x_172; lean_object* x_173; lean_object* x_174; lean_object* x_175; lean_object* x_176; lean_object* x_177; lean_object* x_178; -x_170 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__24; +x_170 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__24; x_171 = lean_alloc_ctor(4, 2, 0); lean_ctor_set(x_171, 0, x_160); lean_ctor_set(x_171, 1, x_170); @@ -21950,11 +21950,11 @@ return x_178; } } } -LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____boxed(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761_(x_1, x_2); +x_3 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752_(x_1, x_2); lean_dec(x_2); return x_3; } @@ -21963,7 +21963,7 @@ static lean_object* _init_l_Lean_Meta_Simp_instReprConfig___closed__1() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____boxed), 2, 0); +x_1 = lean_alloc_closure((void*)(l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____boxed), 2, 0); return x_1; } } @@ -22965,7 +22965,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_dsimpKind___closed__3() { _start: { lean_object* x_1; uint8_t x_2; lean_object* x_3; -x_1 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__19; +x_1 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__19; x_2 = 0; x_3 = lean_alloc_ctor(6, 1, 1); lean_ctor_set(x_3, 0, x_1); @@ -25709,7 +25709,7 @@ static lean_object* _init_l_Lean_Parser_Tactic___aux__Init__Meta______macroRules _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__19; +x_1 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__19; x_2 = l_String_toSubstring_x27(x_1); return x_2; } @@ -25719,7 +25719,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__19; +x_2 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__19; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } @@ -25731,7 +25731,7 @@ lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_obj x_1 = l_Array_mapMUnsafe_map___at_Lean_expandMacros___spec__1___lambda__1___closed__1; x_2 = l_Array_mapMUnsafe_map___at_Lean_expandMacros___spec__1___lambda__1___closed__2; x_3 = l_Lean_Parser_Tactic_tacticErw_______closed__1; -x_4 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__19; +x_4 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__19; x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); return x_5; } @@ -28562,7 +28562,7 @@ x_1 = l_Lean_Parser_Tactic_simpAutoUnfold___closed__26; return x_1; } } -LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17775____lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17766____lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; uint8_t x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; @@ -28590,7 +28590,7 @@ lean_ctor_set(x_20, 1, x_4); return x_20; } } -static lean_object* _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17775____closed__1() { +static lean_object* _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17766____closed__1() { _start: { lean_object* x_1; @@ -28598,16 +28598,16 @@ x_1 = lean_mk_string_from_bytes("Lean.Meta.Simp.Config", 21); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17775____closed__2() { +static lean_object* _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17766____closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17775____closed__1; +x_1 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17766____closed__1; x_2 = l_String_toSubstring_x27(x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17775____closed__3() { +static lean_object* _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17766____closed__3() { _start: { lean_object* x_1; @@ -28615,7 +28615,7 @@ x_1 = lean_mk_string_from_bytes("Meta", 4); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17775____closed__4() { +static lean_object* _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17766____closed__4() { _start: { lean_object* x_1; @@ -28623,7 +28623,7 @@ x_1 = lean_mk_string_from_bytes("Simp", 4); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17775____closed__5() { +static lean_object* _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17766____closed__5() { _start: { lean_object* x_1; @@ -28631,84 +28631,84 @@ x_1 = lean_mk_string_from_bytes("Config", 6); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17775____closed__6() { +static lean_object* _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17766____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_1 = l_Array_mapMUnsafe_map___at_Lean_expandMacros___spec__1___lambda__1___closed__1; -x_2 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17775____closed__3; -x_3 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17775____closed__4; -x_4 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17775____closed__5; +x_2 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17766____closed__3; +x_3 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17766____closed__4; +x_4 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17766____closed__5; x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); return x_5; } } -static lean_object* _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17775____closed__7() { +static lean_object* _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17766____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17775____closed__6; +x_2 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17766____closed__6; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17775____closed__8() { +static lean_object* _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17766____closed__8() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17775____closed__6; +x_1 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17766____closed__6; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17775____closed__9() { +static lean_object* _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17766____closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17775____closed__8; +x_2 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17766____closed__8; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17775____closed__10() { +static lean_object* _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17766____closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17775____closed__7; -x_2 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17775____closed__9; +x_1 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17766____closed__7; +x_2 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17766____closed__9; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17775____closed__11() { +static lean_object* _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17766____closed__11() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__20; +x_1 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__20; x_2 = l_String_toSubstring_x27(x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17775____closed__12() { +static lean_object* _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17766____closed__12() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__20; +x_2 = l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__20; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17775_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17766_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; uint8_t x_9; @@ -28769,12 +28769,12 @@ lean_inc(x_12); x_29 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_29, 0, x_12); lean_ctor_set(x_29, 1, x_28); -x_30 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17775____closed__6; +x_30 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17766____closed__6; lean_inc(x_13); lean_inc(x_14); x_31 = l_Lean_addMacroScope(x_14, x_30, x_13); -x_32 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17775____closed__2; -x_33 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17775____closed__10; +x_32 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17766____closed__2; +x_33 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17766____closed__10; lean_inc(x_12); x_34 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_34, 0, x_12); @@ -28855,11 +28855,11 @@ x_61 = lean_alloc_ctor(1, 3, 0); lean_ctor_set(x_61, 0, x_12); lean_ctor_set(x_61, 1, x_39); lean_ctor_set(x_61, 2, x_60); -x_62 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17775____closed__12; +x_62 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17766____closed__12; lean_inc(x_13); lean_inc(x_14); x_63 = l_Lean_addMacroScope(x_14, x_62, x_13); -x_64 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17775____closed__11; +x_64 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17766____closed__11; lean_inc(x_12); x_65 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_65, 0, x_12); @@ -28978,7 +28978,7 @@ x_107 = lean_alloc_ctor(1, 3, 0); lean_ctor_set(x_107, 0, x_12); lean_ctor_set(x_107, 1, x_8); lean_ctor_set(x_107, 2, x_106); -x_108 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17775____lambda__1(x_1, x_107, x_2, x_3); +x_108 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17766____lambda__1(x_1, x_107, x_2, x_3); lean_dec(x_2); return x_108; } @@ -29033,12 +29033,12 @@ lean_inc(x_113); x_130 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_130, 0, x_113); lean_ctor_set(x_130, 1, x_129); -x_131 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17775____closed__6; +x_131 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17766____closed__6; lean_inc(x_114); lean_inc(x_115); x_132 = l_Lean_addMacroScope(x_115, x_131, x_114); -x_133 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17775____closed__2; -x_134 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17775____closed__10; +x_133 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17766____closed__2; +x_134 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17766____closed__10; lean_inc(x_113); x_135 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_135, 0, x_113); @@ -29119,11 +29119,11 @@ x_162 = lean_alloc_ctor(1, 3, 0); lean_ctor_set(x_162, 0, x_113); lean_ctor_set(x_162, 1, x_140); lean_ctor_set(x_162, 2, x_161); -x_163 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17775____closed__12; +x_163 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17766____closed__12; lean_inc(x_114); lean_inc(x_115); x_164 = l_Lean_addMacroScope(x_115, x_163, x_114); -x_165 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17775____closed__11; +x_165 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17766____closed__11; lean_inc(x_113); x_166 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_166, 0, x_113); @@ -29215,17 +29215,17 @@ x_200 = lean_alloc_ctor(1, 3, 0); lean_ctor_set(x_200, 0, x_113); lean_ctor_set(x_200, 1, x_8); lean_ctor_set(x_200, 2, x_199); -x_201 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17775____lambda__1(x_1, x_200, x_2, x_3); +x_201 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17766____lambda__1(x_1, x_200, x_2, x_3); lean_dec(x_2); return x_201; } } } -LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17775____lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17766____lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; -x_5 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17775____lambda__1(x_1, x_2, x_3, x_4); +x_5 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17766____lambda__1(x_1, x_2, x_3, x_4); lean_dec(x_3); return x_5; } @@ -29362,26 +29362,26 @@ x_1 = l_Lean_Parser_Tactic_simpArith___closed__10; return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18633____closed__1() { +static lean_object* _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18624____closed__1() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__16; +x_1 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__16; x_2 = l_String_toSubstring_x27(x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18633____closed__2() { +static lean_object* _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18624____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__16; +x_2 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__16; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18633_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18624_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; uint8_t x_9; @@ -29442,12 +29442,12 @@ lean_inc(x_12); x_29 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_29, 0, x_12); lean_ctor_set(x_29, 1, x_28); -x_30 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17775____closed__6; +x_30 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17766____closed__6; lean_inc(x_13); lean_inc(x_14); x_31 = l_Lean_addMacroScope(x_14, x_30, x_13); -x_32 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17775____closed__2; -x_33 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17775____closed__10; +x_32 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17766____closed__2; +x_33 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17766____closed__10; lean_inc(x_12); x_34 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_34, 0, x_12); @@ -29528,11 +29528,11 @@ x_61 = lean_alloc_ctor(1, 3, 0); lean_ctor_set(x_61, 0, x_12); lean_ctor_set(x_61, 1, x_39); lean_ctor_set(x_61, 2, x_60); -x_62 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18633____closed__2; +x_62 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18624____closed__2; lean_inc(x_13); lean_inc(x_14); x_63 = l_Lean_addMacroScope(x_14, x_62, x_13); -x_64 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18633____closed__1; +x_64 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18624____closed__1; lean_inc(x_12); x_65 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_65, 0, x_12); @@ -29651,7 +29651,7 @@ x_107 = lean_alloc_ctor(1, 3, 0); lean_ctor_set(x_107, 0, x_12); lean_ctor_set(x_107, 1, x_8); lean_ctor_set(x_107, 2, x_106); -x_108 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17775____lambda__1(x_1, x_107, x_2, x_3); +x_108 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17766____lambda__1(x_1, x_107, x_2, x_3); lean_dec(x_2); return x_108; } @@ -29706,12 +29706,12 @@ lean_inc(x_113); x_130 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_130, 0, x_113); lean_ctor_set(x_130, 1, x_129); -x_131 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17775____closed__6; +x_131 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17766____closed__6; lean_inc(x_114); lean_inc(x_115); x_132 = l_Lean_addMacroScope(x_115, x_131, x_114); -x_133 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17775____closed__2; -x_134 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17775____closed__10; +x_133 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17766____closed__2; +x_134 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17766____closed__10; lean_inc(x_113); x_135 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_135, 0, x_113); @@ -29792,11 +29792,11 @@ x_162 = lean_alloc_ctor(1, 3, 0); lean_ctor_set(x_162, 0, x_113); lean_ctor_set(x_162, 1, x_140); lean_ctor_set(x_162, 2, x_161); -x_163 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18633____closed__2; +x_163 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18624____closed__2; lean_inc(x_114); lean_inc(x_115); x_164 = l_Lean_addMacroScope(x_115, x_163, x_114); -x_165 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18633____closed__1; +x_165 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18624____closed__1; lean_inc(x_113); x_166 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_166, 0, x_113); @@ -29888,7 +29888,7 @@ x_200 = lean_alloc_ctor(1, 3, 0); lean_ctor_set(x_200, 0, x_113); lean_ctor_set(x_200, 1, x_8); lean_ctor_set(x_200, 2, x_199); -x_201 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17775____lambda__1(x_1, x_200, x_2, x_3); +x_201 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17766____lambda__1(x_1, x_200, x_2, x_3); lean_dec(x_2); return x_201; } @@ -30026,7 +30026,7 @@ x_1 = l_Lean_Parser_Tactic_simpArithAutoUnfold___closed__10; return x_1; } } -LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_19487_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_19478_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; uint8_t x_9; @@ -30087,12 +30087,12 @@ lean_inc(x_12); x_29 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_29, 0, x_12); lean_ctor_set(x_29, 1, x_28); -x_30 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17775____closed__6; +x_30 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17766____closed__6; lean_inc(x_13); lean_inc(x_14); x_31 = l_Lean_addMacroScope(x_14, x_30, x_13); -x_32 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17775____closed__2; -x_33 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17775____closed__10; +x_32 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17766____closed__2; +x_33 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17766____closed__10; lean_inc(x_12); x_34 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_34, 0, x_12); @@ -30173,11 +30173,11 @@ x_61 = lean_alloc_ctor(1, 3, 0); lean_ctor_set(x_61, 0, x_12); lean_ctor_set(x_61, 1, x_39); lean_ctor_set(x_61, 2, x_60); -x_62 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18633____closed__2; +x_62 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18624____closed__2; lean_inc(x_13); lean_inc(x_14); x_63 = l_Lean_addMacroScope(x_14, x_62, x_13); -x_64 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18633____closed__1; +x_64 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18624____closed__1; lean_inc(x_12); x_65 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_65, 0, x_12); @@ -30218,9 +30218,9 @@ lean_inc(x_12); x_78 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_78, 0, x_12); lean_ctor_set(x_78, 1, x_77); -x_79 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17775____closed__12; +x_79 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17766____closed__12; x_80 = l_Lean_addMacroScope(x_14, x_79, x_13); -x_81 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17775____closed__11; +x_81 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17766____closed__11; lean_inc(x_12); x_82 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_82, 0, x_12); @@ -30327,7 +30327,7 @@ x_117 = lean_alloc_ctor(1, 3, 0); lean_ctor_set(x_117, 0, x_12); lean_ctor_set(x_117, 1, x_8); lean_ctor_set(x_117, 2, x_116); -x_118 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17775____lambda__1(x_1, x_117, x_2, x_3); +x_118 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17766____lambda__1(x_1, x_117, x_2, x_3); lean_dec(x_2); return x_118; } @@ -30382,12 +30382,12 @@ lean_inc(x_123); x_140 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_140, 0, x_123); lean_ctor_set(x_140, 1, x_139); -x_141 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17775____closed__6; +x_141 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17766____closed__6; lean_inc(x_124); lean_inc(x_125); x_142 = l_Lean_addMacroScope(x_125, x_141, x_124); -x_143 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17775____closed__2; -x_144 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17775____closed__10; +x_143 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17766____closed__2; +x_144 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17766____closed__10; lean_inc(x_123); x_145 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_145, 0, x_123); @@ -30468,11 +30468,11 @@ x_172 = lean_alloc_ctor(1, 3, 0); lean_ctor_set(x_172, 0, x_123); lean_ctor_set(x_172, 1, x_150); lean_ctor_set(x_172, 2, x_171); -x_173 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18633____closed__2; +x_173 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18624____closed__2; lean_inc(x_124); lean_inc(x_125); x_174 = l_Lean_addMacroScope(x_125, x_173, x_124); -x_175 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18633____closed__1; +x_175 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18624____closed__1; lean_inc(x_123); x_176 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_176, 0, x_123); @@ -30513,9 +30513,9 @@ lean_inc(x_123); x_189 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_189, 0, x_123); lean_ctor_set(x_189, 1, x_188); -x_190 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17775____closed__12; +x_190 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17766____closed__12; x_191 = l_Lean_addMacroScope(x_125, x_190, x_124); -x_192 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17775____closed__11; +x_192 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17766____closed__11; lean_inc(x_123); x_193 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_193, 0, x_123); @@ -30595,7 +30595,7 @@ x_220 = lean_alloc_ctor(1, 3, 0); lean_ctor_set(x_220, 0, x_123); lean_ctor_set(x_220, 1, x_8); lean_ctor_set(x_220, 2, x_219); -x_221 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17775____lambda__1(x_1, x_220, x_2, x_3); +x_221 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17766____lambda__1(x_1, x_220, x_2, x_3); lean_dec(x_2); return x_221; } @@ -30775,7 +30775,7 @@ x_1 = l_Lean_Parser_Tactic_simpAllAutoUnfold___closed__13; return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20429____lambda__1___closed__1() { +static lean_object* _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20420____lambda__1___closed__1() { _start: { lean_object* x_1; @@ -30783,7 +30783,7 @@ x_1 = lean_mk_string_from_bytes("simp_all", 8); return x_1; } } -LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20429____lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20420____lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; uint8_t x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; @@ -30791,7 +30791,7 @@ x_5 = l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tact x_6 = l_Lean_Syntax_setKind(x_1, x_5); x_7 = lean_unsigned_to_nat(0u); x_8 = l_Lean_Syntax_getArg(x_6, x_7); -x_9 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20429____lambda__1___closed__1; +x_9 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20420____lambda__1___closed__1; x_10 = 1; x_11 = l_Lean_mkAtomFrom(x_8, x_9, x_10); x_12 = l_Lean_Syntax_setArg(x_6, x_7, x_11); @@ -30811,7 +30811,7 @@ lean_ctor_set(x_20, 1, x_4); return x_20; } } -static lean_object* _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20429____closed__1() { +static lean_object* _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20420____closed__1() { _start: { lean_object* x_1; @@ -30819,16 +30819,16 @@ x_1 = lean_mk_string_from_bytes("Lean.Meta.Simp.ConfigCtx", 24); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20429____closed__2() { +static lean_object* _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20420____closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20429____closed__1; +x_1 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20420____closed__1; x_2 = l_String_toSubstring_x27(x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20429____closed__3() { +static lean_object* _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20420____closed__3() { _start: { lean_object* x_1; @@ -30836,65 +30836,65 @@ x_1 = lean_mk_string_from_bytes("ConfigCtx", 9); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20429____closed__4() { +static lean_object* _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20420____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_1 = l_Array_mapMUnsafe_map___at_Lean_expandMacros___spec__1___lambda__1___closed__1; -x_2 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17775____closed__3; -x_3 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17775____closed__4; -x_4 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20429____closed__3; +x_2 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17766____closed__3; +x_3 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17766____closed__4; +x_4 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20420____closed__3; x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); return x_5; } } -static lean_object* _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20429____closed__5() { +static lean_object* _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20420____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20429____closed__4; +x_2 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20420____closed__4; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20429____closed__6() { +static lean_object* _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20420____closed__6() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20429____closed__4; +x_1 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20420____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_Tactic_expandSimp____x40_Init_Meta___hyg_20429____closed__7() { +static lean_object* _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20420____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20429____closed__6; +x_2 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20420____closed__6; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20429____closed__8() { +static lean_object* _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20420____closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20429____closed__5; -x_2 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20429____closed__7; +x_1 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20420____closed__5; +x_2 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20420____closed__7; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); return x_3; } } -LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20429_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20420_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; uint8_t x_9; @@ -30955,12 +30955,12 @@ lean_inc(x_12); x_29 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_29, 0, x_12); lean_ctor_set(x_29, 1, x_28); -x_30 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20429____closed__4; +x_30 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20420____closed__4; lean_inc(x_13); lean_inc(x_14); x_31 = l_Lean_addMacroScope(x_14, x_30, x_13); -x_32 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20429____closed__2; -x_33 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20429____closed__8; +x_32 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20420____closed__2; +x_33 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20420____closed__8; lean_inc(x_12); x_34 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_34, 0, x_12); @@ -31041,11 +31041,11 @@ x_61 = lean_alloc_ctor(1, 3, 0); lean_ctor_set(x_61, 0, x_12); lean_ctor_set(x_61, 1, x_39); lean_ctor_set(x_61, 2, x_60); -x_62 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17775____closed__12; +x_62 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17766____closed__12; lean_inc(x_13); lean_inc(x_14); x_63 = l_Lean_addMacroScope(x_14, x_62, x_13); -x_64 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17775____closed__11; +x_64 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17766____closed__11; lean_inc(x_12); x_65 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_65, 0, x_12); @@ -31164,7 +31164,7 @@ x_107 = lean_alloc_ctor(1, 3, 0); lean_ctor_set(x_107, 0, x_12); lean_ctor_set(x_107, 1, x_8); lean_ctor_set(x_107, 2, x_106); -x_108 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20429____lambda__1(x_1, x_107, x_2, x_3); +x_108 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20420____lambda__1(x_1, x_107, x_2, x_3); lean_dec(x_2); return x_108; } @@ -31219,12 +31219,12 @@ lean_inc(x_113); x_130 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_130, 0, x_113); lean_ctor_set(x_130, 1, x_129); -x_131 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20429____closed__4; +x_131 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20420____closed__4; lean_inc(x_114); lean_inc(x_115); x_132 = l_Lean_addMacroScope(x_115, x_131, x_114); -x_133 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20429____closed__2; -x_134 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20429____closed__8; +x_133 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20420____closed__2; +x_134 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20420____closed__8; lean_inc(x_113); x_135 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_135, 0, x_113); @@ -31305,11 +31305,11 @@ x_162 = lean_alloc_ctor(1, 3, 0); lean_ctor_set(x_162, 0, x_113); lean_ctor_set(x_162, 1, x_140); lean_ctor_set(x_162, 2, x_161); -x_163 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17775____closed__12; +x_163 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17766____closed__12; lean_inc(x_114); lean_inc(x_115); x_164 = l_Lean_addMacroScope(x_115, x_163, x_114); -x_165 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17775____closed__11; +x_165 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17766____closed__11; lean_inc(x_113); x_166 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_166, 0, x_113); @@ -31401,17 +31401,17 @@ x_200 = lean_alloc_ctor(1, 3, 0); lean_ctor_set(x_200, 0, x_113); lean_ctor_set(x_200, 1, x_8); lean_ctor_set(x_200, 2, x_199); -x_201 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20429____lambda__1(x_1, x_200, x_2, x_3); +x_201 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20420____lambda__1(x_1, x_200, x_2, x_3); lean_dec(x_2); return x_201; } } } -LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20429____lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20420____lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; -x_5 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20429____lambda__1(x_1, x_2, x_3, x_4); +x_5 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20420____lambda__1(x_1, x_2, x_3, x_4); lean_dec(x_3); return x_5; } @@ -31534,7 +31534,7 @@ x_1 = l_Lean_Parser_Tactic_simpAllArith___closed__9; return x_1; } } -LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_21273_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_21264_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; uint8_t x_9; @@ -31595,12 +31595,12 @@ lean_inc(x_12); x_29 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_29, 0, x_12); lean_ctor_set(x_29, 1, x_28); -x_30 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20429____closed__4; +x_30 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20420____closed__4; lean_inc(x_13); lean_inc(x_14); x_31 = l_Lean_addMacroScope(x_14, x_30, x_13); -x_32 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20429____closed__2; -x_33 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20429____closed__8; +x_32 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20420____closed__2; +x_33 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20420____closed__8; lean_inc(x_12); x_34 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_34, 0, x_12); @@ -31681,11 +31681,11 @@ x_61 = lean_alloc_ctor(1, 3, 0); lean_ctor_set(x_61, 0, x_12); lean_ctor_set(x_61, 1, x_39); lean_ctor_set(x_61, 2, x_60); -x_62 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18633____closed__2; +x_62 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18624____closed__2; lean_inc(x_13); lean_inc(x_14); x_63 = l_Lean_addMacroScope(x_14, x_62, x_13); -x_64 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18633____closed__1; +x_64 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18624____closed__1; lean_inc(x_12); x_65 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_65, 0, x_12); @@ -31804,7 +31804,7 @@ x_107 = lean_alloc_ctor(1, 3, 0); lean_ctor_set(x_107, 0, x_12); lean_ctor_set(x_107, 1, x_8); lean_ctor_set(x_107, 2, x_106); -x_108 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20429____lambda__1(x_1, x_107, x_2, x_3); +x_108 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20420____lambda__1(x_1, x_107, x_2, x_3); lean_dec(x_2); return x_108; } @@ -31859,12 +31859,12 @@ lean_inc(x_113); x_130 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_130, 0, x_113); lean_ctor_set(x_130, 1, x_129); -x_131 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20429____closed__4; +x_131 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20420____closed__4; lean_inc(x_114); lean_inc(x_115); x_132 = l_Lean_addMacroScope(x_115, x_131, x_114); -x_133 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20429____closed__2; -x_134 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20429____closed__8; +x_133 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20420____closed__2; +x_134 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20420____closed__8; lean_inc(x_113); x_135 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_135, 0, x_113); @@ -31945,11 +31945,11 @@ x_162 = lean_alloc_ctor(1, 3, 0); lean_ctor_set(x_162, 0, x_113); lean_ctor_set(x_162, 1, x_140); lean_ctor_set(x_162, 2, x_161); -x_163 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18633____closed__2; +x_163 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18624____closed__2; lean_inc(x_114); lean_inc(x_115); x_164 = l_Lean_addMacroScope(x_115, x_163, x_114); -x_165 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18633____closed__1; +x_165 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18624____closed__1; lean_inc(x_113); x_166 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_166, 0, x_113); @@ -32041,7 +32041,7 @@ x_200 = lean_alloc_ctor(1, 3, 0); lean_ctor_set(x_200, 0, x_113); lean_ctor_set(x_200, 1, x_8); lean_ctor_set(x_200, 2, x_199); -x_201 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20429____lambda__1(x_1, x_200, x_2, x_3); +x_201 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20420____lambda__1(x_1, x_200, x_2, x_3); lean_dec(x_2); return x_201; } @@ -32165,7 +32165,7 @@ x_1 = l_Lean_Parser_Tactic_simpAllArithAutoUnfold___closed__9; return x_1; } } -LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_22117_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_22108_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; uint8_t x_9; @@ -32226,12 +32226,12 @@ lean_inc(x_12); x_29 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_29, 0, x_12); lean_ctor_set(x_29, 1, x_28); -x_30 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20429____closed__4; +x_30 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20420____closed__4; lean_inc(x_13); lean_inc(x_14); x_31 = l_Lean_addMacroScope(x_14, x_30, x_13); -x_32 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20429____closed__2; -x_33 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20429____closed__8; +x_32 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20420____closed__2; +x_33 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20420____closed__8; lean_inc(x_12); x_34 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_34, 0, x_12); @@ -32312,11 +32312,11 @@ x_61 = lean_alloc_ctor(1, 3, 0); lean_ctor_set(x_61, 0, x_12); lean_ctor_set(x_61, 1, x_39); lean_ctor_set(x_61, 2, x_60); -x_62 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18633____closed__2; +x_62 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18624____closed__2; lean_inc(x_13); lean_inc(x_14); x_63 = l_Lean_addMacroScope(x_14, x_62, x_13); -x_64 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18633____closed__1; +x_64 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18624____closed__1; lean_inc(x_12); x_65 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_65, 0, x_12); @@ -32357,9 +32357,9 @@ lean_inc(x_12); x_78 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_78, 0, x_12); lean_ctor_set(x_78, 1, x_77); -x_79 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17775____closed__12; +x_79 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17766____closed__12; x_80 = l_Lean_addMacroScope(x_14, x_79, x_13); -x_81 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17775____closed__11; +x_81 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17766____closed__11; lean_inc(x_12); x_82 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_82, 0, x_12); @@ -32466,7 +32466,7 @@ x_117 = lean_alloc_ctor(1, 3, 0); lean_ctor_set(x_117, 0, x_12); lean_ctor_set(x_117, 1, x_8); lean_ctor_set(x_117, 2, x_116); -x_118 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20429____lambda__1(x_1, x_117, x_2, x_3); +x_118 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20420____lambda__1(x_1, x_117, x_2, x_3); lean_dec(x_2); return x_118; } @@ -32521,12 +32521,12 @@ lean_inc(x_123); x_140 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_140, 0, x_123); lean_ctor_set(x_140, 1, x_139); -x_141 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20429____closed__4; +x_141 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20420____closed__4; lean_inc(x_124); lean_inc(x_125); x_142 = l_Lean_addMacroScope(x_125, x_141, x_124); -x_143 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20429____closed__2; -x_144 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20429____closed__8; +x_143 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20420____closed__2; +x_144 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20420____closed__8; lean_inc(x_123); x_145 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_145, 0, x_123); @@ -32607,11 +32607,11 @@ x_172 = lean_alloc_ctor(1, 3, 0); lean_ctor_set(x_172, 0, x_123); lean_ctor_set(x_172, 1, x_150); lean_ctor_set(x_172, 2, x_171); -x_173 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18633____closed__2; +x_173 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18624____closed__2; lean_inc(x_124); lean_inc(x_125); x_174 = l_Lean_addMacroScope(x_125, x_173, x_124); -x_175 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18633____closed__1; +x_175 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18624____closed__1; lean_inc(x_123); x_176 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_176, 0, x_123); @@ -32652,9 +32652,9 @@ lean_inc(x_123); x_189 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_189, 0, x_123); lean_ctor_set(x_189, 1, x_188); -x_190 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17775____closed__12; +x_190 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17766____closed__12; x_191 = l_Lean_addMacroScope(x_125, x_190, x_124); -x_192 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17775____closed__11; +x_192 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17766____closed__11; lean_inc(x_123); x_193 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_193, 0, x_123); @@ -32734,7 +32734,7 @@ x_220 = lean_alloc_ctor(1, 3, 0); lean_ctor_set(x_220, 0, x_123); lean_ctor_set(x_220, 1, x_8); lean_ctor_set(x_220, 2, x_219); -x_221 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20429____lambda__1(x_1, x_220, x_2, x_3); +x_221 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20420____lambda__1(x_1, x_220, x_2, x_3); lean_dec(x_2); return x_221; } @@ -32872,7 +32872,7 @@ x_1 = l_Lean_Parser_Tactic_dsimpAutoUnfold___closed__10; return x_1; } } -LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_23049____lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_23040____lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; uint8_t x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; @@ -32880,7 +32880,7 @@ x_5 = l_Lean_Parser_Tactic___aux__Init__Meta______macroRules__Lean__Parser__Tact x_6 = l_Lean_Syntax_setKind(x_1, x_5); x_7 = lean_unsigned_to_nat(0u); x_8 = l_Lean_Syntax_getArg(x_6, x_7); -x_9 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__19; +x_9 = l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__19; x_10 = 1; x_11 = l_Lean_mkAtomFrom(x_8, x_9, x_10); x_12 = l_Lean_Syntax_setArg(x_6, x_7, x_11); @@ -32900,7 +32900,7 @@ lean_ctor_set(x_20, 1, x_4); return x_20; } } -static lean_object* _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_23049____closed__1() { +static lean_object* _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_23040____closed__1() { _start: { lean_object* x_1; @@ -32908,16 +32908,16 @@ x_1 = lean_mk_string_from_bytes("Lean.Meta.DSimp.Config", 22); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_23049____closed__2() { +static lean_object* _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_23040____closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_23049____closed__1; +x_1 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_23040____closed__1; x_2 = l_String_toSubstring_x27(x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_23049____closed__3() { +static lean_object* _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_23040____closed__3() { _start: { lean_object* x_1; @@ -32925,65 +32925,65 @@ x_1 = lean_mk_string_from_bytes("DSimp", 5); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_23049____closed__4() { +static lean_object* _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_23040____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_1 = l_Array_mapMUnsafe_map___at_Lean_expandMacros___spec__1___lambda__1___closed__1; -x_2 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17775____closed__3; -x_3 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_23049____closed__3; -x_4 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17775____closed__5; +x_2 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17766____closed__3; +x_3 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_23040____closed__3; +x_4 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17766____closed__5; x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); return x_5; } } -static lean_object* _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_23049____closed__5() { +static lean_object* _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_23040____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_23049____closed__4; +x_2 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_23040____closed__4; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_23049____closed__6() { +static lean_object* _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_23040____closed__6() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_23049____closed__4; +x_1 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_23040____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_Tactic_expandSimp____x40_Init_Meta___hyg_23049____closed__7() { +static lean_object* _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_23040____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_23049____closed__6; +x_2 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_23040____closed__6; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_23049____closed__8() { +static lean_object* _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_23040____closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_23049____closed__5; -x_2 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_23049____closed__7; +x_1 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_23040____closed__5; +x_2 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_23040____closed__7; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); return x_3; } } -LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_23049_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_23040_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; uint8_t x_9; @@ -33044,12 +33044,12 @@ lean_inc(x_12); x_29 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_29, 0, x_12); lean_ctor_set(x_29, 1, x_28); -x_30 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_23049____closed__4; +x_30 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_23040____closed__4; lean_inc(x_13); lean_inc(x_14); x_31 = l_Lean_addMacroScope(x_14, x_30, x_13); -x_32 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_23049____closed__2; -x_33 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_23049____closed__8; +x_32 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_23040____closed__2; +x_33 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_23040____closed__8; lean_inc(x_12); x_34 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_34, 0, x_12); @@ -33130,11 +33130,11 @@ x_61 = lean_alloc_ctor(1, 3, 0); lean_ctor_set(x_61, 0, x_12); lean_ctor_set(x_61, 1, x_39); lean_ctor_set(x_61, 2, x_60); -x_62 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17775____closed__12; +x_62 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17766____closed__12; lean_inc(x_13); lean_inc(x_14); x_63 = l_Lean_addMacroScope(x_14, x_62, x_13); -x_64 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17775____closed__11; +x_64 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17766____closed__11; lean_inc(x_12); x_65 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_65, 0, x_12); @@ -33253,7 +33253,7 @@ x_107 = lean_alloc_ctor(1, 3, 0); lean_ctor_set(x_107, 0, x_12); lean_ctor_set(x_107, 1, x_8); lean_ctor_set(x_107, 2, x_106); -x_108 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_23049____lambda__1(x_1, x_107, x_2, x_3); +x_108 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_23040____lambda__1(x_1, x_107, x_2, x_3); lean_dec(x_2); return x_108; } @@ -33308,12 +33308,12 @@ lean_inc(x_113); x_130 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_130, 0, x_113); lean_ctor_set(x_130, 1, x_129); -x_131 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_23049____closed__4; +x_131 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_23040____closed__4; lean_inc(x_114); lean_inc(x_115); x_132 = l_Lean_addMacroScope(x_115, x_131, x_114); -x_133 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_23049____closed__2; -x_134 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_23049____closed__8; +x_133 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_23040____closed__2; +x_134 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_23040____closed__8; lean_inc(x_113); x_135 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_135, 0, x_113); @@ -33394,11 +33394,11 @@ x_162 = lean_alloc_ctor(1, 3, 0); lean_ctor_set(x_162, 0, x_113); lean_ctor_set(x_162, 1, x_140); lean_ctor_set(x_162, 2, x_161); -x_163 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17775____closed__12; +x_163 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17766____closed__12; lean_inc(x_114); lean_inc(x_115); x_164 = l_Lean_addMacroScope(x_115, x_163, x_114); -x_165 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17775____closed__11; +x_165 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17766____closed__11; lean_inc(x_113); x_166 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_166, 0, x_113); @@ -33490,17 +33490,17 @@ x_200 = lean_alloc_ctor(1, 3, 0); lean_ctor_set(x_200, 0, x_113); lean_ctor_set(x_200, 1, x_8); lean_ctor_set(x_200, 2, x_199); -x_201 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_23049____lambda__1(x_1, x_200, x_2, x_3); +x_201 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_23040____lambda__1(x_1, x_200, x_2, x_3); lean_dec(x_2); return x_201; } } } -LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_23049____lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +LEAN_EXPORT lean_object* l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_23040____lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; -x_5 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_23049____lambda__1(x_1, x_2, x_3, x_4); +x_5 = l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_23040____lambda__1(x_1, x_2, x_3, x_4); lean_dec(x_3); return x_5; } @@ -34093,54 +34093,54 @@ l_Lean_Meta_instBEqTransparencyMode___closed__1 = _init_l_Lean_Meta_instBEqTrans lean_mark_persistent(l_Lean_Meta_instBEqTransparencyMode___closed__1); l_Lean_Meta_instBEqTransparencyMode = _init_l_Lean_Meta_instBEqTransparencyMode(); lean_mark_persistent(l_Lean_Meta_instBEqTransparencyMode); -l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__1 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__1(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__1); -l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__2 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__2(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__2); -l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__3 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__3(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__3); -l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__4 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__4(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__4); -l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__5 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__5(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__5); -l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__6 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__6(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__6); -l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__7 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__7(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__7); -l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__8 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__8(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__8); -l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__9 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__9(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__9); -l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__10 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__10(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__10); -l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__11 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__11(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__11); -l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__12 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__12(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__12); -l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__13 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__13(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__13); -l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__14 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__14(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__14); -l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__15 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__15(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__15); -l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__16 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__16(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__16); -l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__17 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__17(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__17); -l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__18 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__18(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__18); -l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__19 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__19(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__19); -l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__20 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__20(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__20); -l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__21 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__21(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__21); -l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__22 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__22(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__22); -l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__23 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__23(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__23); -l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__24 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__24(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12404____closed__24); +l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__1 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__1(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__1); +l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__2 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__2(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__2); +l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__3 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__3(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__3); +l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__4 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__4(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__4); +l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__5 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__5(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__5); +l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__6 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__6(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__6); +l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__7 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__7(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__7); +l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__8 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__8(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__8); +l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__9 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__9(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__9); +l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__10 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__10(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__10); +l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__11 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__11(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__11); +l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__12 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__12(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__12); +l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__13 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__13(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__13); +l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__14 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__14(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__14); +l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__15 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__15(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__15); +l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__16 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__16(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__16); +l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__17 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__17(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__17); +l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__18 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__18(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__18); +l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__19 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__19(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__19); +l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__20 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__20(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__20); +l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__21 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__21(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__21); +l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__22 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__22(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__22); +l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__23 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__23(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__23); +l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__24 = _init_l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__24(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprTransparencyMode____x40_Init_Meta___hyg_12395____closed__24); l_Lean_Meta_instReprTransparencyMode___closed__1 = _init_l_Lean_Meta_instReprTransparencyMode___closed__1(); lean_mark_persistent(l_Lean_Meta_instReprTransparencyMode___closed__1); l_Lean_Meta_instReprTransparencyMode = _init_l_Lean_Meta_instReprTransparencyMode(); @@ -34150,42 +34150,42 @@ l_Lean_Meta_instBEqEtaStructMode___closed__1 = _init_l_Lean_Meta_instBEqEtaStruc lean_mark_persistent(l_Lean_Meta_instBEqEtaStructMode___closed__1); l_Lean_Meta_instBEqEtaStructMode = _init_l_Lean_Meta_instBEqEtaStructMode(); lean_mark_persistent(l_Lean_Meta_instBEqEtaStructMode); -l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12617____closed__1 = _init_l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12617____closed__1(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12617____closed__1); -l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12617____closed__2 = _init_l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12617____closed__2(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12617____closed__2); -l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12617____closed__3 = _init_l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12617____closed__3(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12617____closed__3); -l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12617____closed__4 = _init_l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12617____closed__4(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12617____closed__4); -l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12617____closed__5 = _init_l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12617____closed__5(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12617____closed__5); -l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12617____closed__6 = _init_l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12617____closed__6(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12617____closed__6); -l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12617____closed__7 = _init_l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12617____closed__7(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12617____closed__7); -l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12617____closed__8 = _init_l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12617____closed__8(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12617____closed__8); -l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12617____closed__9 = _init_l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12617____closed__9(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12617____closed__9); -l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12617____closed__10 = _init_l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12617____closed__10(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12617____closed__10); -l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12617____closed__11 = _init_l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12617____closed__11(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12617____closed__11); -l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12617____closed__12 = _init_l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12617____closed__12(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12617____closed__12); -l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12617____closed__13 = _init_l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12617____closed__13(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12617____closed__13); -l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12617____closed__14 = _init_l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12617____closed__14(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12617____closed__14); -l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12617____closed__15 = _init_l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12617____closed__15(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12617____closed__15); -l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12617____closed__16 = _init_l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12617____closed__16(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12617____closed__16); -l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12617____closed__17 = _init_l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12617____closed__17(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12617____closed__17); -l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12617____closed__18 = _init_l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12617____closed__18(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12617____closed__18); +l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12608____closed__1 = _init_l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12608____closed__1(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12608____closed__1); +l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12608____closed__2 = _init_l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12608____closed__2(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12608____closed__2); +l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12608____closed__3 = _init_l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12608____closed__3(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12608____closed__3); +l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12608____closed__4 = _init_l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12608____closed__4(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12608____closed__4); +l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12608____closed__5 = _init_l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12608____closed__5(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12608____closed__5); +l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12608____closed__6 = _init_l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12608____closed__6(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12608____closed__6); +l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12608____closed__7 = _init_l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12608____closed__7(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12608____closed__7); +l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12608____closed__8 = _init_l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12608____closed__8(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12608____closed__8); +l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12608____closed__9 = _init_l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12608____closed__9(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12608____closed__9); +l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12608____closed__10 = _init_l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12608____closed__10(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12608____closed__10); +l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12608____closed__11 = _init_l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12608____closed__11(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12608____closed__11); +l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12608____closed__12 = _init_l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12608____closed__12(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12608____closed__12); +l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12608____closed__13 = _init_l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12608____closed__13(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12608____closed__13); +l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12608____closed__14 = _init_l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12608____closed__14(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12608____closed__14); +l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12608____closed__15 = _init_l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12608____closed__15(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12608____closed__15); +l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12608____closed__16 = _init_l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12608____closed__16(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12608____closed__16); +l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12608____closed__17 = _init_l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12608____closed__17(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12608____closed__17); +l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12608____closed__18 = _init_l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12608____closed__18(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_reprEtaStructMode____x40_Init_Meta___hyg_12608____closed__18); l_Lean_Meta_instReprEtaStructMode___closed__1 = _init_l_Lean_Meta_instReprEtaStructMode___closed__1(); lean_mark_persistent(l_Lean_Meta_instReprEtaStructMode___closed__1); l_Lean_Meta_instReprEtaStructMode = _init_l_Lean_Meta_instReprEtaStructMode(); @@ -34206,62 +34206,62 @@ l_Lean_Meta_DSimp_instBEqConfig___closed__1 = _init_l_Lean_Meta_DSimp_instBEqCon lean_mark_persistent(l_Lean_Meta_DSimp_instBEqConfig___closed__1); l_Lean_Meta_DSimp_instBEqConfig = _init_l_Lean_Meta_DSimp_instBEqConfig(); lean_mark_persistent(l_Lean_Meta_DSimp_instBEqConfig); -l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__1 = _init_l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__1(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__1); -l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__2 = _init_l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__2(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__2); -l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__3 = _init_l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__3(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__3); -l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__4 = _init_l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__4(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__4); -l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__5 = _init_l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__5(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__5); -l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__6 = _init_l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__6(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__6); -l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__7 = _init_l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__7(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__7); -l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__8 = _init_l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__8(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__8); -l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__9 = _init_l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__9(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__9); -l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__10 = _init_l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__10(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__10); -l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__11 = _init_l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__11(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__11); -l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__12 = _init_l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__12(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__12); -l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__13 = _init_l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__13(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__13); -l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__14 = _init_l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__14(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__14); -l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__15 = _init_l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__15(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__15); -l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__16 = _init_l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__16(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__16); -l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__17 = _init_l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__17(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__17); -l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__18 = _init_l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__18(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__18); -l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__19 = _init_l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__19(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__19); -l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__20 = _init_l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__20(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__20); -l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__21 = _init_l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__21(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__21); -l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__22 = _init_l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__22(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__22); -l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__23 = _init_l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__23(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__23); -l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__24 = _init_l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__24(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__24); -l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__25 = _init_l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__25(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__25); -l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__26 = _init_l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__26(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__26); -l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__27 = _init_l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__27(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__27); -l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__28 = _init_l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__28(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13058____closed__28); +l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__1 = _init_l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__1(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__1); +l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__2 = _init_l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__2(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__2); +l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__3 = _init_l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__3(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__3); +l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__4 = _init_l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__4(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__4); +l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__5 = _init_l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__5(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__5); +l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__6 = _init_l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__6(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__6); +l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__7 = _init_l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__7(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__7); +l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__8 = _init_l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__8(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__8); +l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__9 = _init_l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__9(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__9); +l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__10 = _init_l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__10(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__10); +l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__11 = _init_l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__11(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__11); +l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__12 = _init_l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__12(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__12); +l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__13 = _init_l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__13(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__13); +l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__14 = _init_l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__14(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__14); +l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__15 = _init_l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__15(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__15); +l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__16 = _init_l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__16(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__16); +l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__17 = _init_l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__17(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__17); +l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__18 = _init_l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__18(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__18); +l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__19 = _init_l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__19(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__19); +l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__20 = _init_l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__20(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__20); +l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__21 = _init_l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__21(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__21); +l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__22 = _init_l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__22(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__22); +l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__23 = _init_l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__23(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__23); +l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__24 = _init_l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__24(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__24); +l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__25 = _init_l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__25(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__25); +l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__26 = _init_l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__26(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__26); +l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__27 = _init_l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__27(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__27); +l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__28 = _init_l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__28(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_DSimp_reprConfig____x40_Init_Meta___hyg_13049____closed__28); l_Lean_Meta_DSimp_instReprConfig___closed__1 = _init_l_Lean_Meta_DSimp_instReprConfig___closed__1(); lean_mark_persistent(l_Lean_Meta_DSimp_instReprConfig___closed__1); l_Lean_Meta_DSimp_instReprConfig = _init_l_Lean_Meta_DSimp_instReprConfig(); @@ -34293,54 +34293,54 @@ l_Lean_Meta_Simp_instBEqConfig___closed__1 = _init_l_Lean_Meta_Simp_instBEqConfi lean_mark_persistent(l_Lean_Meta_Simp_instBEqConfig___closed__1); l_Lean_Meta_Simp_instBEqConfig = _init_l_Lean_Meta_Simp_instBEqConfig(); lean_mark_persistent(l_Lean_Meta_Simp_instBEqConfig); -l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__1 = _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__1(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__1); -l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__2 = _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__2(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__2); -l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__3 = _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__3(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__3); -l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__4 = _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__4(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__4); -l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__5 = _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__5(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__5); -l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__6 = _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__6(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__6); -l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__7 = _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__7(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__7); -l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__8 = _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__8(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__8); -l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__9 = _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__9(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__9); -l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__10 = _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__10(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__10); -l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__11 = _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__11(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__11); -l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__12 = _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__12(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__12); -l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__13 = _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__13(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__13); -l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__14 = _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__14(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__14); -l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__15 = _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__15(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__15); -l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__16 = _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__16(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__16); -l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__17 = _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__17(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__17); -l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__18 = _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__18(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__18); -l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__19 = _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__19(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__19); -l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__20 = _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__20(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__20); -l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__21 = _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__21(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__21); -l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__22 = _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__22(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__22); -l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__23 = _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__23(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__23); -l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__24 = _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__24(); -lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13761____closed__24); +l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__1 = _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__1(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__1); +l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__2 = _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__2(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__2); +l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__3 = _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__3(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__3); +l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__4 = _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__4(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__4); +l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__5 = _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__5(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__5); +l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__6 = _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__6(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__6); +l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__7 = _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__7(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__7); +l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__8 = _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__8(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__8); +l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__9 = _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__9(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__9); +l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__10 = _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__10(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__10); +l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__11 = _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__11(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__11); +l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__12 = _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__12(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__12); +l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__13 = _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__13(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__13); +l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__14 = _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__14(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__14); +l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__15 = _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__15(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__15); +l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__16 = _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__16(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__16); +l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__17 = _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__17(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__17); +l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__18 = _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__18(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__18); +l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__19 = _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__19(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__19); +l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__20 = _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__20(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__20); +l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__21 = _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__21(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__21); +l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__22 = _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__22(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__22); +l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__23 = _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__23(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__23); +l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__24 = _init_l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__24(); +lean_mark_persistent(l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_13752____closed__24); l_Lean_Meta_Simp_instReprConfig___closed__1 = _init_l_Lean_Meta_Simp_instReprConfig___closed__1(); lean_mark_persistent(l_Lean_Meta_Simp_instReprConfig___closed__1); l_Lean_Meta_Simp_instReprConfig = _init_l_Lean_Meta_Simp_instReprConfig(); @@ -35066,30 +35066,30 @@ l_Lean_Parser_Tactic_simpAutoUnfold___closed__26 = _init_l_Lean_Parser_Tactic_si lean_mark_persistent(l_Lean_Parser_Tactic_simpAutoUnfold___closed__26); l_Lean_Parser_Tactic_simpAutoUnfold = _init_l_Lean_Parser_Tactic_simpAutoUnfold(); lean_mark_persistent(l_Lean_Parser_Tactic_simpAutoUnfold); -l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17775____closed__1 = _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17775____closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17775____closed__1); -l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17775____closed__2 = _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17775____closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17775____closed__2); -l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17775____closed__3 = _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17775____closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17775____closed__3); -l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17775____closed__4 = _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17775____closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17775____closed__4); -l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17775____closed__5 = _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17775____closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17775____closed__5); -l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17775____closed__6 = _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17775____closed__6(); -lean_mark_persistent(l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17775____closed__6); -l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17775____closed__7 = _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17775____closed__7(); -lean_mark_persistent(l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17775____closed__7); -l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17775____closed__8 = _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17775____closed__8(); -lean_mark_persistent(l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17775____closed__8); -l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17775____closed__9 = _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17775____closed__9(); -lean_mark_persistent(l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17775____closed__9); -l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17775____closed__10 = _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17775____closed__10(); -lean_mark_persistent(l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17775____closed__10); -l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17775____closed__11 = _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17775____closed__11(); -lean_mark_persistent(l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17775____closed__11); -l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17775____closed__12 = _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17775____closed__12(); -lean_mark_persistent(l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17775____closed__12); +l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17766____closed__1 = _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17766____closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17766____closed__1); +l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17766____closed__2 = _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17766____closed__2(); +lean_mark_persistent(l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17766____closed__2); +l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17766____closed__3 = _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17766____closed__3(); +lean_mark_persistent(l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17766____closed__3); +l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17766____closed__4 = _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17766____closed__4(); +lean_mark_persistent(l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17766____closed__4); +l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17766____closed__5 = _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17766____closed__5(); +lean_mark_persistent(l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17766____closed__5); +l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17766____closed__6 = _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17766____closed__6(); +lean_mark_persistent(l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17766____closed__6); +l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17766____closed__7 = _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17766____closed__7(); +lean_mark_persistent(l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17766____closed__7); +l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17766____closed__8 = _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17766____closed__8(); +lean_mark_persistent(l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17766____closed__8); +l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17766____closed__9 = _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17766____closed__9(); +lean_mark_persistent(l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17766____closed__9); +l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17766____closed__10 = _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17766____closed__10(); +lean_mark_persistent(l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17766____closed__10); +l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17766____closed__11 = _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17766____closed__11(); +lean_mark_persistent(l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17766____closed__11); +l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17766____closed__12 = _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17766____closed__12(); +lean_mark_persistent(l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_17766____closed__12); l_Lean_Parser_Tactic_simpArith___closed__1 = _init_l_Lean_Parser_Tactic_simpArith___closed__1(); lean_mark_persistent(l_Lean_Parser_Tactic_simpArith___closed__1); l_Lean_Parser_Tactic_simpArith___closed__2 = _init_l_Lean_Parser_Tactic_simpArith___closed__2(); @@ -35112,10 +35112,10 @@ l_Lean_Parser_Tactic_simpArith___closed__10 = _init_l_Lean_Parser_Tactic_simpAri lean_mark_persistent(l_Lean_Parser_Tactic_simpArith___closed__10); l_Lean_Parser_Tactic_simpArith = _init_l_Lean_Parser_Tactic_simpArith(); lean_mark_persistent(l_Lean_Parser_Tactic_simpArith); -l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18633____closed__1 = _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18633____closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18633____closed__1); -l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18633____closed__2 = _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18633____closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18633____closed__2); +l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18624____closed__1 = _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18624____closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18624____closed__1); +l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18624____closed__2 = _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18624____closed__2(); +lean_mark_persistent(l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_18624____closed__2); l_Lean_Parser_Tactic_simpArithAutoUnfold___closed__1 = _init_l_Lean_Parser_Tactic_simpArithAutoUnfold___closed__1(); lean_mark_persistent(l_Lean_Parser_Tactic_simpArithAutoUnfold___closed__1); l_Lean_Parser_Tactic_simpArithAutoUnfold___closed__2 = _init_l_Lean_Parser_Tactic_simpArithAutoUnfold___closed__2(); @@ -35166,24 +35166,24 @@ l_Lean_Parser_Tactic_simpAllAutoUnfold___closed__13 = _init_l_Lean_Parser_Tactic lean_mark_persistent(l_Lean_Parser_Tactic_simpAllAutoUnfold___closed__13); l_Lean_Parser_Tactic_simpAllAutoUnfold = _init_l_Lean_Parser_Tactic_simpAllAutoUnfold(); lean_mark_persistent(l_Lean_Parser_Tactic_simpAllAutoUnfold); -l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20429____lambda__1___closed__1 = _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20429____lambda__1___closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20429____lambda__1___closed__1); -l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20429____closed__1 = _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20429____closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20429____closed__1); -l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20429____closed__2 = _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20429____closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20429____closed__2); -l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20429____closed__3 = _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20429____closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20429____closed__3); -l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20429____closed__4 = _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20429____closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20429____closed__4); -l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20429____closed__5 = _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20429____closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20429____closed__5); -l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20429____closed__6 = _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20429____closed__6(); -lean_mark_persistent(l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20429____closed__6); -l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20429____closed__7 = _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20429____closed__7(); -lean_mark_persistent(l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20429____closed__7); -l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20429____closed__8 = _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20429____closed__8(); -lean_mark_persistent(l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20429____closed__8); +l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20420____lambda__1___closed__1 = _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20420____lambda__1___closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20420____lambda__1___closed__1); +l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20420____closed__1 = _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20420____closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20420____closed__1); +l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20420____closed__2 = _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20420____closed__2(); +lean_mark_persistent(l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20420____closed__2); +l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20420____closed__3 = _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20420____closed__3(); +lean_mark_persistent(l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20420____closed__3); +l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20420____closed__4 = _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20420____closed__4(); +lean_mark_persistent(l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20420____closed__4); +l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20420____closed__5 = _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20420____closed__5(); +lean_mark_persistent(l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20420____closed__5); +l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20420____closed__6 = _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20420____closed__6(); +lean_mark_persistent(l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20420____closed__6); +l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20420____closed__7 = _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20420____closed__7(); +lean_mark_persistent(l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20420____closed__7); +l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20420____closed__8 = _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20420____closed__8(); +lean_mark_persistent(l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_20420____closed__8); l_Lean_Parser_Tactic_simpAllArith___closed__1 = _init_l_Lean_Parser_Tactic_simpAllArith___closed__1(); lean_mark_persistent(l_Lean_Parser_Tactic_simpAllArith___closed__1); l_Lean_Parser_Tactic_simpAllArith___closed__2 = _init_l_Lean_Parser_Tactic_simpAllArith___closed__2(); @@ -35246,22 +35246,22 @@ l_Lean_Parser_Tactic_dsimpAutoUnfold___closed__10 = _init_l_Lean_Parser_Tactic_d lean_mark_persistent(l_Lean_Parser_Tactic_dsimpAutoUnfold___closed__10); l_Lean_Parser_Tactic_dsimpAutoUnfold = _init_l_Lean_Parser_Tactic_dsimpAutoUnfold(); lean_mark_persistent(l_Lean_Parser_Tactic_dsimpAutoUnfold); -l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_23049____closed__1 = _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_23049____closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_23049____closed__1); -l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_23049____closed__2 = _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_23049____closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_23049____closed__2); -l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_23049____closed__3 = _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_23049____closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_23049____closed__3); -l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_23049____closed__4 = _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_23049____closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_23049____closed__4); -l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_23049____closed__5 = _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_23049____closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_23049____closed__5); -l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_23049____closed__6 = _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_23049____closed__6(); -lean_mark_persistent(l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_23049____closed__6); -l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_23049____closed__7 = _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_23049____closed__7(); -lean_mark_persistent(l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_23049____closed__7); -l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_23049____closed__8 = _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_23049____closed__8(); -lean_mark_persistent(l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_23049____closed__8); +l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_23040____closed__1 = _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_23040____closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_23040____closed__1); +l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_23040____closed__2 = _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_23040____closed__2(); +lean_mark_persistent(l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_23040____closed__2); +l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_23040____closed__3 = _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_23040____closed__3(); +lean_mark_persistent(l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_23040____closed__3); +l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_23040____closed__4 = _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_23040____closed__4(); +lean_mark_persistent(l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_23040____closed__4); +l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_23040____closed__5 = _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_23040____closed__5(); +lean_mark_persistent(l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_23040____closed__5); +l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_23040____closed__6 = _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_23040____closed__6(); +lean_mark_persistent(l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_23040____closed__6); +l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_23040____closed__7 = _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_23040____closed__7(); +lean_mark_persistent(l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_23040____closed__7); +l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_23040____closed__8 = _init_l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_23040____closed__8(); +lean_mark_persistent(l_Lean_Parser_Tactic_expandSimp____x40_Init_Meta___hyg_23040____closed__8); return lean_io_result_mk_ok(lean_box(0)); } #ifdef __cplusplus diff --git a/stage0/stdlib/Init/Prelude.c b/stage0/stdlib/Init/Prelude.c index 5e3970edf6..47178fe2de 100644 --- a/stage0/stdlib/Init/Prelude.c +++ b/stage0/stdlib/Init/Prelude.c @@ -58,6 +58,7 @@ LEAN_EXPORT lean_object* l_Lean_Syntax_getHeadInfo_x3f(lean_object*); static lean_object* l_Lean_PrettyPrinter_instMonadQuotationUnexpandM___closed__4; static lean_object* l_Applicative_seqLeft___default___rarg___closed__1; LEAN_EXPORT lean_object* l_Lean_Macro_throwErrorAt(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Syntax_node3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_EStateM_instMonadEStateM___closed__10; LEAN_EXPORT lean_object* l_Lean_nullKind; LEAN_EXPORT lean_object* l_instMonadFunctorT(lean_object*, lean_object*, lean_object*); @@ -115,6 +116,7 @@ LEAN_EXPORT lean_object* l_ReaderT_instMonadFunctorReaderT___rarg(lean_object*, LEAN_EXPORT lean_object* l_List_foldl___rarg(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_EStateM_run(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_UInt8_size; +LEAN_EXPORT lean_object* l_Lean_Syntax_node2(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_instPowNat___closed__1; static lean_object* l___private_Init_Prelude_0__Lean_extractMainModule___closed__1; LEAN_EXPORT lean_object* l_Monad_seqLeft___default(lean_object*); @@ -191,6 +193,7 @@ LEAN_EXPORT lean_object* l_instInhabitedForAll__1(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_TSyntaxArray_rawImpl___rarg___boxed(lean_object*); static lean_object* l_Applicative_seqRight___default___rarg___closed__1; LEAN_EXPORT lean_object* l_Lean_Macro_instMonadQuotationMacroM; +static lean_object* l_Array_mkArray8___rarg___closed__1; LEAN_EXPORT lean_object* l_instTransEq__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Syntax_getNumArgs___boxed(lean_object*); LEAN_EXPORT lean_object* l_ReaderT_instApplicativeReaderT___rarg___lambda__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -259,6 +262,7 @@ LEAN_EXPORT lean_object* l_monadFunctorRefl___rarg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_get_x21___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Function_const___rarg(lean_object*, lean_object*); LEAN_EXPORT uint64_t l_instInhabitedUInt64; +LEAN_EXPORT lean_object* l_Lean_Syntax_node5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_ReaderT_instMonadLiftReaderT___rarg___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_instDecidableEqUInt16___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_instMonadRef___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); @@ -345,6 +349,7 @@ static lean_object* l_Lean_firstFrontendMacroScope___closed__1; LEAN_EXPORT lean_object* l_Lean_replaceRef(lean_object*, lean_object*); lean_object* lean_array_get(lean_object*, lean_object*, lean_object*); uint8_t lean_uint32_dec_lt(uint32_t, uint32_t); +LEAN_EXPORT lean_object* l_Lean_Syntax_node7(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_numLitKind___closed__1; LEAN_EXPORT lean_object* l_Array_appendCore___rarg___boxed(lean_object*, lean_object*); static lean_object* l_Lean_strLitKind___closed__1; @@ -372,8 +377,10 @@ uint8_t lean_uint8_of_nat_mk(lean_object*); static lean_object* l_Lean_scientificLitKind___closed__2; LEAN_EXPORT lean_object* l_instHAddPosChar___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_List_set(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Syntax_node8(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT uint8_t l_List_hasDecEq___rarg(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mkArray5(lean_object*); +static lean_object* l_Array_mkArray7___rarg___closed__1; LEAN_EXPORT lean_object* l_Char_utf8Size___boxed(lean_object*); LEAN_EXPORT lean_object* l_Lean_MonadQuotation_addMacroScope___rarg___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_strLitKind___closed__2; @@ -530,6 +537,7 @@ static lean_object* l_Lean_nullKind___closed__2; LEAN_EXPORT lean_object* l_Lean_Syntax_matchesIdent___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_MonadExcept_instOrElse(lean_object*, lean_object*); static lean_object* l_EStateM_instMonadEStateM___closed__5; +LEAN_EXPORT lean_object* l_Lean_Syntax_node6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_data___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Macro_expandMacro_x3f(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_inferInstanceAs___rarg(lean_object*); @@ -639,11 +647,13 @@ LEAN_EXPORT lean_object* l_String_toSubstring_x27(lean_object*); LEAN_EXPORT lean_object* l_Array_appendCore___rarg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_EStateM_instMonadExceptOfEStateM___rarg(lean_object*); LEAN_EXPORT lean_object* l_instDecidableEqUSize___boxed(lean_object*, lean_object*); +static lean_object* l_Array_mkArray5___rarg___closed__1; LEAN_EXPORT lean_object* l_EStateM_set(lean_object*, lean_object*); uint8_t lean_nat_dec_le(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_instHMul___rarg(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Nat_mul___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Macro_throwUnsupported___rarg(lean_object*); +static lean_object* l_Array_mkArray6___rarg___closed__1; LEAN_EXPORT lean_object* l_Lean_Name_mkStr6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_instInhabitedExcept___rarg(lean_object*); LEAN_EXPORT lean_object* l_EStateM_pure(lean_object*, lean_object*, lean_object*); @@ -660,6 +670,7 @@ static uint32_t l_Char_utf8Size___closed__4; LEAN_EXPORT lean_object* l_Lean_MonadQuotation_addMacroScope___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Macro_getMethodsImp(lean_object*, lean_object*); static lean_object* l_Lean_Name_hasMacroScopes___closed__1; +static lean_object* l_Array_mkArray3___rarg___closed__1; LEAN_EXPORT lean_object* l_Lean_instMonadQuotation___rarg(lean_object*, lean_object*, lean_object*); lean_object* lean_nat_mul(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_max___boxed(lean_object*, lean_object*); @@ -711,6 +722,7 @@ LEAN_EXPORT lean_object* l_Function_const(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Char_ofNat___boxed(lean_object*); static lean_object* l_System_Platform_numBits___closed__1; LEAN_EXPORT uint8_t l_instDecidableLtUInt32InstLTUInt32(uint32_t, uint32_t); +LEAN_EXPORT lean_object* l_Lean_Syntax_node1(lean_object*, lean_object*, lean_object*); lean_object* lean_panic_fn(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_instHOr(lean_object*); LEAN_EXPORT lean_object* l_EStateM_instInhabitedResult(lean_object*, lean_object*, lean_object*); @@ -767,6 +779,7 @@ LEAN_EXPORT lean_object* l_Lean_Macro_instMonadRefMacroM___lambda__2(lean_object static lean_object* l_instHashableString___closed__1; static lean_object* l_Lean_Macro_instMonadRefMacroM___closed__3; LEAN_EXPORT lean_object* l_instMonadStateOf___rarg___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Syntax_node4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Syntax_getArg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_ReaderT_bind___at_Lean_Macro_instMonadRefMacroM___spec__2(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_id(lean_object*); @@ -776,6 +789,7 @@ LEAN_EXPORT lean_object* l_Lean_Macro_instInhabitedMethods; LEAN_EXPORT lean_object* l_Lean_Syntax_getOptional_x3f___boxed(lean_object*); LEAN_EXPORT lean_object* l_instHOrElse___rarg(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Prelude_0__Lean_Macro_MethodsRefPointed; +static lean_object* l_Array_mkArray2___rarg___closed__1; LEAN_EXPORT lean_object* l_Array_mkArray3___rarg(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mkArray4(lean_object*); LEAN_EXPORT lean_object* l_dite___rarg___boxed(lean_object*, lean_object*, lean_object*); @@ -839,6 +853,7 @@ LEAN_EXPORT lean_object* l_Lean_defaultMaxRecDepth; LEAN_EXPORT lean_object* l_Applicative_seqLeft___default___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_MonadRef_mkInfoFromRefPos___rarg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_TSyntaxArray_mkImpl(lean_object*); +static lean_object* l_Array_mkArray4___rarg___closed__1; static lean_object* l___private_Init_Prelude_0__Lean_eraseMacroScopesAux___closed__1; LEAN_EXPORT lean_object* l_Array_mk___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_instHAndThen___rarg(lean_object*, lean_object*, lean_object*); @@ -4301,11 +4316,20 @@ x_2 = lean_alloc_closure((void*)(l_Array_mkArray1___rarg), 1, 0); return x_2; } } +static lean_object* _init_l_Array_mkArray2___rarg___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_unsigned_to_nat(2u); +x_2 = lean_mk_empty_array_with_capacity(x_1); +return x_2; +} +} LEAN_EXPORT lean_object* l_Array_mkArray2___rarg(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_3 = l_Array_mkArray1___rarg___closed__1; +x_3 = l_Array_mkArray2___rarg___closed__1; x_4 = lean_array_push(x_3, x_1); x_5 = lean_array_push(x_4, x_2); return x_5; @@ -4319,11 +4343,20 @@ x_2 = lean_alloc_closure((void*)(l_Array_mkArray2___rarg), 2, 0); return x_2; } } +static lean_object* _init_l_Array_mkArray3___rarg___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_unsigned_to_nat(3u); +x_2 = lean_mk_empty_array_with_capacity(x_1); +return x_2; +} +} LEAN_EXPORT lean_object* l_Array_mkArray3___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_4 = l_Array_mkArray1___rarg___closed__1; +x_4 = l_Array_mkArray3___rarg___closed__1; x_5 = lean_array_push(x_4, x_1); x_6 = lean_array_push(x_5, x_2); x_7 = lean_array_push(x_6, x_3); @@ -4338,11 +4371,20 @@ x_2 = lean_alloc_closure((void*)(l_Array_mkArray3___rarg), 3, 0); return x_2; } } +static lean_object* _init_l_Array_mkArray4___rarg___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_unsigned_to_nat(4u); +x_2 = lean_mk_empty_array_with_capacity(x_1); +return x_2; +} +} LEAN_EXPORT lean_object* l_Array_mkArray4___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; -x_5 = l_Array_mkArray1___rarg___closed__1; +x_5 = l_Array_mkArray4___rarg___closed__1; x_6 = lean_array_push(x_5, x_1); x_7 = lean_array_push(x_6, x_2); x_8 = lean_array_push(x_7, x_3); @@ -4358,11 +4400,20 @@ x_2 = lean_alloc_closure((void*)(l_Array_mkArray4___rarg), 4, 0); return x_2; } } +static lean_object* _init_l_Array_mkArray5___rarg___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_unsigned_to_nat(5u); +x_2 = lean_mk_empty_array_with_capacity(x_1); +return x_2; +} +} LEAN_EXPORT lean_object* l_Array_mkArray5___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; -x_6 = l_Array_mkArray1___rarg___closed__1; +x_6 = l_Array_mkArray5___rarg___closed__1; x_7 = lean_array_push(x_6, x_1); x_8 = lean_array_push(x_7, x_2); x_9 = lean_array_push(x_8, x_3); @@ -4379,11 +4430,20 @@ x_2 = lean_alloc_closure((void*)(l_Array_mkArray5___rarg), 5, 0); return x_2; } } +static lean_object* _init_l_Array_mkArray6___rarg___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_unsigned_to_nat(6u); +x_2 = lean_mk_empty_array_with_capacity(x_1); +return x_2; +} +} LEAN_EXPORT lean_object* l_Array_mkArray6___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; -x_7 = l_Array_mkArray1___rarg___closed__1; +x_7 = l_Array_mkArray6___rarg___closed__1; x_8 = lean_array_push(x_7, x_1); x_9 = lean_array_push(x_8, x_2); x_10 = lean_array_push(x_9, x_3); @@ -4401,11 +4461,20 @@ x_2 = lean_alloc_closure((void*)(l_Array_mkArray6___rarg), 6, 0); return x_2; } } +static lean_object* _init_l_Array_mkArray7___rarg___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_unsigned_to_nat(7u); +x_2 = lean_mk_empty_array_with_capacity(x_1); +return x_2; +} +} LEAN_EXPORT lean_object* l_Array_mkArray7___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; -x_8 = l_Array_mkArray1___rarg___closed__1; +x_8 = l_Array_mkArray7___rarg___closed__1; x_9 = lean_array_push(x_8, x_1); x_10 = lean_array_push(x_9, x_2); x_11 = lean_array_push(x_10, x_3); @@ -4424,11 +4493,20 @@ x_2 = lean_alloc_closure((void*)(l_Array_mkArray7___rarg), 7, 0); return x_2; } } +static lean_object* _init_l_Array_mkArray8___rarg___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_unsigned_to_nat(8u); +x_2 = lean_mk_empty_array_with_capacity(x_1); +return x_2; +} +} LEAN_EXPORT lean_object* l_Array_mkArray8___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; -x_9 = l_Array_mkArray1___rarg___closed__1; +x_9 = l_Array_mkArray8___rarg___closed__1; x_10 = lean_array_push(x_9, x_1); x_11 = lean_array_push(x_10, x_2); x_12 = lean_array_push(x_11, x_3); @@ -7760,6 +7838,102 @@ lean_dec(x_1); return x_4; } } +LEAN_EXPORT lean_object* l_Lean_Syntax_node1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; lean_object* x_5; +x_4 = l_Array_mkArray1___rarg(x_3); +x_5 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_5, 0, x_1); +lean_ctor_set(x_5, 1, x_2); +lean_ctor_set(x_5, 2, x_4); +return x_5; +} +} +LEAN_EXPORT lean_object* l_Lean_Syntax_node2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +lean_object* x_5; lean_object* x_6; +x_5 = l_Array_mkArray2___rarg(x_3, x_4); +x_6 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_6, 0, x_1); +lean_ctor_set(x_6, 1, x_2); +lean_ctor_set(x_6, 2, x_5); +return x_6; +} +} +LEAN_EXPORT lean_object* l_Lean_Syntax_node3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +_start: +{ +lean_object* x_6; lean_object* x_7; +x_6 = l_Array_mkArray3___rarg(x_3, x_4, x_5); +x_7 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_7, 0, x_1); +lean_ctor_set(x_7, 1, x_2); +lean_ctor_set(x_7, 2, x_6); +return x_7; +} +} +LEAN_EXPORT lean_object* l_Lean_Syntax_node4(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +_start: +{ +lean_object* x_7; lean_object* x_8; +x_7 = l_Array_mkArray4___rarg(x_3, x_4, x_5, x_6); +x_8 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_8, 0, x_1); +lean_ctor_set(x_8, 1, x_2); +lean_ctor_set(x_8, 2, x_7); +return x_8; +} +} +LEAN_EXPORT lean_object* l_Lean_Syntax_node5(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +_start: +{ +lean_object* x_8; lean_object* x_9; +x_8 = l_Array_mkArray5___rarg(x_3, x_4, x_5, x_6, x_7); +x_9 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_9, 0, x_1); +lean_ctor_set(x_9, 1, x_2); +lean_ctor_set(x_9, 2, x_8); +return x_9; +} +} +LEAN_EXPORT lean_object* l_Lean_Syntax_node6(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +_start: +{ +lean_object* x_9; lean_object* x_10; +x_9 = l_Array_mkArray6___rarg(x_3, x_4, x_5, x_6, x_7, x_8); +x_10 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_10, 0, x_1); +lean_ctor_set(x_10, 1, x_2); +lean_ctor_set(x_10, 2, x_9); +return x_10; +} +} +LEAN_EXPORT lean_object* l_Lean_Syntax_node7(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +_start: +{ +lean_object* x_10; lean_object* x_11; +x_10 = l_Array_mkArray7___rarg(x_3, x_4, x_5, x_6, x_7, x_8, x_9); +x_11 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_11, 0, x_1); +lean_ctor_set(x_11, 1, x_2); +lean_ctor_set(x_11, 2, x_10); +return x_11; +} +} +LEAN_EXPORT lean_object* l_Lean_Syntax_node8(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +lean_object* x_11; lean_object* x_12; +x_11 = l_Array_mkArray8___rarg(x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +x_12 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_12, 0, x_1); +lean_ctor_set(x_12, 1, x_2); +lean_ctor_set(x_12, 2, x_11); +return x_12; +} +} static lean_object* _init_l_Lean_instInhabitedSyntax() { _start: { @@ -11686,6 +11860,20 @@ l_Array_empty___closed__1 = _init_l_Array_empty___closed__1(); lean_mark_persistent(l_Array_empty___closed__1); l_Array_mkArray1___rarg___closed__1 = _init_l_Array_mkArray1___rarg___closed__1(); lean_mark_persistent(l_Array_mkArray1___rarg___closed__1); +l_Array_mkArray2___rarg___closed__1 = _init_l_Array_mkArray2___rarg___closed__1(); +lean_mark_persistent(l_Array_mkArray2___rarg___closed__1); +l_Array_mkArray3___rarg___closed__1 = _init_l_Array_mkArray3___rarg___closed__1(); +lean_mark_persistent(l_Array_mkArray3___rarg___closed__1); +l_Array_mkArray4___rarg___closed__1 = _init_l_Array_mkArray4___rarg___closed__1(); +lean_mark_persistent(l_Array_mkArray4___rarg___closed__1); +l_Array_mkArray5___rarg___closed__1 = _init_l_Array_mkArray5___rarg___closed__1(); +lean_mark_persistent(l_Array_mkArray5___rarg___closed__1); +l_Array_mkArray6___rarg___closed__1 = _init_l_Array_mkArray6___rarg___closed__1(); +lean_mark_persistent(l_Array_mkArray6___rarg___closed__1); +l_Array_mkArray7___rarg___closed__1 = _init_l_Array_mkArray7___rarg___closed__1(); +lean_mark_persistent(l_Array_mkArray7___rarg___closed__1); +l_Array_mkArray8___rarg___closed__1 = _init_l_Array_mkArray8___rarg___closed__1(); +lean_mark_persistent(l_Array_mkArray8___rarg___closed__1); l_Applicative_seqLeft___default___rarg___closed__1 = _init_l_Applicative_seqLeft___default___rarg___closed__1(); lean_mark_persistent(l_Applicative_seqLeft___default___rarg___closed__1); l_Applicative_seqRight___default___rarg___closed__1 = _init_l_Applicative_seqRight___default___rarg___closed__1(); diff --git a/stage0/stdlib/Lean/Compiler/IR.c b/stage0/stdlib/Lean/Compiler/IR.c index 0bbc2d7e33..1785f5855b 100644 --- a/stage0/stdlib/Lean/Compiler/IR.c +++ b/stage0/stdlib/Lean/Compiler/IR.c @@ -24,6 +24,7 @@ static lean_object* l___private_Lean_Compiler_IR_0__Lean_IR_compileAux___lambda_ lean_object* l_Lean_Name_str___override(lean_object*, lean_object*); uint8_t lean_usize_dec_eq(size_t, size_t); lean_object* lean_array_uget(lean_object*, size_t); +lean_object* lean_ir_add_decl(lean_object*, lean_object*); lean_object* l___private_Lean_Compiler_IR_CompilerM_0__Lean_IR_logDeclsAux(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_uset(lean_object*, size_t, lean_object*); LEAN_EXPORT lean_object* lean_ir_add_boxed_version(lean_object*, lean_object*); @@ -39,7 +40,6 @@ LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_IR_addBoxedVersionA LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Compiler_IR_0__Lean_IR_compileAux___spec__2(size_t, size_t, lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Compiler_IR_0__Lean_IR_compileAux___spec__2___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_IR_getEnv___rarg(lean_object*); -static lean_object* l_Array_foldlMUnsafe_fold___at_Lean_IR_addBoxedVersionAux___spec__1___closed__1; lean_object* l_Lean_IR_explicitRC(lean_object*, lean_object*, lean_object*); uint8_t lean_usize_dec_lt(size_t, size_t); static lean_object* l___private_Lean_Compiler_IR_0__Lean_IR_compileAux___lambda__2___closed__8; @@ -76,7 +76,6 @@ static lean_object* l___private_Lean_Compiler_IR_0__Lean_IR_compileAux___lambda_ static lean_object* l___private_Lean_Compiler_IR_0__Lean_IR_compileAux___closed__4; size_t lean_usize_of_nat(lean_object*); static lean_object* l___private_Lean_Compiler_IR_0__Lean_IR_compileAux___closed__8; -lean_object* l_Lean_PersistentEnvExtension_addEntry___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_IR_addDecls(lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Compiler_IR_0__Lean_IR_compileAux___closed__1; extern lean_object* l_Lean_IR_tracePrefixOptionName; @@ -110,7 +109,6 @@ static lean_object* l_Lean_IR_compile___closed__1; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Compiler_IR_0__Lean_IR_compileAux___spec__1(size_t, size_t, lean_object*); static lean_object* l___private_Lean_Compiler_IR_0__Lean_IR_compileAux___lambda__2___closed__18; static lean_object* l___private_Lean_Compiler_IR_0__Lean_IR_compileAux___lambda__2___closed__5; -extern lean_object* l_Lean_IR_declMapExt; static lean_object* l___private_Lean_Compiler_IR_0__Lean_IR_compileAux___lambda__2___closed__15; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Compiler_IR_0__Lean_IR_compileAux___spec__6(size_t, size_t, lean_object*); static lean_object* l_Lean_IR_initFn____x40_Lean_Compiler_IR___hyg_6____closed__4; @@ -1069,14 +1067,6 @@ return x_16; } } } -static lean_object* _init_l_Array_foldlMUnsafe_fold___at_Lean_IR_addBoxedVersionAux___spec__1___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = l_Lean_IR_declMapExt; -return x_1; -} -} LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_IR_addBoxedVersionAux___spec__1(lean_object* x_1, size_t x_2, size_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { @@ -1090,47 +1080,45 @@ x_8 = lean_array_uget(x_1, x_2); x_9 = !lean_is_exclusive(x_6); if (x_9 == 0) { -lean_object* x_10; lean_object* x_11; lean_object* x_12; size_t x_13; size_t x_14; lean_object* x_15; +lean_object* x_10; lean_object* x_11; size_t x_12; size_t x_13; lean_object* x_14; x_10 = lean_ctor_get(x_6, 0); -x_11 = l_Array_foldlMUnsafe_fold___at_Lean_IR_addBoxedVersionAux___spec__1___closed__1; -x_12 = l_Lean_PersistentEnvExtension_addEntry___rarg(x_11, x_10, x_8); -lean_ctor_set(x_6, 0, x_12); -x_13 = 1; -x_14 = lean_usize_add(x_2, x_13); -x_15 = lean_box(0); -x_2 = x_14; -x_4 = x_15; +x_11 = lean_ir_add_decl(x_10, x_8); +lean_ctor_set(x_6, 0, x_11); +x_12 = 1; +x_13 = lean_usize_add(x_2, x_12); +x_14 = lean_box(0); +x_2 = x_13; +x_4 = x_14; goto _start; } else { -lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; size_t x_22; size_t x_23; lean_object* x_24; -x_17 = lean_ctor_get(x_6, 0); -x_18 = lean_ctor_get(x_6, 1); -lean_inc(x_18); +lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; size_t x_20; size_t x_21; lean_object* x_22; +x_16 = lean_ctor_get(x_6, 0); +x_17 = lean_ctor_get(x_6, 1); lean_inc(x_17); +lean_inc(x_16); lean_dec(x_6); -x_19 = l_Array_foldlMUnsafe_fold___at_Lean_IR_addBoxedVersionAux___spec__1___closed__1; -x_20 = l_Lean_PersistentEnvExtension_addEntry___rarg(x_19, x_17, x_8); -x_21 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_21, 0, x_20); -lean_ctor_set(x_21, 1, x_18); -x_22 = 1; -x_23 = lean_usize_add(x_2, x_22); -x_24 = lean_box(0); -x_2 = x_23; -x_4 = x_24; -x_6 = x_21; +x_18 = lean_ir_add_decl(x_16, x_8); +x_19 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_19, 0, x_18); +lean_ctor_set(x_19, 1, x_17); +x_20 = 1; +x_21 = lean_usize_add(x_2, x_20); +x_22 = lean_box(0); +x_2 = x_21; +x_4 = x_22; +x_6 = x_19; goto _start; } } else { -lean_object* x_26; -x_26 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_26, 0, x_4); -lean_ctor_set(x_26, 1, x_6); -return x_26; +lean_object* x_24; +x_24 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_24, 0, x_4); +lean_ctor_set(x_24, 1, x_6); +return x_24; } } } @@ -1625,8 +1613,6 @@ l___private_Lean_Compiler_IR_0__Lean_IR_compileAux___closed__12 = _init_l___priv lean_mark_persistent(l___private_Lean_Compiler_IR_0__Lean_IR_compileAux___closed__12); l_Lean_IR_compile___closed__1 = _init_l_Lean_IR_compile___closed__1(); lean_mark_persistent(l_Lean_IR_compile___closed__1); -l_Array_foldlMUnsafe_fold___at_Lean_IR_addBoxedVersionAux___spec__1___closed__1 = _init_l_Array_foldlMUnsafe_fold___at_Lean_IR_addBoxedVersionAux___spec__1___closed__1(); -lean_mark_persistent(l_Array_foldlMUnsafe_fold___at_Lean_IR_addBoxedVersionAux___spec__1___closed__1); l_Lean_IR_addBoxedVersionAux___closed__1 = _init_l_Lean_IR_addBoxedVersionAux___closed__1(); lean_mark_persistent(l_Lean_IR_addBoxedVersionAux___closed__1); return lean_io_result_mk_ok(lean_box(0)); diff --git a/stage0/stdlib/Lean/Compiler/IR/Boxing.c b/stage0/stdlib/Lean/Compiler/IR/Boxing.c index 7d828054eb..89c8a6e58d 100644 --- a/stage0/stdlib/Lean/Compiler/IR/Boxing.c +++ b/stage0/stdlib/Lean/Compiler/IR/Boxing.c @@ -132,7 +132,6 @@ static lean_object* l_Lean_IR_ExplicitBoxing_getDecl___closed__2; LEAN_EXPORT lean_object* l_Lean_IR_ExplicitBoxing_BoxingContext_f___default; LEAN_EXPORT lean_object* l___private_Lean_Compiler_IR_Boxing_0__Lean_IR_ExplicitBoxing_M_mkFresh___rarg(lean_object*); LEAN_EXPORT lean_object* l_Lean_IR_ExplicitBoxing_visitVDeclExpr(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_IR_ExplicitBoxing_getDecl___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_IR_ExplicitBoxing_castArgsIfNeededAux___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Array_forInUnsafe_loop___at_Lean_IR_ExplicitBoxing_castArgsIfNeededAux___spec__1___closed__1; LEAN_EXPORT lean_object* l_Lean_IR_ExplicitBoxing_getScrutineeType(lean_object*); @@ -1538,8 +1537,12 @@ _start: { lean_object* x_4; lean_object* x_5; lean_object* x_6; x_4 = lean_ctor_get(x_2, 4); +lean_inc(x_4); x_5 = lean_ctor_get(x_2, 3); +lean_inc(x_5); +lean_dec(x_2); x_6 = l_Lean_IR_findEnvDecl_x27(x_4, x_1, x_5); +lean_dec(x_5); if (lean_obj_tag(x_6) == 0) { lean_object* x_7; lean_object* x_8; @@ -1562,15 +1565,6 @@ return x_10; } } } -LEAN_EXPORT lean_object* l_Lean_IR_ExplicitBoxing_getDecl___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { -_start: -{ -lean_object* x_4; -x_4 = l_Lean_IR_ExplicitBoxing_getDecl(x_1, x_2, x_3); -lean_dec(x_2); -return x_4; -} -} LEAN_EXPORT lean_object* l_Lean_IR_ExplicitBoxing_withParams___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { @@ -3878,6 +3872,7 @@ if (x_107 == 0) lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; uint8_t x_122; x_108 = lean_ctor_get(x_3, 0); x_109 = lean_ctor_get(x_3, 1); +lean_inc(x_5); lean_inc(x_108); x_110 = l_Lean_IR_ExplicitBoxing_getDecl(x_108, x_5, x_6); x_111 = lean_ctor_get(x_110, 0); @@ -3938,6 +3933,7 @@ x_130 = lean_ctor_get(x_3, 1); lean_inc(x_130); lean_inc(x_129); lean_dec(x_3); +lean_inc(x_5); lean_inc(x_129); x_131 = l_Lean_IR_ExplicitBoxing_getDecl(x_129, x_5, x_6); x_132 = lean_ctor_get(x_131, 0); @@ -4006,6 +4002,7 @@ lean_inc(x_153); x_154 = lean_ctor_get(x_152, 1); lean_inc(x_154); lean_dec(x_152); +lean_inc(x_5); lean_inc(x_150); x_155 = l_Lean_IR_ExplicitBoxing_getDecl(x_150, x_5, x_154); x_156 = lean_ctor_get(x_155, 0); @@ -4129,6 +4126,7 @@ lean_inc(x_190); x_191 = lean_ctor_get(x_189, 1); lean_inc(x_191); lean_dec(x_189); +lean_inc(x_5); lean_inc(x_187); x_192 = l_Lean_IR_ExplicitBoxing_getDecl(x_187, x_5, x_191); x_193 = lean_ctor_get(x_192, 0); diff --git a/stage0/stdlib/Lean/Compiler/IR/Checker.c b/stage0/stdlib/Lean/Compiler/IR/Checker.c index 5ebef21600..0bb3073f05 100644 --- a/stage0/stdlib/Lean/Compiler/IR/Checker.c +++ b/stage0/stdlib/Lean/Compiler/IR/Checker.c @@ -65,7 +65,6 @@ LEAN_EXPORT lean_object* l_Lean_IR_Checker_getMaxCtorFields___boxed(lean_object* lean_object* l_Lean_Name_toString(lean_object*, uint8_t); static lean_object* l_Lean_IR_Checker_getDecl___closed__2; LEAN_EXPORT lean_object* l_Lean_IR_Checker_checkObjType(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_IR_Checker_getDecl___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_IR_Checker_checkPartialApp(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_IR_Checker_getDecl___closed__1; lean_object* l_Lean_RBNode_insert___at_Lean_IR_mkIndexSet___spec__1(lean_object*, lean_object*, lean_object*); @@ -420,9 +419,13 @@ _start: { lean_object* x_4; lean_object* x_5; lean_object* x_6; x_4 = lean_ctor_get(x_2, 0); +lean_inc(x_4); x_5 = lean_ctor_get(x_2, 2); +lean_inc(x_5); +lean_dec(x_2); lean_inc(x_1); x_6 = l_Lean_IR_findEnvDecl_x27(x_4, x_1, x_5); +lean_dec(x_5); if (lean_obj_tag(x_6) == 0) { uint8_t x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; @@ -456,15 +459,6 @@ return x_17; } } } -LEAN_EXPORT lean_object* l_Lean_IR_Checker_getDecl___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { -_start: -{ -lean_object* x_4; -x_4 = l_Lean_IR_Checker_getDecl(x_1, x_2, x_3); -lean_dec(x_2); -return x_4; -} -} static lean_object* _init_l_Lean_IR_Checker_checkVar___closed__1() { _start: { @@ -1683,6 +1677,7 @@ LEAN_EXPORT lean_object* l_Lean_IR_Checker_checkFullApp(lean_object* x_1, lean_o _start: { lean_object* x_5; lean_object* x_6; +lean_inc(x_3); lean_inc(x_1); x_5 = l_Lean_IR_Checker_getDecl(x_1, x_3, x_4); x_6 = lean_ctor_get(x_5, 0); @@ -1965,6 +1960,7 @@ LEAN_EXPORT lean_object* l_Lean_IR_Checker_checkPartialApp(lean_object* x_1, lea _start: { lean_object* x_5; lean_object* x_6; +lean_inc(x_3); lean_inc(x_1); x_5 = l_Lean_IR_Checker_getDecl(x_1, x_3, x_4); x_6 = lean_ctor_get(x_5, 0); diff --git a/stage0/stdlib/Lean/Compiler/IR/CompilerM.c b/stage0/stdlib/Lean/Compiler/IR/CompilerM.c index 5d7e5f3298..bf9f160912 100644 --- a/stage0/stdlib/Lean/Compiler/IR/CompilerM.c +++ b/stage0/stdlib/Lean/Compiler/IR/CompilerM.c @@ -13,94 +13,83 @@ #ifdef __cplusplus extern "C" { #endif -LEAN_EXPORT lean_object* l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____lambda__2(lean_object*); +static lean_object* l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_560____closed__4; size_t lean_usize_add(size_t, size_t); LEAN_EXPORT uint8_t l_Array_anyMUnsafe_any___at_Lean_IR_containsDecl_x27___spec__1(lean_object*, lean_object*, size_t, size_t); -static lean_object* l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____closed__2; lean_object* lean_mk_empty_array_with_capacity(lean_object*); -LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____spec__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* lean_nat_div(lean_object*, lean_object*); +lean_object* l_Lean_PersistentEnvExtension_getModuleEntries___rarg(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Compiler_IR_CompilerM_0__Lean_IR_logMessageIfAux(lean_object*); LEAN_EXPORT lean_object* l_Lean_IR_getEnv___boxed(lean_object*); -LEAN_EXPORT lean_object* l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____lambda__1(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_mkHashMap___at___private_Lean_Compiler_IR_CompilerM_0__Lean_IR_mkEntryArray___spec__1(lean_object*); -LEAN_EXPORT lean_object* l_Lean_AssocList_foldlM___at___private_Lean_Compiler_IR_CompilerM_0__Lean_IR_mkEntryArray___spec__9(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAux___at_Lean_IR_findEnvDecl___spec__2___boxed(lean_object*, lean_object*, lean_object*); uint8_t lean_usize_dec_eq(size_t, size_t); lean_object* lean_array_uget(lean_object*, size_t); LEAN_EXPORT lean_object* lean_ir_add_decl(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_IR_findEnvDecl_x27___lambda__1(lean_object*); -static lean_object* l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____lambda__2___closed__1; extern lean_object* l_Std_Format_defWidth; +uint8_t l_Lean_Name_quickLt(lean_object*, lean_object*); static lean_object* l_Lean_IR_findEnvDecl_x27___closed__2; static lean_object* l_Lean_IR_findEnvDecl___closed__1; LEAN_EXPORT lean_object* l___private_Lean_Compiler_IR_CompilerM_0__Lean_IR_logDeclsAux(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Compiler_IR_CompilerM_0__Lean_IR_logMessageIfAux___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* lean_array_uset(lean_object*, size_t, lean_object*); -static lean_object* l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____closed__8; -LEAN_EXPORT lean_object* l___private_Lean_Compiler_IR_CompilerM_0__Lean_IR_mkEntryArray(lean_object*); LEAN_EXPORT lean_object* l_Lean_IR_containsDecl_x27(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT uint8_t l___private_Lean_Compiler_IR_CompilerM_0__Lean_IR_isLogEnabledFor(lean_object*, lean_object*); size_t lean_usize_sub(size_t, size_t); -LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____spec__8___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____closed__1; LEAN_EXPORT lean_object* l_Lean_IR_findDecl_x27___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_IR_addDecls___spec__1(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_instHashableName; -LEAN_EXPORT lean_object* l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538_(lean_object*); +LEAN_EXPORT lean_object* l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_560_(lean_object*); uint8_t lean_name_eq(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux_traverse___at_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____spec__4(size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____lambda__2___closed__4; -LEAN_EXPORT lean_object* l_Lean_SMap_insert___at_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____spec__1(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____spec__8(lean_object*, size_t, size_t, lean_object*); LEAN_EXPORT lean_object* l_Lean_IR_log___boxed(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_560____closed__5; lean_object* lean_array_push(lean_object*, lean_object*); lean_object* lean_array_get_size(lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_find_x3f___at_Lean_IR_findEnvDecl___spec__1(lean_object*, lean_object*); +static lean_object* l_Lean_IR_findEnvDecl___closed__4; lean_object* lean_string_append(lean_object*, lean_object*); lean_object* l_Lean_Name_mkStr3(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux___at_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_560____spec__2(lean_object*, size_t, size_t, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_IR_containsDecl(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_AssocList_foldlM___at___private_Lean_Compiler_IR_CompilerM_0__Lean_IR_mkEntryArray___spec__6(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_IR_getEnv___rarg(lean_object*); LEAN_EXPORT lean_object* l_Lean_IR_logMessageIf___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_qpartition_loop___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_IR_LogEntry_fmt(lean_object*); size_t lean_usize_shift_right(size_t, size_t); -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAux___at_Lean_IR_findEnvDecl___spec__3___boxed(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_List_foldl___at_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_560____spec__5(lean_object*, lean_object*); uint8_t lean_usize_dec_lt(size_t, size_t); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_IR_Log_format___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAux___at_Lean_IR_findEnvDecl___spec__3(lean_object*, size_t, lean_object*); static lean_object* l_Array_foldlMUnsafe_fold___at_Lean_IR_Log_format___spec__1___closed__1; lean_object* lean_nat_add(lean_object*, lean_object*); lean_object* l_Lean_registerSimplePersistentEnvExtension___rarg(lean_object*, lean_object*); lean_object* l_Lean_IR_Decl_name(lean_object*); LEAN_EXPORT lean_object* l_Lean_IR_getDecls___boxed(lean_object*); size_t lean_uint64_to_usize(uint64_t); -static lean_object* l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____lambda__2___closed__2; +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAtAux___at_Lean_IR_findEnvDecl___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PersistentHashMap_getCollisionNodeSize___rarg(lean_object*); -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_find_x3f___at_Lean_IR_findEnvDecl___spec__2(lean_object*, lean_object*); +static lean_object* l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_560____closed__6; LEAN_EXPORT lean_object* l_Lean_IR_log(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_PersistentHashMap_insertAux___at_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_560____spec__2___closed__3; uint64_t l_Lean_Name_hash___override(lean_object*); -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_containsAtAux___at_Lean_IR_containsDecl___spec__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_fget(lean_object*, lean_object*); -static lean_object* l_Lean_PersistentHashMap_insertAux___at_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____spec__3___closed__3; -lean_object* l_Lean_mkHashMapImp___rarg(lean_object*); -LEAN_EXPORT uint8_t l_Lean_SMap_contains___at_Lean_IR_containsDecl___spec__1(lean_object*, lean_object*); +static size_t l_Lean_PersistentHashMap_insertAux___at_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_560____spec__2___closed__2; +LEAN_EXPORT lean_object* l___private_Lean_Compiler_IR_CompilerM_0__Lean_IR_findAtSorted_x3f(lean_object*, lean_object*); static lean_object* l_Lean_IR_LogEntry_fmt___closed__2; LEAN_EXPORT lean_object* l_Lean_IR_getDecls(lean_object*); +lean_object* lean_nat_sub(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_IR_logDecls___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAtCollisionNodeAux___at_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_560____spec__4(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* lean_array_swap(lean_object*, lean_object*, lean_object*); uint8_t l_Lean_KVMap_getBool(lean_object*, lean_object*, uint8_t); -LEAN_EXPORT lean_object* l_Lean_HashMapImp_find_x3f___at_Lean_IR_findEnvDecl___spec__5(lean_object*, lean_object*); -LEAN_EXPORT uint8_t l_Lean_HashMapImp_contains___at_Lean_IR_containsDecl___spec__2(lean_object*, lean_object*); lean_object* l_Lean_Name_toString(lean_object*, uint8_t); static lean_object* l_Lean_IR_LogEntry_fmt___closed__6; -LEAN_EXPORT lean_object* l_Lean_AssocList_replace___at___private_Lean_Compiler_IR_CompilerM_0__Lean_IR_mkEntryArray___spec__7(lean_object*, lean_object*, lean_object*); lean_object* lean_array_get(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_HashMapImp_expand___at___private_Lean_Compiler_IR_CompilerM_0__Lean_IR_mkEntryArray___spec__4(lean_object*, lean_object*); +static lean_object* l___private_Lean_Compiler_IR_CompilerM_0__Lean_IR_findAtSorted_x3f___closed__1; LEAN_EXPORT lean_object* lean_ir_log_to_string(lean_object*); -LEAN_EXPORT lean_object* l_Lean_HashMapImp_moveEntries___at___private_Lean_Compiler_IR_CompilerM_0__Lean_IR_mkEntryArray___spec__5(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux_traverse___at_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_560____spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_fset(lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____closed__7; -LEAN_EXPORT uint8_t l_Lean_PersistentHashMap_contains___at_Lean_IR_containsDecl___spec__3(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux_traverse___at_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_560____spec__3(size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Compiler_IR_CompilerM_0__Lean_IR_sortDecls(lean_object*); LEAN_EXPORT lean_object* l_Lean_IR_containsDecl___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_SMap_instInhabitedSMap___rarg(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_HashMapImp_contains___at_Lean_IR_containsDecl___spec__2___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_IR_logMessage___rarg(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_IR_logMessage(lean_object*); LEAN_EXPORT lean_object* l_Lean_IR_getDecl___boxed(lean_object*, lean_object*, lean_object*); @@ -110,113 +99,106 @@ static lean_object* l_Lean_IR_getDecl___closed__2; static lean_object* l_Lean_IR_getDecl___closed__1; size_t lean_usize_shift_left(size_t, size_t); lean_object* l_Lean_SimplePersistentEnvExtension_getEntries___rarg(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_AssocList_find_x3f___at_Lean_IR_findEnvDecl___spec__6(lean_object*, lean_object*); +extern lean_object* l_Lean_IR_instInhabitedDecl; LEAN_EXPORT lean_object* l_Lean_IR_findDecl_x27(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_IR_LogEntry_fmt___closed__5; -LEAN_EXPORT lean_object* l_Lean_AssocList_find_x3f___at_Lean_IR_findEnvDecl___spec__6___boxed(lean_object*, lean_object*); static lean_object* l_Array_foldlMUnsafe_fold___at_Lean_IR_Log_format___spec__1___closed__2; LEAN_EXPORT lean_object* l_Lean_IR_getEnv(lean_object*); LEAN_EXPORT lean_object* l_Lean_IR_getDecl(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux___at_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____spec__3(lean_object*, size_t, size_t, lean_object*, lean_object*); +static lean_object* l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_560____closed__3; LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_IR_findEnvDecl_x27___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -size_t lean_usize_modn(size_t, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Compiler_IR_CompilerM_0__Lean_IR_logMessageIfAux___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static size_t l_Lean_PersistentHashMap_insertAux___at_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____spec__3___closed__2; -static lean_object* l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____lambda__2___closed__5; LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at_Lean_IR_containsDecl_x27___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_IR_LogEntry_instToFormatLogEntry; size_t lean_usize_mul(size_t, size_t); +static lean_object* l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_560____closed__7; LEAN_EXPORT lean_object* l_Lean_IR_getDecl_x27___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -static size_t l_Lean_PersistentHashMap_insertAux___at_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____spec__3___closed__1; -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux___at_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_mkStateFromImportedEntries___at_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____spec__6(lean_object*, lean_object*); -static lean_object* l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____lambda__2___closed__3; -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAtAux___at_Lean_IR_findEnvDecl___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static size_t l_Lean_PersistentHashMap_insertAux___at_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_560____spec__2___closed__1; +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux___at_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_560____spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_IR_LogEntry_fmt___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); size_t lean_usize_of_nat(lean_object*); LEAN_EXPORT lean_object* l_Lean_IR_modifyEnv(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Compiler_IR_CompilerM_0__Lean_IR_mkEntryArray___spec__10(lean_object*, size_t, size_t, lean_object*); lean_object* l_Lean_PersistentEnvExtension_addEntry___rarg(lean_object*, lean_object*, lean_object*); size_t lean_usize_land(size_t, size_t); lean_object* l_Lean_SimplePersistentEnvExtension_getState___rarg(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_IR_tracePrefixOptionName___closed__3; lean_object* l_Lean_PersistentHashMap_mkEmptyEntriesArray(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_IR_addDecls(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_binSearchAux___at___private_Lean_Compiler_IR_CompilerM_0__Lean_IR_findAtSorted_x3f___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_IR_tracePrefixOptionName; LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_IR_addDecls___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT uint8_t l_Lean_AssocList_contains___at___private_Lean_Compiler_IR_CompilerM_0__Lean_IR_mkEntryArray___spec__3(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAtAux___at_Lean_IR_findEnvDecl___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_IR_LogEntry_fmt___closed__3; -lean_object* l___private_Lean_Data_HashMap_0__Lean_numBucketsForCapacity(lean_object*); -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAtAux___at_Lean_IR_findEnvDecl___spec__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_IR_Log_format(lean_object*); -LEAN_EXPORT lean_object* l_List_foldl___at___private_Lean_Compiler_IR_CompilerM_0__Lean_IR_mkEntryArray___spec__8(lean_object*, lean_object*); -static lean_object* l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____closed__6; LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_IR_LogEntry_fmt___spec__1(lean_object*, size_t, size_t, lean_object*); LEAN_EXPORT lean_object* l_Lean_IR_logDecls(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_nat_dec_le(lean_object*, lean_object*); uint8_t lean_usize_dec_le(size_t, size_t); static lean_object* l_Lean_IR_LogEntry_instToFormatLogEntry___closed__1; lean_object* l_Lean_IR_formatDecl(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_SMap_switch___at_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____spec__9(lean_object*); lean_object* l_Lean_Name_append(lean_object*, lean_object*); +lean_object* l_Lean_Environment_addExtraName(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_IR_logMessageIf___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_560____lambda__3(lean_object*); static lean_object* l_Lean_IR_findEnvDecl___closed__2; +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAux___at_Lean_IR_findEnvDecl___spec__2(lean_object*, size_t, lean_object*); LEAN_EXPORT lean_object* l_Lean_IR_addDecls___boxed(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_560____lambda__2___closed__3; LEAN_EXPORT lean_object* l___private_Lean_Compiler_IR_CompilerM_0__Lean_IR_isLogEnabledFor___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_IR_logMessage___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux_traverse___at_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_IR_tracePrefixOptionName___closed__4; LEAN_EXPORT lean_object* l_Lean_IR_findDecl___boxed(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_AssocList_contains___at___private_Lean_Compiler_IR_CompilerM_0__Lean_IR_mkEntryArray___spec__3___boxed(lean_object*, lean_object*); -lean_object* lean_nat_mul(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_SMap_contains___at_Lean_IR_containsDecl___spec__1___boxed(lean_object*, lean_object*); static lean_object* l_Lean_IR_tracePrefixOptionName___closed__1; static lean_object* l_Lean_IR_findEnvDecl_x27___closed__1; LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_IR_Log_format___spec__1(lean_object*, size_t, size_t, lean_object*); LEAN_EXPORT lean_object* l_Lean_IR_findEnvDecl_x27___boxed(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT uint8_t l_Lean_PersistentHashMap_containsAux___at_Lean_IR_containsDecl___spec__4(lean_object*, size_t, lean_object*); -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insert___at_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____spec__2(lean_object*, lean_object*, lean_object*); +uint8_t lean_nat_dec_eq(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Compiler_IR_CompilerM_0__Lean_IR_logDeclsAux___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Environment_getModuleIdxFor_x3f(lean_object*, lean_object*); lean_object* l_Lean_PersistentHashMap_mkEmptyEntries(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_IR_addDecl(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_KVMap_findCore(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_IR_Log_format___boxed(lean_object*); -LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____spec__7(lean_object*, size_t, size_t, lean_object*); static lean_object* l_Lean_IR_LogEntry_fmt___closed__4; -lean_object* lean_mk_array(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_IR_modifyEnv___boxed(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_mkHashMap___at___private_Lean_Compiler_IR_CompilerM_0__Lean_IR_mkEntryArray___spec__1___boxed(lean_object*); -static lean_object* l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____closed__5; +LEAN_EXPORT lean_object* l_Array_qsort_sort___at___private_Lean_Compiler_IR_CompilerM_0__Lean_IR_sortDecls___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* lean_ir_find_env_decl(lean_object*, lean_object*); LEAN_EXPORT lean_object* lean_decl_get_sorry_dep(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_qsort_sort___at___private_Lean_Compiler_IR_CompilerM_0__Lean_IR_sortDecls___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_string_length(lean_object*); static lean_object* l_Lean_IR_LogEntry_fmt___closed__1; static lean_object* l_Lean_IR_findEnvDecl_x27___closed__3; -static lean_object* l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____closed__3; +LEAN_EXPORT uint8_t l___private_Lean_Compiler_IR_CompilerM_0__Lean_IR_declLt(lean_object*, lean_object*); +static lean_object* l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_560____closed__1; LEAN_EXPORT lean_object* l_Lean_IR_findEnvDecl_x27___lambda__1___boxed(lean_object*); -LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Compiler_IR_CompilerM_0__Lean_IR_mkEntryArray___spec__10___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_IR_CompilerState_log___default; +static lean_object* l_Array_qsort_sort___at___private_Lean_Compiler_IR_CompilerM_0__Lean_IR_sortDecls___spec__1___closed__1; LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_IR_findEnvDecl_x27___spec__1(lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*); -LEAN_EXPORT lean_object* l_Lean_SMap_find_x3f___at_Lean_IR_findEnvDecl___spec__1(lean_object*, lean_object*); +static lean_object* l_Lean_IR_findEnvDecl___closed__3; +static lean_object* l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_560____closed__8; +LEAN_EXPORT lean_object* l_Array_binSearchAux___at___private_Lean_Compiler_IR_CompilerM_0__Lean_IR_findAtSorted_x3f___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_IR_declMapExt; lean_object* lean_usize_to_nat(size_t); +LEAN_EXPORT lean_object* l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_560____lambda__1(lean_object*, lean_object*); +static lean_object* l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_560____lambda__2___closed__2; static lean_object* l_Lean_IR_CompilerState_log___default___closed__1; static lean_object* l_Lean_IR_tracePrefixOptionName___closed__2; LEAN_EXPORT lean_object* l_Lean_IR_addDecl___boxed(lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____closed__4; -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAtCollisionNodeAux___at_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____spec__5(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Compiler_IR_CompilerM_0__Lean_IR_declLt___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_IR_logMessageIf(lean_object*); +static lean_object* l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_560____closed__2; lean_object* l_Lean_PersistentHashMap_mkCollisionNode___rarg(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_IR_getDecl_x27(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_contains___at_Lean_IR_containsDecl___spec__3___boxed(lean_object*, lean_object*); lean_object* lean_nat_to_int(lean_object*); -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_containsAux___at_Lean_IR_containsDecl___spec__4___boxed(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT uint8_t l_Lean_PersistentHashMap_containsAtAux___at_Lean_IR_containsDecl___spec__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_560____lambda__2___boxed(lean_object*); +lean_object* l_Lean_PersistentHashMap_instInhabitedPersistentHashMap___rarg(lean_object*, lean_object*); +static lean_object* l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_560____lambda__2___closed__1; LEAN_EXPORT lean_object* l_Lean_IR_findDecl(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_560____lambda__2(lean_object*); +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insert___at_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_560____spec__1(lean_object*, lean_object*, lean_object*); uint8_t lean_nat_dec_lt(lean_object*, lean_object*); extern lean_object* l_Lean_Name_instBEqName; LEAN_EXPORT lean_object* l_Lean_IR_containsDecl_x27___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_HashMap_insert___at___private_Lean_Compiler_IR_CompilerM_0__Lean_IR_mkEntryArray___spec__2(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_IR_LogEntry_fmt___spec__1(lean_object* x_1, size_t x_2, size_t x_3, lean_object* x_4) { _start: { @@ -905,481 +887,375 @@ lean_dec(x_2); return x_4; } } -LEAN_EXPORT lean_object* l_Lean_mkHashMap___at___private_Lean_Compiler_IR_CompilerM_0__Lean_IR_mkEntryArray___spec__1(lean_object* x_1) { +LEAN_EXPORT uint8_t l___private_Lean_Compiler_IR_CompilerM_0__Lean_IR_declLt(lean_object* x_1, lean_object* x_2) { _start: { -lean_object* x_2; -x_2 = l_Lean_mkHashMapImp___rarg(x_1); -return x_2; -} -} -LEAN_EXPORT uint8_t l_Lean_AssocList_contains___at___private_Lean_Compiler_IR_CompilerM_0__Lean_IR_mkEntryArray___spec__3(lean_object* x_1, lean_object* x_2) { -_start: -{ -if (lean_obj_tag(x_2) == 0) -{ -uint8_t x_3; -x_3 = 0; -return x_3; -} -else -{ -lean_object* x_4; lean_object* x_5; uint8_t x_6; -x_4 = lean_ctor_get(x_2, 0); -x_5 = lean_ctor_get(x_2, 2); -x_6 = lean_name_eq(x_4, x_1); -if (x_6 == 0) -{ -x_2 = x_5; -goto _start; -} -else -{ -uint8_t x_8; -x_8 = 1; -return x_8; -} -} -} -} -LEAN_EXPORT lean_object* l_Lean_AssocList_foldlM___at___private_Lean_Compiler_IR_CompilerM_0__Lean_IR_mkEntryArray___spec__6(lean_object* x_1, lean_object* x_2) { -_start: -{ -if (lean_obj_tag(x_2) == 0) -{ -return x_1; -} -else -{ -uint8_t x_3; -x_3 = !lean_is_exclusive(x_2); -if (x_3 == 0) -{ -lean_object* x_4; lean_object* x_5; lean_object* x_6; uint64_t x_7; size_t x_8; size_t x_9; lean_object* x_10; lean_object* x_11; -x_4 = lean_ctor_get(x_2, 0); -x_5 = lean_ctor_get(x_2, 2); -x_6 = lean_array_get_size(x_1); -x_7 = l_Lean_Name_hash___override(x_4); -x_8 = lean_uint64_to_usize(x_7); -x_9 = lean_usize_modn(x_8, x_6); -lean_dec(x_6); -x_10 = lean_array_uget(x_1, x_9); -lean_ctor_set(x_2, 2, x_10); -x_11 = lean_array_uset(x_1, x_9, x_2); -x_1 = x_11; -x_2 = x_5; -goto _start; -} -else -{ -lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; uint64_t x_17; size_t x_18; size_t x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; -x_13 = lean_ctor_get(x_2, 0); -x_14 = lean_ctor_get(x_2, 1); -x_15 = lean_ctor_get(x_2, 2); -lean_inc(x_15); -lean_inc(x_14); -lean_inc(x_13); -lean_dec(x_2); -x_16 = lean_array_get_size(x_1); -x_17 = l_Lean_Name_hash___override(x_13); -x_18 = lean_uint64_to_usize(x_17); -x_19 = lean_usize_modn(x_18, x_16); -lean_dec(x_16); -x_20 = lean_array_uget(x_1, x_19); -x_21 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_21, 0, x_13); -lean_ctor_set(x_21, 1, x_14); -lean_ctor_set(x_21, 2, x_20); -x_22 = lean_array_uset(x_1, x_19, x_21); -x_1 = x_22; -x_2 = x_15; -goto _start; -} -} -} -} -LEAN_EXPORT lean_object* l_Lean_HashMapImp_moveEntries___at___private_Lean_Compiler_IR_CompilerM_0__Lean_IR_mkEntryArray___spec__5(lean_object* x_1, lean_object* x_2, lean_object* x_3) { -_start: -{ -lean_object* x_4; uint8_t x_5; -x_4 = lean_array_get_size(x_2); -x_5 = lean_nat_dec_lt(x_1, x_4); +lean_object* x_3; lean_object* x_4; uint8_t x_5; +x_3 = l_Lean_IR_Decl_name(x_1); +x_4 = l_Lean_IR_Decl_name(x_2); +x_5 = l_Lean_Name_quickLt(x_3, x_4); lean_dec(x_4); -if (x_5 == 0) -{ -lean_dec(x_2); -lean_dec(x_1); -return x_3; -} -else -{ -lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; -x_6 = lean_array_fget(x_2, x_1); -x_7 = lean_box(0); -x_8 = lean_array_fset(x_2, x_1, x_7); -x_9 = l_Lean_AssocList_foldlM___at___private_Lean_Compiler_IR_CompilerM_0__Lean_IR_mkEntryArray___spec__6(x_3, x_6); -x_10 = lean_unsigned_to_nat(1u); -x_11 = lean_nat_add(x_1, x_10); -lean_dec(x_1); -x_1 = x_11; -x_2 = x_8; -x_3 = x_9; -goto _start; -} -} -} -LEAN_EXPORT lean_object* l_Lean_HashMapImp_expand___at___private_Lean_Compiler_IR_CompilerM_0__Lean_IR_mkEntryArray___spec__4(lean_object* x_1, lean_object* x_2) { -_start: -{ -lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; -x_3 = lean_array_get_size(x_2); -x_4 = lean_unsigned_to_nat(2u); -x_5 = lean_nat_mul(x_3, x_4); lean_dec(x_3); -x_6 = lean_box(0); -x_7 = lean_mk_array(x_5, x_6); -x_8 = lean_unsigned_to_nat(0u); -x_9 = l_Lean_HashMapImp_moveEntries___at___private_Lean_Compiler_IR_CompilerM_0__Lean_IR_mkEntryArray___spec__5(x_8, x_2, x_7); -x_10 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_10, 0, x_1); -lean_ctor_set(x_10, 1, x_9); -return x_10; +return x_5; } } -LEAN_EXPORT lean_object* l_Lean_AssocList_replace___at___private_Lean_Compiler_IR_CompilerM_0__Lean_IR_mkEntryArray___spec__7(lean_object* x_1, lean_object* x_2, lean_object* x_3) { -_start: -{ -if (lean_obj_tag(x_3) == 0) -{ -lean_object* x_4; -lean_dec(x_2); -lean_dec(x_1); -x_4 = lean_box(0); -return x_4; -} -else -{ -uint8_t x_5; -x_5 = !lean_is_exclusive(x_3); -if (x_5 == 0) -{ -lean_object* x_6; lean_object* x_7; lean_object* x_8; uint8_t x_9; -x_6 = lean_ctor_get(x_3, 0); -x_7 = lean_ctor_get(x_3, 1); -x_8 = lean_ctor_get(x_3, 2); -x_9 = lean_name_eq(x_6, x_1); -if (x_9 == 0) -{ -lean_object* x_10; -x_10 = l_Lean_AssocList_replace___at___private_Lean_Compiler_IR_CompilerM_0__Lean_IR_mkEntryArray___spec__7(x_1, x_2, x_8); -lean_ctor_set(x_3, 2, x_10); -return x_3; -} -else -{ -lean_dec(x_7); -lean_dec(x_6); -lean_ctor_set(x_3, 1, x_2); -lean_ctor_set(x_3, 0, x_1); -return x_3; -} -} -else -{ -lean_object* x_11; lean_object* x_12; lean_object* x_13; uint8_t x_14; -x_11 = lean_ctor_get(x_3, 0); -x_12 = lean_ctor_get(x_3, 1); -x_13 = lean_ctor_get(x_3, 2); -lean_inc(x_13); -lean_inc(x_12); -lean_inc(x_11); -lean_dec(x_3); -x_14 = lean_name_eq(x_11, x_1); -if (x_14 == 0) -{ -lean_object* x_15; lean_object* x_16; -x_15 = l_Lean_AssocList_replace___at___private_Lean_Compiler_IR_CompilerM_0__Lean_IR_mkEntryArray___spec__7(x_1, x_2, x_13); -x_16 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_16, 0, x_11); -lean_ctor_set(x_16, 1, x_12); -lean_ctor_set(x_16, 2, x_15); -return x_16; -} -else -{ -lean_object* x_17; -lean_dec(x_12); -lean_dec(x_11); -x_17 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_17, 0, x_1); -lean_ctor_set(x_17, 1, x_2); -lean_ctor_set(x_17, 2, x_13); -return x_17; -} -} -} -} -} -LEAN_EXPORT lean_object* l_Lean_HashMap_insert___at___private_Lean_Compiler_IR_CompilerM_0__Lean_IR_mkEntryArray___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3) { -_start: -{ -uint8_t x_4; -x_4 = !lean_is_exclusive(x_1); -if (x_4 == 0) -{ -lean_object* x_5; lean_object* x_6; lean_object* x_7; uint64_t x_8; size_t x_9; size_t x_10; lean_object* x_11; uint8_t x_12; -x_5 = lean_ctor_get(x_1, 0); -x_6 = lean_ctor_get(x_1, 1); -x_7 = lean_array_get_size(x_6); -x_8 = l_Lean_Name_hash___override(x_2); -x_9 = lean_uint64_to_usize(x_8); -x_10 = lean_usize_modn(x_9, x_7); -x_11 = lean_array_uget(x_6, x_10); -x_12 = l_Lean_AssocList_contains___at___private_Lean_Compiler_IR_CompilerM_0__Lean_IR_mkEntryArray___spec__3(x_2, x_11); -if (x_12 == 0) -{ -lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; uint8_t x_18; -x_13 = lean_unsigned_to_nat(1u); -x_14 = lean_nat_add(x_5, x_13); -lean_dec(x_5); -x_15 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_15, 0, x_2); -lean_ctor_set(x_15, 1, x_3); -lean_ctor_set(x_15, 2, x_11); -x_16 = lean_array_uset(x_6, x_10, x_15); -x_17 = l___private_Lean_Data_HashMap_0__Lean_numBucketsForCapacity(x_14); -x_18 = lean_nat_dec_le(x_17, x_7); -lean_dec(x_7); -lean_dec(x_17); -if (x_18 == 0) -{ -lean_object* x_19; -lean_free_object(x_1); -x_19 = l_Lean_HashMapImp_expand___at___private_Lean_Compiler_IR_CompilerM_0__Lean_IR_mkEntryArray___spec__4(x_14, x_16); -return x_19; -} -else -{ -lean_ctor_set(x_1, 1, x_16); -lean_ctor_set(x_1, 0, x_14); -return x_1; -} -} -else -{ -lean_object* x_20; lean_object* x_21; -lean_dec(x_7); -x_20 = l_Lean_AssocList_replace___at___private_Lean_Compiler_IR_CompilerM_0__Lean_IR_mkEntryArray___spec__7(x_2, x_3, x_11); -x_21 = lean_array_uset(x_6, x_10, x_20); -lean_ctor_set(x_1, 1, x_21); -return x_1; -} -} -else -{ -lean_object* x_22; lean_object* x_23; lean_object* x_24; uint64_t x_25; size_t x_26; size_t x_27; lean_object* x_28; uint8_t x_29; -x_22 = lean_ctor_get(x_1, 0); -x_23 = lean_ctor_get(x_1, 1); -lean_inc(x_23); -lean_inc(x_22); -lean_dec(x_1); -x_24 = lean_array_get_size(x_23); -x_25 = l_Lean_Name_hash___override(x_2); -x_26 = lean_uint64_to_usize(x_25); -x_27 = lean_usize_modn(x_26, x_24); -x_28 = lean_array_uget(x_23, x_27); -x_29 = l_Lean_AssocList_contains___at___private_Lean_Compiler_IR_CompilerM_0__Lean_IR_mkEntryArray___spec__3(x_2, x_28); -if (x_29 == 0) -{ -lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; uint8_t x_35; -x_30 = lean_unsigned_to_nat(1u); -x_31 = lean_nat_add(x_22, x_30); -lean_dec(x_22); -x_32 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_32, 0, x_2); -lean_ctor_set(x_32, 1, x_3); -lean_ctor_set(x_32, 2, x_28); -x_33 = lean_array_uset(x_23, x_27, x_32); -x_34 = l___private_Lean_Data_HashMap_0__Lean_numBucketsForCapacity(x_31); -x_35 = lean_nat_dec_le(x_34, x_24); -lean_dec(x_24); -lean_dec(x_34); -if (x_35 == 0) -{ -lean_object* x_36; -x_36 = l_Lean_HashMapImp_expand___at___private_Lean_Compiler_IR_CompilerM_0__Lean_IR_mkEntryArray___spec__4(x_31, x_33); -return x_36; -} -else -{ -lean_object* x_37; -x_37 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_37, 0, x_31); -lean_ctor_set(x_37, 1, x_33); -return x_37; -} -} -else -{ -lean_object* x_38; lean_object* x_39; lean_object* x_40; -lean_dec(x_24); -x_38 = l_Lean_AssocList_replace___at___private_Lean_Compiler_IR_CompilerM_0__Lean_IR_mkEntryArray___spec__7(x_2, x_3, x_28); -x_39 = lean_array_uset(x_23, x_27, x_38); -x_40 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_40, 0, x_22); -lean_ctor_set(x_40, 1, x_39); -return x_40; -} -} -} -} -LEAN_EXPORT lean_object* l_List_foldl___at___private_Lean_Compiler_IR_CompilerM_0__Lean_IR_mkEntryArray___spec__8(lean_object* x_1, lean_object* x_2) { -_start: -{ -if (lean_obj_tag(x_2) == 0) -{ -return x_1; -} -else -{ -lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; -x_3 = lean_ctor_get(x_2, 0); -lean_inc(x_3); -x_4 = lean_ctor_get(x_2, 1); -lean_inc(x_4); -lean_dec(x_2); -x_5 = l_Lean_IR_Decl_name(x_3); -x_6 = l_Lean_HashMap_insert___at___private_Lean_Compiler_IR_CompilerM_0__Lean_IR_mkEntryArray___spec__2(x_1, x_5, x_3); -x_1 = x_6; -x_2 = x_4; -goto _start; -} -} -} -LEAN_EXPORT lean_object* l_Lean_AssocList_foldlM___at___private_Lean_Compiler_IR_CompilerM_0__Lean_IR_mkEntryArray___spec__9(lean_object* x_1, lean_object* x_2) { -_start: -{ -if (lean_obj_tag(x_2) == 0) -{ -return x_1; -} -else -{ -lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_3 = lean_ctor_get(x_2, 1); -lean_inc(x_3); -x_4 = lean_ctor_get(x_2, 2); -lean_inc(x_4); -lean_dec(x_2); -x_5 = lean_array_push(x_1, x_3); -x_1 = x_5; -x_2 = x_4; -goto _start; -} -} -} -LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Compiler_IR_CompilerM_0__Lean_IR_mkEntryArray___spec__10(lean_object* x_1, size_t x_2, size_t x_3, lean_object* x_4) { -_start: -{ -uint8_t x_5; -x_5 = lean_usize_dec_eq(x_2, x_3); -if (x_5 == 0) -{ -lean_object* x_6; lean_object* x_7; size_t x_8; size_t x_9; -x_6 = lean_array_uget(x_1, x_2); -x_7 = l_Lean_AssocList_foldlM___at___private_Lean_Compiler_IR_CompilerM_0__Lean_IR_mkEntryArray___spec__9(x_4, x_6); -x_8 = 1; -x_9 = lean_usize_add(x_2, x_8); -x_2 = x_9; -x_4 = x_7; -goto _start; -} -else -{ -return x_4; -} -} -} -LEAN_EXPORT lean_object* l___private_Lean_Compiler_IR_CompilerM_0__Lean_IR_mkEntryArray(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; uint8_t x_7; -x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Lean_mkHashMapImp___rarg(x_2); -x_4 = l_List_foldl___at___private_Lean_Compiler_IR_CompilerM_0__Lean_IR_mkEntryArray___spec__8(x_3, x_1); -x_5 = lean_ctor_get(x_4, 1); -lean_inc(x_5); -lean_dec(x_4); -x_6 = lean_array_get_size(x_5); -x_7 = lean_nat_dec_lt(x_2, x_6); -if (x_7 == 0) -{ -lean_object* x_8; -lean_dec(x_6); -lean_dec(x_5); -x_8 = l_Lean_IR_CompilerState_log___default___closed__1; -return x_8; -} -else -{ -uint8_t x_9; -x_9 = lean_nat_dec_le(x_6, x_6); -if (x_9 == 0) -{ -lean_object* x_10; -lean_dec(x_6); -lean_dec(x_5); -x_10 = l_Lean_IR_CompilerState_log___default___closed__1; -return x_10; -} -else -{ -size_t x_11; size_t x_12; lean_object* x_13; lean_object* x_14; -x_11 = 0; -x_12 = lean_usize_of_nat(x_6); -lean_dec(x_6); -x_13 = l_Lean_IR_CompilerState_log___default___closed__1; -x_14 = l_Array_foldlMUnsafe_fold___at___private_Lean_Compiler_IR_CompilerM_0__Lean_IR_mkEntryArray___spec__10(x_5, x_11, x_12, x_13); -lean_dec(x_5); -return x_14; -} -} -} -} -LEAN_EXPORT lean_object* l_Lean_mkHashMap___at___private_Lean_Compiler_IR_CompilerM_0__Lean_IR_mkEntryArray___spec__1___boxed(lean_object* x_1) { -_start: -{ -lean_object* x_2; -x_2 = l_Lean_mkHashMap___at___private_Lean_Compiler_IR_CompilerM_0__Lean_IR_mkEntryArray___spec__1(x_1); -lean_dec(x_1); -return x_2; -} -} -LEAN_EXPORT lean_object* l_Lean_AssocList_contains___at___private_Lean_Compiler_IR_CompilerM_0__Lean_IR_mkEntryArray___spec__3___boxed(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l___private_Lean_Compiler_IR_CompilerM_0__Lean_IR_declLt___boxed(lean_object* x_1, lean_object* x_2) { _start: { uint8_t x_3; lean_object* x_4; -x_3 = l_Lean_AssocList_contains___at___private_Lean_Compiler_IR_CompilerM_0__Lean_IR_mkEntryArray___spec__3(x_1, x_2); +x_3 = l___private_Lean_Compiler_IR_CompilerM_0__Lean_IR_declLt(x_1, x_2); lean_dec(x_2); lean_dec(x_1); x_4 = lean_box(x_3); return x_4; } } -LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Compiler_IR_CompilerM_0__Lean_IR_mkEntryArray___spec__10___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +static lean_object* _init_l_Array_qsort_sort___at___private_Lean_Compiler_IR_CompilerM_0__Lean_IR_sortDecls___spec__1___closed__1() { _start: { -size_t x_5; size_t x_6; lean_object* x_7; -x_5 = lean_unbox_usize(x_2); -lean_dec(x_2); -x_6 = lean_unbox_usize(x_3); +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l___private_Lean_Compiler_IR_CompilerM_0__Lean_IR_declLt___boxed), 2, 0); +return x_1; +} +} +LEAN_EXPORT lean_object* l_Array_qsort_sort___at___private_Lean_Compiler_IR_CompilerM_0__Lean_IR_sortDecls___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +lean_object* x_5; uint8_t x_14; +x_14 = lean_nat_dec_lt(x_3, x_4); +if (x_14 == 0) +{ +lean_dec(x_3); +lean_dec(x_1); +return x_2; +} +else +{ +lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; uint8_t x_50; +x_15 = lean_nat_add(x_3, x_4); +x_16 = lean_unsigned_to_nat(2u); +x_17 = lean_nat_div(x_15, x_16); +lean_dec(x_15); +lean_inc(x_1); +x_46 = lean_array_get(x_1, x_2, x_17); +lean_inc(x_1); +x_47 = lean_array_get(x_1, x_2, x_3); +x_48 = l_Lean_IR_Decl_name(x_46); +lean_dec(x_46); +x_49 = l_Lean_IR_Decl_name(x_47); +lean_dec(x_47); +x_50 = l_Lean_Name_quickLt(x_48, x_49); +lean_dec(x_49); +lean_dec(x_48); +if (x_50 == 0) +{ +x_18 = x_2; +goto block_45; +} +else +{ +lean_object* x_51; +x_51 = lean_array_swap(x_2, x_3, x_17); +x_18 = x_51; +goto block_45; +} +block_45: +{ +lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; uint8_t x_23; +lean_inc(x_1); +x_19 = lean_array_get(x_1, x_18, x_4); +lean_inc(x_1); +x_20 = lean_array_get(x_1, x_18, x_3); +x_21 = l_Lean_IR_Decl_name(x_19); +x_22 = l_Lean_IR_Decl_name(x_20); +lean_dec(x_20); +x_23 = l_Lean_Name_quickLt(x_21, x_22); +lean_dec(x_22); +if (x_23 == 0) +{ +lean_object* x_24; lean_object* x_25; uint8_t x_26; +lean_inc(x_1); +x_24 = lean_array_get(x_1, x_18, x_17); +x_25 = l_Lean_IR_Decl_name(x_24); +lean_dec(x_24); +x_26 = l_Lean_Name_quickLt(x_25, x_21); +lean_dec(x_21); +lean_dec(x_25); +if (x_26 == 0) +{ +lean_object* x_27; lean_object* x_28; +lean_dec(x_17); +x_27 = l_Array_qsort_sort___at___private_Lean_Compiler_IR_CompilerM_0__Lean_IR_sortDecls___spec__1___closed__1; +lean_inc_n(x_3, 2); +lean_inc(x_1); +x_28 = l_Array_qpartition_loop___rarg(x_1, x_27, x_4, x_19, x_18, x_3, x_3); +x_5 = x_28; +goto block_13; +} +else +{ +lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; +lean_dec(x_19); +x_29 = lean_array_swap(x_18, x_17, x_4); +lean_dec(x_17); +lean_inc(x_1); +x_30 = lean_array_get(x_1, x_29, x_4); +x_31 = l_Array_qsort_sort___at___private_Lean_Compiler_IR_CompilerM_0__Lean_IR_sortDecls___spec__1___closed__1; +lean_inc_n(x_3, 2); +lean_inc(x_1); +x_32 = l_Array_qpartition_loop___rarg(x_1, x_31, x_4, x_30, x_29, x_3, x_3); +x_5 = x_32; +goto block_13; +} +} +else +{ +lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; uint8_t x_38; +lean_dec(x_21); +lean_dec(x_19); +x_33 = lean_array_swap(x_18, x_3, x_4); +lean_inc(x_1); +x_34 = lean_array_get(x_1, x_33, x_17); +lean_inc(x_1); +x_35 = lean_array_get(x_1, x_33, x_4); +x_36 = l_Lean_IR_Decl_name(x_34); +lean_dec(x_34); +x_37 = l_Lean_IR_Decl_name(x_35); +x_38 = l_Lean_Name_quickLt(x_36, x_37); +lean_dec(x_37); +lean_dec(x_36); +if (x_38 == 0) +{ +lean_object* x_39; lean_object* x_40; +lean_dec(x_17); +x_39 = l_Array_qsort_sort___at___private_Lean_Compiler_IR_CompilerM_0__Lean_IR_sortDecls___spec__1___closed__1; +lean_inc_n(x_3, 2); +lean_inc(x_1); +x_40 = l_Array_qpartition_loop___rarg(x_1, x_39, x_4, x_35, x_33, x_3, x_3); +x_5 = x_40; +goto block_13; +} +else +{ +lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; +lean_dec(x_35); +x_41 = lean_array_swap(x_33, x_17, x_4); +lean_dec(x_17); +lean_inc(x_1); +x_42 = lean_array_get(x_1, x_41, x_4); +x_43 = l_Array_qsort_sort___at___private_Lean_Compiler_IR_CompilerM_0__Lean_IR_sortDecls___spec__1___closed__1; +lean_inc_n(x_3, 2); +lean_inc(x_1); +x_44 = l_Array_qpartition_loop___rarg(x_1, x_43, x_4, x_42, x_41, x_3, x_3); +x_5 = x_44; +goto block_13; +} +} +} +} +block_13: +{ +lean_object* x_6; lean_object* x_7; uint8_t x_8; +x_6 = lean_ctor_get(x_5, 0); +lean_inc(x_6); +x_7 = lean_ctor_get(x_5, 1); +lean_inc(x_7); +lean_dec(x_5); +x_8 = lean_nat_dec_le(x_4, x_6); +if (x_8 == 0) +{ +lean_object* x_9; lean_object* x_10; lean_object* x_11; +lean_inc(x_1); +x_9 = l_Array_qsort_sort___at___private_Lean_Compiler_IR_CompilerM_0__Lean_IR_sortDecls___spec__1(x_1, x_7, x_3, x_6); +x_10 = lean_unsigned_to_nat(1u); +x_11 = lean_nat_add(x_6, x_10); +lean_dec(x_6); +x_2 = x_9; +x_3 = x_11; +goto _start; +} +else +{ +lean_dec(x_6); lean_dec(x_3); -x_7 = l_Array_foldlMUnsafe_fold___at___private_Lean_Compiler_IR_CompilerM_0__Lean_IR_mkEntryArray___spec__10(x_1, x_5, x_6, x_4); lean_dec(x_1); return x_7; } } -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux_traverse___at_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____spec__4(size_t x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +} +} +LEAN_EXPORT lean_object* l___private_Lean_Compiler_IR_CompilerM_0__Lean_IR_sortDecls(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; +x_2 = lean_array_get_size(x_1); +x_3 = lean_unsigned_to_nat(1u); +x_4 = lean_nat_sub(x_2, x_3); +lean_dec(x_2); +x_5 = l_Lean_IR_instInhabitedDecl; +x_6 = lean_unsigned_to_nat(0u); +x_7 = l_Array_qsort_sort___at___private_Lean_Compiler_IR_CompilerM_0__Lean_IR_sortDecls___spec__1(x_5, x_1, x_6, x_4); +lean_dec(x_4); +return x_7; +} +} +LEAN_EXPORT lean_object* l_Array_qsort_sort___at___private_Lean_Compiler_IR_CompilerM_0__Lean_IR_sortDecls___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +lean_object* x_5; +x_5 = l_Array_qsort_sort___at___private_Lean_Compiler_IR_CompilerM_0__Lean_IR_sortDecls___spec__1(x_1, x_2, x_3, x_4); +lean_dec(x_4); +return x_5; +} +} +LEAN_EXPORT lean_object* l_Array_binSearchAux___at___private_Lean_Compiler_IR_CompilerM_0__Lean_IR_findAtSorted_x3f___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +_start: +{ +uint8_t x_7; +x_7 = lean_nat_dec_le(x_5, x_6); +if (x_7 == 0) +{ +lean_object* x_8; +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_1); +x_8 = lean_box(0); +return x_8; +} +else +{ +lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; uint8_t x_15; +x_9 = lean_nat_add(x_5, x_6); +x_10 = lean_unsigned_to_nat(2u); +x_11 = lean_nat_div(x_9, x_10); +lean_dec(x_9); +lean_inc(x_1); +x_12 = lean_array_get(x_1, x_3, x_11); +x_13 = l_Lean_IR_Decl_name(x_12); +x_14 = l_Lean_IR_Decl_name(x_4); +x_15 = l_Lean_Name_quickLt(x_13, x_14); +if (x_15 == 0) +{ +uint8_t x_16; +lean_dec(x_6); +x_16 = l_Lean_Name_quickLt(x_14, x_13); +lean_dec(x_13); +lean_dec(x_14); +if (x_16 == 0) +{ +lean_object* x_17; +lean_dec(x_11); +lean_dec(x_5); +lean_dec(x_1); +x_17 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_17, 0, x_12); +return x_17; +} +else +{ +lean_object* x_18; uint8_t x_19; +lean_dec(x_12); +x_18 = lean_unsigned_to_nat(0u); +x_19 = lean_nat_dec_eq(x_11, x_18); +if (x_19 == 0) +{ +lean_object* x_20; lean_object* x_21; +x_20 = lean_unsigned_to_nat(1u); +x_21 = lean_nat_sub(x_11, x_20); +lean_dec(x_11); +x_6 = x_21; +goto _start; +} +else +{ +lean_object* x_23; +lean_dec(x_11); +lean_dec(x_5); +lean_dec(x_1); +x_23 = lean_box(0); +return x_23; +} +} +} +else +{ +lean_object* x_24; lean_object* x_25; +lean_dec(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_5); +x_24 = lean_unsigned_to_nat(1u); +x_25 = lean_nat_add(x_11, x_24); +lean_dec(x_11); +x_5 = x_25; +goto _start; +} +} +} +} +static lean_object* _init_l___private_Lean_Compiler_IR_CompilerM_0__Lean_IR_findAtSorted_x3f___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = lean_box(0); +x_3 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set(x_3, 1, x_2); +return x_3; +} +} +LEAN_EXPORT lean_object* l___private_Lean_Compiler_IR_CompilerM_0__Lean_IR_findAtSorted_x3f(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; uint8_t x_12; +x_3 = lean_box(0); +x_4 = l_Lean_IR_CompilerState_log___default___closed__1; +x_5 = lean_box(0); +x_6 = l___private_Lean_Compiler_IR_CompilerM_0__Lean_IR_findAtSorted_x3f___closed__1; +x_7 = lean_alloc_ctor(1, 4, 0); +lean_ctor_set(x_7, 0, x_2); +lean_ctor_set(x_7, 1, x_4); +lean_ctor_set(x_7, 2, x_5); +lean_ctor_set(x_7, 3, x_6); +x_8 = lean_array_get_size(x_1); +x_9 = lean_unsigned_to_nat(1u); +x_10 = lean_nat_sub(x_8, x_9); +x_11 = lean_unsigned_to_nat(0u); +x_12 = lean_nat_dec_lt(x_11, x_8); +lean_dec(x_8); +if (x_12 == 0) +{ +lean_object* x_13; +lean_dec(x_10); +lean_dec(x_7); +lean_dec(x_1); +x_13 = lean_box(0); +return x_13; +} +else +{ +lean_object* x_14; lean_object* x_15; +x_14 = l_Lean_IR_instInhabitedDecl; +x_15 = l_Array_binSearchAux___at___private_Lean_Compiler_IR_CompilerM_0__Lean_IR_findAtSorted_x3f___spec__1(x_14, x_3, x_1, x_7, x_11, x_10); +lean_dec(x_7); +lean_dec(x_1); +return x_15; +} +} +} +LEAN_EXPORT lean_object* l_Array_binSearchAux___at___private_Lean_Compiler_IR_CompilerM_0__Lean_IR_findAtSorted_x3f___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +_start: +{ +lean_object* x_7; +x_7 = l_Array_binSearchAux___at___private_Lean_Compiler_IR_CompilerM_0__Lean_IR_findAtSorted_x3f___spec__1(x_1, x_2, x_3, x_4, x_5, x_6); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +return x_7; +} +} +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux_traverse___at_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_560____spec__3(size_t x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { lean_object* x_7; uint8_t x_8; @@ -1406,7 +1282,7 @@ x_17 = lean_usize_shift_right(x_12, x_16); x_18 = lean_unsigned_to_nat(1u); x_19 = lean_nat_add(x_5, x_18); lean_dec(x_5); -x_20 = l_Lean_PersistentHashMap_insertAux___at_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____spec__3(x_6, x_17, x_1, x_9, x_10); +x_20 = l_Lean_PersistentHashMap_insertAux___at_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_560____spec__2(x_6, x_17, x_1, x_9, x_10); x_4 = lean_box(0); x_5 = x_19; x_6 = x_20; @@ -1414,7 +1290,7 @@ goto _start; } } } -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAtCollisionNodeAux___at_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____spec__5(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAtCollisionNodeAux___at_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_560____spec__4(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; lean_object* x_6; lean_object* x_7; uint8_t x_8; @@ -1506,7 +1382,7 @@ return x_29; } } } -static size_t _init_l_Lean_PersistentHashMap_insertAux___at_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____spec__3___closed__1() { +static size_t _init_l_Lean_PersistentHashMap_insertAux___at_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_560____spec__2___closed__1() { _start: { size_t x_1; size_t x_2; size_t x_3; @@ -1516,17 +1392,17 @@ x_3 = lean_usize_shift_left(x_1, x_2); return x_3; } } -static size_t _init_l_Lean_PersistentHashMap_insertAux___at_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____spec__3___closed__2() { +static size_t _init_l_Lean_PersistentHashMap_insertAux___at_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_560____spec__2___closed__2() { _start: { size_t x_1; size_t x_2; size_t x_3; x_1 = 1; -x_2 = l_Lean_PersistentHashMap_insertAux___at_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____spec__3___closed__1; +x_2 = l_Lean_PersistentHashMap_insertAux___at_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_560____spec__2___closed__1; x_3 = lean_usize_sub(x_2, x_1); return x_3; } } -static lean_object* _init_l_Lean_PersistentHashMap_insertAux___at_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____spec__3___closed__3() { +static lean_object* _init_l_Lean_PersistentHashMap_insertAux___at_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_560____spec__2___closed__3() { _start: { lean_object* x_1; @@ -1534,7 +1410,7 @@ x_1 = l_Lean_PersistentHashMap_mkEmptyEntries(lean_box(0), lean_box(0)); return x_1; } } -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux___at_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____spec__3(lean_object* x_1, size_t x_2, size_t x_3, lean_object* x_4, lean_object* x_5) { +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux___at_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_560____spec__2(lean_object* x_1, size_t x_2, size_t x_3, lean_object* x_4, lean_object* x_5) { _start: { if (lean_obj_tag(x_1) == 0) @@ -1547,7 +1423,7 @@ lean_object* x_7; size_t x_8; size_t x_9; size_t x_10; size_t x_11; lean_object* x_7 = lean_ctor_get(x_1, 0); x_8 = 1; x_9 = 5; -x_10 = l_Lean_PersistentHashMap_insertAux___at_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____spec__3___closed__2; +x_10 = l_Lean_PersistentHashMap_insertAux___at_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_560____spec__2___closed__2; x_11 = lean_usize_land(x_2, x_10); x_12 = lean_usize_to_nat(x_11); x_13 = lean_array_get_size(x_7); @@ -1647,7 +1523,7 @@ lean_object* x_35; size_t x_36; size_t x_37; lean_object* x_38; lean_object* x_3 x_35 = lean_ctor_get(x_15, 0); x_36 = lean_usize_shift_right(x_2, x_9); x_37 = lean_usize_add(x_3, x_8); -x_38 = l_Lean_PersistentHashMap_insertAux___at_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____spec__3(x_35, x_36, x_37, x_4, x_5); +x_38 = l_Lean_PersistentHashMap_insertAux___at_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_560____spec__2(x_35, x_36, x_37, x_4, x_5); lean_ctor_set(x_15, 0, x_38); x_39 = lean_array_fset(x_17, x_12, x_15); lean_dec(x_12); @@ -1662,7 +1538,7 @@ lean_inc(x_40); lean_dec(x_15); x_41 = lean_usize_shift_right(x_2, x_9); x_42 = lean_usize_add(x_3, x_8); -x_43 = l_Lean_PersistentHashMap_insertAux___at_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____spec__3(x_40, x_41, x_42, x_4, x_5); +x_43 = l_Lean_PersistentHashMap_insertAux___at_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_560____spec__2(x_40, x_41, x_42, x_4, x_5); x_44 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_44, 0, x_43); x_45 = lean_array_fset(x_17, x_12, x_44); @@ -1693,7 +1569,7 @@ lean_inc(x_48); lean_dec(x_1); x_49 = 1; x_50 = 5; -x_51 = l_Lean_PersistentHashMap_insertAux___at_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____spec__3___closed__2; +x_51 = l_Lean_PersistentHashMap_insertAux___at_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_560____spec__2___closed__2; x_52 = lean_usize_land(x_2, x_51); x_53 = lean_usize_to_nat(x_52); x_54 = lean_array_get_size(x_48); @@ -1778,7 +1654,7 @@ if (lean_is_exclusive(x_57)) { } x_73 = lean_usize_shift_right(x_2, x_50); x_74 = lean_usize_add(x_3, x_49); -x_75 = l_Lean_PersistentHashMap_insertAux___at_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____spec__3(x_71, x_73, x_74, x_4, x_5); +x_75 = l_Lean_PersistentHashMap_insertAux___at_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_560____spec__2(x_71, x_73, x_74, x_4, x_5); if (lean_is_scalar(x_72)) { x_76 = lean_alloc_ctor(1, 1, 0); } else { @@ -1815,7 +1691,7 @@ if (x_82 == 0) { lean_object* x_83; lean_object* x_84; size_t x_85; uint8_t x_86; x_83 = lean_unsigned_to_nat(0u); -x_84 = l_Lean_PersistentHashMap_insertAtCollisionNodeAux___at_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____spec__5(x_1, x_83, x_4, x_5); +x_84 = l_Lean_PersistentHashMap_insertAtCollisionNodeAux___at_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_560____spec__4(x_1, x_83, x_4, x_5); x_85 = 7; x_86 = lean_usize_dec_le(x_85, x_3); if (x_86 == 0) @@ -1833,8 +1709,8 @@ lean_inc(x_90); x_91 = lean_ctor_get(x_84, 1); lean_inc(x_91); lean_dec(x_84); -x_92 = l_Lean_PersistentHashMap_insertAux___at_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____spec__3___closed__3; -x_93 = l_Lean_PersistentHashMap_insertAux_traverse___at_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____spec__4(x_3, x_90, x_91, lean_box(0), x_83, x_92); +x_92 = l_Lean_PersistentHashMap_insertAux___at_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_560____spec__2___closed__3; +x_93 = l_Lean_PersistentHashMap_insertAux_traverse___at_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_560____spec__3(x_3, x_90, x_91, lean_box(0), x_83, x_92); lean_dec(x_91); lean_dec(x_90); return x_93; @@ -1861,7 +1737,7 @@ x_96 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_96, 0, x_94); lean_ctor_set(x_96, 1, x_95); x_97 = lean_unsigned_to_nat(0u); -x_98 = l_Lean_PersistentHashMap_insertAtCollisionNodeAux___at_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____spec__5(x_96, x_97, x_4, x_5); +x_98 = l_Lean_PersistentHashMap_insertAtCollisionNodeAux___at_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_560____spec__4(x_96, x_97, x_4, x_5); x_99 = 7; x_100 = lean_usize_dec_le(x_99, x_3); if (x_100 == 0) @@ -1879,8 +1755,8 @@ lean_inc(x_104); x_105 = lean_ctor_get(x_98, 1); lean_inc(x_105); lean_dec(x_98); -x_106 = l_Lean_PersistentHashMap_insertAux___at_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____spec__3___closed__3; -x_107 = l_Lean_PersistentHashMap_insertAux_traverse___at_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____spec__4(x_3, x_104, x_105, lean_box(0), x_97, x_106); +x_106 = l_Lean_PersistentHashMap_insertAux___at_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_560____spec__2___closed__3; +x_107 = l_Lean_PersistentHashMap_insertAux_traverse___at_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_560____spec__3(x_3, x_104, x_105, lean_box(0), x_97, x_106); lean_dec(x_105); lean_dec(x_104); return x_107; @@ -1898,7 +1774,7 @@ return x_98; } } } -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insert___at_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insert___at_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_560____spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { uint8_t x_4; @@ -1911,7 +1787,7 @@ x_6 = lean_ctor_get(x_1, 1); x_7 = l_Lean_Name_hash___override(x_2); x_8 = lean_uint64_to_usize(x_7); x_9 = 1; -x_10 = l_Lean_PersistentHashMap_insertAux___at_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____spec__3(x_5, x_8, x_9, x_2, x_3); +x_10 = l_Lean_PersistentHashMap_insertAux___at_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_560____spec__2(x_5, x_8, x_9, x_2, x_3); x_11 = lean_unsigned_to_nat(1u); x_12 = lean_nat_add(x_6, x_11); lean_dec(x_6); @@ -1930,7 +1806,7 @@ lean_dec(x_1); x_15 = l_Lean_Name_hash___override(x_2); x_16 = lean_uint64_to_usize(x_15); x_17 = 1; -x_18 = l_Lean_PersistentHashMap_insertAux___at_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____spec__3(x_13, x_16, x_17, x_2, x_3); +x_18 = l_Lean_PersistentHashMap_insertAux___at_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_560____spec__2(x_13, x_16, x_17, x_2, x_3); x_19 = lean_unsigned_to_nat(1u); x_20 = lean_nat_add(x_14, x_19); lean_dec(x_14); @@ -1941,243 +1817,38 @@ return x_21; } } } -LEAN_EXPORT lean_object* l_Lean_SMap_insert___at_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_List_foldl___at_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_560____spec__5(lean_object* x_1, lean_object* x_2) { _start: { -uint8_t x_4; -x_4 = lean_ctor_get_uint8(x_1, sizeof(void*)*2); -if (x_4 == 0) +if (lean_obj_tag(x_2) == 0) { -uint8_t x_5; -x_5 = !lean_is_exclusive(x_1); -if (x_5 == 0) -{ -lean_object* x_6; lean_object* x_7; uint8_t x_8; -x_6 = lean_ctor_get(x_1, 1); -x_7 = l_Lean_PersistentHashMap_insert___at_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____spec__2(x_6, x_2, x_3); -x_8 = 0; -lean_ctor_set(x_1, 1, x_7); -lean_ctor_set_uint8(x_1, sizeof(void*)*2, x_8); return x_1; } else { -lean_object* x_9; lean_object* x_10; lean_object* x_11; uint8_t x_12; lean_object* x_13; -x_9 = lean_ctor_get(x_1, 0); -x_10 = lean_ctor_get(x_1, 1); -lean_inc(x_10); -lean_inc(x_9); -lean_dec(x_1); -x_11 = l_Lean_PersistentHashMap_insert___at_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____spec__2(x_10, x_2, x_3); -x_12 = 0; -x_13 = lean_alloc_ctor(0, 2, 1); -lean_ctor_set(x_13, 0, x_9); -lean_ctor_set(x_13, 1, x_11); -lean_ctor_set_uint8(x_13, sizeof(void*)*2, x_12); -return x_13; -} -} -else -{ -uint8_t x_14; -x_14 = !lean_is_exclusive(x_1); -if (x_14 == 0) -{ -lean_object* x_15; lean_object* x_16; uint8_t x_17; -x_15 = lean_ctor_get(x_1, 0); -x_16 = l_Lean_HashMap_insert___at___private_Lean_Compiler_IR_CompilerM_0__Lean_IR_mkEntryArray___spec__2(x_15, x_2, x_3); -x_17 = 1; -lean_ctor_set(x_1, 0, x_16); -lean_ctor_set_uint8(x_1, sizeof(void*)*2, x_17); -return x_1; -} -else -{ -lean_object* x_18; lean_object* x_19; lean_object* x_20; uint8_t x_21; lean_object* x_22; -x_18 = lean_ctor_get(x_1, 0); -x_19 = lean_ctor_get(x_1, 1); -lean_inc(x_19); -lean_inc(x_18); -lean_dec(x_1); -x_20 = l_Lean_HashMap_insert___at___private_Lean_Compiler_IR_CompilerM_0__Lean_IR_mkEntryArray___spec__2(x_18, x_2, x_3); -x_21 = 1; -x_22 = lean_alloc_ctor(0, 2, 1); -lean_ctor_set(x_22, 0, x_20); -lean_ctor_set(x_22, 1, x_19); -lean_ctor_set_uint8(x_22, sizeof(void*)*2, x_21); -return x_22; -} -} -} -} -LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____spec__7(lean_object* x_1, size_t x_2, size_t x_3, lean_object* x_4) { -_start: -{ -uint8_t x_5; -x_5 = lean_usize_dec_eq(x_2, x_3); -if (x_5 == 0) -{ -lean_object* x_6; lean_object* x_7; lean_object* x_8; size_t x_9; size_t x_10; -x_6 = lean_array_uget(x_1, x_2); -x_7 = l_Lean_IR_Decl_name(x_6); -x_8 = l_Lean_SMap_insert___at_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____spec__1(x_4, x_7, x_6); -x_9 = 1; -x_10 = lean_usize_add(x_2, x_9); -x_2 = x_10; -x_4 = x_8; -goto _start; -} -else -{ -return x_4; -} -} -} -LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____spec__8(lean_object* x_1, size_t x_2, size_t x_3, lean_object* x_4) { -_start: -{ -uint8_t x_5; -x_5 = lean_usize_dec_eq(x_2, x_3); -if (x_5 == 0) -{ -lean_object* x_6; lean_object* x_7; lean_object* x_8; uint8_t x_9; size_t x_10; size_t x_11; -x_6 = lean_array_uget(x_1, x_2); -x_7 = lean_array_get_size(x_6); -x_8 = lean_unsigned_to_nat(0u); -x_9 = lean_nat_dec_lt(x_8, x_7); -x_10 = 1; -x_11 = lean_usize_add(x_2, x_10); -if (x_9 == 0) -{ -lean_dec(x_7); -lean_dec(x_6); -x_2 = x_11; -goto _start; -} -else -{ -uint8_t x_13; -x_13 = lean_nat_dec_le(x_7, x_7); -if (x_13 == 0) -{ -lean_dec(x_7); -lean_dec(x_6); -x_2 = x_11; -goto _start; -} -else -{ -size_t x_15; size_t x_16; lean_object* x_17; -x_15 = 0; -x_16 = lean_usize_of_nat(x_7); -lean_dec(x_7); -x_17 = l_Array_foldlMUnsafe_fold___at_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____spec__7(x_6, x_15, x_16, x_4); -lean_dec(x_6); -x_2 = x_11; -x_4 = x_17; -goto _start; -} -} -} -else -{ -return x_4; -} -} -} -LEAN_EXPORT lean_object* l_Lean_mkStateFromImportedEntries___at_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____spec__6(lean_object* x_1, lean_object* x_2) { -_start: -{ -lean_object* x_3; lean_object* x_4; uint8_t x_5; -x_3 = lean_array_get_size(x_2); -x_4 = lean_unsigned_to_nat(0u); -x_5 = lean_nat_dec_lt(x_4, x_3); -if (x_5 == 0) -{ -lean_dec(x_3); +lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_3 = lean_ctor_get(x_2, 0); +lean_inc(x_3); +x_4 = lean_ctor_get(x_2, 1); +lean_inc(x_4); lean_dec(x_2); -return x_1; -} -else -{ -uint8_t x_6; -x_6 = lean_nat_dec_le(x_3, x_3); -if (x_6 == 0) -{ -lean_dec(x_3); -lean_dec(x_2); -return x_1; -} -else -{ -size_t x_7; size_t x_8; lean_object* x_9; -x_7 = 0; -x_8 = lean_usize_of_nat(x_3); -lean_dec(x_3); -x_9 = l_Array_foldlMUnsafe_fold___at_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____spec__8(x_2, x_7, x_8, x_1); -lean_dec(x_2); -return x_9; +x_5 = lean_array_push(x_1, x_3); +x_1 = x_5; +x_2 = x_4; +goto _start; } } } -} -LEAN_EXPORT lean_object* l_Lean_SMap_switch___at_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____spec__9(lean_object* x_1) { -_start: -{ -uint8_t x_2; -x_2 = lean_ctor_get_uint8(x_1, sizeof(void*)*2); -if (x_2 == 0) -{ -return x_1; -} -else -{ -uint8_t x_3; -x_3 = !lean_is_exclusive(x_1); -if (x_3 == 0) -{ -uint8_t x_4; -x_4 = 0; -lean_ctor_set_uint8(x_1, sizeof(void*)*2, x_4); -return x_1; -} -else -{ -lean_object* x_5; lean_object* x_6; uint8_t x_7; lean_object* x_8; -x_5 = lean_ctor_get(x_1, 0); -x_6 = lean_ctor_get(x_1, 1); -lean_inc(x_6); -lean_inc(x_5); -lean_dec(x_1); -x_7 = 0; -x_8 = lean_alloc_ctor(0, 2, 1); -lean_ctor_set(x_8, 0, x_5); -lean_ctor_set(x_8, 1, x_6); -lean_ctor_set_uint8(x_8, sizeof(void*)*2, x_7); -return x_8; -} -} -} -} -LEAN_EXPORT lean_object* l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____lambda__1(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_560____lambda__1(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; lean_object* x_4; x_3 = l_Lean_IR_Decl_name(x_2); -x_4 = l_Lean_SMap_insert___at_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____spec__1(x_1, x_3, x_2); +x_4 = l_Lean_PersistentHashMap_insert___at_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_560____spec__1(x_1, x_3, x_2); return x_4; } } -static lean_object* _init_l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____lambda__2___closed__1() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = lean_unsigned_to_nat(0u); -x_2 = l_Lean_mkHashMapImp___rarg(x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____lambda__2___closed__2() { +static lean_object* _init_l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_560____lambda__2___closed__1() { _start: { lean_object* x_1; @@ -2185,21 +1856,21 @@ x_1 = l_Lean_PersistentHashMap_mkEmptyEntriesArray(lean_box(0), lean_box(0)); return x_1; } } -static lean_object* _init_l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____lambda__2___closed__3() { +static lean_object* _init_l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_560____lambda__2___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____lambda__2___closed__2; +x_1 = l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_560____lambda__2___closed__1; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____lambda__2___closed__4() { +static lean_object* _init_l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_560____lambda__2___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____lambda__2___closed__3; +x_1 = l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_560____lambda__2___closed__2; x_2 = lean_unsigned_to_nat(0u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -2207,31 +1878,32 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____lambda__2___closed__5() { +LEAN_EXPORT lean_object* l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_560____lambda__2(lean_object* x_1) { _start: { -uint8_t x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = 1; -x_2 = l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____lambda__2___closed__1; -x_3 = l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____lambda__2___closed__4; -x_4 = lean_alloc_ctor(0, 2, 1); -lean_ctor_set(x_4, 0, x_2); -lean_ctor_set(x_4, 1, x_3); -lean_ctor_set_uint8(x_4, sizeof(void*)*2, x_1); -return x_4; +lean_object* x_2; +x_2 = l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_560____lambda__2___closed__3; +return x_2; } } -LEAN_EXPORT lean_object* l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____lambda__2(lean_object* x_1) { +LEAN_EXPORT lean_object* l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_560____lambda__3(lean_object* x_1) { _start: { -lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_2 = l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____lambda__2___closed__5; -x_3 = l_Lean_mkStateFromImportedEntries___at_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____spec__6(x_2, x_1); -x_4 = l_Lean_SMap_switch___at_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____spec__9(x_3); -return x_4; +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; +x_2 = l_Lean_IR_CompilerState_log___default___closed__1; +x_3 = l_List_foldl___at_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_560____spec__5(x_2, x_1); +x_4 = lean_array_get_size(x_3); +x_5 = lean_unsigned_to_nat(1u); +x_6 = lean_nat_sub(x_4, x_5); +lean_dec(x_4); +x_7 = l_Lean_IR_instInhabitedDecl; +x_8 = lean_unsigned_to_nat(0u); +x_9 = l_Array_qsort_sort___at___private_Lean_Compiler_IR_CompilerM_0__Lean_IR_sortDecls___spec__1(x_7, x_3, x_8, x_6); +lean_dec(x_6); +return x_9; } } -static lean_object* _init_l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____closed__1() { +static lean_object* _init_l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_560____closed__1() { _start: { lean_object* x_1; @@ -2239,7 +1911,7 @@ x_1 = lean_mk_string_from_bytes("Lean", 4); return x_1; } } -static lean_object* _init_l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____closed__2() { +static lean_object* _init_l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_560____closed__2() { _start: { lean_object* x_1; @@ -2247,7 +1919,7 @@ x_1 = lean_mk_string_from_bytes("IR", 2); return x_1; } } -static lean_object* _init_l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____closed__3() { +static lean_object* _init_l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_560____closed__3() { _start: { lean_object* x_1; @@ -2255,49 +1927,49 @@ x_1 = lean_mk_string_from_bytes("declMapExt", 10); return x_1; } } -static lean_object* _init_l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____closed__4() { +static lean_object* _init_l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_560____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____closed__1; -x_2 = l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____closed__2; -x_3 = l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____closed__3; +x_1 = l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_560____closed__1; +x_2 = l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_560____closed__2; +x_3 = l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_560____closed__3; x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); return x_4; } } -static lean_object* _init_l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____closed__5() { +static lean_object* _init_l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_560____closed__5() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____lambda__1), 2, 0); +x_1 = lean_alloc_closure((void*)(l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_560____lambda__1), 2, 0); return x_1; } } -static lean_object* _init_l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____closed__6() { +static lean_object* _init_l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_560____closed__6() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____lambda__2), 1, 0); +x_1 = lean_alloc_closure((void*)(l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_560____lambda__2___boxed), 1, 0); return x_1; } } -static lean_object* _init_l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____closed__7() { +static lean_object* _init_l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_560____closed__7() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l___private_Lean_Compiler_IR_CompilerM_0__Lean_IR_mkEntryArray), 1, 0); +x_1 = lean_alloc_closure((void*)(l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_560____lambda__3), 1, 0); return x_1; } } -static lean_object* _init_l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____closed__8() { +static lean_object* _init_l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_560____closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____closed__4; -x_2 = l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____closed__5; -x_3 = l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____closed__6; -x_4 = l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____closed__7; +x_1 = l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_560____closed__4; +x_2 = l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_560____closed__5; +x_3 = l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_560____closed__6; +x_4 = l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_560____closed__7; x_5 = lean_alloc_ctor(0, 4, 0); lean_ctor_set(x_5, 0, x_1); lean_ctor_set(x_5, 1, x_2); @@ -2306,28 +1978,28 @@ lean_ctor_set(x_5, 3, x_4); return x_5; } } -LEAN_EXPORT lean_object* l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538_(lean_object* x_1) { +LEAN_EXPORT lean_object* l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_560_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; -x_2 = l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____closed__8; +x_2 = l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_560____closed__8; x_3 = l_Lean_registerSimplePersistentEnvExtension___rarg(x_2, x_1); return x_3; } } -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux_traverse___at_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____spec__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux_traverse___at_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_560____spec__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { size_t x_7; lean_object* x_8; x_7 = lean_unbox_usize(x_1); lean_dec(x_1); -x_8 = l_Lean_PersistentHashMap_insertAux_traverse___at_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____spec__4(x_7, x_2, x_3, x_4, x_5, x_6); +x_8 = l_Lean_PersistentHashMap_insertAux_traverse___at_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_560____spec__3(x_7, x_2, x_3, x_4, x_5, x_6); lean_dec(x_3); lean_dec(x_2); return x_8; } } -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux___at_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____spec__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux___at_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_560____spec__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { size_t x_6; size_t x_7; lean_object* x_8; @@ -2335,37 +2007,20 @@ x_6 = lean_unbox_usize(x_2); lean_dec(x_2); x_7 = lean_unbox_usize(x_3); lean_dec(x_3); -x_8 = l_Lean_PersistentHashMap_insertAux___at_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____spec__3(x_1, x_6, x_7, x_4, x_5); +x_8 = l_Lean_PersistentHashMap_insertAux___at_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_560____spec__2(x_1, x_6, x_7, x_4, x_5); return x_8; } } -LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____spec__7___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +LEAN_EXPORT lean_object* l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_560____lambda__2___boxed(lean_object* x_1) { _start: { -size_t x_5; size_t x_6; lean_object* x_7; -x_5 = lean_unbox_usize(x_2); -lean_dec(x_2); -x_6 = lean_unbox_usize(x_3); -lean_dec(x_3); -x_7 = l_Array_foldlMUnsafe_fold___at_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____spec__7(x_1, x_5, x_6, x_4); +lean_object* x_2; +x_2 = l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_560____lambda__2(x_1); lean_dec(x_1); -return x_7; +return x_2; } } -LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____spec__8___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { -_start: -{ -size_t x_5; size_t x_6; lean_object* x_7; -x_5 = lean_unbox_usize(x_2); -lean_dec(x_2); -x_6 = lean_unbox_usize(x_3); -lean_dec(x_3); -x_7 = l_Array_foldlMUnsafe_fold___at_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____spec__8(x_1, x_5, x_6, x_4); -lean_dec(x_1); -return x_7; -} -} -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAtAux___at_Lean_IR_findEnvDecl___spec__4(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAtAux___at_Lean_IR_findEnvDecl___spec__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; uint8_t x_7; @@ -2407,7 +2062,7 @@ return x_15; } } } -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAux___at_Lean_IR_findEnvDecl___spec__3(lean_object* x_1, size_t x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAux___at_Lean_IR_findEnvDecl___spec__2(lean_object* x_1, size_t x_2, lean_object* x_3) { _start: { if (lean_obj_tag(x_1) == 0) @@ -2417,7 +2072,7 @@ x_4 = lean_ctor_get(x_1, 0); lean_inc(x_4); lean_dec(x_1); x_5 = 5; -x_6 = l_Lean_PersistentHashMap_insertAux___at_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____spec__3___closed__2; +x_6 = l_Lean_PersistentHashMap_insertAux___at_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_560____spec__2___closed__2; x_7 = lean_usize_land(x_2, x_6); x_8 = lean_usize_to_nat(x_7); x_9 = lean_box(2); @@ -2478,14 +2133,14 @@ x_21 = lean_ctor_get(x_1, 1); lean_inc(x_21); lean_dec(x_1); x_22 = lean_unsigned_to_nat(0u); -x_23 = l_Lean_PersistentHashMap_findAtAux___at_Lean_IR_findEnvDecl___spec__4(x_20, x_21, lean_box(0), x_22, x_3); +x_23 = l_Lean_PersistentHashMap_findAtAux___at_Lean_IR_findEnvDecl___spec__3(x_20, x_21, lean_box(0), x_22, x_3); lean_dec(x_21); lean_dec(x_20); return x_23; } } } -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_find_x3f___at_Lean_IR_findEnvDecl___spec__2(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_find_x3f___at_Lean_IR_findEnvDecl___spec__1(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; uint64_t x_4; size_t x_5; lean_object* x_6; @@ -2494,124 +2149,18 @@ lean_inc(x_3); lean_dec(x_1); x_4 = l_Lean_Name_hash___override(x_2); x_5 = lean_uint64_to_usize(x_4); -x_6 = l_Lean_PersistentHashMap_findAux___at_Lean_IR_findEnvDecl___spec__3(x_3, x_5, x_2); +x_6 = l_Lean_PersistentHashMap_findAux___at_Lean_IR_findEnvDecl___spec__2(x_3, x_5, x_2); lean_dec(x_2); return x_6; } } -LEAN_EXPORT lean_object* l_Lean_AssocList_find_x3f___at_Lean_IR_findEnvDecl___spec__6(lean_object* x_1, lean_object* x_2) { -_start: -{ -if (lean_obj_tag(x_2) == 0) -{ -lean_object* x_3; -x_3 = lean_box(0); -return x_3; -} -else -{ -lean_object* x_4; lean_object* x_5; lean_object* x_6; uint8_t x_7; -x_4 = lean_ctor_get(x_2, 0); -x_5 = lean_ctor_get(x_2, 1); -x_6 = lean_ctor_get(x_2, 2); -x_7 = lean_name_eq(x_4, x_1); -if (x_7 == 0) -{ -x_2 = x_6; -goto _start; -} -else -{ -lean_object* x_9; -lean_inc(x_5); -x_9 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_9, 0, x_5); -return x_9; -} -} -} -} -LEAN_EXPORT lean_object* l_Lean_HashMapImp_find_x3f___at_Lean_IR_findEnvDecl___spec__5(lean_object* x_1, lean_object* x_2) { -_start: -{ -lean_object* x_3; lean_object* x_4; uint64_t x_5; size_t x_6; size_t x_7; lean_object* x_8; lean_object* x_9; -x_3 = lean_ctor_get(x_1, 1); -lean_inc(x_3); -lean_dec(x_1); -x_4 = lean_array_get_size(x_3); -x_5 = l_Lean_Name_hash___override(x_2); -x_6 = lean_uint64_to_usize(x_5); -x_7 = lean_usize_modn(x_6, x_4); -lean_dec(x_4); -x_8 = lean_array_uget(x_3, x_7); -lean_dec(x_3); -x_9 = l_Lean_AssocList_find_x3f___at_Lean_IR_findEnvDecl___spec__6(x_2, x_8); -lean_dec(x_8); -lean_dec(x_2); -return x_9; -} -} -LEAN_EXPORT lean_object* l_Lean_SMap_find_x3f___at_Lean_IR_findEnvDecl___spec__1(lean_object* x_1, lean_object* x_2) { -_start: -{ -uint8_t x_3; -x_3 = lean_ctor_get_uint8(x_1, sizeof(void*)*2); -if (x_3 == 0) -{ -lean_object* x_4; lean_object* x_5; lean_object* x_6; -x_4 = lean_ctor_get(x_1, 0); -lean_inc(x_4); -x_5 = lean_ctor_get(x_1, 1); -lean_inc(x_5); -lean_dec(x_1); -lean_inc(x_2); -x_6 = l_Lean_PersistentHashMap_find_x3f___at_Lean_IR_findEnvDecl___spec__2(x_5, x_2); -if (lean_obj_tag(x_6) == 0) -{ -lean_object* x_7; -x_7 = l_Lean_HashMapImp_find_x3f___at_Lean_IR_findEnvDecl___spec__5(x_4, x_2); -return x_7; -} -else -{ -uint8_t x_8; -lean_dec(x_4); -lean_dec(x_2); -x_8 = !lean_is_exclusive(x_6); -if (x_8 == 0) -{ -return x_6; -} -else -{ -lean_object* x_9; lean_object* x_10; -x_9 = lean_ctor_get(x_6, 0); -lean_inc(x_9); -lean_dec(x_6); -x_10 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_10, 0, x_9); -return x_10; -} -} -} -else -{ -lean_object* x_11; lean_object* x_12; -x_11 = lean_ctor_get(x_1, 0); -lean_inc(x_11); -lean_dec(x_1); -x_12 = l_Lean_HashMapImp_find_x3f___at_Lean_IR_findEnvDecl___spec__5(x_11, x_2); -return x_12; -} -} -} static lean_object* _init_l_Lean_IR_findEnvDecl___closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Name_instBEqName; x_2 = l_Lean_instHashableName; -x_3 = l_Lean_SMap_instInhabitedSMap___rarg(x_1, x_2); +x_3 = l_Lean_PersistentHashMap_instInhabitedPersistentHashMap___rarg(x_1, x_2); return x_3; } } @@ -2623,50 +2172,116 @@ x_1 = l_Lean_IR_declMapExt; return x_1; } } +static lean_object* _init_l_Lean_IR_findEnvDecl___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_IR_findEnvDecl___closed__1; +x_3 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set(x_3, 1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_IR_findEnvDecl___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = lean_box(0); +x_3 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); +return x_3; +} +} LEAN_EXPORT lean_object* lean_ir_find_env_decl(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; -x_3 = l_Lean_IR_findEnvDecl___closed__1; -x_4 = l_Lean_IR_findEnvDecl___closed__2; -x_5 = l_Lean_SimplePersistentEnvExtension_getState___rarg(x_3, x_4, x_1); +lean_object* x_3; +lean_inc(x_2); +lean_inc(x_1); +x_3 = l_Lean_Environment_getModuleIdxFor_x3f(x_1, x_2); +if (lean_obj_tag(x_3) == 0) +{ +lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; +x_4 = l_Lean_IR_findEnvDecl___closed__1; +x_5 = l_Lean_IR_findEnvDecl___closed__2; +x_6 = l_Lean_SimplePersistentEnvExtension_getState___rarg(x_4, x_5, x_1); lean_dec(x_1); -x_6 = l_Lean_SMap_find_x3f___at_Lean_IR_findEnvDecl___spec__1(x_5, x_2); -return x_6; +x_7 = l_Lean_PersistentHashMap_find_x3f___at_Lean_IR_findEnvDecl___spec__1(x_6, x_2); +return x_7; +} +else +{ +lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; uint8_t x_21; +x_8 = lean_ctor_get(x_3, 0); +lean_inc(x_8); +lean_dec(x_3); +x_9 = l_Lean_IR_findEnvDecl___closed__3; +x_10 = l_Lean_IR_findEnvDecl___closed__2; +x_11 = l_Lean_PersistentEnvExtension_getModuleEntries___rarg(x_9, x_10, x_1, x_8); +lean_dec(x_8); +lean_dec(x_1); +x_12 = lean_box(0); +x_13 = l_Lean_IR_CompilerState_log___default___closed__1; +x_14 = lean_box(0); +x_15 = l_Lean_IR_findEnvDecl___closed__4; +x_16 = lean_alloc_ctor(1, 4, 0); +lean_ctor_set(x_16, 0, x_2); +lean_ctor_set(x_16, 1, x_13); +lean_ctor_set(x_16, 2, x_14); +lean_ctor_set(x_16, 3, x_15); +x_17 = lean_array_get_size(x_11); +x_18 = lean_unsigned_to_nat(1u); +x_19 = lean_nat_sub(x_17, x_18); +x_20 = lean_unsigned_to_nat(0u); +x_21 = lean_nat_dec_lt(x_20, x_17); +lean_dec(x_17); +if (x_21 == 0) +{ +lean_object* x_22; +lean_dec(x_19); +lean_dec(x_16); +lean_dec(x_11); +x_22 = lean_box(0); +return x_22; +} +else +{ +lean_object* x_23; lean_object* x_24; +x_23 = l_Lean_IR_instInhabitedDecl; +x_24 = l_Array_binSearchAux___at___private_Lean_Compiler_IR_CompilerM_0__Lean_IR_findAtSorted_x3f___spec__1(x_23, x_12, x_11, x_16, x_20, x_19); +lean_dec(x_16); +lean_dec(x_11); +return x_24; } } -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAtAux___at_Lean_IR_findEnvDecl___spec__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +} +} +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAtAux___at_Lean_IR_findEnvDecl___spec__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; -x_6 = l_Lean_PersistentHashMap_findAtAux___at_Lean_IR_findEnvDecl___spec__4(x_1, x_2, x_3, x_4, x_5); +x_6 = l_Lean_PersistentHashMap_findAtAux___at_Lean_IR_findEnvDecl___spec__3(x_1, x_2, x_3, x_4, x_5); lean_dec(x_5); lean_dec(x_2); lean_dec(x_1); return x_6; } } -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAux___at_Lean_IR_findEnvDecl___spec__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAux___at_Lean_IR_findEnvDecl___spec__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { size_t x_4; lean_object* x_5; x_4 = lean_unbox_usize(x_2); lean_dec(x_2); -x_5 = l_Lean_PersistentHashMap_findAux___at_Lean_IR_findEnvDecl___spec__3(x_1, x_4, x_3); +x_5 = l_Lean_PersistentHashMap_findAux___at_Lean_IR_findEnvDecl___spec__2(x_1, x_4, x_3); lean_dec(x_3); return x_5; } } -LEAN_EXPORT lean_object* l_Lean_AssocList_find_x3f___at_Lean_IR_findEnvDecl___spec__6___boxed(lean_object* x_1, lean_object* x_2) { -_start: -{ -lean_object* x_3; -x_3 = l_Lean_AssocList_find_x3f___at_Lean_IR_findEnvDecl___spec__6(x_1, x_2); -lean_dec(x_2); -lean_dec(x_1); -return x_3; -} -} LEAN_EXPORT lean_object* l_Lean_IR_findDecl(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { @@ -2689,251 +2304,70 @@ lean_dec(x_2); return x_4; } } -LEAN_EXPORT uint8_t l_Lean_HashMapImp_contains___at_Lean_IR_containsDecl___spec__2(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l_Lean_IR_containsDecl(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { -lean_object* x_3; lean_object* x_4; uint64_t x_5; size_t x_6; size_t x_7; lean_object* x_8; uint8_t x_9; -x_3 = lean_ctor_get(x_1, 1); -x_4 = lean_array_get_size(x_3); -x_5 = l_Lean_Name_hash___override(x_2); -x_6 = lean_uint64_to_usize(x_5); -x_7 = lean_usize_modn(x_6, x_4); -lean_dec(x_4); -x_8 = lean_array_uget(x_3, x_7); -x_9 = l_Lean_AssocList_contains___at___private_Lean_Compiler_IR_CompilerM_0__Lean_IR_mkEntryArray___spec__3(x_2, x_8); -lean_dec(x_8); -return x_9; -} -} -LEAN_EXPORT uint8_t l_Lean_PersistentHashMap_containsAtAux___at_Lean_IR_containsDecl___spec__5(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { -_start: +lean_object* x_4; lean_object* x_5; +x_4 = l_Lean_IR_findDecl(x_1, x_2, x_3); +x_5 = lean_ctor_get(x_4, 0); +lean_inc(x_5); +if (lean_obj_tag(x_5) == 0) { -lean_object* x_6; uint8_t x_7; -x_6 = lean_array_get_size(x_1); -x_7 = lean_nat_dec_lt(x_4, x_6); -lean_dec(x_6); -if (x_7 == 0) +uint8_t x_6; +x_6 = !lean_is_exclusive(x_4); +if (x_6 == 0) { -uint8_t x_8; -lean_dec(x_4); +lean_object* x_7; uint8_t x_8; lean_object* x_9; +x_7 = lean_ctor_get(x_4, 0); +lean_dec(x_7); x_8 = 0; -return x_8; +x_9 = lean_box(x_8); +lean_ctor_set(x_4, 0, x_9); +return x_4; } else { -lean_object* x_9; uint8_t x_10; -x_9 = lean_array_fget(x_1, x_4); -x_10 = lean_name_eq(x_5, x_9); -lean_dec(x_9); -if (x_10 == 0) -{ -lean_object* x_11; lean_object* x_12; -x_11 = lean_unsigned_to_nat(1u); -x_12 = lean_nat_add(x_4, x_11); +lean_object* x_10; uint8_t x_11; lean_object* x_12; lean_object* x_13; +x_10 = lean_ctor_get(x_4, 1); +lean_inc(x_10); lean_dec(x_4); -x_3 = lean_box(0); -x_4 = x_12; -goto _start; +x_11 = 0; +x_12 = lean_box(x_11); +x_13 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_13, 0, x_12); +lean_ctor_set(x_13, 1, x_10); +return x_13; +} } else { uint8_t x_14; -lean_dec(x_4); -x_14 = 1; -return x_14; -} -} -} -} -LEAN_EXPORT uint8_t l_Lean_PersistentHashMap_containsAux___at_Lean_IR_containsDecl___spec__4(lean_object* x_1, size_t x_2, lean_object* x_3) { -_start: +lean_dec(x_5); +x_14 = !lean_is_exclusive(x_4); +if (x_14 == 0) { -if (lean_obj_tag(x_1) == 0) -{ -lean_object* x_4; size_t x_5; size_t x_6; size_t x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; -x_4 = lean_ctor_get(x_1, 0); -lean_inc(x_4); -lean_dec(x_1); -x_5 = 5; -x_6 = l_Lean_PersistentHashMap_insertAux___at_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____spec__3___closed__2; -x_7 = lean_usize_land(x_2, x_6); -x_8 = lean_usize_to_nat(x_7); -x_9 = lean_box(2); -x_10 = lean_array_get(x_9, x_4, x_8); -lean_dec(x_8); -lean_dec(x_4); -switch (lean_obj_tag(x_10)) { -case 0: -{ -lean_object* x_11; uint8_t x_12; -x_11 = lean_ctor_get(x_10, 0); -lean_inc(x_11); -lean_dec(x_10); -x_12 = lean_name_eq(x_3, x_11); -lean_dec(x_11); -return x_12; -} -case 1: -{ -lean_object* x_13; size_t x_14; -x_13 = lean_ctor_get(x_10, 0); -lean_inc(x_13); -lean_dec(x_10); -x_14 = lean_usize_shift_right(x_2, x_5); -x_1 = x_13; -x_2 = x_14; -goto _start; -} -default: -{ -uint8_t x_16; -x_16 = 0; -return x_16; -} -} +lean_object* x_15; uint8_t x_16; lean_object* x_17; +x_15 = lean_ctor_get(x_4, 0); +lean_dec(x_15); +x_16 = 1; +x_17 = lean_box(x_16); +lean_ctor_set(x_4, 0, x_17); +return x_4; } else { -lean_object* x_17; lean_object* x_18; lean_object* x_19; uint8_t x_20; -x_17 = lean_ctor_get(x_1, 0); -lean_inc(x_17); -x_18 = lean_ctor_get(x_1, 1); +lean_object* x_18; uint8_t x_19; lean_object* x_20; lean_object* x_21; +x_18 = lean_ctor_get(x_4, 1); lean_inc(x_18); -lean_dec(x_1); -x_19 = lean_unsigned_to_nat(0u); -x_20 = l_Lean_PersistentHashMap_containsAtAux___at_Lean_IR_containsDecl___spec__5(x_17, x_18, lean_box(0), x_19, x_3); -lean_dec(x_18); -lean_dec(x_17); -return x_20; -} -} -} -LEAN_EXPORT uint8_t l_Lean_PersistentHashMap_contains___at_Lean_IR_containsDecl___spec__3(lean_object* x_1, lean_object* x_2) { -_start: -{ -lean_object* x_3; uint64_t x_4; size_t x_5; uint8_t x_6; -x_3 = lean_ctor_get(x_1, 0); -lean_inc(x_3); -lean_dec(x_1); -x_4 = l_Lean_Name_hash___override(x_2); -x_5 = lean_uint64_to_usize(x_4); -x_6 = l_Lean_PersistentHashMap_containsAux___at_Lean_IR_containsDecl___spec__4(x_3, x_5, x_2); -lean_dec(x_2); -return x_6; -} -} -LEAN_EXPORT uint8_t l_Lean_SMap_contains___at_Lean_IR_containsDecl___spec__1(lean_object* x_1, lean_object* x_2) { -_start: -{ -uint8_t x_3; -x_3 = lean_ctor_get_uint8(x_1, sizeof(void*)*2); -if (x_3 == 0) -{ -lean_object* x_4; lean_object* x_5; uint8_t x_6; -x_4 = lean_ctor_get(x_1, 0); -lean_inc(x_4); -x_5 = lean_ctor_get(x_1, 1); -lean_inc(x_5); -lean_dec(x_1); -x_6 = l_Lean_HashMapImp_contains___at_Lean_IR_containsDecl___spec__2(x_4, x_2); lean_dec(x_4); -if (x_6 == 0) -{ -uint8_t x_7; -x_7 = l_Lean_PersistentHashMap_contains___at_Lean_IR_containsDecl___spec__3(x_5, x_2); -return x_7; -} -else -{ -uint8_t x_8; -lean_dec(x_5); -lean_dec(x_2); -x_8 = 1; -return x_8; +x_19 = 1; +x_20 = lean_box(x_19); +x_21 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_21, 0, x_20); +lean_ctor_set(x_21, 1, x_18); +return x_21; } } -else -{ -lean_object* x_9; uint8_t x_10; -x_9 = lean_ctor_get(x_1, 0); -lean_inc(x_9); -lean_dec(x_1); -x_10 = l_Lean_HashMapImp_contains___at_Lean_IR_containsDecl___spec__2(x_9, x_2); -lean_dec(x_2); -lean_dec(x_9); -return x_10; -} -} -} -LEAN_EXPORT lean_object* l_Lean_IR_containsDecl(lean_object* x_1, lean_object* x_2, lean_object* x_3) { -_start: -{ -lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; uint8_t x_8; lean_object* x_9; lean_object* x_10; -x_4 = lean_ctor_get(x_3, 0); -lean_inc(x_4); -x_5 = l_Lean_IR_findEnvDecl___closed__1; -x_6 = l_Lean_IR_findEnvDecl___closed__2; -x_7 = l_Lean_SimplePersistentEnvExtension_getState___rarg(x_5, x_6, x_4); -lean_dec(x_4); -x_8 = l_Lean_SMap_contains___at_Lean_IR_containsDecl___spec__1(x_7, x_1); -x_9 = lean_box(x_8); -x_10 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_10, 0, x_9); -lean_ctor_set(x_10, 1, x_3); -return x_10; -} -} -LEAN_EXPORT lean_object* l_Lean_HashMapImp_contains___at_Lean_IR_containsDecl___spec__2___boxed(lean_object* x_1, lean_object* x_2) { -_start: -{ -uint8_t x_3; lean_object* x_4; -x_3 = l_Lean_HashMapImp_contains___at_Lean_IR_containsDecl___spec__2(x_1, x_2); -lean_dec(x_2); -lean_dec(x_1); -x_4 = lean_box(x_3); -return x_4; -} -} -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_containsAtAux___at_Lean_IR_containsDecl___spec__5___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { -_start: -{ -uint8_t x_6; lean_object* x_7; -x_6 = l_Lean_PersistentHashMap_containsAtAux___at_Lean_IR_containsDecl___spec__5(x_1, x_2, x_3, x_4, x_5); -lean_dec(x_5); -lean_dec(x_2); -lean_dec(x_1); -x_7 = lean_box(x_6); -return x_7; -} -} -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_containsAux___at_Lean_IR_containsDecl___spec__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { -_start: -{ -size_t x_4; uint8_t x_5; lean_object* x_6; -x_4 = lean_unbox_usize(x_2); -lean_dec(x_2); -x_5 = l_Lean_PersistentHashMap_containsAux___at_Lean_IR_containsDecl___spec__4(x_1, x_4, x_3); -lean_dec(x_3); -x_6 = lean_box(x_5); -return x_6; -} -} -LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_contains___at_Lean_IR_containsDecl___spec__3___boxed(lean_object* x_1, lean_object* x_2) { -_start: -{ -uint8_t x_3; lean_object* x_4; -x_3 = l_Lean_PersistentHashMap_contains___at_Lean_IR_containsDecl___spec__3(x_1, x_2); -x_4 = lean_box(x_3); -return x_4; -} -} -LEAN_EXPORT lean_object* l_Lean_SMap_contains___at_Lean_IR_containsDecl___spec__1___boxed(lean_object* x_1, lean_object* x_2) { -_start: -{ -uint8_t x_3; lean_object* x_4; -x_3 = l_Lean_SMap_contains___at_Lean_IR_containsDecl___spec__1(x_1, x_2); -x_4 = lean_box(x_3); -return x_4; } } LEAN_EXPORT lean_object* l_Lean_IR_containsDecl___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { @@ -3053,10 +2487,12 @@ return x_4; LEAN_EXPORT lean_object* lean_ir_add_decl(lean_object* x_1, lean_object* x_2) { _start: { -lean_object* x_3; lean_object* x_4; -x_3 = l_Lean_IR_findEnvDecl___closed__2; -x_4 = l_Lean_PersistentEnvExtension_addEntry___rarg(x_3, x_1, x_2); -return x_4; +lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; +x_3 = l_Lean_IR_Decl_name(x_2); +x_4 = l_Lean_Environment_addExtraName(x_1, x_3); +x_5 = l_Lean_IR_findEnvDecl___closed__2; +x_6 = l_Lean_PersistentEnvExtension_addEntry___rarg(x_5, x_4, x_2); +return x_6; } } LEAN_EXPORT lean_object* l_Lean_IR_getDecls(lean_object* x_1) { @@ -3114,35 +2550,39 @@ uint8_t x_4; x_4 = !lean_is_exclusive(x_3); if (x_4 == 0) { -lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; +lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; x_5 = lean_ctor_get(x_3, 0); -x_6 = l_Lean_IR_findEnvDecl___closed__2; -x_7 = l_Lean_PersistentEnvExtension_addEntry___rarg(x_6, x_5, x_1); -lean_ctor_set(x_3, 0, x_7); -x_8 = lean_box(0); -x_9 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_9, 0, x_8); -lean_ctor_set(x_9, 1, x_3); -return x_9; +x_6 = l_Lean_IR_Decl_name(x_1); +x_7 = l_Lean_Environment_addExtraName(x_5, x_6); +x_8 = l_Lean_IR_findEnvDecl___closed__2; +x_9 = l_Lean_PersistentEnvExtension_addEntry___rarg(x_8, x_7, x_1); +lean_ctor_set(x_3, 0, x_9); +x_10 = lean_box(0); +x_11 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_11, 0, x_10); +lean_ctor_set(x_11, 1, x_3); +return x_11; } else { -lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; -x_10 = lean_ctor_get(x_3, 0); -x_11 = lean_ctor_get(x_3, 1); -lean_inc(x_11); -lean_inc(x_10); +lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; +x_12 = lean_ctor_get(x_3, 0); +x_13 = lean_ctor_get(x_3, 1); +lean_inc(x_13); +lean_inc(x_12); lean_dec(x_3); -x_12 = l_Lean_IR_findEnvDecl___closed__2; -x_13 = l_Lean_PersistentEnvExtension_addEntry___rarg(x_12, x_10, x_1); -x_14 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_14, 0, x_13); -lean_ctor_set(x_14, 1, x_11); -x_15 = lean_box(0); -x_16 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_16, 0, x_15); -lean_ctor_set(x_16, 1, x_14); -return x_16; +x_14 = l_Lean_IR_Decl_name(x_1); +x_15 = l_Lean_Environment_addExtraName(x_12, x_14); +x_16 = l_Lean_IR_findEnvDecl___closed__2; +x_17 = l_Lean_PersistentEnvExtension_addEntry___rarg(x_16, x_15, x_1); +x_18 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_18, 0, x_17); +lean_ctor_set(x_18, 1, x_13); +x_19 = lean_box(0); +x_20 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_20, 0, x_19); +lean_ctor_set(x_20, 1, x_18); +return x_20; } } } @@ -3362,67 +2802,63 @@ lean_object* x_10; x_10 = l_Lean_IR_findEnvDecl_x27___closed__3; if (lean_obj_tag(x_10) == 0) { -lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; -x_11 = l_Lean_IR_findEnvDecl___closed__1; -x_12 = l_Lean_IR_findEnvDecl___closed__2; -x_13 = l_Lean_SimplePersistentEnvExtension_getState___rarg(x_11, x_12, x_1); -x_14 = l_Lean_SMap_find_x3f___at_Lean_IR_findEnvDecl___spec__1(x_13, x_2); -return x_14; +lean_object* x_11; +x_11 = lean_ir_find_env_decl(x_1, x_2); +return x_11; } else { -uint8_t x_15; +uint8_t x_12; lean_dec(x_2); -x_15 = !lean_is_exclusive(x_10); -if (x_15 == 0) +lean_dec(x_1); +x_12 = !lean_is_exclusive(x_10); +if (x_12 == 0) { return x_10; } else { -lean_object* x_16; lean_object* x_17; -x_16 = lean_ctor_get(x_10, 0); -lean_inc(x_16); +lean_object* x_13; lean_object* x_14; +x_13 = lean_ctor_get(x_10, 0); +lean_inc(x_13); lean_dec(x_10); -x_17 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_17, 0, x_16); -return x_17; +x_14 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_14, 0, x_13); +return x_14; } } } else { -lean_object* x_18; -x_18 = lean_ctor_get(x_9, 0); -lean_inc(x_18); +lean_object* x_15; +x_15 = lean_ctor_get(x_9, 0); +lean_inc(x_15); lean_dec(x_9); -if (lean_obj_tag(x_18) == 0) +if (lean_obj_tag(x_15) == 0) { -lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; -x_19 = l_Lean_IR_findEnvDecl___closed__1; -x_20 = l_Lean_IR_findEnvDecl___closed__2; -x_21 = l_Lean_SimplePersistentEnvExtension_getState___rarg(x_19, x_20, x_1); -x_22 = l_Lean_SMap_find_x3f___at_Lean_IR_findEnvDecl___spec__1(x_21, x_2); -return x_22; +lean_object* x_16; +x_16 = lean_ir_find_env_decl(x_1, x_2); +return x_16; } else { -uint8_t x_23; +uint8_t x_17; lean_dec(x_2); -x_23 = !lean_is_exclusive(x_18); -if (x_23 == 0) +lean_dec(x_1); +x_17 = !lean_is_exclusive(x_15); +if (x_17 == 0) { -return x_18; +return x_15; } else { -lean_object* x_24; lean_object* x_25; -x_24 = lean_ctor_get(x_18, 0); -lean_inc(x_24); -lean_dec(x_18); -x_25 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_25, 0, x_24); -return x_25; +lean_object* x_18; lean_object* x_19; +x_18 = lean_ctor_get(x_15, 0); +lean_inc(x_18); +lean_dec(x_15); +x_19 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_19, 0, x_18); +return x_19; } } } @@ -3459,7 +2895,6 @@ _start: lean_object* x_4; x_4 = l_Lean_IR_findEnvDecl_x27(x_1, x_2, x_3); lean_dec(x_3); -lean_dec(x_1); return x_4; } } @@ -3470,7 +2905,6 @@ lean_object* x_5; lean_object* x_6; lean_object* x_7; x_5 = lean_ctor_get(x_4, 0); lean_inc(x_5); x_6 = l_Lean_IR_findEnvDecl_x27(x_5, x_1, x_2); -lean_dec(x_5); x_7 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_7, 0, x_6); lean_ctor_set(x_7, 1, x_4); @@ -3532,75 +2966,45 @@ x_6 = lean_unsigned_to_nat(0u); x_7 = lean_nat_dec_lt(x_6, x_5); if (x_7 == 0) { -lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; uint8_t x_12; lean_object* x_13; lean_object* x_14; +lean_object* x_8; lean_dec(x_5); -x_8 = lean_ctor_get(x_4, 0); -lean_inc(x_8); -x_9 = l_Lean_IR_findEnvDecl___closed__1; -x_10 = l_Lean_IR_findEnvDecl___closed__2; -x_11 = l_Lean_SimplePersistentEnvExtension_getState___rarg(x_9, x_10, x_8); -lean_dec(x_8); -x_12 = l_Lean_SMap_contains___at_Lean_IR_containsDecl___spec__1(x_11, x_1); -x_13 = lean_box(x_12); -x_14 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_14, 0, x_13); -lean_ctor_set(x_14, 1, x_4); +x_8 = l_Lean_IR_containsDecl(x_1, x_3, x_4); +return x_8; +} +else +{ +uint8_t x_9; +x_9 = lean_nat_dec_le(x_5, x_5); +if (x_9 == 0) +{ +lean_object* x_10; +lean_dec(x_5); +x_10 = l_Lean_IR_containsDecl(x_1, x_3, x_4); +return x_10; +} +else +{ +size_t x_11; size_t x_12; uint8_t x_13; +x_11 = 0; +x_12 = lean_usize_of_nat(x_5); +lean_dec(x_5); +x_13 = l_Array_anyMUnsafe_any___at_Lean_IR_containsDecl_x27___spec__1(x_1, x_2, x_11, x_12); +if (x_13 == 0) +{ +lean_object* x_14; +x_14 = l_Lean_IR_containsDecl(x_1, x_3, x_4); return x_14; } else { -uint8_t x_15; -x_15 = lean_nat_dec_le(x_5, x_5); -if (x_15 == 0) -{ -lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; uint8_t x_20; lean_object* x_21; lean_object* x_22; -lean_dec(x_5); -x_16 = lean_ctor_get(x_4, 0); -lean_inc(x_16); -x_17 = l_Lean_IR_findEnvDecl___closed__1; -x_18 = l_Lean_IR_findEnvDecl___closed__2; -x_19 = l_Lean_SimplePersistentEnvExtension_getState___rarg(x_17, x_18, x_16); -lean_dec(x_16); -x_20 = l_Lean_SMap_contains___at_Lean_IR_containsDecl___spec__1(x_19, x_1); -x_21 = lean_box(x_20); -x_22 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_22, 0, x_21); -lean_ctor_set(x_22, 1, x_4); -return x_22; -} -else -{ -size_t x_23; size_t x_24; uint8_t x_25; -x_23 = 0; -x_24 = lean_usize_of_nat(x_5); -lean_dec(x_5); -x_25 = l_Array_anyMUnsafe_any___at_Lean_IR_containsDecl_x27___spec__1(x_1, x_2, x_23, x_24); -if (x_25 == 0) -{ -lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; uint8_t x_30; lean_object* x_31; lean_object* x_32; -x_26 = lean_ctor_get(x_4, 0); -lean_inc(x_26); -x_27 = l_Lean_IR_findEnvDecl___closed__1; -x_28 = l_Lean_IR_findEnvDecl___closed__2; -x_29 = l_Lean_SimplePersistentEnvExtension_getState___rarg(x_27, x_28, x_26); -lean_dec(x_26); -x_30 = l_Lean_SMap_contains___at_Lean_IR_containsDecl___spec__1(x_29, x_1); -x_31 = lean_box(x_30); -x_32 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_32, 0, x_31); -lean_ctor_set(x_32, 1, x_4); -return x_32; -} -else -{ -uint8_t x_33; lean_object* x_34; lean_object* x_35; +uint8_t x_15; lean_object* x_16; lean_object* x_17; lean_dec(x_1); -x_33 = 1; -x_34 = lean_box(x_33); -x_35 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_35, 0, x_34); -lean_ctor_set(x_35, 1, x_4); -return x_35; +x_15 = 1; +x_16 = lean_box(x_15); +x_17 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_17, 0, x_16); +lean_ctor_set(x_17, 1, x_4); +return x_17; } } } @@ -3724,39 +3128,35 @@ return x_5; LEAN_EXPORT lean_object* lean_decl_get_sorry_dep(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; -x_3 = l_Lean_IR_findEnvDecl___closed__1; -x_4 = l_Lean_IR_findEnvDecl___closed__2; -x_5 = l_Lean_SimplePersistentEnvExtension_getState___rarg(x_3, x_4, x_1); -lean_dec(x_1); -x_6 = l_Lean_SMap_find_x3f___at_Lean_IR_findEnvDecl___spec__1(x_5, x_2); -if (lean_obj_tag(x_6) == 0) +lean_object* x_3; +x_3 = lean_ir_find_env_decl(x_1, x_2); +if (lean_obj_tag(x_3) == 0) +{ +lean_object* x_4; +x_4 = lean_box(0); +return x_4; +} +else +{ +lean_object* x_5; +x_5 = lean_ctor_get(x_3, 0); +lean_inc(x_5); +lean_dec(x_3); +if (lean_obj_tag(x_5) == 0) +{ +lean_object* x_6; +x_6 = lean_ctor_get(x_5, 4); +lean_inc(x_6); +lean_dec(x_5); +return x_6; +} +else { lean_object* x_7; +lean_dec(x_5); x_7 = lean_box(0); return x_7; } -else -{ -lean_object* x_8; -x_8 = lean_ctor_get(x_6, 0); -lean_inc(x_8); -lean_dec(x_6); -if (lean_obj_tag(x_8) == 0) -{ -lean_object* x_9; -x_9 = lean_ctor_get(x_8, 4); -lean_inc(x_9); -lean_dec(x_8); -return x_9; -} -else -{ -lean_object* x_10; -lean_dec(x_8); -x_10 = lean_box(0); -return x_10; -} } } } @@ -3815,37 +3215,37 @@ l_Lean_IR_tracePrefixOptionName___closed__4 = _init_l_Lean_IR_tracePrefixOptionN lean_mark_persistent(l_Lean_IR_tracePrefixOptionName___closed__4); l_Lean_IR_tracePrefixOptionName = _init_l_Lean_IR_tracePrefixOptionName(); lean_mark_persistent(l_Lean_IR_tracePrefixOptionName); -l_Lean_PersistentHashMap_insertAux___at_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____spec__3___closed__1 = _init_l_Lean_PersistentHashMap_insertAux___at_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____spec__3___closed__1(); -l_Lean_PersistentHashMap_insertAux___at_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____spec__3___closed__2 = _init_l_Lean_PersistentHashMap_insertAux___at_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____spec__3___closed__2(); -l_Lean_PersistentHashMap_insertAux___at_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____spec__3___closed__3 = _init_l_Lean_PersistentHashMap_insertAux___at_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____spec__3___closed__3(); -lean_mark_persistent(l_Lean_PersistentHashMap_insertAux___at_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____spec__3___closed__3); -l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____lambda__2___closed__1 = _init_l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____lambda__2___closed__1(); -lean_mark_persistent(l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____lambda__2___closed__1); -l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____lambda__2___closed__2 = _init_l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____lambda__2___closed__2(); -lean_mark_persistent(l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____lambda__2___closed__2); -l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____lambda__2___closed__3 = _init_l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____lambda__2___closed__3(); -lean_mark_persistent(l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____lambda__2___closed__3); -l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____lambda__2___closed__4 = _init_l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____lambda__2___closed__4(); -lean_mark_persistent(l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____lambda__2___closed__4); -l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____lambda__2___closed__5 = _init_l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____lambda__2___closed__5(); -lean_mark_persistent(l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____lambda__2___closed__5); -l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____closed__1 = _init_l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____closed__1(); -lean_mark_persistent(l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____closed__1); -l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____closed__2 = _init_l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____closed__2(); -lean_mark_persistent(l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____closed__2); -l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____closed__3 = _init_l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____closed__3(); -lean_mark_persistent(l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____closed__3); -l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____closed__4 = _init_l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____closed__4(); -lean_mark_persistent(l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____closed__4); -l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____closed__5 = _init_l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____closed__5(); -lean_mark_persistent(l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____closed__5); -l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____closed__6 = _init_l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____closed__6(); -lean_mark_persistent(l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____closed__6); -l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____closed__7 = _init_l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____closed__7(); -lean_mark_persistent(l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____closed__7); -l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____closed__8 = _init_l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____closed__8(); -lean_mark_persistent(l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538____closed__8); -if (builtin) {res = l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_538_(lean_io_mk_world()); +l_Array_qsort_sort___at___private_Lean_Compiler_IR_CompilerM_0__Lean_IR_sortDecls___spec__1___closed__1 = _init_l_Array_qsort_sort___at___private_Lean_Compiler_IR_CompilerM_0__Lean_IR_sortDecls___spec__1___closed__1(); +lean_mark_persistent(l_Array_qsort_sort___at___private_Lean_Compiler_IR_CompilerM_0__Lean_IR_sortDecls___spec__1___closed__1); +l___private_Lean_Compiler_IR_CompilerM_0__Lean_IR_findAtSorted_x3f___closed__1 = _init_l___private_Lean_Compiler_IR_CompilerM_0__Lean_IR_findAtSorted_x3f___closed__1(); +lean_mark_persistent(l___private_Lean_Compiler_IR_CompilerM_0__Lean_IR_findAtSorted_x3f___closed__1); +l_Lean_PersistentHashMap_insertAux___at_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_560____spec__2___closed__1 = _init_l_Lean_PersistentHashMap_insertAux___at_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_560____spec__2___closed__1(); +l_Lean_PersistentHashMap_insertAux___at_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_560____spec__2___closed__2 = _init_l_Lean_PersistentHashMap_insertAux___at_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_560____spec__2___closed__2(); +l_Lean_PersistentHashMap_insertAux___at_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_560____spec__2___closed__3 = _init_l_Lean_PersistentHashMap_insertAux___at_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_560____spec__2___closed__3(); +lean_mark_persistent(l_Lean_PersistentHashMap_insertAux___at_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_560____spec__2___closed__3); +l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_560____lambda__2___closed__1 = _init_l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_560____lambda__2___closed__1(); +lean_mark_persistent(l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_560____lambda__2___closed__1); +l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_560____lambda__2___closed__2 = _init_l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_560____lambda__2___closed__2(); +lean_mark_persistent(l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_560____lambda__2___closed__2); +l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_560____lambda__2___closed__3 = _init_l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_560____lambda__2___closed__3(); +lean_mark_persistent(l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_560____lambda__2___closed__3); +l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_560____closed__1 = _init_l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_560____closed__1(); +lean_mark_persistent(l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_560____closed__1); +l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_560____closed__2 = _init_l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_560____closed__2(); +lean_mark_persistent(l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_560____closed__2); +l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_560____closed__3 = _init_l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_560____closed__3(); +lean_mark_persistent(l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_560____closed__3); +l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_560____closed__4 = _init_l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_560____closed__4(); +lean_mark_persistent(l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_560____closed__4); +l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_560____closed__5 = _init_l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_560____closed__5(); +lean_mark_persistent(l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_560____closed__5); +l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_560____closed__6 = _init_l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_560____closed__6(); +lean_mark_persistent(l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_560____closed__6); +l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_560____closed__7 = _init_l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_560____closed__7(); +lean_mark_persistent(l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_560____closed__7); +l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_560____closed__8 = _init_l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_560____closed__8(); +lean_mark_persistent(l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_560____closed__8); +if (builtin) {res = l_Lean_IR_initFn____x40_Lean_Compiler_IR_CompilerM___hyg_560_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; l_Lean_IR_declMapExt = lean_io_result_get_value(res); lean_mark_persistent(l_Lean_IR_declMapExt); @@ -3854,6 +3254,10 @@ lean_dec_ref(res); lean_mark_persistent(l_Lean_IR_findEnvDecl___closed__1); l_Lean_IR_findEnvDecl___closed__2 = _init_l_Lean_IR_findEnvDecl___closed__2(); lean_mark_persistent(l_Lean_IR_findEnvDecl___closed__2); +l_Lean_IR_findEnvDecl___closed__3 = _init_l_Lean_IR_findEnvDecl___closed__3(); +lean_mark_persistent(l_Lean_IR_findEnvDecl___closed__3); +l_Lean_IR_findEnvDecl___closed__4 = _init_l_Lean_IR_findEnvDecl___closed__4(); +lean_mark_persistent(l_Lean_IR_findEnvDecl___closed__4); l_Lean_IR_getDecl___closed__1 = _init_l_Lean_IR_getDecl___closed__1(); lean_mark_persistent(l_Lean_IR_getDecl___closed__1); l_Lean_IR_getDecl___closed__2 = _init_l_Lean_IR_getDecl___closed__2(); diff --git a/stage0/stdlib/Lean/Compiler/IR/RC.c b/stage0/stdlib/Lean/Compiler/IR/RC.c index 8cb6f97186..b29c7800b9 100644 --- a/stage0/stdlib/Lean/Compiler/IR/RC.c +++ b/stage0/stdlib/Lean/Compiler/IR/RC.c @@ -18,7 +18,6 @@ LEAN_EXPORT lean_object* l___private_Lean_Compiler_IR_RC_0__Lean_IR_ExplicitRC_a LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Compiler_IR_RC_0__Lean_IR_ExplicitRC_addDecForDeadParams___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); size_t lean_usize_add(size_t, size_t); LEAN_EXPORT uint8_t l_Lean_IR_ExplicitRC_VarInfo_persistent___default; -LEAN_EXPORT lean_object* l_Lean_IR_ExplicitRC_getDecl___boxed(lean_object*, lean_object*); static lean_object* l_Lean_IR_ExplicitRC_getDecl___closed__1; lean_object* lean_mk_empty_array_with_capacity(lean_object*); uint8_t l_Lean_IR_Arg_beq(lean_object*, lean_object*); @@ -270,8 +269,12 @@ _start: { lean_object* x_3; lean_object* x_4; lean_object* x_5; x_3 = lean_ctor_get(x_1, 0); +lean_inc(x_3); x_4 = lean_ctor_get(x_1, 1); +lean_inc(x_4); +lean_dec(x_1); x_5 = l_Lean_IR_findEnvDecl_x27(x_3, x_2, x_4); +lean_dec(x_4); if (lean_obj_tag(x_5) == 0) { lean_object* x_6; lean_object* x_7; @@ -289,15 +292,6 @@ return x_8; } } } -LEAN_EXPORT lean_object* l_Lean_IR_ExplicitRC_getDecl___boxed(lean_object* x_1, lean_object* x_2) { -_start: -{ -lean_object* x_3; -x_3 = l_Lean_IR_ExplicitRC_getDecl(x_1, x_2); -lean_dec(x_1); -return x_3; -} -} LEAN_EXPORT lean_object* l_Lean_RBNode_find___at_Lean_IR_ExplicitRC_getVarInfo___spec__1(lean_object* x_1, lean_object* x_2) { _start: { @@ -5044,6 +5038,7 @@ x_45 = lean_ctor_get(x_4, 0); lean_inc(x_45); x_46 = lean_ctor_get(x_4, 1); lean_inc(x_46); +lean_inc(x_1); x_47 = l_Lean_IR_ExplicitRC_getDecl(x_1, x_45); x_48 = l_Lean_IR_Decl_params(x_47); lean_dec(x_47); diff --git a/stage0/stdlib/Lean/Compiler/LCNF.c b/stage0/stdlib/Lean/Compiler/LCNF.c index 1079d41ceb..842420c604 100644 --- a/stage0/stdlib/Lean/Compiler/LCNF.c +++ b/stage0/stdlib/Lean/Compiler/LCNF.c @@ -1,6 +1,6 @@ // Lean compiler output // Module: Lean.Compiler.LCNF -// Imports: Init Lean.Compiler.LCNF.AlphaEqv Lean.Compiler.LCNF.Basic Lean.Compiler.LCNF.Bind Lean.Compiler.LCNF.Check Lean.Compiler.LCNF.CompilerM Lean.Compiler.LCNF.CSE Lean.Compiler.LCNF.DependsOn Lean.Compiler.LCNF.ElimDead Lean.Compiler.LCNF.FixedParams Lean.Compiler.LCNF.InferType Lean.Compiler.LCNF.JoinPoints Lean.Compiler.LCNF.LCtx Lean.Compiler.LCNF.Level Lean.Compiler.LCNF.Main Lean.Compiler.LCNF.Passes Lean.Compiler.LCNF.PassManager Lean.Compiler.LCNF.PhaseExt Lean.Compiler.LCNF.PrettyPrinter Lean.Compiler.LCNF.PullFunDecls Lean.Compiler.LCNF.PullLetDecls Lean.Compiler.LCNF.ReduceJpArity Lean.Compiler.LCNF.Simp Lean.Compiler.LCNF.Specialize Lean.Compiler.LCNF.SpecInfo Lean.Compiler.LCNF.Testing Lean.Compiler.LCNF.ToDecl Lean.Compiler.LCNF.ToExpr Lean.Compiler.LCNF.ToLCNF Lean.Compiler.LCNF.Types Lean.Compiler.LCNF.Util Lean.Compiler.LCNF.ConfigOptions Lean.Compiler.LCNF.ForEachExpr Lean.Compiler.LCNF.MonoTypes Lean.Compiler.LCNF.ToMono Lean.Compiler.LCNF.MonadScope Lean.Compiler.LCNF.Closure +// Imports: Init Lean.Compiler.LCNF.AlphaEqv Lean.Compiler.LCNF.Basic Lean.Compiler.LCNF.Bind Lean.Compiler.LCNF.Check Lean.Compiler.LCNF.CompilerM Lean.Compiler.LCNF.CSE Lean.Compiler.LCNF.DependsOn Lean.Compiler.LCNF.ElimDead Lean.Compiler.LCNF.FixedParams Lean.Compiler.LCNF.InferType Lean.Compiler.LCNF.JoinPoints Lean.Compiler.LCNF.LCtx Lean.Compiler.LCNF.Level Lean.Compiler.LCNF.Main Lean.Compiler.LCNF.Passes Lean.Compiler.LCNF.PassManager Lean.Compiler.LCNF.PhaseExt Lean.Compiler.LCNF.PrettyPrinter Lean.Compiler.LCNF.PullFunDecls Lean.Compiler.LCNF.PullLetDecls Lean.Compiler.LCNF.ReduceJpArity Lean.Compiler.LCNF.Simp Lean.Compiler.LCNF.Specialize Lean.Compiler.LCNF.SpecInfo Lean.Compiler.LCNF.Testing Lean.Compiler.LCNF.ToDecl Lean.Compiler.LCNF.ToExpr Lean.Compiler.LCNF.ToLCNF Lean.Compiler.LCNF.Types Lean.Compiler.LCNF.Util Lean.Compiler.LCNF.ConfigOptions Lean.Compiler.LCNF.ForEachExpr Lean.Compiler.LCNF.MonoTypes Lean.Compiler.LCNF.ToMono Lean.Compiler.LCNF.MonadScope Lean.Compiler.LCNF.Closure Lean.Compiler.LCNF.LambdaLifting Lean.Compiler.LCNF.ReduceArity #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -50,6 +50,8 @@ lean_object* initialize_Lean_Compiler_LCNF_MonoTypes(uint8_t builtin, lean_objec lean_object* initialize_Lean_Compiler_LCNF_ToMono(uint8_t builtin, lean_object*); lean_object* initialize_Lean_Compiler_LCNF_MonadScope(uint8_t builtin, lean_object*); lean_object* initialize_Lean_Compiler_LCNF_Closure(uint8_t builtin, lean_object*); +lean_object* initialize_Lean_Compiler_LCNF_LambdaLifting(uint8_t builtin, lean_object*); +lean_object* initialize_Lean_Compiler_LCNF_ReduceArity(uint8_t builtin, lean_object*); static bool _G_initialized = false; LEAN_EXPORT lean_object* initialize_Lean_Compiler_LCNF(uint8_t builtin, lean_object* w) { lean_object * res; @@ -166,6 +168,12 @@ lean_dec_ref(res); res = initialize_Lean_Compiler_LCNF_Closure(builtin, lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +res = initialize_Lean_Compiler_LCNF_LambdaLifting(builtin, lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Compiler_LCNF_ReduceArity(builtin, lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); return lean_io_result_mk_ok(lean_box(0)); } #ifdef __cplusplus diff --git a/stage0/stdlib/Lean/Compiler/LCNF/CSE.c b/stage0/stdlib/Lean/Compiler/LCNF/CSE.c index b13b4c6d18..4dd594e799 100644 --- a/stage0/stdlib/Lean/Compiler/LCNF/CSE.c +++ b/stage0/stdlib/Lean/Compiler/LCNF/CSE.c @@ -40,7 +40,6 @@ LEAN_EXPORT lean_object* l___private_Init_Data_Array_BasicAux_0__mapMonoMImp___a lean_object* l_Lean_Name_mkStr2(lean_object*, lean_object*); lean_object* lean_array_push(lean_object*, lean_object*); lean_object* lean_array_get_size(lean_object*); -static lean_object* l_Lean_Compiler_LCNF_cse___closed__4; LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_find_x3f___at_Lean_Compiler_LCNF_Code_cse_go___spec__2(lean_object*, lean_object*); static lean_object* l_Lean_Compiler_LCNF_cse___closed__2; size_t lean_usize_shift_right(size_t, size_t); @@ -65,21 +64,22 @@ LEAN_EXPORT lean_object* l___private_Init_Data_Array_BasicAux_0__mapMonoMImp_go_ LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_normLetDecl___at_Lean_Compiler_LCNF_Code_cse_go___spec__1(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_st_ref_take(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_normParams___at_Lean_Compiler_LCNF_Code_cse_goFunDecl___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_cse___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_normExpr___at_Lean_Compiler_LCNF_Code_cse_go___spec__6(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_mkHashMap___at_Lean_Compiler_LCNF_CSE_State_subst___default___spec__1(lean_object*); lean_object* lean_array_get(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_CSE___hyg_1685____closed__1; lean_object* lean_array_fset(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_CSE___hyg_1685____closed__2; LEAN_EXPORT lean_object* l_Lean_mkHashMap___at_Lean_Compiler_LCNF_CSE_State_subst___default___spec__1___boxed(lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux___at_Lean_Compiler_LCNF_CSE_addEntry___spec__2(lean_object*, size_t, size_t, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_CSE_replaceLet___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_normParams___at_Lean_Compiler_LCNF_Code_cse_goFunDecl___spec__1(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_PersistentHashMap_insertAux___at_Lean_Compiler_LCNF_CSE_addEntry___spec__2___closed__3; lean_object* lean_st_mk_ref(lean_object*, lean_object*); -static lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_CSE___hyg_1676____closed__2; LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Code_cse(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_normParam___at_Lean_Compiler_LCNF_Code_cse_goFunDecl___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint64_t l_Lean_Expr_hash(lean_object*); -static lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_CSE___hyg_1676____closed__1; size_t lean_usize_shift_left(size_t, size_t); lean_object* l_Lean_Compiler_LCNF_Pass_mkPerDeclaration(lean_object*, lean_object*, uint8_t, lean_object*); static size_t l_Lean_PersistentHashMap_insertAux___at_Lean_Compiler_LCNF_CSE_addEntry___spec__2___closed__2; @@ -110,14 +110,14 @@ LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_CSE_instMonadFVarSubstStateM(lean_ uint8_t lean_usize_dec_le(size_t, size_t); LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_CSE_instMonadFVarSubstMFalse___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_CSE_replaceFun(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_CSE___hyg_1676_(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_CSE___hyg_1685_(lean_object*); LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_CSE_getSubst___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_CSE_addEntry___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux_traverse___at_Lean_Compiler_LCNF_CSE_addEntry___spec__3(size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_CSE_addEntry(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_st_ref_set(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PersistentHashMap_mkEmptyEntries(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_cse; +LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_cse(uint8_t, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAux___at_Lean_Compiler_LCNF_Code_cse_go___spec__3(lean_object*, size_t, lean_object*); static lean_object* l_Lean_Compiler_LCNF_Code_cse___closed__1; static lean_object* l_Lean_Compiler_LCNF_Code_cse___closed__2; @@ -5266,27 +5266,27 @@ x_1 = lean_alloc_closure((void*)(l_Lean_Compiler_LCNF_Decl_cse), 6, 0); return x_1; } } -static lean_object* _init_l_Lean_Compiler_LCNF_cse___closed__4() { +LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_cse(uint8_t x_1, lean_object* x_2) { _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_Compiler_LCNF_cse___closed__2; -x_2 = l_Lean_Compiler_LCNF_cse___closed__3; -x_3 = 0; -x_4 = lean_unsigned_to_nat(0u); -x_5 = l_Lean_Compiler_LCNF_Pass_mkPerDeclaration(x_1, x_2, x_3, x_4); +lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_3 = l_Lean_Compiler_LCNF_cse___closed__2; +x_4 = l_Lean_Compiler_LCNF_cse___closed__3; +x_5 = l_Lean_Compiler_LCNF_Pass_mkPerDeclaration(x_3, x_4, x_1, x_2); return x_5; } } -static lean_object* _init_l_Lean_Compiler_LCNF_cse() { +LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_cse___boxed(lean_object* x_1, lean_object* x_2) { _start: { -lean_object* x_1; -x_1 = l_Lean_Compiler_LCNF_cse___closed__4; -return x_1; +uint8_t x_3; lean_object* x_4; +x_3 = lean_unbox(x_1); +lean_dec(x_1); +x_4 = l_Lean_Compiler_LCNF_cse(x_3, x_2); +return x_4; } } -static lean_object* _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_CSE___hyg_1676____closed__1() { +static lean_object* _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_CSE___hyg_1685____closed__1() { _start: { lean_object* x_1; @@ -5294,21 +5294,21 @@ x_1 = lean_mk_string_from_bytes("Compiler", 8); return x_1; } } -static lean_object* _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_CSE___hyg_1676____closed__2() { +static lean_object* _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_CSE___hyg_1685____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_CSE___hyg_1676____closed__1; +x_1 = l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_CSE___hyg_1685____closed__1; x_2 = l_Lean_Compiler_LCNF_cse___closed__1; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_CSE___hyg_1676_(lean_object* x_1) { +LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_CSE___hyg_1685_(lean_object* x_1) { _start: { lean_object* x_2; uint8_t x_3; lean_object* x_4; -x_2 = l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_CSE___hyg_1676____closed__2; +x_2 = l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_CSE___hyg_1685____closed__2; x_3 = 1; x_4 = l_Lean_registerTraceClass(x_2, x_3, x_1); return x_4; @@ -5369,15 +5369,11 @@ l_Lean_Compiler_LCNF_cse___closed__2 = _init_l_Lean_Compiler_LCNF_cse___closed__ lean_mark_persistent(l_Lean_Compiler_LCNF_cse___closed__2); l_Lean_Compiler_LCNF_cse___closed__3 = _init_l_Lean_Compiler_LCNF_cse___closed__3(); lean_mark_persistent(l_Lean_Compiler_LCNF_cse___closed__3); -l_Lean_Compiler_LCNF_cse___closed__4 = _init_l_Lean_Compiler_LCNF_cse___closed__4(); -lean_mark_persistent(l_Lean_Compiler_LCNF_cse___closed__4); -l_Lean_Compiler_LCNF_cse = _init_l_Lean_Compiler_LCNF_cse(); -lean_mark_persistent(l_Lean_Compiler_LCNF_cse); -l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_CSE___hyg_1676____closed__1 = _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_CSE___hyg_1676____closed__1(); -lean_mark_persistent(l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_CSE___hyg_1676____closed__1); -l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_CSE___hyg_1676____closed__2 = _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_CSE___hyg_1676____closed__2(); -lean_mark_persistent(l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_CSE___hyg_1676____closed__2); -res = l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_CSE___hyg_1676_(lean_io_mk_world()); +l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_CSE___hyg_1685____closed__1 = _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_CSE___hyg_1685____closed__1(); +lean_mark_persistent(l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_CSE___hyg_1685____closed__1); +l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_CSE___hyg_1685____closed__2 = _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_CSE___hyg_1685____closed__2(); +lean_mark_persistent(l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_CSE___hyg_1685____closed__2); +res = l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_CSE___hyg_1685_(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/Compiler/LCNF/Main.c b/stage0/stdlib/Lean/Compiler/LCNF/Main.c index 194825d765..ce91055551 100644 --- a/stage0/stdlib/Lean/Compiler/LCNF/Main.c +++ b/stage0/stdlib/Lean/Compiler/LCNF/Main.c @@ -48,6 +48,7 @@ static lean_object* l_Lean_Compiler_LCNF_shouldGenerateCode___closed__4; LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_showDecl___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_addTrace___at_Lean_Compiler_LCNF_PassManager_run___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_PassManager_run(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_isTracingEnabledFor___at_Lean_Compiler_LCNF_Decl_reduceArity___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Name_mkStr2(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_shouldGenerateCode___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_profileitM___at_Lean_Compiler_LCNF_main___spec__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -100,12 +101,12 @@ LEAN_EXPORT lean_object* l_Lean_profileitM___at_Lean_Compiler_LCNF_main___spec__ static lean_object* l_Array_forInUnsafe_loop___at_Lean_Compiler_LCNF_PassManager_run___spec__4___closed__1; LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Compiler_LCNF_PassManager_run___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Init_Util_0__mkPanicMessageWithDecl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_isTracingEnabledFor___at_Lean_Compiler_LCNF_saveSpecParamInfo___spec__9(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Array_isEmpty___rarg(lean_object*); static lean_object* l_Array_forInUnsafe_loop___at_Lean_Compiler_LCNF_PassManager_run___spec__4___closed__2; lean_object* l_Lean_Compiler_LCNF_ppDecl_x27(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_shouldGenerateCode___lambda__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_isTypeFormerType(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_addTrace___at_Lean_Compiler_LCNF_Decl_reduceArity___spec__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); size_t lean_usize_of_nat(lean_object*); lean_object* l_Lean_ConstantInfo_type(lean_object*); LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_main___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -180,7 +181,6 @@ static lean_object* l_Lean_Compiler_LCNF_shouldGenerateCode___closed__22; static lean_object* l_Array_forInUnsafe_loop___at_Lean_Compiler_LCNF_checkpoint___spec__1___lambda__2___closed__13; LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Compiler_LCNF_PassManager_run___spec__5(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Compiler_LCNF_toDecl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_addTrace___at_Lean_Compiler_LCNF_saveSpecParamInfo___spec__13(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Compiler_LCNF_shouldGenerateCode___closed__6; uint8_t lean_nat_dec_lt(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_shouldGenerateCode_isCompIrrelevant(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { @@ -1270,7 +1270,7 @@ x_14 = 0; x_15 = l_Lean_KVMap_setBool(x_12, x_13, x_14); lean_ctor_set(x_6, 2, x_15); lean_inc(x_10); -x_16 = l_Lean_isTracingEnabledFor___at_Lean_Compiler_LCNF_saveSpecParamInfo___spec__9(x_10, x_4, x_5, x_6, x_7, x_8); +x_16 = l_Lean_isTracingEnabledFor___at_Lean_Compiler_LCNF_Decl_reduceArity___spec__1(x_10, x_4, x_5, x_6, x_7, x_8); x_17 = lean_ctor_get(x_16, 0); lean_inc(x_17); x_18 = lean_unbox(x_17); @@ -1375,7 +1375,7 @@ x_46 = l_Array_forInUnsafe_loop___at_Lean_Compiler_LCNF_checkpoint___spec__1___l x_47 = lean_alloc_ctor(10, 2, 0); lean_ctor_set(x_47, 0, x_45); lean_ctor_set(x_47, 1, x_46); -x_48 = l_Lean_addTrace___at_Lean_Compiler_LCNF_saveSpecParamInfo___spec__13(x_10, x_47, x_4, x_5, x_6, x_7, x_35); +x_48 = l_Lean_addTrace___at_Lean_Compiler_LCNF_Decl_reduceArity___spec__5(x_10, x_47, x_4, x_5, x_6, x_7, x_35); x_49 = lean_ctor_get(x_48, 0); lean_inc(x_49); x_50 = lean_ctor_get(x_48, 1); @@ -1504,7 +1504,7 @@ lean_ctor_set(x_80, 8, x_74); lean_ctor_set(x_80, 9, x_75); lean_ctor_set(x_80, 10, x_76); lean_inc(x_10); -x_81 = l_Lean_isTracingEnabledFor___at_Lean_Compiler_LCNF_saveSpecParamInfo___spec__9(x_10, x_4, x_5, x_80, x_7, x_8); +x_81 = l_Lean_isTracingEnabledFor___at_Lean_Compiler_LCNF_Decl_reduceArity___spec__1(x_10, x_4, x_5, x_80, x_7, x_8); x_82 = lean_ctor_get(x_81, 0); lean_inc(x_82); x_83 = lean_unbox(x_82); @@ -1608,7 +1608,7 @@ x_109 = l_Array_forInUnsafe_loop___at_Lean_Compiler_LCNF_checkpoint___spec__1___ x_110 = lean_alloc_ctor(10, 2, 0); lean_ctor_set(x_110, 0, x_108); lean_ctor_set(x_110, 1, x_109); -x_111 = l_Lean_addTrace___at_Lean_Compiler_LCNF_saveSpecParamInfo___spec__13(x_10, x_110, x_4, x_5, x_80, x_7, x_98); +x_111 = l_Lean_addTrace___at_Lean_Compiler_LCNF_Decl_reduceArity___spec__5(x_10, x_110, x_4, x_5, x_80, x_7, x_98); x_112 = lean_ctor_get(x_111, 0); lean_inc(x_112); x_113 = lean_ctor_get(x_111, 1); @@ -1757,7 +1757,7 @@ lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; uint lean_dec(x_5); x_13 = lean_array_uget(x_2, x_4); x_14 = l_Array_forInUnsafe_loop___at_Lean_Compiler_LCNF_checkpoint___spec__1___closed__2; -x_15 = l_Lean_isTracingEnabledFor___at_Lean_Compiler_LCNF_saveSpecParamInfo___spec__9(x_14, x_6, x_7, x_8, x_9, x_10); +x_15 = l_Lean_isTracingEnabledFor___at_Lean_Compiler_LCNF_Decl_reduceArity___spec__1(x_14, x_6, x_7, x_8, x_9, x_10); x_16 = lean_ctor_get(x_15, 0); lean_inc(x_16); x_17 = lean_unbox(x_16); @@ -1891,7 +1891,7 @@ lean_ctor_set(x_48, 1, x_47); x_49 = lean_alloc_ctor(10, 2, 0); lean_ctor_set(x_49, 0, x_48); lean_ctor_set(x_49, 1, x_40); -x_50 = l_Lean_addTrace___at_Lean_Compiler_LCNF_saveSpecParamInfo___spec__13(x_14, x_49, x_6, x_7, x_8, x_9, x_37); +x_50 = l_Lean_addTrace___at_Lean_Compiler_LCNF_Decl_reduceArity___spec__5(x_14, x_49, x_6, x_7, x_8, x_9, x_37); x_51 = lean_ctor_get(x_50, 0); lean_inc(x_51); x_52 = lean_ctor_get(x_50, 1); @@ -2472,7 +2472,7 @@ else lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; uint8_t x_16; x_12 = lean_array_uget(x_1, x_3); x_13 = l_Array_forInUnsafe_loop___at_Lean_Compiler_LCNF_checkpoint___spec__1___lambda__2___closed__2; -x_14 = l_Lean_isTracingEnabledFor___at_Lean_Compiler_LCNF_saveSpecParamInfo___spec__9(x_13, x_5, x_6, x_7, x_8, x_9); +x_14 = l_Lean_isTracingEnabledFor___at_Lean_Compiler_LCNF_Decl_reduceArity___spec__1(x_13, x_5, x_6, x_7, x_8, x_9); x_15 = lean_ctor_get(x_14, 0); lean_inc(x_15); x_16 = lean_unbox(x_15); @@ -2590,7 +2590,7 @@ x_41 = l_Array_forInUnsafe_loop___at_Lean_Compiler_LCNF_checkpoint___spec__1___l x_42 = lean_alloc_ctor(10, 2, 0); lean_ctor_set(x_42, 0, x_40); lean_ctor_set(x_42, 1, x_41); -x_43 = l_Lean_addTrace___at_Lean_Compiler_LCNF_saveSpecParamInfo___spec__13(x_13, x_42, x_5, x_6, x_7, x_8, x_36); +x_43 = l_Lean_addTrace___at_Lean_Compiler_LCNF_Decl_reduceArity___spec__5(x_13, x_42, x_5, x_6, x_7, x_8, x_36); x_44 = lean_ctor_get(x_43, 0); lean_inc(x_44); x_45 = lean_ctor_get(x_43, 1); @@ -3213,7 +3213,7 @@ x_22 = lean_ctor_get(x_20, 1); lean_inc(x_22); lean_dec(x_20); x_23 = l_Lean_Compiler_LCNF_PassManager_run___lambda__2___closed__2; -x_24 = l_Lean_isTracingEnabledFor___at_Lean_Compiler_LCNF_saveSpecParamInfo___spec__9(x_23, x_3, x_4, x_5, x_6, x_22); +x_24 = l_Lean_isTracingEnabledFor___at_Lean_Compiler_LCNF_Decl_reduceArity___spec__1(x_23, x_3, x_4, x_5, x_6, x_22); x_25 = lean_ctor_get(x_24, 0); lean_inc(x_25); x_26 = lean_unbox(x_25); diff --git a/stage0/stdlib/Lean/Compiler/LCNF/Passes.c b/stage0/stdlib/Lean/Compiler/LCNF/Passes.c index b69dc4019d..c38d0a481b 100644 --- a/stage0/stdlib/Lean/Compiler/LCNF/Passes.c +++ b/stage0/stdlib/Lean/Compiler/LCNF/Passes.c @@ -1,6 +1,6 @@ // Lean compiler output // Module: Lean.Compiler.LCNF.Passes -// Imports: Init Lean.Compiler.LCNF.PassManager Lean.Compiler.LCNF.PullLetDecls Lean.Compiler.LCNF.CSE Lean.Compiler.LCNF.Simp Lean.Compiler.LCNF.PullFunDecls Lean.Compiler.LCNF.ReduceJpArity Lean.Compiler.LCNF.JoinPoints Lean.Compiler.LCNF.Specialize Lean.Compiler.LCNF.PhaseExt Lean.Compiler.LCNF.ToMono Lean.Compiler.LCNF.LambdaLifting Lean.Compiler.LCNF.FloatLetIn +// Imports: Init Lean.Compiler.LCNF.PassManager Lean.Compiler.LCNF.PullLetDecls Lean.Compiler.LCNF.CSE Lean.Compiler.LCNF.Simp Lean.Compiler.LCNF.PullFunDecls Lean.Compiler.LCNF.ReduceJpArity Lean.Compiler.LCNF.JoinPoints Lean.Compiler.LCNF.Specialize Lean.Compiler.LCNF.PhaseExt Lean.Compiler.LCNF.ToMono Lean.Compiler.LCNF.LambdaLifting Lean.Compiler.LCNF.FloatLetIn Lean.Compiler.LCNF.ReduceArity #include #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -14,91 +14,102 @@ extern "C" { #endif lean_object* l_List_reverse___rarg(lean_object*); +static lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_1123____closed__3; +static lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____closed__22; static lean_object* l_Lean_Compiler_LCNF_saveMono___closed__2; size_t lean_usize_add(size_t, size_t); -static lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____closed__11; +static lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____closed__18; lean_object* l_Lean_registerTraceClass(lean_object*, uint8_t, lean_object*); LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_builtinPassManager; lean_object* l_Lean_Compiler_LCNF_Decl_saveMono(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_stringToMessageData(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____lambda__3(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_mk_empty_array_with_capacity(lean_object*); static lean_object* l_Lean_Compiler_LCNF_saveMono___closed__4; +static lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_503____closed__7; lean_object* l_Lean_Name_str___override(lean_object*, lean_object*); static lean_object* l_Lean_Compiler_LCNF_builtinPassManager___closed__1; lean_object* l_Lean_Compiler_LCNF_floatLetIn(uint8_t, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Compiler_LCNF_extendJoinPointContext; uint8_t lean_usize_dec_eq(size_t, size_t); lean_object* lean_array_uget(lean_object*, size_t); static lean_object* l_Lean_Compiler_LCNF_builtinPassManager___closed__17; +static lean_object* l_Lean_Compiler_LCNF_builtinPassManager___closed__41; +LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_503____lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Compiler_LCNF_builtinPassManager___closed__23; LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_getPassManager___rarg(lean_object*, lean_object*); +static lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____closed__5; +static lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____closed__3; +static lean_object* l_Lean_Compiler_LCNF_builtinPassManager___closed__38; static lean_object* l_Lean_Compiler_LCNF_builtinPassManager___closed__21; -static lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_492____closed__7; +static lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____closed__15; +static lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____closed__14; static lean_object* l_Lean_Compiler_LCNF_builtinPassManager___closed__2; -static lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____closed__4; extern lean_object* l_Lean_Compiler_LCNF_lambdaLifting; +static lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_503____closed__2; lean_object* lean_st_ref_get(lean_object*, lean_object*); -static lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____closed__9; LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Compiler_LCNF_runImportedDecls___spec__1(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_492____closed__3; lean_object* l_Lean_Name_mkStr2(lean_object*, lean_object*); static lean_object* l_Lean_Compiler_LCNF_builtinPassManager___closed__34; lean_object* lean_array_push(lean_object*, lean_object*); lean_object* lean_array_get_size(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Compiler_LCNF_builtinPassManager___closed__13; -static lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____lambda__2___closed__1; +static lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____closed__16; +static lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_503____closed__3; static lean_object* l_Lean_Compiler_LCNF_builtinPassManager___closed__25; -LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____lambda__2(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____lambda__2___closed__2; static lean_object* l_Lean_Compiler_LCNF_addPass___closed__6; static lean_object* l_Lean_Compiler_LCNF_builtinPassManager___closed__29; static lean_object* l_Lean_Compiler_LCNF_saveBase___closed__2; -static lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_492____closed__2; uint8_t lean_usize_dec_lt(size_t, size_t); -static lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____closed__3; +static lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____closed__7; static lean_object* l_Lean_Compiler_LCNF_builtinPassManager___closed__6; static lean_object* l_Lean_Compiler_LCNF_builtinPassManager___closed__14; +LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____closed__2; static lean_object* l_Lean_Compiler_LCNF_builtinPassManager___closed__28; -static lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_492____closed__1; static lean_object* l_Lean_Compiler_LCNF_builtinPassManager___closed__33; +static lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____closed__21; lean_object* l_Lean_Compiler_LCNF_PassInstaller_runFromDecl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Compiler_LCNF_builtinPassManager___closed__22; LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_trace___elambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Compiler_LCNF_instInhabitedPassManager; +static lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_503____closed__6; extern lean_object* l_Lean_Compiler_LCNF_findJoinPoints; -static lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____closed__10; -static lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____closed__20; -static lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_492____closed__8; +static lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____lambda__3___closed__1; +static lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_503____closed__9; +static lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_503____closed__4; +static lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____closed__13; +LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____lambda__2(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); uint8_t l___private_Lean_Attributes_0__Lean_beqAttributeKind____x40_Lean_Attributes___hyg_366_(uint8_t, uint8_t); -static lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_492____closed__4; static lean_object* l_Lean_Compiler_LCNF_builtinPassManager___closed__15; +static lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_503____closed__8; static lean_object* l_Lean_Compiler_LCNF_builtinPassManager___closed__3; lean_object* lean_st_ref_take(lean_object*, lean_object*); static lean_object* l_Lean_Compiler_LCNF_getPassManager___rarg___closed__2; static lean_object* l_Lean_Compiler_LCNF_builtinPassManager___closed__5; -static lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____closed__16; static lean_object* l_Lean_Compiler_LCNF_builtinPassManager___closed__30; -static lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_492____closed__6; static lean_object* l_Lean_Compiler_LCNF_builtinPassManager___closed__18; +static lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____lambda__3___closed__2; +static lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_503____closed__1; LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_trace(uint8_t); LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_trace___elambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Compiler_LCNF_builtinPassManager___closed__24; -static lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____closed__12; -LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_492____lambda__3(lean_object*); static lean_object* l_Lean_Compiler_LCNF_trace___closed__3; lean_object* l_Lean_Compiler_LCNF_reduceJpArity(uint8_t); -LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_492____lambda__4___boxed(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_503____lambda__3(lean_object*); LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Compiler_LCNF_runImportedDecls___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Name_num___override(lean_object*, lean_object*); +static lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____closed__6; lean_object* l_Lean_throwError___at_Lean_registerTagAttribute___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Compiler_LCNF_builtinPassManager___closed__37; +LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_503____lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Compiler_LCNF_specialize; LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_saveMono___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Compiler_LCNF_init___elambda__1___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_registerPersistentEnvExtensionUnsafe___rarg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Compiler_LCNF_runImportedDecls___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____closed__1; +LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_503____lambda__2___boxed(lean_object*, lean_object*); static lean_object* l_Lean_Compiler_LCNF_builtinPassManager___closed__16; static lean_object* l_Lean_Compiler_LCNF_addPass___closed__9; LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_init; @@ -106,30 +117,24 @@ lean_object* l_Lean_getConstInfo___at___private_Lean_Compiler_LCNF_Util_0__Lean_ lean_object* l_Lean_Compiler_LCNF_Pass_mkPerDeclaration(lean_object*, lean_object*, uint8_t, lean_object*); static lean_object* l_Lean_Compiler_LCNF_builtinPassManager___closed__7; static lean_object* l_Lean_Compiler_LCNF_addPass___closed__4; -static lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_1112____closed__3; static lean_object* l_Lean_Compiler_LCNF_addPass___closed__3; -static lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____closed__13; -static lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____closed__18; +static lean_object* l_Lean_Compiler_LCNF_builtinPassManager___closed__43; lean_object* l_Lean_Compiler_LCNF_Decl_saveBase(lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____closed__15; extern lean_object* l_Lean_Compiler_LCNF_pullFunDecls; -static lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_1112____closed__2; -static lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____closed__14; lean_object* l_Lean_registerBuiltinAttribute(lean_object*, lean_object*); lean_object* l_Lean_throwError___at_Lean_AttributeImpl_erase___default___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____closed__5; -static lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_1112____closed__1; +LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____lambda__3(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Compiler_LCNF_builtinPassManager___closed__10; LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_runImportedDecls(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Compiler_LCNF_eagerLambdaLifting; static lean_object* l_Lean_Compiler_LCNF_builtinPassManager___closed__20; static lean_object* l_Lean_Compiler_LCNF_builtinPassManager___closed__32; LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_saveBase___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____closed__22; LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_runImportedDecls___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_throwError___at_Lean_addDecl___spec__2(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Compiler_LCNF_builtinPassManager___closed__42; size_t lean_usize_of_nat(lean_object*); -static lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_492____closed__9; +static lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____closed__19; lean_object* l_Lean_ConstantInfo_type(lean_object*); static lean_object* l_Lean_Compiler_LCNF_init___closed__3; lean_object* l_Lean_PersistentEnvExtension_addEntry___rarg(lean_object*, lean_object*, lean_object*); @@ -138,76 +143,79 @@ lean_object* l_Lean_Compiler_LCNF_normalizeFVarIds(lean_object*, lean_object*, l lean_object* l_Lean_PersistentHashMap_mkEmptyEntriesArray(lean_object*, lean_object*); static lean_object* l_Lean_Compiler_LCNF_addPass___closed__5; extern lean_object* l_Lean_Compiler_LCNF_toMono; +static lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____closed__11; LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_passManagerExt; LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_getPassManager___rarg___boxed(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_492____lambda__2(lean_object*, lean_object*); +static lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____closed__9; lean_object* l_List_redLength___rarg(lean_object*); LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Compiler_LCNF_runImportedDecls___spec__2(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_503____closed__10; LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_trace___boxed(lean_object*); extern lean_object* l_Lean_Compiler_LCNF_pullInstances; LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_init___elambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____closed__7; lean_object* l_Lean_Compiler_LCNF_simp(lean_object*, lean_object*, uint8_t); +static lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_503____closed__5; uint8_t lean_nat_dec_le(lean_object*, lean_object*); static lean_object* l_Lean_Compiler_LCNF_getPassManager___rarg___closed__1; static lean_object* l_Lean_Compiler_LCNF_trace___closed__1; static lean_object* l_Lean_Compiler_LCNF_trace___closed__2; +static lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____closed__17; LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_init___elambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Compiler_LCNF_saveMono___closed__3; -static lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_492____closed__10; +static lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____closed__8; static lean_object* l_Lean_Compiler_LCNF_builtinPassManager___closed__26; +static lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____lambda__2___closed__2; static lean_object* l_Lean_Compiler_LCNF_builtinPassManager___closed__12; LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_getPassManager___boxed(lean_object*); -static lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____closed__19; +static lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____closed__4; +extern lean_object* l_Lean_Compiler_LCNF_reduceArity; +LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_503____lambda__2(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Compiler_LCNF_init___elambda__1___spec__1(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_ImportM_runCoreM___rarg(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Compiler_LCNF_saveBase___closed__1; static lean_object* l_Lean_Compiler_LCNF_builtinPassManager___closed__11; -static lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____closed__21; lean_object* lean_st_ref_set(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_492____lambda__4(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Compiler_LCNF_addPass___closed__8; -LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_1112_(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932_(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_492_(lean_object*); +static lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____closed__10; +static lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____lambda__2___closed__1; +LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943_(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_1123_(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_503_(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_List_toArrayAux___rarg(lean_object*, lean_object*); static lean_object* l_Lean_Compiler_LCNF_builtinPassManager___closed__31; LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_saveBase; static lean_object* l_Lean_Compiler_LCNF_saveBase___closed__3; LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_saveBase___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l_Lean_Compiler_LCNF_cse; +lean_object* l_Lean_Compiler_LCNF_cse(uint8_t, lean_object*); static lean_object* l_Lean_Compiler_LCNF_addPass___closed__1; +static lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____closed__20; LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_getPassManager(lean_object*); -static lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____closed__2; lean_object* l_Lean_PersistentEnvExtension_getState___rarg(lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____closed__1; +LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Compiler_LCNF_addPass___closed__2; LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_saveMono; -static lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____closed__8; lean_object* l_Lean_Attribute_Builtin_ensureNoArgs(lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____closed__17; -LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____lambda__3___closed__1; +LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_503____lambda__4(lean_object*); +static lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____closed__12; lean_object* l_Lean_Name_mkStr4(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_saveMono___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_EStateM_pure___rarg(lean_object*, lean_object*); static lean_object* l_Lean_Compiler_LCNF_builtinPassManager___closed__35; -static lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____lambda__3___closed__2; -static lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____closed__6; +LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_503____lambda__4___boxed(lean_object*); +static lean_object* l_Lean_Compiler_LCNF_builtinPassManager___closed__39; static lean_object* l_Lean_Compiler_LCNF_builtinPassManager___closed__36; static lean_object* l_Lean_Compiler_LCNF_init___closed__4; -static lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_492____closed__5; -LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_492____lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Compiler_LCNF_builtinPassManager___closed__19; static lean_object* l_Lean_Compiler_LCNF_builtinPassManager___closed__8; -LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_492____lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Compiler_LCNF_init___closed__1; static lean_object* l_Lean_Compiler_LCNF_saveMono___closed__1; static lean_object* l_Lean_Compiler_LCNF_builtinPassManager___closed__4; static lean_object* l_Lean_Compiler_LCNF_addPass___closed__7; +static lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_1123____closed__2; static lean_object* l_Lean_Compiler_LCNF_saveBase___closed__4; -LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_492____lambda__2___boxed(lean_object*, lean_object*); +static lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_1123____closed__1; +static lean_object* l_Lean_Compiler_LCNF_builtinPassManager___closed__40; static lean_object* l_Lean_Compiler_LCNF_builtinPassManager___closed__9; static lean_object* l_Lean_Compiler_LCNF_init___closed__2; static lean_object* l_Lean_Compiler_LCNF_builtinPassManager___closed__27; @@ -710,6 +718,16 @@ return x_7; static lean_object* _init_l_Lean_Compiler_LCNF_builtinPassManager___closed__1() { _start: { +uint8_t x_1; lean_object* x_2; lean_object* x_3; +x_1 = 0; +x_2 = lean_unsigned_to_nat(0u); +x_3 = l_Lean_Compiler_LCNF_cse(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Compiler_LCNF_builtinPassManager___closed__2() { +_start: +{ uint8_t x_1; uint8_t x_2; lean_object* x_3; x_1 = 0; x_2 = 1; @@ -721,18 +739,18 @@ lean_ctor_set_uint8(x_3, 3, x_2); return x_3; } } -static lean_object* _init_l_Lean_Compiler_LCNF_builtinPassManager___closed__2() { +static lean_object* _init_l_Lean_Compiler_LCNF_builtinPassManager___closed__3() { _start: { lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; -x_1 = l_Lean_Compiler_LCNF_builtinPassManager___closed__1; +x_1 = l_Lean_Compiler_LCNF_builtinPassManager___closed__2; x_2 = lean_unsigned_to_nat(0u); x_3 = 0; x_4 = l_Lean_Compiler_LCNF_simp(x_1, x_2, x_3); return x_4; } } -static lean_object* _init_l_Lean_Compiler_LCNF_builtinPassManager___closed__3() { +static lean_object* _init_l_Lean_Compiler_LCNF_builtinPassManager___closed__4() { _start: { uint8_t x_1; lean_object* x_2; lean_object* x_3; @@ -742,7 +760,7 @@ x_3 = l_Lean_Compiler_LCNF_floatLetIn(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Compiler_LCNF_builtinPassManager___closed__4() { +static lean_object* _init_l_Lean_Compiler_LCNF_builtinPassManager___closed__5() { _start: { uint8_t x_1; lean_object* x_2; @@ -751,7 +769,7 @@ x_2 = l_Lean_Compiler_LCNF_reduceJpArity(x_1); return x_2; } } -static lean_object* _init_l_Lean_Compiler_LCNF_builtinPassManager___closed__5() { +static lean_object* _init_l_Lean_Compiler_LCNF_builtinPassManager___closed__6() { _start: { uint8_t x_1; lean_object* x_2; @@ -764,23 +782,12 @@ lean_ctor_set_uint8(x_2, 3, x_1); return x_2; } } -static lean_object* _init_l_Lean_Compiler_LCNF_builtinPassManager___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; -x_1 = l_Lean_Compiler_LCNF_builtinPassManager___closed__5; -x_2 = lean_unsigned_to_nat(1u); -x_3 = 0; -x_4 = l_Lean_Compiler_LCNF_simp(x_1, x_2, x_3); -return x_4; -} -} static lean_object* _init_l_Lean_Compiler_LCNF_builtinPassManager___closed__7() { _start: { lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; -x_1 = l_Lean_Compiler_LCNF_builtinPassManager___closed__1; -x_2 = lean_unsigned_to_nat(2u); +x_1 = l_Lean_Compiler_LCNF_builtinPassManager___closed__6; +x_2 = lean_unsigned_to_nat(1u); x_3 = 0; x_4 = l_Lean_Compiler_LCNF_simp(x_1, x_2, x_3); return x_4; @@ -790,14 +797,35 @@ static lean_object* _init_l_Lean_Compiler_LCNF_builtinPassManager___closed__8() _start: { lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; -x_1 = l_Lean_Compiler_LCNF_builtinPassManager___closed__1; +x_1 = l_Lean_Compiler_LCNF_builtinPassManager___closed__2; +x_2 = lean_unsigned_to_nat(2u); +x_3 = 0; +x_4 = l_Lean_Compiler_LCNF_simp(x_1, x_2, x_3); +return x_4; +} +} +static lean_object* _init_l_Lean_Compiler_LCNF_builtinPassManager___closed__9() { +_start: +{ +uint8_t x_1; lean_object* x_2; lean_object* x_3; +x_1 = 0; +x_2 = lean_unsigned_to_nat(1u); +x_3 = l_Lean_Compiler_LCNF_cse(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Compiler_LCNF_builtinPassManager___closed__10() { +_start: +{ +lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; +x_1 = l_Lean_Compiler_LCNF_builtinPassManager___closed__2; x_2 = lean_unsigned_to_nat(3u); x_3 = 1; x_4 = l_Lean_Compiler_LCNF_simp(x_1, x_2, x_3); return x_4; } } -static lean_object* _init_l_Lean_Compiler_LCNF_builtinPassManager___closed__9() { +static lean_object* _init_l_Lean_Compiler_LCNF_builtinPassManager___closed__11() { _start: { uint8_t x_1; lean_object* x_2; @@ -806,7 +834,7 @@ x_2 = l_Lean_Compiler_LCNF_reduceJpArity(x_1); return x_2; } } -static lean_object* _init_l_Lean_Compiler_LCNF_builtinPassManager___closed__10() { +static lean_object* _init_l_Lean_Compiler_LCNF_builtinPassManager___closed__12() { _start: { uint8_t x_1; lean_object* x_2; lean_object* x_3; @@ -816,75 +844,55 @@ x_3 = l_Lean_Compiler_LCNF_floatLetIn(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Compiler_LCNF_builtinPassManager___closed__11() { +static lean_object* _init_l_Lean_Compiler_LCNF_builtinPassManager___closed__13() { _start: { lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; -x_1 = l_Lean_Compiler_LCNF_builtinPassManager___closed__1; +x_1 = l_Lean_Compiler_LCNF_builtinPassManager___closed__2; x_2 = lean_unsigned_to_nat(4u); x_3 = 1; x_4 = l_Lean_Compiler_LCNF_simp(x_1, x_2, x_3); return x_4; } } -static lean_object* _init_l_Lean_Compiler_LCNF_builtinPassManager___closed__12() { -_start: -{ -lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; -x_1 = l_Lean_Compiler_LCNF_builtinPassManager___closed__1; -x_2 = lean_unsigned_to_nat(5u); -x_3 = 1; -x_4 = l_Lean_Compiler_LCNF_simp(x_1, x_2, x_3); -return x_4; -} -} -static lean_object* _init_l_Lean_Compiler_LCNF_builtinPassManager___closed__13() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = lean_unsigned_to_nat(23u); -x_2 = lean_mk_empty_array_with_capacity(x_1); -return x_2; -} -} static lean_object* _init_l_Lean_Compiler_LCNF_builtinPassManager___closed__14() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Compiler_LCNF_builtinPassManager___closed__13; -x_2 = l_Lean_Compiler_LCNF_init; -x_3 = lean_array_push(x_1, x_2); +uint8_t x_1; lean_object* x_2; lean_object* x_3; +x_1 = 1; +x_2 = lean_unsigned_to_nat(2u); +x_3 = l_Lean_Compiler_LCNF_floatLetIn(x_1, x_2); return x_3; } } static lean_object* _init_l_Lean_Compiler_LCNF_builtinPassManager___closed__15() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Compiler_LCNF_builtinPassManager___closed__14; -x_2 = l_Lean_Compiler_LCNF_pullInstances; -x_3 = lean_array_push(x_1, x_2); -return x_3; +lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; +x_1 = l_Lean_Compiler_LCNF_builtinPassManager___closed__2; +x_2 = lean_unsigned_to_nat(5u); +x_3 = 1; +x_4 = l_Lean_Compiler_LCNF_simp(x_1, x_2, x_3); +return x_4; } } static lean_object* _init_l_Lean_Compiler_LCNF_builtinPassManager___closed__16() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Compiler_LCNF_builtinPassManager___closed__15; -x_2 = l_Lean_Compiler_LCNF_cse; -x_3 = lean_array_push(x_1, x_2); +uint8_t x_1; lean_object* x_2; lean_object* x_3; +x_1 = 1; +x_2 = lean_unsigned_to_nat(2u); +x_3 = l_Lean_Compiler_LCNF_cse(x_1, x_2); return x_3; } } static lean_object* _init_l_Lean_Compiler_LCNF_builtinPassManager___closed__17() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Compiler_LCNF_builtinPassManager___closed__16; -x_2 = l_Lean_Compiler_LCNF_builtinPassManager___closed__2; -x_3 = lean_array_push(x_1, x_2); -return x_3; +lean_object* x_1; lean_object* x_2; +x_1 = lean_unsigned_to_nat(26u); +x_2 = lean_mk_empty_array_with_capacity(x_1); +return x_2; } } static lean_object* _init_l_Lean_Compiler_LCNF_builtinPassManager___closed__18() { @@ -892,7 +900,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Compiler_LCNF_builtinPassManager___closed__17; -x_2 = l_Lean_Compiler_LCNF_builtinPassManager___closed__3; +x_2 = l_Lean_Compiler_LCNF_init; x_3 = lean_array_push(x_1, x_2); return x_3; } @@ -902,7 +910,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Compiler_LCNF_builtinPassManager___closed__18; -x_2 = l_Lean_Compiler_LCNF_findJoinPoints; +x_2 = l_Lean_Compiler_LCNF_pullInstances; x_3 = lean_array_push(x_1, x_2); return x_3; } @@ -912,7 +920,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Compiler_LCNF_builtinPassManager___closed__19; -x_2 = l_Lean_Compiler_LCNF_pullFunDecls; +x_2 = l_Lean_Compiler_LCNF_builtinPassManager___closed__1; x_3 = lean_array_push(x_1, x_2); return x_3; } @@ -922,7 +930,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Compiler_LCNF_builtinPassManager___closed__20; -x_2 = l_Lean_Compiler_LCNF_builtinPassManager___closed__4; +x_2 = l_Lean_Compiler_LCNF_builtinPassManager___closed__3; x_3 = lean_array_push(x_1, x_2); return x_3; } @@ -932,7 +940,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Compiler_LCNF_builtinPassManager___closed__21; -x_2 = l_Lean_Compiler_LCNF_builtinPassManager___closed__6; +x_2 = l_Lean_Compiler_LCNF_builtinPassManager___closed__4; x_3 = lean_array_push(x_1, x_2); return x_3; } @@ -942,7 +950,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Compiler_LCNF_builtinPassManager___closed__22; -x_2 = l_Lean_Compiler_LCNF_eagerLambdaLifting; +x_2 = l_Lean_Compiler_LCNF_findJoinPoints; x_3 = lean_array_push(x_1, x_2); return x_3; } @@ -952,7 +960,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Compiler_LCNF_builtinPassManager___closed__23; -x_2 = l_Lean_Compiler_LCNF_specialize; +x_2 = l_Lean_Compiler_LCNF_pullFunDecls; x_3 = lean_array_push(x_1, x_2); return x_3; } @@ -962,7 +970,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Compiler_LCNF_builtinPassManager___closed__24; -x_2 = l_Lean_Compiler_LCNF_builtinPassManager___closed__7; +x_2 = l_Lean_Compiler_LCNF_builtinPassManager___closed__5; x_3 = lean_array_push(x_1, x_2); return x_3; } @@ -972,7 +980,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Compiler_LCNF_builtinPassManager___closed__25; -x_2 = l_Lean_Compiler_LCNF_cse; +x_2 = l_Lean_Compiler_LCNF_builtinPassManager___closed__7; x_3 = lean_array_push(x_1, x_2); return x_3; } @@ -982,7 +990,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Compiler_LCNF_builtinPassManager___closed__26; -x_2 = l_Lean_Compiler_LCNF_saveBase; +x_2 = l_Lean_Compiler_LCNF_eagerLambdaLifting; x_3 = lean_array_push(x_1, x_2); return x_3; } @@ -992,7 +1000,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Compiler_LCNF_builtinPassManager___closed__27; -x_2 = l_Lean_Compiler_LCNF_toMono; +x_2 = l_Lean_Compiler_LCNF_specialize; x_3 = lean_array_push(x_1, x_2); return x_3; } @@ -1022,7 +1030,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Compiler_LCNF_builtinPassManager___closed__30; -x_2 = l_Lean_Compiler_LCNF_extendJoinPointContext; +x_2 = l_Lean_Compiler_LCNF_saveBase; x_3 = lean_array_push(x_1, x_2); return x_3; } @@ -1032,7 +1040,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Compiler_LCNF_builtinPassManager___closed__31; -x_2 = l_Lean_Compiler_LCNF_builtinPassManager___closed__10; +x_2 = l_Lean_Compiler_LCNF_toMono; x_3 = lean_array_push(x_1, x_2); return x_3; } @@ -1042,7 +1050,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Compiler_LCNF_builtinPassManager___closed__32; -x_2 = l_Lean_Compiler_LCNF_builtinPassManager___closed__11; +x_2 = l_Lean_Compiler_LCNF_builtinPassManager___closed__10; x_3 = lean_array_push(x_1, x_2); return x_3; } @@ -1052,7 +1060,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Compiler_LCNF_builtinPassManager___closed__33; -x_2 = l_Lean_Compiler_LCNF_lambdaLifting; +x_2 = l_Lean_Compiler_LCNF_builtinPassManager___closed__11; x_3 = lean_array_push(x_1, x_2); return x_3; } @@ -1062,7 +1070,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Compiler_LCNF_builtinPassManager___closed__34; -x_2 = l_Lean_Compiler_LCNF_builtinPassManager___closed__12; +x_2 = l_Lean_Compiler_LCNF_extendJoinPointContext; x_3 = lean_array_push(x_1, x_2); return x_3; } @@ -1072,6 +1080,76 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Compiler_LCNF_builtinPassManager___closed__35; +x_2 = l_Lean_Compiler_LCNF_builtinPassManager___closed__12; +x_3 = lean_array_push(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Compiler_LCNF_builtinPassManager___closed__37() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Compiler_LCNF_builtinPassManager___closed__36; +x_2 = l_Lean_Compiler_LCNF_reduceArity; +x_3 = lean_array_push(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Compiler_LCNF_builtinPassManager___closed__38() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Compiler_LCNF_builtinPassManager___closed__37; +x_2 = l_Lean_Compiler_LCNF_builtinPassManager___closed__13; +x_3 = lean_array_push(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Compiler_LCNF_builtinPassManager___closed__39() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Compiler_LCNF_builtinPassManager___closed__38; +x_2 = l_Lean_Compiler_LCNF_builtinPassManager___closed__14; +x_3 = lean_array_push(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Compiler_LCNF_builtinPassManager___closed__40() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Compiler_LCNF_builtinPassManager___closed__39; +x_2 = l_Lean_Compiler_LCNF_lambdaLifting; +x_3 = lean_array_push(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Compiler_LCNF_builtinPassManager___closed__41() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Compiler_LCNF_builtinPassManager___closed__40; +x_2 = l_Lean_Compiler_LCNF_builtinPassManager___closed__15; +x_3 = lean_array_push(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Compiler_LCNF_builtinPassManager___closed__42() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Compiler_LCNF_builtinPassManager___closed__41; +x_2 = l_Lean_Compiler_LCNF_builtinPassManager___closed__16; +x_3 = lean_array_push(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Compiler_LCNF_builtinPassManager___closed__43() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Compiler_LCNF_builtinPassManager___closed__42; x_2 = l_Lean_Compiler_LCNF_saveMono; x_3 = lean_array_push(x_1, x_2); return x_3; @@ -1081,7 +1159,7 @@ static lean_object* _init_l_Lean_Compiler_LCNF_builtinPassManager() { _start: { lean_object* x_1; -x_1 = l_Lean_Compiler_LCNF_builtinPassManager___closed__36; +x_1 = l_Lean_Compiler_LCNF_builtinPassManager___closed__43; return x_1; } } @@ -1309,7 +1387,7 @@ lean_dec(x_1); return x_5; } } -LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_492____lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_503____lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; lean_object* x_6; @@ -1372,7 +1450,7 @@ return x_17; } } } -LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_492____lambda__2(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_503____lambda__2(lean_object* x_1, lean_object* x_2) { _start: { uint8_t x_3; @@ -1409,7 +1487,7 @@ return x_11; } } } -LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_492____lambda__3(lean_object* x_1) { +LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_503____lambda__3(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; @@ -1424,7 +1502,7 @@ x_6 = l_List_toArrayAux___rarg(x_3, x_5); return x_6; } } -LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_492____lambda__4(lean_object* x_1) { +LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_503____lambda__4(lean_object* x_1) { _start: { lean_object* x_2; @@ -1432,7 +1510,7 @@ x_2 = lean_box(0); return x_2; } } -static lean_object* _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_492____closed__1() { +static lean_object* _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_503____closed__1() { _start: { lean_object* x_1; @@ -1440,7 +1518,7 @@ x_1 = lean_mk_string_from_bytes("Lean", 4); return x_1; } } -static lean_object* _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_492____closed__2() { +static lean_object* _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_503____closed__2() { _start: { lean_object* x_1; @@ -1448,7 +1526,7 @@ x_1 = lean_mk_string_from_bytes("Compiler", 8); return x_1; } } -static lean_object* _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_492____closed__3() { +static lean_object* _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_503____closed__3() { _start: { lean_object* x_1; @@ -1456,7 +1534,7 @@ x_1 = lean_mk_string_from_bytes("LCNF", 4); return x_1; } } -static lean_object* _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_492____closed__4() { +static lean_object* _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_503____closed__4() { _start: { lean_object* x_1; @@ -1464,19 +1542,19 @@ x_1 = lean_mk_string_from_bytes("passManagerExt", 14); return x_1; } } -static lean_object* _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_492____closed__5() { +static lean_object* _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_503____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_492____closed__1; -x_2 = l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_492____closed__2; -x_3 = l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_492____closed__3; -x_4 = l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_492____closed__4; +x_1 = l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_503____closed__1; +x_2 = l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_503____closed__2; +x_3 = l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_503____closed__3; +x_4 = l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_503____closed__4; x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); return x_5; } } -static lean_object* _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_492____closed__6() { +static lean_object* _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_503____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -1488,52 +1566,52 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_492____closed__7() { +static lean_object* _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_503____closed__7() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_492____closed__6; +x_1 = l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_503____closed__6; x_2 = lean_alloc_closure((void*)(l_EStateM_pure___rarg), 2, 1); lean_closure_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_492____closed__8() { +static lean_object* _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_503____closed__8() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_492____lambda__2___boxed), 2, 0); +x_1 = lean_alloc_closure((void*)(l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_503____lambda__2___boxed), 2, 0); return x_1; } } -static lean_object* _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_492____closed__9() { +static lean_object* _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_503____closed__9() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_492____lambda__3), 1, 0); +x_1 = lean_alloc_closure((void*)(l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_503____lambda__3), 1, 0); return x_1; } } -static lean_object* _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_492____closed__10() { +static lean_object* _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_503____closed__10() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_492____lambda__4___boxed), 1, 0); +x_1 = lean_alloc_closure((void*)(l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_503____lambda__4___boxed), 1, 0); return x_1; } } -LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_492_(lean_object* x_1) { +LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_503_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; x_2 = lean_box(0); -x_3 = lean_alloc_closure((void*)(l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_492____lambda__1___boxed), 4, 1); +x_3 = lean_alloc_closure((void*)(l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_503____lambda__1___boxed), 4, 1); lean_closure_set(x_3, 0, x_2); -x_4 = l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_492____closed__5; -x_5 = l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_492____closed__7; -x_6 = l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_492____closed__8; -x_7 = l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_492____closed__9; -x_8 = l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_492____closed__10; +x_4 = l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_503____closed__5; +x_5 = l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_503____closed__7; +x_6 = l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_503____closed__8; +x_7 = l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_503____closed__9; +x_8 = l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_503____closed__10; x_9 = lean_alloc_ctor(0, 6, 0); lean_ctor_set(x_9, 0, x_4); lean_ctor_set(x_9, 1, x_5); @@ -1545,29 +1623,29 @@ x_10 = l_Lean_registerPersistentEnvExtensionUnsafe___rarg(x_9, x_1); return x_10; } } -LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_492____lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_503____lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; -x_5 = l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_492____lambda__1(x_1, x_2, x_3, x_4); +x_5 = l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_503____lambda__1(x_1, x_2, x_3, x_4); lean_dec(x_3); return x_5; } } -LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_492____lambda__2___boxed(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_503____lambda__2___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_492____lambda__2(x_1, x_2); +x_3 = l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_503____lambda__2(x_1, x_2); lean_dec(x_1); return x_3; } } -LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_492____lambda__4___boxed(lean_object* x_1) { +LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_503____lambda__4___boxed(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_492____lambda__4(x_1); +x_2 = l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_503____lambda__4(x_1); lean_dec(x_1); return x_2; } @@ -1805,7 +1883,7 @@ lean_dec(x_11); x_17 = lean_ctor_get(x_12, 1); lean_inc(x_17); lean_dec(x_12); -x_18 = l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_492____closed__1; +x_18 = l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_503____closed__1; x_19 = lean_string_dec_eq(x_17, x_18); lean_dec(x_17); if (x_19 == 0) @@ -1833,7 +1911,7 @@ return x_25; else { lean_object* x_26; uint8_t x_27; -x_26 = l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_492____closed__2; +x_26 = l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_503____closed__2; x_27 = lean_string_dec_eq(x_16, x_26); lean_dec(x_16); if (x_27 == 0) @@ -1860,7 +1938,7 @@ return x_33; else { lean_object* x_34; uint8_t x_35; -x_34 = l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_492____closed__3; +x_34 = l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_503____closed__3; x_35 = lean_string_dec_eq(x_15, x_34); lean_dec(x_15); if (x_35 == 0) @@ -2178,7 +2256,7 @@ return x_120; } } } -LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; @@ -2233,7 +2311,7 @@ return x_16; } } } -static lean_object* _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____lambda__2___closed__1() { +static lean_object* _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____lambda__2___closed__1() { _start: { lean_object* x_1; @@ -2241,16 +2319,16 @@ x_1 = lean_mk_string_from_bytes("invalid attribute 'cpass', must be global", 41) return x_1; } } -static lean_object* _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____lambda__2___closed__2() { +static lean_object* _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____lambda__2___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____lambda__2___closed__1; +x_1 = l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____lambda__2___closed__1; x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____lambda__2(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____lambda__2(lean_object* x_1, lean_object* x_2, uint8_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { lean_object* x_7; @@ -2269,7 +2347,7 @@ if (x_10 == 0) { lean_object* x_11; lean_object* x_12; uint8_t x_13; lean_dec(x_1); -x_11 = l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____lambda__2___closed__2; +x_11 = l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____lambda__2___closed__2; x_12 = l_Lean_throwError___at_Lean_registerTagAttribute___spec__1(x_11, x_4, x_5, x_8); lean_dec(x_5); lean_dec(x_4); @@ -2296,7 +2374,7 @@ else { lean_object* x_17; lean_object* x_18; x_17 = lean_box(0); -x_18 = l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____lambda__1(x_1, x_17, x_4, x_5, x_8); +x_18 = l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____lambda__1(x_1, x_17, x_4, x_5, x_8); return x_18; } } @@ -2327,7 +2405,7 @@ return x_22; } } } -static lean_object* _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____lambda__3___closed__1() { +static lean_object* _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____lambda__3___closed__1() { _start: { lean_object* x_1; @@ -2335,55 +2413,55 @@ x_1 = lean_mk_string_from_bytes("attribute cannot be erased", 26); return x_1; } } -static lean_object* _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____lambda__3___closed__2() { +static lean_object* _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____lambda__3___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____lambda__3___closed__1; +x_1 = l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____lambda__3___closed__1; x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____lambda__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____lambda__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; lean_object* x_6; -x_5 = l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____lambda__3___closed__2; +x_5 = l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____lambda__3___closed__2; x_6 = l_Lean_throwError___at_Lean_AttributeImpl_erase___default___spec__1(x_5, x_2, x_3, x_4); return x_6; } } -static lean_object* _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____closed__1() { +static lean_object* _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_492____closed__1; +x_2 = l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_503____closed__1; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____closed__2() { +static lean_object* _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____closed__1; -x_2 = l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_492____closed__2; +x_1 = l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____closed__1; +x_2 = l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_503____closed__2; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____closed__3() { +static lean_object* _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____closed__2; -x_2 = l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_492____closed__3; +x_1 = l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____closed__2; +x_2 = l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_503____closed__3; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____closed__4() { +static lean_object* _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____closed__4() { _start: { lean_object* x_1; @@ -2391,17 +2469,17 @@ x_1 = lean_mk_string_from_bytes("initFn", 6); return x_1; } } -static lean_object* _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____closed__5() { +static lean_object* _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____closed__3; -x_2 = l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____closed__4; +x_1 = l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____closed__3; +x_2 = l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____closed__4; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____closed__6() { +static lean_object* _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____closed__6() { _start: { lean_object* x_1; @@ -2409,47 +2487,47 @@ x_1 = lean_mk_string_from_bytes("_@", 2); return x_1; } } -static lean_object* _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____closed__7() { +static lean_object* _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____closed__5; -x_2 = l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____closed__6; +x_1 = l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____closed__5; +x_2 = l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____closed__6; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____closed__8() { +static lean_object* _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____closed__7; -x_2 = l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_492____closed__1; +x_1 = l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____closed__7; +x_2 = l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_503____closed__1; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____closed__9() { +static lean_object* _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____closed__8; -x_2 = l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_492____closed__2; +x_1 = l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____closed__8; +x_2 = l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_503____closed__2; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____closed__10() { +static lean_object* _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____closed__9; -x_2 = l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_492____closed__3; +x_1 = l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____closed__9; +x_2 = l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_503____closed__3; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____closed__11() { +static lean_object* _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____closed__11() { _start: { lean_object* x_1; @@ -2457,17 +2535,17 @@ x_1 = lean_mk_string_from_bytes("Passes", 6); return x_1; } } -static lean_object* _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____closed__12() { +static lean_object* _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____closed__12() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____closed__10; -x_2 = l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____closed__11; +x_1 = l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____closed__10; +x_2 = l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____closed__11; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____closed__13() { +static lean_object* _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____closed__13() { _start: { lean_object* x_1; @@ -2475,27 +2553,27 @@ x_1 = lean_mk_string_from_bytes("_hyg", 4); return x_1; } } -static lean_object* _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____closed__14() { +static lean_object* _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____closed__14() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____closed__12; -x_2 = l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____closed__13; +x_1 = l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____closed__12; +x_2 = l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____closed__13; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____closed__15() { +static lean_object* _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____closed__15() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____closed__14; -x_2 = lean_unsigned_to_nat(932u); +x_1 = l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____closed__14; +x_2 = lean_unsigned_to_nat(943u); x_3 = l_Lean_Name_num___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____closed__16() { +static lean_object* _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____closed__16() { _start: { lean_object* x_1; @@ -2503,17 +2581,17 @@ x_1 = lean_mk_string_from_bytes("cpass", 5); return x_1; } } -static lean_object* _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____closed__17() { +static lean_object* _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____closed__17() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____closed__16; +x_2 = l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____closed__16; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____closed__18() { +static lean_object* _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____closed__18() { _start: { lean_object* x_1; @@ -2521,13 +2599,13 @@ x_1 = lean_mk_string_from_bytes("compiler passes for the code generator", 38); return x_1; } } -static lean_object* _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____closed__19() { +static lean_object* _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____closed__19() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; -x_1 = l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____closed__15; -x_2 = l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____closed__17; -x_3 = l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____closed__18; +x_1 = l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____closed__15; +x_2 = l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____closed__17; +x_3 = l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____closed__18; x_4 = 1; x_5 = lean_alloc_ctor(0, 3, 1); lean_ctor_set(x_5, 0, x_1); @@ -2537,29 +2615,29 @@ lean_ctor_set_uint8(x_5, sizeof(void*)*3, x_4); return x_5; } } -static lean_object* _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____closed__20() { +static lean_object* _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____closed__20() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____lambda__2___boxed), 6, 0); +x_1 = lean_alloc_closure((void*)(l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____lambda__2___boxed), 6, 0); return x_1; } } -static lean_object* _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____closed__21() { +static lean_object* _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____closed__21() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____lambda__3___boxed), 4, 0); +x_1 = lean_alloc_closure((void*)(l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____lambda__3___boxed), 4, 0); return x_1; } } -static lean_object* _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____closed__22() { +static lean_object* _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____closed__22() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____closed__19; -x_2 = l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____closed__20; -x_3 = l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____closed__21; +x_1 = l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____closed__19; +x_2 = l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____closed__20; +x_3 = l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____closed__21; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -2567,80 +2645,80 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932_(lean_object* x_1) { +LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; -x_2 = l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____closed__22; +x_2 = l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____closed__22; x_3 = l_Lean_registerBuiltinAttribute(x_2, x_1); return x_3; } } -LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; -x_6 = l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____lambda__1(x_1, x_2, x_3, x_4, x_5); +x_6 = l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____lambda__1(x_1, x_2, x_3, x_4, x_5); lean_dec(x_2); return x_6; } } -LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____lambda__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____lambda__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { uint8_t x_7; lean_object* x_8; x_7 = lean_unbox(x_3); lean_dec(x_3); -x_8 = l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____lambda__2(x_1, x_2, x_7, x_4, x_5, x_6); +x_8 = l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____lambda__2(x_1, x_2, x_7, x_4, x_5, x_6); return x_8; } } -LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____lambda__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____lambda__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; -x_5 = l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____lambda__3(x_1, x_2, x_3, x_4); +x_5 = l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____lambda__3(x_1, x_2, x_3, x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); return x_5; } } -static lean_object* _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_1112____closed__1() { +static lean_object* _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_1123____closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_492____closed__2; +x_1 = l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_503____closed__2; x_2 = l_Lean_Compiler_LCNF_saveBase___closed__1; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_1112____closed__2() { +static lean_object* _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_1123____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_492____closed__2; +x_1 = l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_503____closed__2; x_2 = l_Lean_Compiler_LCNF_saveMono___closed__1; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_1112____closed__3() { +static lean_object* _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_1123____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_492____closed__2; +x_1 = l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_503____closed__2; x_2 = l_Lean_Compiler_LCNF_trace___closed__1; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_1112_(lean_object* x_1) { +LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_1123_(lean_object* x_1) { _start: { lean_object* x_2; uint8_t x_3; lean_object* x_4; -x_2 = l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_1112____closed__1; +x_2 = l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_1123____closed__1; x_3 = 1; x_4 = l_Lean_registerTraceClass(x_2, x_3, x_1); if (lean_obj_tag(x_4) == 0) @@ -2649,7 +2727,7 @@ lean_object* x_5; lean_object* x_6; lean_object* x_7; x_5 = lean_ctor_get(x_4, 1); lean_inc(x_5); lean_dec(x_4); -x_6 = l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_1112____closed__2; +x_6 = l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_1123____closed__2; x_7 = l_Lean_registerTraceClass(x_6, x_3, x_5); if (lean_obj_tag(x_7) == 0) { @@ -2657,7 +2735,7 @@ lean_object* x_8; lean_object* x_9; lean_object* x_10; x_8 = lean_ctor_get(x_7, 1); lean_inc(x_8); lean_dec(x_7); -x_9 = l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_1112____closed__3; +x_9 = l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_1123____closed__3; x_10 = l_Lean_registerTraceClass(x_9, x_3, x_8); return x_10; } @@ -2721,6 +2799,7 @@ lean_object* initialize_Lean_Compiler_LCNF_PhaseExt(uint8_t builtin, lean_object lean_object* initialize_Lean_Compiler_LCNF_ToMono(uint8_t builtin, lean_object*); lean_object* initialize_Lean_Compiler_LCNF_LambdaLifting(uint8_t builtin, lean_object*); lean_object* initialize_Lean_Compiler_LCNF_FloatLetIn(uint8_t builtin, lean_object*); +lean_object* initialize_Lean_Compiler_LCNF_ReduceArity(uint8_t builtin, lean_object*); static bool _G_initialized = false; LEAN_EXPORT lean_object* initialize_Lean_Compiler_LCNF_Passes(uint8_t builtin, lean_object* w) { lean_object * res; @@ -2765,6 +2844,9 @@ lean_dec_ref(res); res = initialize_Lean_Compiler_LCNF_FloatLetIn(builtin, lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +res = initialize_Lean_Compiler_LCNF_ReduceArity(builtin, lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); l_Lean_Compiler_LCNF_init___closed__1 = _init_l_Lean_Compiler_LCNF_init___closed__1(); lean_mark_persistent(l_Lean_Compiler_LCNF_init___closed__1); l_Lean_Compiler_LCNF_init___closed__2 = _init_l_Lean_Compiler_LCNF_init___closed__2(); @@ -2873,29 +2955,43 @@ l_Lean_Compiler_LCNF_builtinPassManager___closed__35 = _init_l_Lean_Compiler_LCN lean_mark_persistent(l_Lean_Compiler_LCNF_builtinPassManager___closed__35); l_Lean_Compiler_LCNF_builtinPassManager___closed__36 = _init_l_Lean_Compiler_LCNF_builtinPassManager___closed__36(); lean_mark_persistent(l_Lean_Compiler_LCNF_builtinPassManager___closed__36); +l_Lean_Compiler_LCNF_builtinPassManager___closed__37 = _init_l_Lean_Compiler_LCNF_builtinPassManager___closed__37(); +lean_mark_persistent(l_Lean_Compiler_LCNF_builtinPassManager___closed__37); +l_Lean_Compiler_LCNF_builtinPassManager___closed__38 = _init_l_Lean_Compiler_LCNF_builtinPassManager___closed__38(); +lean_mark_persistent(l_Lean_Compiler_LCNF_builtinPassManager___closed__38); +l_Lean_Compiler_LCNF_builtinPassManager___closed__39 = _init_l_Lean_Compiler_LCNF_builtinPassManager___closed__39(); +lean_mark_persistent(l_Lean_Compiler_LCNF_builtinPassManager___closed__39); +l_Lean_Compiler_LCNF_builtinPassManager___closed__40 = _init_l_Lean_Compiler_LCNF_builtinPassManager___closed__40(); +lean_mark_persistent(l_Lean_Compiler_LCNF_builtinPassManager___closed__40); +l_Lean_Compiler_LCNF_builtinPassManager___closed__41 = _init_l_Lean_Compiler_LCNF_builtinPassManager___closed__41(); +lean_mark_persistent(l_Lean_Compiler_LCNF_builtinPassManager___closed__41); +l_Lean_Compiler_LCNF_builtinPassManager___closed__42 = _init_l_Lean_Compiler_LCNF_builtinPassManager___closed__42(); +lean_mark_persistent(l_Lean_Compiler_LCNF_builtinPassManager___closed__42); +l_Lean_Compiler_LCNF_builtinPassManager___closed__43 = _init_l_Lean_Compiler_LCNF_builtinPassManager___closed__43(); +lean_mark_persistent(l_Lean_Compiler_LCNF_builtinPassManager___closed__43); l_Lean_Compiler_LCNF_builtinPassManager = _init_l_Lean_Compiler_LCNF_builtinPassManager(); lean_mark_persistent(l_Lean_Compiler_LCNF_builtinPassManager); -l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_492____closed__1 = _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_492____closed__1(); -lean_mark_persistent(l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_492____closed__1); -l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_492____closed__2 = _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_492____closed__2(); -lean_mark_persistent(l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_492____closed__2); -l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_492____closed__3 = _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_492____closed__3(); -lean_mark_persistent(l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_492____closed__3); -l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_492____closed__4 = _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_492____closed__4(); -lean_mark_persistent(l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_492____closed__4); -l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_492____closed__5 = _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_492____closed__5(); -lean_mark_persistent(l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_492____closed__5); -l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_492____closed__6 = _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_492____closed__6(); -lean_mark_persistent(l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_492____closed__6); -l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_492____closed__7 = _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_492____closed__7(); -lean_mark_persistent(l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_492____closed__7); -l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_492____closed__8 = _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_492____closed__8(); -lean_mark_persistent(l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_492____closed__8); -l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_492____closed__9 = _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_492____closed__9(); -lean_mark_persistent(l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_492____closed__9); -l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_492____closed__10 = _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_492____closed__10(); -lean_mark_persistent(l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_492____closed__10); -if (builtin) {res = l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_492_(lean_io_mk_world()); +l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_503____closed__1 = _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_503____closed__1(); +lean_mark_persistent(l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_503____closed__1); +l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_503____closed__2 = _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_503____closed__2(); +lean_mark_persistent(l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_503____closed__2); +l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_503____closed__3 = _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_503____closed__3(); +lean_mark_persistent(l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_503____closed__3); +l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_503____closed__4 = _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_503____closed__4(); +lean_mark_persistent(l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_503____closed__4); +l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_503____closed__5 = _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_503____closed__5(); +lean_mark_persistent(l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_503____closed__5); +l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_503____closed__6 = _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_503____closed__6(); +lean_mark_persistent(l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_503____closed__6); +l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_503____closed__7 = _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_503____closed__7(); +lean_mark_persistent(l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_503____closed__7); +l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_503____closed__8 = _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_503____closed__8(); +lean_mark_persistent(l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_503____closed__8); +l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_503____closed__9 = _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_503____closed__9(); +lean_mark_persistent(l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_503____closed__9); +l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_503____closed__10 = _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_503____closed__10(); +lean_mark_persistent(l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_503____closed__10); +if (builtin) {res = l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_503_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; l_Lean_Compiler_LCNF_passManagerExt = lean_io_result_get_value(res); lean_mark_persistent(l_Lean_Compiler_LCNF_passManagerExt); @@ -2922,68 +3018,68 @@ l_Lean_Compiler_LCNF_addPass___closed__8 = _init_l_Lean_Compiler_LCNF_addPass___ lean_mark_persistent(l_Lean_Compiler_LCNF_addPass___closed__8); l_Lean_Compiler_LCNF_addPass___closed__9 = _init_l_Lean_Compiler_LCNF_addPass___closed__9(); lean_mark_persistent(l_Lean_Compiler_LCNF_addPass___closed__9); -l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____lambda__2___closed__1 = _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____lambda__2___closed__1(); -lean_mark_persistent(l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____lambda__2___closed__1); -l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____lambda__2___closed__2 = _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____lambda__2___closed__2(); -lean_mark_persistent(l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____lambda__2___closed__2); -l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____lambda__3___closed__1 = _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____lambda__3___closed__1(); -lean_mark_persistent(l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____lambda__3___closed__1); -l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____lambda__3___closed__2 = _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____lambda__3___closed__2(); -lean_mark_persistent(l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____lambda__3___closed__2); -l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____closed__1 = _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____closed__1(); -lean_mark_persistent(l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____closed__1); -l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____closed__2 = _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____closed__2(); -lean_mark_persistent(l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____closed__2); -l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____closed__3 = _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____closed__3(); -lean_mark_persistent(l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____closed__3); -l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____closed__4 = _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____closed__4(); -lean_mark_persistent(l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____closed__4); -l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____closed__5 = _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____closed__5(); -lean_mark_persistent(l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____closed__5); -l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____closed__6 = _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____closed__6(); -lean_mark_persistent(l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____closed__6); -l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____closed__7 = _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____closed__7(); -lean_mark_persistent(l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____closed__7); -l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____closed__8 = _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____closed__8(); -lean_mark_persistent(l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____closed__8); -l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____closed__9 = _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____closed__9(); -lean_mark_persistent(l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____closed__9); -l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____closed__10 = _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____closed__10(); -lean_mark_persistent(l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____closed__10); -l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____closed__11 = _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____closed__11(); -lean_mark_persistent(l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____closed__11); -l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____closed__12 = _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____closed__12(); -lean_mark_persistent(l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____closed__12); -l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____closed__13 = _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____closed__13(); -lean_mark_persistent(l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____closed__13); -l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____closed__14 = _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____closed__14(); -lean_mark_persistent(l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____closed__14); -l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____closed__15 = _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____closed__15(); -lean_mark_persistent(l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____closed__15); -l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____closed__16 = _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____closed__16(); -lean_mark_persistent(l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____closed__16); -l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____closed__17 = _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____closed__17(); -lean_mark_persistent(l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____closed__17); -l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____closed__18 = _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____closed__18(); -lean_mark_persistent(l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____closed__18); -l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____closed__19 = _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____closed__19(); -lean_mark_persistent(l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____closed__19); -l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____closed__20 = _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____closed__20(); -lean_mark_persistent(l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____closed__20); -l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____closed__21 = _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____closed__21(); -lean_mark_persistent(l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____closed__21); -l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____closed__22 = _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____closed__22(); -lean_mark_persistent(l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932____closed__22); -res = l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_932_(lean_io_mk_world()); +l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____lambda__2___closed__1 = _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____lambda__2___closed__1(); +lean_mark_persistent(l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____lambda__2___closed__1); +l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____lambda__2___closed__2 = _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____lambda__2___closed__2(); +lean_mark_persistent(l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____lambda__2___closed__2); +l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____lambda__3___closed__1 = _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____lambda__3___closed__1(); +lean_mark_persistent(l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____lambda__3___closed__1); +l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____lambda__3___closed__2 = _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____lambda__3___closed__2(); +lean_mark_persistent(l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____lambda__3___closed__2); +l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____closed__1 = _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____closed__1(); +lean_mark_persistent(l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____closed__1); +l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____closed__2 = _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____closed__2(); +lean_mark_persistent(l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____closed__2); +l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____closed__3 = _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____closed__3(); +lean_mark_persistent(l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____closed__3); +l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____closed__4 = _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____closed__4(); +lean_mark_persistent(l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____closed__4); +l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____closed__5 = _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____closed__5(); +lean_mark_persistent(l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____closed__5); +l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____closed__6 = _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____closed__6(); +lean_mark_persistent(l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____closed__6); +l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____closed__7 = _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____closed__7(); +lean_mark_persistent(l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____closed__7); +l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____closed__8 = _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____closed__8(); +lean_mark_persistent(l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____closed__8); +l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____closed__9 = _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____closed__9(); +lean_mark_persistent(l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____closed__9); +l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____closed__10 = _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____closed__10(); +lean_mark_persistent(l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____closed__10); +l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____closed__11 = _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____closed__11(); +lean_mark_persistent(l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____closed__11); +l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____closed__12 = _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____closed__12(); +lean_mark_persistent(l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____closed__12); +l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____closed__13 = _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____closed__13(); +lean_mark_persistent(l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____closed__13); +l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____closed__14 = _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____closed__14(); +lean_mark_persistent(l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____closed__14); +l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____closed__15 = _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____closed__15(); +lean_mark_persistent(l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____closed__15); +l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____closed__16 = _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____closed__16(); +lean_mark_persistent(l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____closed__16); +l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____closed__17 = _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____closed__17(); +lean_mark_persistent(l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____closed__17); +l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____closed__18 = _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____closed__18(); +lean_mark_persistent(l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____closed__18); +l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____closed__19 = _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____closed__19(); +lean_mark_persistent(l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____closed__19); +l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____closed__20 = _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____closed__20(); +lean_mark_persistent(l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____closed__20); +l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____closed__21 = _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____closed__21(); +lean_mark_persistent(l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____closed__21); +l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____closed__22 = _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____closed__22(); +lean_mark_persistent(l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943____closed__22); +res = l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_943_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_1112____closed__1 = _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_1112____closed__1(); -lean_mark_persistent(l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_1112____closed__1); -l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_1112____closed__2 = _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_1112____closed__2(); -lean_mark_persistent(l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_1112____closed__2); -l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_1112____closed__3 = _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_1112____closed__3(); -lean_mark_persistent(l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_1112____closed__3); -res = l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_1112_(lean_io_mk_world()); +l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_1123____closed__1 = _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_1123____closed__1(); +lean_mark_persistent(l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_1123____closed__1); +l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_1123____closed__2 = _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_1123____closed__2(); +lean_mark_persistent(l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_1123____closed__2); +l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_1123____closed__3 = _init_l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_1123____closed__3(); +lean_mark_persistent(l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_1123____closed__3); +res = l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_Passes___hyg_1123_(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/Compiler/LCNF/Probing.c b/stage0/stdlib/Lean/Compiler/LCNF/Probing.c index f1bd65099c..ba3032504b 100644 --- a/stage0/stdlib/Lean/Compiler/LCNF/Probing.c +++ b/stage0/stdlib/Lean/Compiler/LCNF/Probing.c @@ -13,9 +13,11 @@ #ifdef __cplusplus extern "C" { #endif +static lean_object* l_Lean_Compiler_LCNF_Probe_sortedBySize___closed__1; LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Compiler_LCNF_Probe_getExprs_start___spec__9(lean_object*, uint8_t, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Compiler_LCNF_Probe_filterByReturn___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_addMessageContextPartial___at_Lean_Core_instAddMessageContextCoreM___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Probe_getJps_go(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at_Lean_Compiler_LCNF_Probe_filterByCases_go___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Compiler_LCNF_Probe_runOnModule___rarg___closed__3; LEAN_EXPORT lean_object* l_Lean_addTrace___at_Lean_Compiler_LCNF_Probe_toPass___elambda__1___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -24,12 +26,14 @@ lean_object* l_Lean_registerTraceClass(lean_object*, uint8_t, lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Compiler_LCNF_Probe_filterByJp___spec__1(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_stringToMessageData(lean_object*); lean_object* lean_mk_empty_array_with_capacity(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Probe_head___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Probe_filterByJmp___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Name_str___override(lean_object*, lean_object*); lean_object* lean_nat_div(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Compiler_LCNF_Probe_getExprs_start___spec__12___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Code_forEachExpr_visitExpr___at_Lean_Compiler_LCNF_Probe_getExprs_start___spec__4___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PersistentEnvExtension_getModuleEntries___rarg(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Probe_sortedBySize___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Probe_getExprs(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at_Lean_Compiler_LCNF_Probe_filterByFunDecl_go___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Compiler_LCNF_Probe_map___spec__1(lean_object*, lean_object*); @@ -40,6 +44,7 @@ lean_object* lean_array_uget(lean_object*, size_t); LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Probe_runOnModule(lean_object*); LEAN_EXPORT lean_object* l_Array_qsort_sort___at_Lean_Compiler_LCNF_Probe_sorted___spec__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Probe_filterByJp___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Probe_getJps_start(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_addTrace___at_Lean_Compiler_LCNF_Probe_toPass___elambda__1___spec__2___closed__6; LEAN_EXPORT lean_object* l_Array_qsort_sort___at_Lean_Compiler_LCNF_Probe_sorted___spec__1(lean_object*); LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Probe_filterByFunDecl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -56,7 +61,9 @@ LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Code_forEachExpr_visitType___at_Le lean_object* lean_array_uset(lean_object*, size_t, lean_object*); LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at_Lean_Compiler_LCNF_Probe_filterByLet_go___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Compiler_LCNF_Probe_map___spec__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_qsort_sort___at_Lean_Compiler_LCNF_Probe_sortedBySize___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Compiler_LCNF_Probe_runOnModule___rarg___closed__5; +static lean_object* l_Array_qsort_sort___at_Lean_Compiler_LCNF_Probe_sortedBySize___spec__2___closed__1; static lean_object* l_Lean_Compiler_LCNF_Probe_toPass___elambda__1___rarg___closed__1; LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Probe_runGlobally(lean_object*); LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Probe_filterByCases(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -74,15 +81,18 @@ extern lean_object* l_instInhabitedNat; static lean_object* l_Lean_Compiler_LCNF_Probe_toPass___elambda__1___rarg___closed__5; LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Compiler_LCNF_Probe_countUnique___spec__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Name_mkStr2(lean_object*, lean_object*); +lean_object* l_Array_toSubarray___rarg(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Compiler_LCNF_Probe_getExprs_start___spec__11(lean_object*, uint8_t, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_push(lean_object*, lean_object*); lean_object* lean_array_get_size(lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Compiler_LCNF_Probe_filterByCases___spec__1(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_string_append(lean_object*, lean_object*); +LEAN_EXPORT uint8_t l_Array_qsort_sort___at_Lean_Compiler_LCNF_Probe_sortedBySize___spec__2___lambda__1(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Probe_getExprs_go___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Compiler_LCNF_Probe_filterByFunDecl___spec__1(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Probe_filterByFunDecl_go(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Probe_filter(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Probe_tail___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Probe_countUnique___boxed(lean_object*, lean_object*); lean_object* l_Array_qpartition_loop___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Probe_runGlobally___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -90,6 +100,7 @@ LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Compiler_LCNF_Probe LEAN_EXPORT lean_object* l_Array_qsort_sort___at_Lean_Compiler_LCNF_Probe_sorted___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_usize_dec_lt(size_t, size_t); LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Probe_filterByLet(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_qsort_sort___at_Lean_Compiler_LCNF_Probe_sortedBySize___spec__2(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Compiler_LCNF_Probe_filterByLet___spec__1(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Probe_filterByLet_go(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Probe_toString___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -103,15 +114,18 @@ LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Compiler_LCNF_Probe LEAN_EXPORT lean_object* l_Bind_kleisliRight___at_Lean_Compiler_LCNF_Probe_countUniqueSorted___spec__2(lean_object*); lean_object* l_Lean_HashMapImp_find_x3f___at_Lean_ForEachExpr_visit___spec__1(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Probe_countUnique___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Probe_getJps_start___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Compiler_LCNF_Probe_filter___spec__1___rarg(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at_Lean_Compiler_LCNF_Probe_filterByJp_go___spec__1(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Probe_filterByUnreach(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_inheritedTraceOptions; +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Compiler_LCNF_Probe_sortedBySize___spec__1(size_t, size_t, lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Compiler_LCNF_Probe_getExprs_start___spec__13(lean_object*, uint8_t, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkHashMapImp___rarg(lean_object*); LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at_Lean_Compiler_LCNF_Probe_filterByUnreach_go___spec__1(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_nat_dec_eq(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Compiler_LCNF_Probe_runOnModule___spec__1(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Probe_getJps(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Decl_forEachExpr_visit___at_Lean_Compiler_LCNF_Probe_getExprs_start___spec__2(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at_Lean_Compiler_LCNF_Probe_filterByFun_go___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Compiler_LCNF_Probe_getExprs_start___spec__10(lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -121,6 +135,7 @@ lean_object* lean_nat_sub(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Compiler_LCNF_Probe_toString___spec__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Probe_map___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Probe_countUniqueSorted___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Probe_tail___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Compiler_LCNF_Probe_filterByUnreach___spec__1(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Probe_countUnique(lean_object*, lean_object*); lean_object* lean_array_swap(lean_object*, lean_object*, lean_object*); @@ -133,9 +148,11 @@ LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Probe_filterByJp_go(lean_object*, LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Compiler_LCNF_Probe_getExprs_start___spec__13___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Probe_getExprs_start___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at_Lean_Compiler_LCNF_Probe_filterByReturn_go___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Probe_tail(lean_object*); lean_object* lean_array_get(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Probe_filterByLet___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Compiler_LCNF_Probe_getExprs_start___spec__12(lean_object*, uint8_t, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Probe_getJps___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Probe_filterByJp(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Compiler_LCNF_Probe_sum___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Bind_kleisliRight___at_Lean_Compiler_LCNF_Probe_countUniqueSorted___spec__2___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -170,12 +187,15 @@ lean_object* l_Lean_HashMap_insert___at_Lean_ForEachExpr_visit___spec__3(lean_ob static lean_object* l_Lean_addTrace___at_Lean_Compiler_LCNF_Probe_toPass___elambda__1___spec__2___closed__1; static lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Compiler_LCNF_Probe_getExprs_start___spec__14___closed__1; LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Compiler_LCNF_Probe_filterByJp___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Compiler_LCNF_Probe_sortedBySize___spec__1___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Code_forEachExpr_visitType___at_Lean_Compiler_LCNF_Probe_getExprs_start___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Probe_toPass___elambda__1(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Probe_sortedBySize(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Probe_getExprs_go(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); size_t lean_usize_of_nat(lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Compiler_LCNF_Probe_toString___spec__1___rarg(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Probe_countUniqueSorted___boxed(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Compiler_LCNF_Probe_getJps_start___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Decl_forEachExpr___at_Lean_Compiler_LCNF_Probe_getExprs_start___spec__1(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Code_forEachExpr_visitParam___at_Lean_Compiler_LCNF_Probe_getExprs_start___spec__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_isTracingEnabledFor___at_Lean_Compiler_LCNF_Probe_toPass___elambda__1___spec__1___closed__1; @@ -195,30 +215,38 @@ lean_object* l_Lean_HashMapImp_find_x3f___rarg(lean_object*, lean_object*, lean_ LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Probe_declNames(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT uint8_t l_Array_qsort_sort___at_Lean_Compiler_LCNF_Probe_countUniqueSorted___spec__1___rarg___lambda__1(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Compiler_LCNF_Probe_getExprs_start___spec__11___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t l_Lean_Name_lt(lean_object*, lean_object*); uint8_t lean_nat_dec_le(lean_object*, lean_object*); lean_object* l_Lean_Compiler_LCNF_AltCore_getCode(lean_object*); LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at_Lean_Compiler_LCNF_Probe_filterByFunDecl_go___spec__1(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l___private_Lean_Util_Trace_0__Lean_checkTraceOption(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Compiler_LCNF_Probe_runOnModule___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Compiler_LCNF_Probe_getJps_go___spec__1(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Compiler_LCNF_LCtx_toLocalContext(lean_object*); LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at_Lean_Compiler_LCNF_Probe_filterByCases_go___spec__1(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Compiler_LCNF_CompilerM_run___rarg(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Probe_filterByCases_go(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Probe_countUniqueSorted___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Probe_getExprs___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Compiler_LCNF_Probe_getJps_start___spec__1(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Probe_filterByFun_go(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Compiler_LCNF_Probe_filter___spec__1(lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Compiler_LCNF_Probe_declNames___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_ofSubarray___rarg(lean_object*); LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Decl_forEachExpr_visit___at_Lean_Compiler_LCNF_Probe_getExprs_start___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_st_ref_set(lean_object*, lean_object*, lean_object*); +uint8_t lean_nat_dec_eq(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_ForEachExpr_visit___at_Lean_Compiler_LCNF_Probe_getExprs_start___spec__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Compiler_LCNF_Probe_filterByUnreach___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Compiler_LCNF_Probe_filterByJmp___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at_Lean_Compiler_LCNF_Probe_filterByLet_go___spec__1(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_Compiler_LCNF_instInhabitedDecl; lean_object* l_Lean_Environment_allImportedModuleNames(lean_object*); LEAN_EXPORT lean_object* l_Std_Range_forIn_loop___at_Lean_Compiler_LCNF_Probe_runGlobally___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_qsort_sort___at_Lean_Compiler_LCNF_Probe_sortedBySize___spec__2___lambda__1___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Probe_filterByFun(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at_Lean_Compiler_LCNF_Probe_filterByUnreach_go___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Probe_head(lean_object*); LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Compiler_LCNF_Probe_runOnModule___spec__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Probe_filterByCases___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_qsort_sort___at_Lean_Compiler_LCNF_Probe_countUniqueSorted___spec__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); @@ -229,9 +257,10 @@ lean_object* l_Lean_HashMap_insert___rarg(lean_object*, lean_object*, lean_objec static lean_object* l_Array_qsort_sort___at_Lean_Compiler_LCNF_Probe_countUniqueSorted___spec__1___rarg___closed__1; LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Probe_toPass___elambda__1___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Probe_countUnique___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Compiler_LCNF_Probe_getJps_go___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Compiler_LCNF_Probe_filterByCases___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at_Lean_Compiler_LCNF_Probe_toPass___elambda__1___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Probe_initFn____x40_Lean_Compiler_LCNF_Probing___hyg_3534_(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Probe_initFn____x40_Lean_Compiler_LCNF_Probing___hyg_4146_(lean_object*); LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at_Lean_Compiler_LCNF_Probe_filterByJmp_go___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Probe_filterByReturn___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Probe_countUniqueSorted(lean_object*, lean_object*); @@ -240,12 +269,14 @@ lean_object* l_Lean_Environment_getModuleIdx_x3f(lean_object*, lean_object*); static lean_object* l_Lean_Compiler_LCNF_Probe_toPass___elambda__1___rarg___closed__4; static lean_object* l_Lean_Compiler_LCNF_Probe_runOnModule___rarg___closed__4; LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Code_forEachExpr_visit___at_Lean_Compiler_LCNF_Probe_getExprs_start___spec__7(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Probe_head___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at_Lean_Compiler_LCNF_Probe_filterByJmp_go___spec__1(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Probe_runOnModule___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_ForEachExpr_visit___at_Lean_Compiler_LCNF_Probe_getExprs_start___spec__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Compiler_LCNF_Probe_filterByLet___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Compiler_LCNF_Probe_runOnModule___rarg___closed__1; LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Probe_filterByJmp_go(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Compiler_LCNF_Decl_size(lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Compiler_LCNF_Probe_toString___spec__1(lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Compiler_LCNF_Probe_map___spec__1___rarg(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Compiler_LCNF_Probe_countUnique___spec__1(lean_object*); @@ -790,6 +821,521 @@ lean_dec(x_2); return x_10; } } +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Compiler_LCNF_Probe_sortedBySize___spec__1(size_t x_1, size_t x_2, lean_object* x_3) { +_start: +{ +uint8_t x_4; +x_4 = lean_usize_dec_lt(x_2, x_1); +if (x_4 == 0) +{ +return x_3; +} +else +{ +lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; size_t x_10; size_t x_11; lean_object* x_12; +x_5 = lean_array_uget(x_3, x_2); +x_6 = lean_unsigned_to_nat(0u); +x_7 = lean_array_uset(x_3, x_2, x_6); +lean_inc(x_5); +x_8 = l_Lean_Compiler_LCNF_Decl_size(x_5); +x_9 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_9, 0, x_8); +lean_ctor_set(x_9, 1, x_5); +x_10 = 1; +x_11 = lean_usize_add(x_2, x_10); +x_12 = lean_array_uset(x_7, x_2, x_9); +x_2 = x_11; +x_3 = x_12; +goto _start; +} +} +} +LEAN_EXPORT uint8_t l_Array_qsort_sort___at_Lean_Compiler_LCNF_Probe_sortedBySize___spec__2___lambda__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; uint8_t x_7; +x_3 = lean_ctor_get(x_1, 0); +x_4 = lean_ctor_get(x_1, 1); +x_5 = lean_ctor_get(x_2, 0); +x_6 = lean_ctor_get(x_2, 1); +x_7 = lean_nat_dec_eq(x_3, x_5); +if (x_7 == 0) +{ +uint8_t x_8; +x_8 = lean_nat_dec_lt(x_3, x_5); +return x_8; +} +else +{ +lean_object* x_9; lean_object* x_10; uint8_t x_11; +x_9 = lean_ctor_get(x_4, 0); +x_10 = lean_ctor_get(x_6, 0); +x_11 = l_Lean_Name_lt(x_9, x_10); +return x_11; +} +} +} +static lean_object* _init_l_Array_qsort_sort___at_Lean_Compiler_LCNF_Probe_sortedBySize___spec__2___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Array_qsort_sort___at_Lean_Compiler_LCNF_Probe_sortedBySize___spec__2___lambda__1___boxed), 2, 0); +return x_1; +} +} +LEAN_EXPORT lean_object* l_Array_qsort_sort___at_Lean_Compiler_LCNF_Probe_sortedBySize___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +lean_object* x_5; uint8_t x_14; +x_14 = lean_nat_dec_lt(x_3, x_4); +if (x_14 == 0) +{ +lean_dec(x_3); +lean_dec(x_1); +return x_2; +} +else +{ +lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; uint8_t x_91; +x_15 = lean_nat_add(x_3, x_4); +x_16 = lean_unsigned_to_nat(2u); +x_17 = lean_nat_div(x_15, x_16); +lean_dec(x_15); +lean_inc(x_1); +x_85 = lean_array_get(x_1, x_2, x_17); +lean_inc(x_1); +x_86 = lean_array_get(x_1, x_2, x_3); +x_87 = lean_ctor_get(x_85, 0); +lean_inc(x_87); +x_88 = lean_ctor_get(x_85, 1); +lean_inc(x_88); +lean_dec(x_85); +x_89 = lean_ctor_get(x_86, 0); +lean_inc(x_89); +x_90 = lean_ctor_get(x_86, 1); +lean_inc(x_90); +lean_dec(x_86); +x_91 = lean_nat_dec_eq(x_87, x_89); +if (x_91 == 0) +{ +uint8_t x_92; +lean_dec(x_90); +lean_dec(x_88); +x_92 = lean_nat_dec_lt(x_87, x_89); +lean_dec(x_89); +lean_dec(x_87); +if (x_92 == 0) +{ +x_18 = x_2; +goto block_84; +} +else +{ +lean_object* x_93; +x_93 = lean_array_swap(x_2, x_3, x_17); +x_18 = x_93; +goto block_84; +} +} +else +{ +lean_object* x_94; lean_object* x_95; uint8_t x_96; +lean_dec(x_89); +lean_dec(x_87); +x_94 = lean_ctor_get(x_88, 0); +lean_inc(x_94); +lean_dec(x_88); +x_95 = lean_ctor_get(x_90, 0); +lean_inc(x_95); +lean_dec(x_90); +x_96 = l_Lean_Name_lt(x_94, x_95); +lean_dec(x_95); +lean_dec(x_94); +if (x_96 == 0) +{ +x_18 = x_2; +goto block_84; +} +else +{ +lean_object* x_97; +x_97 = lean_array_swap(x_2, x_3, x_17); +x_18 = x_97; +goto block_84; +} +} +block_84: +{ +lean_object* x_19; lean_object* x_45; lean_object* x_46; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; uint8_t x_75; +lean_inc(x_1); +x_45 = lean_array_get(x_1, x_18, x_4); +lean_inc(x_1); +x_70 = lean_array_get(x_1, x_18, x_3); +x_71 = lean_ctor_get(x_45, 0); +lean_inc(x_71); +x_72 = lean_ctor_get(x_45, 1); +lean_inc(x_72); +x_73 = lean_ctor_get(x_70, 0); +lean_inc(x_73); +x_74 = lean_ctor_get(x_70, 1); +lean_inc(x_74); +lean_dec(x_70); +x_75 = lean_nat_dec_eq(x_71, x_73); +if (x_75 == 0) +{ +uint8_t x_76; +lean_dec(x_74); +lean_dec(x_72); +x_76 = lean_nat_dec_lt(x_71, x_73); +lean_dec(x_73); +lean_dec(x_71); +if (x_76 == 0) +{ +lean_object* x_77; +x_77 = lean_box(0); +x_46 = x_77; +goto block_69; +} +else +{ +lean_object* x_78; +lean_dec(x_45); +x_78 = lean_box(0); +x_19 = x_78; +goto block_44; +} +} +else +{ +lean_object* x_79; lean_object* x_80; uint8_t x_81; +lean_dec(x_73); +lean_dec(x_71); +x_79 = lean_ctor_get(x_72, 0); +lean_inc(x_79); +lean_dec(x_72); +x_80 = lean_ctor_get(x_74, 0); +lean_inc(x_80); +lean_dec(x_74); +x_81 = l_Lean_Name_lt(x_79, x_80); +lean_dec(x_80); +lean_dec(x_79); +if (x_81 == 0) +{ +lean_object* x_82; +x_82 = lean_box(0); +x_46 = x_82; +goto block_69; +} +else +{ +lean_object* x_83; +lean_dec(x_45); +x_83 = lean_box(0); +x_19 = x_83; +goto block_44; +} +} +block_44: +{ +lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; uint8_t x_27; +lean_dec(x_19); +x_20 = lean_array_swap(x_18, x_3, x_4); +lean_inc(x_1); +x_21 = lean_array_get(x_1, x_20, x_17); +lean_inc(x_1); +x_22 = lean_array_get(x_1, x_20, x_4); +x_23 = lean_ctor_get(x_21, 0); +lean_inc(x_23); +x_24 = lean_ctor_get(x_21, 1); +lean_inc(x_24); +lean_dec(x_21); +x_25 = lean_ctor_get(x_22, 0); +lean_inc(x_25); +x_26 = lean_ctor_get(x_22, 1); +lean_inc(x_26); +x_27 = lean_nat_dec_eq(x_23, x_25); +if (x_27 == 0) +{ +uint8_t x_28; +lean_dec(x_26); +lean_dec(x_24); +x_28 = lean_nat_dec_lt(x_23, x_25); +lean_dec(x_25); +lean_dec(x_23); +if (x_28 == 0) +{ +lean_object* x_29; lean_object* x_30; +lean_dec(x_17); +x_29 = l_Array_qsort_sort___at_Lean_Compiler_LCNF_Probe_sortedBySize___spec__2___closed__1; +lean_inc_n(x_3, 2); +lean_inc(x_1); +x_30 = l_Array_qpartition_loop___rarg(x_1, x_29, x_4, x_22, x_20, x_3, x_3); +x_5 = x_30; +goto block_13; +} +else +{ +lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; +lean_dec(x_22); +x_31 = lean_array_swap(x_20, x_17, x_4); +lean_dec(x_17); +lean_inc(x_1); +x_32 = lean_array_get(x_1, x_31, x_4); +x_33 = l_Array_qsort_sort___at_Lean_Compiler_LCNF_Probe_sortedBySize___spec__2___closed__1; +lean_inc_n(x_3, 2); +lean_inc(x_1); +x_34 = l_Array_qpartition_loop___rarg(x_1, x_33, x_4, x_32, x_31, x_3, x_3); +x_5 = x_34; +goto block_13; +} +} +else +{ +lean_object* x_35; lean_object* x_36; uint8_t x_37; +lean_dec(x_25); +lean_dec(x_23); +x_35 = lean_ctor_get(x_24, 0); +lean_inc(x_35); +lean_dec(x_24); +x_36 = lean_ctor_get(x_26, 0); +lean_inc(x_36); +lean_dec(x_26); +x_37 = l_Lean_Name_lt(x_35, x_36); +lean_dec(x_36); +lean_dec(x_35); +if (x_37 == 0) +{ +lean_object* x_38; lean_object* x_39; +lean_dec(x_17); +x_38 = l_Array_qsort_sort___at_Lean_Compiler_LCNF_Probe_sortedBySize___spec__2___closed__1; +lean_inc_n(x_3, 2); +lean_inc(x_1); +x_39 = l_Array_qpartition_loop___rarg(x_1, x_38, x_4, x_22, x_20, x_3, x_3); +x_5 = x_39; +goto block_13; +} +else +{ +lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; +lean_dec(x_22); +x_40 = lean_array_swap(x_20, x_17, x_4); +lean_dec(x_17); +lean_inc(x_1); +x_41 = lean_array_get(x_1, x_40, x_4); +x_42 = l_Array_qsort_sort___at_Lean_Compiler_LCNF_Probe_sortedBySize___spec__2___closed__1; +lean_inc_n(x_3, 2); +lean_inc(x_1); +x_43 = l_Array_qpartition_loop___rarg(x_1, x_42, x_4, x_41, x_40, x_3, x_3); +x_5 = x_43; +goto block_13; +} +} +} +block_69: +{ +lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; uint8_t x_52; +lean_dec(x_46); +lean_inc(x_1); +x_47 = lean_array_get(x_1, x_18, x_17); +x_48 = lean_ctor_get(x_47, 0); +lean_inc(x_48); +x_49 = lean_ctor_get(x_47, 1); +lean_inc(x_49); +lean_dec(x_47); +x_50 = lean_ctor_get(x_45, 0); +lean_inc(x_50); +x_51 = lean_ctor_get(x_45, 1); +lean_inc(x_51); +x_52 = lean_nat_dec_eq(x_48, x_50); +if (x_52 == 0) +{ +uint8_t x_53; +lean_dec(x_51); +lean_dec(x_49); +x_53 = lean_nat_dec_lt(x_48, x_50); +lean_dec(x_50); +lean_dec(x_48); +if (x_53 == 0) +{ +lean_object* x_54; lean_object* x_55; +lean_dec(x_17); +x_54 = l_Array_qsort_sort___at_Lean_Compiler_LCNF_Probe_sortedBySize___spec__2___closed__1; +lean_inc_n(x_3, 2); +lean_inc(x_1); +x_55 = l_Array_qpartition_loop___rarg(x_1, x_54, x_4, x_45, x_18, x_3, x_3); +x_5 = x_55; +goto block_13; +} +else +{ +lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; +lean_dec(x_45); +x_56 = lean_array_swap(x_18, x_17, x_4); +lean_dec(x_17); +lean_inc(x_1); +x_57 = lean_array_get(x_1, x_56, x_4); +x_58 = l_Array_qsort_sort___at_Lean_Compiler_LCNF_Probe_sortedBySize___spec__2___closed__1; +lean_inc_n(x_3, 2); +lean_inc(x_1); +x_59 = l_Array_qpartition_loop___rarg(x_1, x_58, x_4, x_57, x_56, x_3, x_3); +x_5 = x_59; +goto block_13; +} +} +else +{ +lean_object* x_60; lean_object* x_61; uint8_t x_62; +lean_dec(x_50); +lean_dec(x_48); +x_60 = lean_ctor_get(x_49, 0); +lean_inc(x_60); +lean_dec(x_49); +x_61 = lean_ctor_get(x_51, 0); +lean_inc(x_61); +lean_dec(x_51); +x_62 = l_Lean_Name_lt(x_60, x_61); +lean_dec(x_61); +lean_dec(x_60); +if (x_62 == 0) +{ +lean_object* x_63; lean_object* x_64; +lean_dec(x_17); +x_63 = l_Array_qsort_sort___at_Lean_Compiler_LCNF_Probe_sortedBySize___spec__2___closed__1; +lean_inc_n(x_3, 2); +lean_inc(x_1); +x_64 = l_Array_qpartition_loop___rarg(x_1, x_63, x_4, x_45, x_18, x_3, x_3); +x_5 = x_64; +goto block_13; +} +else +{ +lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; +lean_dec(x_45); +x_65 = lean_array_swap(x_18, x_17, x_4); +lean_dec(x_17); +lean_inc(x_1); +x_66 = lean_array_get(x_1, x_65, x_4); +x_67 = l_Array_qsort_sort___at_Lean_Compiler_LCNF_Probe_sortedBySize___spec__2___closed__1; +lean_inc_n(x_3, 2); +lean_inc(x_1); +x_68 = l_Array_qpartition_loop___rarg(x_1, x_67, x_4, x_66, x_65, x_3, x_3); +x_5 = x_68; +goto block_13; +} +} +} +} +} +block_13: +{ +lean_object* x_6; lean_object* x_7; uint8_t x_8; +x_6 = lean_ctor_get(x_5, 0); +lean_inc(x_6); +x_7 = lean_ctor_get(x_5, 1); +lean_inc(x_7); +lean_dec(x_5); +x_8 = lean_nat_dec_le(x_4, x_6); +if (x_8 == 0) +{ +lean_object* x_9; lean_object* x_10; lean_object* x_11; +lean_inc(x_1); +x_9 = l_Array_qsort_sort___at_Lean_Compiler_LCNF_Probe_sortedBySize___spec__2(x_1, x_7, x_3, x_6); +x_10 = lean_unsigned_to_nat(1u); +x_11 = lean_nat_add(x_6, x_10); +lean_dec(x_6); +x_2 = x_9; +x_3 = x_11; +goto _start; +} +else +{ +lean_dec(x_6); +lean_dec(x_3); +lean_dec(x_1); +return x_7; +} +} +} +} +static lean_object* _init_l_Lean_Compiler_LCNF_Probe_sortedBySize___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_instInhabitedNat; +x_2 = l_Lean_Compiler_LCNF_instInhabitedDecl; +x_3 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set(x_3, 1, x_2); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Probe_sortedBySize(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +_start: +{ +lean_object* x_7; size_t x_8; size_t x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; +x_7 = lean_array_get_size(x_1); +x_8 = lean_usize_of_nat(x_7); +lean_dec(x_7); +x_9 = 0; +x_10 = l_Array_mapMUnsafe_map___at_Lean_Compiler_LCNF_Probe_sortedBySize___spec__1(x_8, x_9, x_1); +x_11 = lean_array_get_size(x_10); +x_12 = lean_unsigned_to_nat(1u); +x_13 = lean_nat_sub(x_11, x_12); +lean_dec(x_11); +x_14 = l_Lean_Compiler_LCNF_Probe_sortedBySize___closed__1; +x_15 = lean_unsigned_to_nat(0u); +x_16 = l_Array_qsort_sort___at_Lean_Compiler_LCNF_Probe_sortedBySize___spec__2(x_14, x_10, x_15, x_13); +lean_dec(x_13); +x_17 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_17, 0, x_16); +lean_ctor_set(x_17, 1, x_6); +return x_17; +} +} +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Compiler_LCNF_Probe_sortedBySize___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +size_t x_4; size_t x_5; lean_object* x_6; +x_4 = lean_unbox_usize(x_1); +lean_dec(x_1); +x_5 = lean_unbox_usize(x_2); +lean_dec(x_2); +x_6 = l_Array_mapMUnsafe_map___at_Lean_Compiler_LCNF_Probe_sortedBySize___spec__1(x_4, x_5, x_3); +return x_6; +} +} +LEAN_EXPORT lean_object* l_Array_qsort_sort___at_Lean_Compiler_LCNF_Probe_sortedBySize___spec__2___lambda__1___boxed(lean_object* x_1, lean_object* x_2) { +_start: +{ +uint8_t x_3; lean_object* x_4; +x_3 = l_Array_qsort_sort___at_Lean_Compiler_LCNF_Probe_sortedBySize___spec__2___lambda__1(x_1, x_2); +lean_dec(x_2); +lean_dec(x_1); +x_4 = lean_box(x_3); +return x_4; +} +} +LEAN_EXPORT lean_object* l_Array_qsort_sort___at_Lean_Compiler_LCNF_Probe_sortedBySize___spec__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +lean_object* x_5; +x_5 = l_Array_qsort_sort___at_Lean_Compiler_LCNF_Probe_sortedBySize___spec__2(x_1, x_2, x_3, x_4); +lean_dec(x_4); +return x_5; +} +} +LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Probe_sortedBySize___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +_start: +{ +lean_object* x_7; +x_7 = l_Lean_Compiler_LCNF_Probe_sortedBySize(x_1, x_2, x_3, x_4, x_5, x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +return x_7; +} +} LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Compiler_LCNF_Probe_countUnique___spec__1___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, size_t x_4, size_t x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { @@ -5126,6 +5672,399 @@ lean_dec(x_2); return x_9; } } +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Compiler_LCNF_Probe_getJps_go___spec__1(lean_object* x_1, size_t x_2, size_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +uint8_t x_11; +x_11 = lean_usize_dec_eq(x_2, x_3); +if (x_11 == 0) +{ +lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; size_t x_17; size_t x_18; +lean_dec(x_4); +x_12 = lean_array_uget(x_1, x_2); +x_13 = l_Lean_Compiler_LCNF_AltCore_getCode(x_12); +lean_dec(x_12); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +x_14 = l_Lean_Compiler_LCNF_Probe_getJps_go(x_13, x_5, x_6, x_7, x_8, x_9, x_10); +x_15 = lean_ctor_get(x_14, 0); +lean_inc(x_15); +x_16 = lean_ctor_get(x_14, 1); +lean_inc(x_16); +lean_dec(x_14); +x_17 = 1; +x_18 = lean_usize_add(x_2, x_17); +x_2 = x_18; +x_4 = x_15; +x_10 = x_16; +goto _start; +} +else +{ +lean_object* x_20; +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +x_20 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_20, 0, x_4); +lean_ctor_set(x_20, 1, x_10); +return x_20; +} +} +} +LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Probe_getJps_go(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +_start: +{ +switch (lean_obj_tag(x_1)) { +case 0: +{ +lean_object* x_8; +x_8 = lean_ctor_get(x_1, 1); +lean_inc(x_8); +lean_dec(x_1); +x_1 = x_8; +goto _start; +} +case 1: +{ +lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; +x_10 = lean_ctor_get(x_1, 0); +lean_inc(x_10); +x_11 = lean_ctor_get(x_1, 1); +lean_inc(x_11); +lean_dec(x_1); +x_12 = lean_ctor_get(x_10, 4); +lean_inc(x_12); +lean_dec(x_10); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +lean_inc(x_2); +x_13 = l_Lean_Compiler_LCNF_Probe_getJps_go(x_12, x_2, x_3, x_4, x_5, x_6, x_7); +x_14 = lean_ctor_get(x_13, 1); +lean_inc(x_14); +lean_dec(x_13); +x_1 = x_11; +x_7 = x_14; +goto _start; +} +case 2: +{ +lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; +x_16 = lean_ctor_get(x_1, 0); +lean_inc(x_16); +x_17 = lean_ctor_get(x_1, 1); +lean_inc(x_17); +lean_dec(x_1); +x_18 = lean_st_ref_get(x_6, x_7); +x_19 = lean_ctor_get(x_18, 1); +lean_inc(x_19); +lean_dec(x_18); +x_20 = lean_st_ref_take(x_2, x_19); +x_21 = lean_ctor_get(x_20, 0); +lean_inc(x_21); +x_22 = lean_ctor_get(x_20, 1); +lean_inc(x_22); +lean_dec(x_20); +lean_inc(x_16); +x_23 = lean_array_push(x_21, x_16); +x_24 = lean_st_ref_set(x_2, x_23, x_22); +x_25 = lean_ctor_get(x_24, 1); +lean_inc(x_25); +lean_dec(x_24); +x_26 = lean_ctor_get(x_16, 4); +lean_inc(x_26); +lean_dec(x_16); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +lean_inc(x_2); +x_27 = l_Lean_Compiler_LCNF_Probe_getJps_go(x_26, x_2, x_3, x_4, x_5, x_6, x_25); +x_28 = lean_ctor_get(x_27, 1); +lean_inc(x_28); +lean_dec(x_27); +x_1 = x_17; +x_7 = x_28; +goto _start; +} +case 4: +{ +lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; uint8_t x_34; +x_30 = lean_ctor_get(x_1, 0); +lean_inc(x_30); +lean_dec(x_1); +x_31 = lean_ctor_get(x_30, 3); +lean_inc(x_31); +lean_dec(x_30); +x_32 = lean_array_get_size(x_31); +x_33 = lean_unsigned_to_nat(0u); +x_34 = lean_nat_dec_lt(x_33, x_32); +if (x_34 == 0) +{ +lean_object* x_35; lean_object* x_36; +lean_dec(x_32); +lean_dec(x_31); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_35 = lean_box(0); +x_36 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_36, 0, x_35); +lean_ctor_set(x_36, 1, x_7); +return x_36; +} +else +{ +uint8_t x_37; +x_37 = lean_nat_dec_le(x_32, x_32); +if (x_37 == 0) +{ +lean_object* x_38; lean_object* x_39; +lean_dec(x_32); +lean_dec(x_31); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_38 = lean_box(0); +x_39 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_39, 0, x_38); +lean_ctor_set(x_39, 1, x_7); +return x_39; +} +else +{ +size_t x_40; size_t x_41; lean_object* x_42; lean_object* x_43; +x_40 = 0; +x_41 = lean_usize_of_nat(x_32); +lean_dec(x_32); +x_42 = lean_box(0); +x_43 = l_Array_foldlMUnsafe_fold___at_Lean_Compiler_LCNF_Probe_getJps_go___spec__1(x_31, x_40, x_41, x_42, x_2, x_3, x_4, x_5, x_6, x_7); +lean_dec(x_31); +return x_43; +} +} +} +default: +{ +lean_object* x_44; lean_object* x_45; +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +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_7); +return x_45; +} +} +} +} +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Compiler_LCNF_Probe_getJps_go___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +size_t x_11; size_t x_12; lean_object* x_13; +x_11 = lean_unbox_usize(x_2); +lean_dec(x_2); +x_12 = lean_unbox_usize(x_3); +lean_dec(x_3); +x_13 = l_Array_foldlMUnsafe_fold___at_Lean_Compiler_LCNF_Probe_getJps_go___spec__1(x_1, x_11, x_12, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_1); +return x_13; +} +} +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Compiler_LCNF_Probe_getJps_start___spec__1(lean_object* x_1, size_t x_2, size_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +uint8_t x_11; +x_11 = lean_usize_dec_eq(x_2, x_3); +if (x_11 == 0) +{ +lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; size_t x_17; size_t x_18; +lean_dec(x_4); +x_12 = lean_array_uget(x_1, x_2); +x_13 = lean_ctor_get(x_12, 4); +lean_inc(x_13); +lean_dec(x_12); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +x_14 = l_Lean_Compiler_LCNF_Probe_getJps_go(x_13, x_5, x_6, x_7, x_8, x_9, x_10); +x_15 = lean_ctor_get(x_14, 0); +lean_inc(x_15); +x_16 = lean_ctor_get(x_14, 1); +lean_inc(x_16); +lean_dec(x_14); +x_17 = 1; +x_18 = lean_usize_add(x_2, x_17); +x_2 = x_18; +x_4 = x_15; +x_10 = x_16; +goto _start; +} +else +{ +lean_object* x_20; +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +x_20 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_20, 0, x_4); +lean_ctor_set(x_20, 1, x_10); +return x_20; +} +} +} +LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Probe_getJps_start(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +_start: +{ +lean_object* x_8; lean_object* x_9; uint8_t x_10; +x_8 = lean_array_get_size(x_1); +x_9 = lean_unsigned_to_nat(0u); +x_10 = lean_nat_dec_lt(x_9, x_8); +if (x_10 == 0) +{ +lean_object* x_11; lean_object* x_12; +lean_dec(x_8); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_11 = lean_box(0); +x_12 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_12, 0, x_11); +lean_ctor_set(x_12, 1, x_7); +return x_12; +} +else +{ +uint8_t x_13; +x_13 = lean_nat_dec_le(x_8, x_8); +if (x_13 == 0) +{ +lean_object* x_14; lean_object* x_15; +lean_dec(x_8); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_14 = lean_box(0); +x_15 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_15, 0, x_14); +lean_ctor_set(x_15, 1, x_7); +return x_15; +} +else +{ +size_t x_16; size_t x_17; lean_object* x_18; lean_object* x_19; +x_16 = 0; +x_17 = lean_usize_of_nat(x_8); +lean_dec(x_8); +x_18 = lean_box(0); +x_19 = l_Array_foldlMUnsafe_fold___at_Lean_Compiler_LCNF_Probe_getJps_start___spec__1(x_1, x_16, x_17, x_18, x_2, x_3, x_4, x_5, x_6, x_7); +return x_19; +} +} +} +} +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Compiler_LCNF_Probe_getJps_start___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +size_t x_11; size_t x_12; lean_object* x_13; +x_11 = lean_unbox_usize(x_2); +lean_dec(x_2); +x_12 = lean_unbox_usize(x_3); +lean_dec(x_3); +x_13 = l_Array_foldlMUnsafe_fold___at_Lean_Compiler_LCNF_Probe_getJps_start___spec__1(x_1, x_11, x_12, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_1); +return x_13; +} +} +LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Probe_getJps_start___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +_start: +{ +lean_object* x_8; +x_8 = l_Lean_Compiler_LCNF_Probe_getJps_start(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +lean_dec(x_1); +return x_8; +} +} +LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Probe_getJps(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +_start: +{ +lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; uint8_t x_18; +x_7 = lean_st_ref_get(x_5, x_6); +x_8 = lean_ctor_get(x_7, 1); +lean_inc(x_8); +lean_dec(x_7); +x_9 = l_Lean_Compiler_LCNF_Probe_filter___rarg___closed__1; +x_10 = lean_st_mk_ref(x_9, x_8); +x_11 = lean_ctor_get(x_10, 0); +lean_inc(x_11); +x_12 = lean_ctor_get(x_10, 1); +lean_inc(x_12); +lean_dec(x_10); +lean_inc(x_5); +lean_inc(x_11); +x_13 = l_Lean_Compiler_LCNF_Probe_getJps_start(x_1, x_11, x_2, x_3, x_4, x_5, x_12); +x_14 = lean_ctor_get(x_13, 1); +lean_inc(x_14); +lean_dec(x_13); +x_15 = lean_st_ref_get(x_5, x_14); +lean_dec(x_5); +x_16 = lean_ctor_get(x_15, 1); +lean_inc(x_16); +lean_dec(x_15); +x_17 = lean_st_ref_get(x_11, x_16); +lean_dec(x_11); +x_18 = !lean_is_exclusive(x_17); +if (x_18 == 0) +{ +return x_17; +} +else +{ +lean_object* x_19; lean_object* x_20; lean_object* x_21; +x_19 = lean_ctor_get(x_17, 0); +x_20 = lean_ctor_get(x_17, 1); +lean_inc(x_20); +lean_inc(x_19); +lean_dec(x_17); +x_21 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_21, 0, x_19); +lean_ctor_set(x_21, 1, x_20); +return x_21; +} +} +} +LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Probe_getJps___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +_start: +{ +lean_object* x_7; +x_7 = l_Lean_Compiler_LCNF_Probe_getJps(x_1, x_2, x_3, x_4, x_5, x_6); +lean_dec(x_1); +return x_7; +} +} LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at_Lean_Compiler_LCNF_Probe_filterByLet_go___spec__1(lean_object* x_1, lean_object* x_2, size_t x_3, size_t x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { _start: { @@ -5342,99 +6281,267 @@ return x_26; } case 1: { -lean_object* x_27; -x_27 = lean_ctor_get(x_2, 1); +lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; +x_27 = lean_ctor_get(x_2, 0); lean_inc(x_27); +x_28 = lean_ctor_get(x_2, 1); +lean_inc(x_28); lean_dec(x_2); -x_2 = x_27; -goto _start; -} -case 2: -{ -lean_object* x_29; -x_29 = lean_ctor_get(x_2, 1); +x_29 = lean_ctor_get(x_27, 4); lean_inc(x_29); -lean_dec(x_2); -x_2 = x_29; +lean_dec(x_27); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +lean_inc(x_1); +x_30 = l_Lean_Compiler_LCNF_Probe_filterByLet_go(x_1, x_29, x_3, x_4, x_5, x_6, x_7); +if (lean_obj_tag(x_30) == 0) +{ +lean_object* x_31; uint8_t x_32; +x_31 = lean_ctor_get(x_30, 0); +lean_inc(x_31); +x_32 = lean_unbox(x_31); +if (x_32 == 0) +{ +lean_object* x_33; +lean_dec(x_31); +x_33 = lean_ctor_get(x_30, 1); +lean_inc(x_33); +lean_dec(x_30); +x_2 = x_28; +x_7 = x_33; goto _start; } -case 4: +else { -lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; uint8_t x_35; -x_31 = lean_ctor_get(x_2, 0); -lean_inc(x_31); -lean_dec(x_2); -x_32 = lean_ctor_get(x_31, 3); -lean_inc(x_32); -lean_dec(x_31); -x_33 = lean_array_get_size(x_32); -x_34 = lean_unsigned_to_nat(0u); -x_35 = lean_nat_dec_lt(x_34, x_33); -if (x_35 == 0) -{ -uint8_t x_36; lean_object* x_37; lean_object* x_38; -lean_dec(x_33); -lean_dec(x_32); +uint8_t x_35; +lean_dec(x_28); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_1); -x_36 = 0; -x_37 = lean_box(x_36); +x_35 = !lean_is_exclusive(x_30); +if (x_35 == 0) +{ +lean_object* x_36; +x_36 = lean_ctor_get(x_30, 0); +lean_dec(x_36); +return x_30; +} +else +{ +lean_object* x_37; lean_object* x_38; +x_37 = lean_ctor_get(x_30, 1); +lean_inc(x_37); +lean_dec(x_30); x_38 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_38, 0, x_37); -lean_ctor_set(x_38, 1, x_7); +lean_ctor_set(x_38, 0, x_31); +lean_ctor_set(x_38, 1, x_37); return x_38; } +} +} else { uint8_t x_39; -x_39 = lean_nat_dec_le(x_33, x_33); -if (x_39 == 0) -{ -uint8_t x_40; lean_object* x_41; lean_object* x_42; -lean_dec(x_33); -lean_dec(x_32); +lean_dec(x_28); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_1); -x_40 = 0; -x_41 = lean_box(x_40); -x_42 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_42, 0, x_41); -lean_ctor_set(x_42, 1, x_7); -return x_42; +x_39 = !lean_is_exclusive(x_30); +if (x_39 == 0) +{ +return x_30; } else { -size_t x_43; size_t x_44; lean_object* x_45; -x_43 = 0; -x_44 = lean_usize_of_nat(x_33); -lean_dec(x_33); -x_45 = l_Array_anyMUnsafe_any___at_Lean_Compiler_LCNF_Probe_filterByLet_go___spec__1(x_1, x_32, x_43, x_44, x_3, x_4, x_5, x_6, x_7); -lean_dec(x_32); -return x_45; +lean_object* x_40; lean_object* x_41; lean_object* x_42; +x_40 = lean_ctor_get(x_30, 0); +x_41 = lean_ctor_get(x_30, 1); +lean_inc(x_41); +lean_inc(x_40); +lean_dec(x_30); +x_42 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_42, 0, x_40); +lean_ctor_set(x_42, 1, x_41); +return x_42; +} +} +} +case 2: +{ +lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; +x_43 = lean_ctor_get(x_2, 0); +lean_inc(x_43); +x_44 = lean_ctor_get(x_2, 1); +lean_inc(x_44); +lean_dec(x_2); +x_45 = lean_ctor_get(x_43, 4); +lean_inc(x_45); +lean_dec(x_43); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +lean_inc(x_1); +x_46 = l_Lean_Compiler_LCNF_Probe_filterByLet_go(x_1, x_45, x_3, x_4, x_5, x_6, x_7); +if (lean_obj_tag(x_46) == 0) +{ +lean_object* x_47; uint8_t x_48; +x_47 = lean_ctor_get(x_46, 0); +lean_inc(x_47); +x_48 = lean_unbox(x_47); +if (x_48 == 0) +{ +lean_object* x_49; +lean_dec(x_47); +x_49 = lean_ctor_get(x_46, 1); +lean_inc(x_49); +lean_dec(x_46); +x_2 = x_44; +x_7 = x_49; +goto _start; +} +else +{ +uint8_t x_51; +lean_dec(x_44); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_1); +x_51 = !lean_is_exclusive(x_46); +if (x_51 == 0) +{ +lean_object* x_52; +x_52 = lean_ctor_get(x_46, 0); +lean_dec(x_52); +return x_46; +} +else +{ +lean_object* x_53; lean_object* x_54; +x_53 = lean_ctor_get(x_46, 1); +lean_inc(x_53); +lean_dec(x_46); +x_54 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_54, 0, x_47); +lean_ctor_set(x_54, 1, x_53); +return x_54; +} +} +} +else +{ +uint8_t x_55; +lean_dec(x_44); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_1); +x_55 = !lean_is_exclusive(x_46); +if (x_55 == 0) +{ +return x_46; +} +else +{ +lean_object* x_56; lean_object* x_57; lean_object* x_58; +x_56 = lean_ctor_get(x_46, 0); +x_57 = lean_ctor_get(x_46, 1); +lean_inc(x_57); +lean_inc(x_56); +lean_dec(x_46); +x_58 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_58, 0, x_56); +lean_ctor_set(x_58, 1, x_57); +return x_58; +} +} +} +case 4: +{ +lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; uint8_t x_63; +x_59 = lean_ctor_get(x_2, 0); +lean_inc(x_59); +lean_dec(x_2); +x_60 = lean_ctor_get(x_59, 3); +lean_inc(x_60); +lean_dec(x_59); +x_61 = lean_array_get_size(x_60); +x_62 = lean_unsigned_to_nat(0u); +x_63 = lean_nat_dec_lt(x_62, x_61); +if (x_63 == 0) +{ +uint8_t x_64; lean_object* x_65; lean_object* x_66; +lean_dec(x_61); +lean_dec(x_60); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_1); +x_64 = 0; +x_65 = lean_box(x_64); +x_66 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_66, 0, x_65); +lean_ctor_set(x_66, 1, x_7); +return x_66; +} +else +{ +uint8_t x_67; +x_67 = lean_nat_dec_le(x_61, x_61); +if (x_67 == 0) +{ +uint8_t x_68; lean_object* x_69; lean_object* x_70; +lean_dec(x_61); +lean_dec(x_60); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_1); +x_68 = 0; +x_69 = lean_box(x_68); +x_70 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_70, 0, x_69); +lean_ctor_set(x_70, 1, x_7); +return x_70; +} +else +{ +size_t x_71; size_t x_72; lean_object* x_73; +x_71 = 0; +x_72 = lean_usize_of_nat(x_61); +lean_dec(x_61); +x_73 = l_Array_anyMUnsafe_any___at_Lean_Compiler_LCNF_Probe_filterByLet_go___spec__1(x_1, x_60, x_71, x_72, x_3, x_4, x_5, x_6, x_7); +lean_dec(x_60); +return x_73; } } } default: { -uint8_t x_46; lean_object* x_47; lean_object* x_48; +uint8_t x_74; lean_object* x_75; lean_object* x_76; lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_46 = 0; -x_47 = lean_box(x_46); -x_48 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_48, 0, x_47); -lean_ctor_set(x_48, 1, x_7); -return x_48; +x_74 = 0; +x_75 = lean_box(x_74); +x_76 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_76, 0, x_75); +lean_ctor_set(x_76, 1, x_7); +return x_76; } } } @@ -5766,6 +6873,7 @@ lean_inc(x_6); lean_inc(x_5); lean_inc(x_4); lean_inc(x_3); +lean_inc(x_10); x_12 = lean_apply_6(x_1, x_10, x_3, x_4, x_5, x_6, x_7); if (lean_obj_tag(x_12) == 0) { @@ -5776,164 +6884,247 @@ x_14 = lean_unbox(x_13); lean_dec(x_13); if (x_14 == 0) { -lean_object* x_15; +lean_object* x_15; lean_object* x_16; lean_object* x_17; x_15 = lean_ctor_get(x_12, 1); lean_inc(x_15); lean_dec(x_12); +x_16 = lean_ctor_get(x_10, 4); +lean_inc(x_16); +lean_dec(x_10); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +lean_inc(x_1); +x_17 = l_Lean_Compiler_LCNF_Probe_filterByFun_go(x_1, x_16, x_3, x_4, x_5, x_6, x_15); +if (lean_obj_tag(x_17) == 0) +{ +lean_object* x_18; uint8_t x_19; +x_18 = lean_ctor_get(x_17, 0); +lean_inc(x_18); +x_19 = lean_unbox(x_18); +if (x_19 == 0) +{ +lean_object* x_20; +lean_dec(x_18); +x_20 = lean_ctor_get(x_17, 1); +lean_inc(x_20); +lean_dec(x_17); x_2 = x_11; -x_7 = x_15; +x_7 = x_20; goto _start; } else { -uint8_t x_17; +uint8_t x_22; lean_dec(x_11); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_1); -x_17 = !lean_is_exclusive(x_12); -if (x_17 == 0) +x_22 = !lean_is_exclusive(x_17); +if (x_22 == 0) { -lean_object* x_18; uint8_t x_19; lean_object* x_20; -x_18 = lean_ctor_get(x_12, 0); -lean_dec(x_18); -x_19 = 1; -x_20 = lean_box(x_19); -lean_ctor_set(x_12, 0, x_20); -return x_12; +lean_object* x_23; +x_23 = lean_ctor_get(x_17, 0); +lean_dec(x_23); +return x_17; } else { -lean_object* x_21; uint8_t x_22; lean_object* x_23; lean_object* x_24; -x_21 = lean_ctor_get(x_12, 1); -lean_inc(x_21); -lean_dec(x_12); -x_22 = 1; -x_23 = lean_box(x_22); -x_24 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_24, 0, x_23); -lean_ctor_set(x_24, 1, x_21); -return x_24; +lean_object* x_24; lean_object* x_25; +x_24 = lean_ctor_get(x_17, 1); +lean_inc(x_24); +lean_dec(x_17); +x_25 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_25, 0, x_18); +lean_ctor_set(x_25, 1, x_24); +return x_25; } } } else { -uint8_t x_25; +uint8_t x_26; lean_dec(x_11); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_1); -x_25 = !lean_is_exclusive(x_12); -if (x_25 == 0) +x_26 = !lean_is_exclusive(x_17); +if (x_26 == 0) { -return x_12; +return x_17; } else { -lean_object* x_26; lean_object* x_27; lean_object* x_28; -x_26 = lean_ctor_get(x_12, 0); -x_27 = lean_ctor_get(x_12, 1); +lean_object* x_27; lean_object* x_28; lean_object* x_29; +x_27 = lean_ctor_get(x_17, 0); +x_28 = lean_ctor_get(x_17, 1); +lean_inc(x_28); lean_inc(x_27); -lean_inc(x_26); +lean_dec(x_17); +x_29 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_29, 0, x_27); +lean_ctor_set(x_29, 1, x_28); +return x_29; +} +} +} +else +{ +uint8_t x_30; +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_1); +x_30 = !lean_is_exclusive(x_12); +if (x_30 == 0) +{ +lean_object* x_31; uint8_t x_32; lean_object* x_33; +x_31 = lean_ctor_get(x_12, 0); +lean_dec(x_31); +x_32 = 1; +x_33 = lean_box(x_32); +lean_ctor_set(x_12, 0, x_33); +return x_12; +} +else +{ +lean_object* x_34; uint8_t x_35; lean_object* x_36; lean_object* x_37; +x_34 = lean_ctor_get(x_12, 1); +lean_inc(x_34); lean_dec(x_12); -x_28 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_28, 0, x_26); -lean_ctor_set(x_28, 1, x_27); -return x_28; +x_35 = 1; +x_36 = lean_box(x_35); +x_37 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_37, 0, x_36); +lean_ctor_set(x_37, 1, x_34); +return x_37; +} +} +} +else +{ +uint8_t x_38; +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_1); +x_38 = !lean_is_exclusive(x_12); +if (x_38 == 0) +{ +return x_12; +} +else +{ +lean_object* x_39; lean_object* x_40; lean_object* x_41; +x_39 = lean_ctor_get(x_12, 0); +x_40 = lean_ctor_get(x_12, 1); +lean_inc(x_40); +lean_inc(x_39); +lean_dec(x_12); +x_41 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_41, 0, x_39); +lean_ctor_set(x_41, 1, x_40); +return x_41; } } } case 2: { -lean_object* x_29; -x_29 = lean_ctor_get(x_2, 1); -lean_inc(x_29); +lean_object* x_42; +x_42 = lean_ctor_get(x_2, 1); +lean_inc(x_42); lean_dec(x_2); -x_2 = x_29; +x_2 = x_42; goto _start; } case 4: { -lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; uint8_t x_35; -x_31 = lean_ctor_get(x_2, 0); -lean_inc(x_31); +lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; uint8_t x_48; +x_44 = lean_ctor_get(x_2, 0); +lean_inc(x_44); lean_dec(x_2); -x_32 = lean_ctor_get(x_31, 3); -lean_inc(x_32); -lean_dec(x_31); -x_33 = lean_array_get_size(x_32); -x_34 = lean_unsigned_to_nat(0u); -x_35 = lean_nat_dec_lt(x_34, x_33); -if (x_35 == 0) +x_45 = lean_ctor_get(x_44, 3); +lean_inc(x_45); +lean_dec(x_44); +x_46 = lean_array_get_size(x_45); +x_47 = lean_unsigned_to_nat(0u); +x_48 = lean_nat_dec_lt(x_47, x_46); +if (x_48 == 0) { -uint8_t x_36; lean_object* x_37; lean_object* x_38; -lean_dec(x_33); -lean_dec(x_32); +uint8_t x_49; lean_object* x_50; lean_object* x_51; +lean_dec(x_46); +lean_dec(x_45); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_1); -x_36 = 0; -x_37 = lean_box(x_36); -x_38 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_38, 0, x_37); -lean_ctor_set(x_38, 1, x_7); -return x_38; +x_49 = 0; +x_50 = lean_box(x_49); +x_51 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_51, 0, x_50); +lean_ctor_set(x_51, 1, x_7); +return x_51; } else { -uint8_t x_39; -x_39 = lean_nat_dec_le(x_33, x_33); -if (x_39 == 0) +uint8_t x_52; +x_52 = lean_nat_dec_le(x_46, x_46); +if (x_52 == 0) { -uint8_t x_40; lean_object* x_41; lean_object* x_42; -lean_dec(x_33); -lean_dec(x_32); +uint8_t x_53; lean_object* x_54; lean_object* x_55; +lean_dec(x_46); +lean_dec(x_45); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_1); -x_40 = 0; -x_41 = lean_box(x_40); -x_42 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_42, 0, x_41); -lean_ctor_set(x_42, 1, x_7); -return x_42; +x_53 = 0; +x_54 = lean_box(x_53); +x_55 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_55, 0, x_54); +lean_ctor_set(x_55, 1, x_7); +return x_55; } else { -size_t x_43; size_t x_44; lean_object* x_45; -x_43 = 0; -x_44 = lean_usize_of_nat(x_33); -lean_dec(x_33); -x_45 = l_Array_anyMUnsafe_any___at_Lean_Compiler_LCNF_Probe_filterByFun_go___spec__1(x_1, x_32, x_43, x_44, x_3, x_4, x_5, x_6, x_7); -lean_dec(x_32); -return x_45; +size_t x_56; size_t x_57; lean_object* x_58; +x_56 = 0; +x_57 = lean_usize_of_nat(x_46); +lean_dec(x_46); +x_58 = l_Array_anyMUnsafe_any___at_Lean_Compiler_LCNF_Probe_filterByFun_go___spec__1(x_1, x_45, x_56, x_57, x_3, x_4, x_5, x_6, x_7); +lean_dec(x_45); +return x_58; } } } default: { -uint8_t x_46; lean_object* x_47; lean_object* x_48; +uint8_t x_59; lean_object* x_60; lean_object* x_61; lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_46 = 0; -x_47 = lean_box(x_46); -x_48 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_48, 0, x_47); -lean_ctor_set(x_48, 1, x_7); -return x_48; +x_59 = 0; +x_60 = lean_box(x_59); +x_61 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_61, 0, x_60); +lean_ctor_set(x_61, 1, x_7); +return x_61; } } } @@ -6254,185 +7445,353 @@ goto _start; } case 1: { -lean_object* x_10; -x_10 = lean_ctor_get(x_2, 1); +lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; +x_10 = lean_ctor_get(x_2, 0); lean_inc(x_10); +x_11 = lean_ctor_get(x_2, 1); +lean_inc(x_11); lean_dec(x_2); -x_2 = x_10; +x_12 = lean_ctor_get(x_10, 4); +lean_inc(x_12); +lean_dec(x_10); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +lean_inc(x_1); +x_13 = l_Lean_Compiler_LCNF_Probe_filterByJp_go(x_1, x_12, x_3, x_4, x_5, x_6, x_7); +if (lean_obj_tag(x_13) == 0) +{ +lean_object* x_14; uint8_t x_15; +x_14 = lean_ctor_get(x_13, 0); +lean_inc(x_14); +x_15 = lean_unbox(x_14); +if (x_15 == 0) +{ +lean_object* x_16; +lean_dec(x_14); +x_16 = lean_ctor_get(x_13, 1); +lean_inc(x_16); +lean_dec(x_13); +x_2 = x_11; +x_7 = x_16; goto _start; } +else +{ +uint8_t x_18; +lean_dec(x_11); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_1); +x_18 = !lean_is_exclusive(x_13); +if (x_18 == 0) +{ +lean_object* x_19; +x_19 = lean_ctor_get(x_13, 0); +lean_dec(x_19); +return x_13; +} +else +{ +lean_object* x_20; lean_object* x_21; +x_20 = lean_ctor_get(x_13, 1); +lean_inc(x_20); +lean_dec(x_13); +x_21 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_21, 0, x_14); +lean_ctor_set(x_21, 1, x_20); +return x_21; +} +} +} +else +{ +uint8_t x_22; +lean_dec(x_11); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_1); +x_22 = !lean_is_exclusive(x_13); +if (x_22 == 0) +{ +return x_13; +} +else +{ +lean_object* x_23; lean_object* x_24; lean_object* x_25; +x_23 = lean_ctor_get(x_13, 0); +x_24 = lean_ctor_get(x_13, 1); +lean_inc(x_24); +lean_inc(x_23); +lean_dec(x_13); +x_25 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_25, 0, x_23); +lean_ctor_set(x_25, 1, x_24); +return x_25; +} +} +} case 2: { -lean_object* x_12; lean_object* x_13; lean_object* x_14; -x_12 = lean_ctor_get(x_2, 0); -lean_inc(x_12); -x_13 = lean_ctor_get(x_2, 1); -lean_inc(x_13); +lean_object* x_26; lean_object* x_27; lean_object* x_28; +x_26 = lean_ctor_get(x_2, 0); +lean_inc(x_26); +x_27 = lean_ctor_get(x_2, 1); +lean_inc(x_27); lean_dec(x_2); lean_inc(x_1); lean_inc(x_6); lean_inc(x_5); lean_inc(x_4); lean_inc(x_3); -x_14 = lean_apply_6(x_1, x_12, x_3, x_4, x_5, x_6, x_7); -if (lean_obj_tag(x_14) == 0) +lean_inc(x_26); +x_28 = lean_apply_6(x_1, x_26, x_3, x_4, x_5, x_6, x_7); +if (lean_obj_tag(x_28) == 0) { -lean_object* x_15; uint8_t x_16; -x_15 = lean_ctor_get(x_14, 0); -lean_inc(x_15); -x_16 = lean_unbox(x_15); -lean_dec(x_15); -if (x_16 == 0) +lean_object* x_29; uint8_t x_30; +x_29 = lean_ctor_get(x_28, 0); +lean_inc(x_29); +x_30 = lean_unbox(x_29); +lean_dec(x_29); +if (x_30 == 0) { -lean_object* x_17; -x_17 = lean_ctor_get(x_14, 1); -lean_inc(x_17); -lean_dec(x_14); -x_2 = x_13; -x_7 = x_17; +lean_object* x_31; lean_object* x_32; lean_object* x_33; +x_31 = lean_ctor_get(x_28, 1); +lean_inc(x_31); +lean_dec(x_28); +x_32 = lean_ctor_get(x_26, 4); +lean_inc(x_32); +lean_dec(x_26); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +lean_inc(x_1); +x_33 = l_Lean_Compiler_LCNF_Probe_filterByJp_go(x_1, x_32, x_3, x_4, x_5, x_6, x_31); +if (lean_obj_tag(x_33) == 0) +{ +lean_object* x_34; uint8_t x_35; +x_34 = lean_ctor_get(x_33, 0); +lean_inc(x_34); +x_35 = lean_unbox(x_34); +if (x_35 == 0) +{ +lean_object* x_36; +lean_dec(x_34); +x_36 = lean_ctor_get(x_33, 1); +lean_inc(x_36); +lean_dec(x_33); +x_2 = x_27; +x_7 = x_36; goto _start; } else { -uint8_t x_19; -lean_dec(x_13); +uint8_t x_38; +lean_dec(x_27); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_1); -x_19 = !lean_is_exclusive(x_14); -if (x_19 == 0) +x_38 = !lean_is_exclusive(x_33); +if (x_38 == 0) { -lean_object* x_20; uint8_t x_21; lean_object* x_22; -x_20 = lean_ctor_get(x_14, 0); -lean_dec(x_20); -x_21 = 1; -x_22 = lean_box(x_21); -lean_ctor_set(x_14, 0, x_22); -return x_14; +lean_object* x_39; +x_39 = lean_ctor_get(x_33, 0); +lean_dec(x_39); +return x_33; } else { -lean_object* x_23; uint8_t x_24; lean_object* x_25; lean_object* x_26; -x_23 = lean_ctor_get(x_14, 1); -lean_inc(x_23); -lean_dec(x_14); -x_24 = 1; -x_25 = lean_box(x_24); -x_26 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_26, 0, x_25); -lean_ctor_set(x_26, 1, x_23); -return x_26; +lean_object* x_40; lean_object* x_41; +x_40 = lean_ctor_get(x_33, 1); +lean_inc(x_40); +lean_dec(x_33); +x_41 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_41, 0, x_34); +lean_ctor_set(x_41, 1, x_40); +return x_41; } } } else { -uint8_t x_27; -lean_dec(x_13); +uint8_t x_42; +lean_dec(x_27); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_1); -x_27 = !lean_is_exclusive(x_14); -if (x_27 == 0) +x_42 = !lean_is_exclusive(x_33); +if (x_42 == 0) { -return x_14; +return x_33; } else { -lean_object* x_28; lean_object* x_29; lean_object* x_30; -x_28 = lean_ctor_get(x_14, 0); -x_29 = lean_ctor_get(x_14, 1); -lean_inc(x_29); -lean_inc(x_28); -lean_dec(x_14); -x_30 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_30, 0, x_28); -lean_ctor_set(x_30, 1, x_29); -return x_30; +lean_object* x_43; lean_object* x_44; lean_object* x_45; +x_43 = lean_ctor_get(x_33, 0); +x_44 = lean_ctor_get(x_33, 1); +lean_inc(x_44); +lean_inc(x_43); +lean_dec(x_33); +x_45 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_45, 0, x_43); +lean_ctor_set(x_45, 1, x_44); +return x_45; +} +} +} +else +{ +uint8_t x_46; +lean_dec(x_27); +lean_dec(x_26); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_1); +x_46 = !lean_is_exclusive(x_28); +if (x_46 == 0) +{ +lean_object* x_47; uint8_t x_48; lean_object* x_49; +x_47 = lean_ctor_get(x_28, 0); +lean_dec(x_47); +x_48 = 1; +x_49 = lean_box(x_48); +lean_ctor_set(x_28, 0, x_49); +return x_28; +} +else +{ +lean_object* x_50; uint8_t x_51; lean_object* x_52; lean_object* x_53; +x_50 = lean_ctor_get(x_28, 1); +lean_inc(x_50); +lean_dec(x_28); +x_51 = 1; +x_52 = lean_box(x_51); +x_53 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_53, 0, x_52); +lean_ctor_set(x_53, 1, x_50); +return x_53; +} +} +} +else +{ +uint8_t x_54; +lean_dec(x_27); +lean_dec(x_26); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_1); +x_54 = !lean_is_exclusive(x_28); +if (x_54 == 0) +{ +return x_28; +} +else +{ +lean_object* x_55; lean_object* x_56; lean_object* x_57; +x_55 = lean_ctor_get(x_28, 0); +x_56 = lean_ctor_get(x_28, 1); +lean_inc(x_56); +lean_inc(x_55); +lean_dec(x_28); +x_57 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_57, 0, x_55); +lean_ctor_set(x_57, 1, x_56); +return x_57; } } } case 4: { -lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; uint8_t x_35; -x_31 = lean_ctor_get(x_2, 0); -lean_inc(x_31); +lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; uint8_t x_62; +x_58 = lean_ctor_get(x_2, 0); +lean_inc(x_58); lean_dec(x_2); -x_32 = lean_ctor_get(x_31, 3); -lean_inc(x_32); -lean_dec(x_31); -x_33 = lean_array_get_size(x_32); -x_34 = lean_unsigned_to_nat(0u); -x_35 = lean_nat_dec_lt(x_34, x_33); -if (x_35 == 0) +x_59 = lean_ctor_get(x_58, 3); +lean_inc(x_59); +lean_dec(x_58); +x_60 = lean_array_get_size(x_59); +x_61 = lean_unsigned_to_nat(0u); +x_62 = lean_nat_dec_lt(x_61, x_60); +if (x_62 == 0) { -uint8_t x_36; lean_object* x_37; lean_object* x_38; -lean_dec(x_33); -lean_dec(x_32); +uint8_t x_63; lean_object* x_64; lean_object* x_65; +lean_dec(x_60); +lean_dec(x_59); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_1); -x_36 = 0; -x_37 = lean_box(x_36); -x_38 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_38, 0, x_37); -lean_ctor_set(x_38, 1, x_7); -return x_38; +x_63 = 0; +x_64 = lean_box(x_63); +x_65 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_65, 0, x_64); +lean_ctor_set(x_65, 1, x_7); +return x_65; } else { -uint8_t x_39; -x_39 = lean_nat_dec_le(x_33, x_33); -if (x_39 == 0) +uint8_t x_66; +x_66 = lean_nat_dec_le(x_60, x_60); +if (x_66 == 0) { -uint8_t x_40; lean_object* x_41; lean_object* x_42; -lean_dec(x_33); -lean_dec(x_32); +uint8_t x_67; lean_object* x_68; lean_object* x_69; +lean_dec(x_60); +lean_dec(x_59); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_1); -x_40 = 0; -x_41 = lean_box(x_40); -x_42 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_42, 0, x_41); -lean_ctor_set(x_42, 1, x_7); -return x_42; +x_67 = 0; +x_68 = lean_box(x_67); +x_69 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_69, 0, x_68); +lean_ctor_set(x_69, 1, x_7); +return x_69; } else { -size_t x_43; size_t x_44; lean_object* x_45; -x_43 = 0; -x_44 = lean_usize_of_nat(x_33); -lean_dec(x_33); -x_45 = l_Array_anyMUnsafe_any___at_Lean_Compiler_LCNF_Probe_filterByJp_go___spec__1(x_1, x_32, x_43, x_44, x_3, x_4, x_5, x_6, x_7); -lean_dec(x_32); -return x_45; +size_t x_70; size_t x_71; lean_object* x_72; +x_70 = 0; +x_71 = lean_usize_of_nat(x_60); +lean_dec(x_60); +x_72 = l_Array_anyMUnsafe_any___at_Lean_Compiler_LCNF_Probe_filterByJp_go___spec__1(x_1, x_59, x_70, x_71, x_3, x_4, x_5, x_6, x_7); +lean_dec(x_59); +return x_72; } } } default: { -uint8_t x_46; lean_object* x_47; lean_object* x_48; +uint8_t x_73; lean_object* x_74; lean_object* x_75; lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_46 = 0; -x_47 = lean_box(x_46); -x_48 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_48, 0, x_47); -lean_ctor_set(x_48, 1, x_7); -return x_48; +x_73 = 0; +x_74 = lean_box(x_73); +x_75 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_75, 0, x_74); +lean_ctor_set(x_75, 1, x_7); +return x_75; } } } @@ -6764,6 +8123,7 @@ lean_inc(x_6); lean_inc(x_5); lean_inc(x_4); lean_inc(x_3); +lean_inc(x_10); x_12 = lean_apply_6(x_1, x_10, x_3, x_4, x_5, x_6, x_7); if (lean_obj_tag(x_12) == 0) { @@ -6774,250 +8134,417 @@ x_14 = lean_unbox(x_13); lean_dec(x_13); if (x_14 == 0) { -lean_object* x_15; +lean_object* x_15; lean_object* x_16; lean_object* x_17; x_15 = lean_ctor_get(x_12, 1); lean_inc(x_15); lean_dec(x_12); +x_16 = lean_ctor_get(x_10, 4); +lean_inc(x_16); +lean_dec(x_10); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +lean_inc(x_1); +x_17 = l_Lean_Compiler_LCNF_Probe_filterByFunDecl_go(x_1, x_16, x_3, x_4, x_5, x_6, x_15); +if (lean_obj_tag(x_17) == 0) +{ +lean_object* x_18; uint8_t x_19; +x_18 = lean_ctor_get(x_17, 0); +lean_inc(x_18); +x_19 = lean_unbox(x_18); +if (x_19 == 0) +{ +lean_object* x_20; +lean_dec(x_18); +x_20 = lean_ctor_get(x_17, 1); +lean_inc(x_20); +lean_dec(x_17); x_2 = x_11; -x_7 = x_15; +x_7 = x_20; goto _start; } else { -uint8_t x_17; +uint8_t x_22; lean_dec(x_11); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_1); -x_17 = !lean_is_exclusive(x_12); -if (x_17 == 0) +x_22 = !lean_is_exclusive(x_17); +if (x_22 == 0) { -lean_object* x_18; uint8_t x_19; lean_object* x_20; -x_18 = lean_ctor_get(x_12, 0); -lean_dec(x_18); -x_19 = 1; -x_20 = lean_box(x_19); -lean_ctor_set(x_12, 0, x_20); -return x_12; +lean_object* x_23; +x_23 = lean_ctor_get(x_17, 0); +lean_dec(x_23); +return x_17; } else { -lean_object* x_21; uint8_t x_22; lean_object* x_23; lean_object* x_24; -x_21 = lean_ctor_get(x_12, 1); -lean_inc(x_21); -lean_dec(x_12); -x_22 = 1; -x_23 = lean_box(x_22); -x_24 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_24, 0, x_23); -lean_ctor_set(x_24, 1, x_21); -return x_24; +lean_object* x_24; lean_object* x_25; +x_24 = lean_ctor_get(x_17, 1); +lean_inc(x_24); +lean_dec(x_17); +x_25 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_25, 0, x_18); +lean_ctor_set(x_25, 1, x_24); +return x_25; } } } else { -uint8_t x_25; +uint8_t x_26; lean_dec(x_11); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_1); -x_25 = !lean_is_exclusive(x_12); -if (x_25 == 0) +x_26 = !lean_is_exclusive(x_17); +if (x_26 == 0) { -return x_12; +return x_17; } else { -lean_object* x_26; lean_object* x_27; lean_object* x_28; -x_26 = lean_ctor_get(x_12, 0); -x_27 = lean_ctor_get(x_12, 1); +lean_object* x_27; lean_object* x_28; lean_object* x_29; +x_27 = lean_ctor_get(x_17, 0); +x_28 = lean_ctor_get(x_17, 1); +lean_inc(x_28); lean_inc(x_27); -lean_inc(x_26); +lean_dec(x_17); +x_29 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_29, 0, x_27); +lean_ctor_set(x_29, 1, x_28); +return x_29; +} +} +} +else +{ +uint8_t x_30; +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_1); +x_30 = !lean_is_exclusive(x_12); +if (x_30 == 0) +{ +lean_object* x_31; uint8_t x_32; lean_object* x_33; +x_31 = lean_ctor_get(x_12, 0); +lean_dec(x_31); +x_32 = 1; +x_33 = lean_box(x_32); +lean_ctor_set(x_12, 0, x_33); +return x_12; +} +else +{ +lean_object* x_34; uint8_t x_35; lean_object* x_36; lean_object* x_37; +x_34 = lean_ctor_get(x_12, 1); +lean_inc(x_34); lean_dec(x_12); -x_28 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_28, 0, x_26); -lean_ctor_set(x_28, 1, x_27); -return x_28; +x_35 = 1; +x_36 = lean_box(x_35); +x_37 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_37, 0, x_36); +lean_ctor_set(x_37, 1, x_34); +return x_37; +} +} +} +else +{ +uint8_t x_38; +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_1); +x_38 = !lean_is_exclusive(x_12); +if (x_38 == 0) +{ +return x_12; +} +else +{ +lean_object* x_39; lean_object* x_40; lean_object* x_41; +x_39 = lean_ctor_get(x_12, 0); +x_40 = lean_ctor_get(x_12, 1); +lean_inc(x_40); +lean_inc(x_39); +lean_dec(x_12); +x_41 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_41, 0, x_39); +lean_ctor_set(x_41, 1, x_40); +return x_41; } } } case 2: { -lean_object* x_29; lean_object* x_30; lean_object* x_31; -x_29 = lean_ctor_get(x_2, 0); -lean_inc(x_29); -x_30 = lean_ctor_get(x_2, 1); -lean_inc(x_30); +lean_object* x_42; lean_object* x_43; lean_object* x_44; +x_42 = lean_ctor_get(x_2, 0); +lean_inc(x_42); +x_43 = lean_ctor_get(x_2, 1); +lean_inc(x_43); lean_dec(x_2); lean_inc(x_1); lean_inc(x_6); lean_inc(x_5); lean_inc(x_4); lean_inc(x_3); -x_31 = lean_apply_6(x_1, x_29, x_3, x_4, x_5, x_6, x_7); -if (lean_obj_tag(x_31) == 0) +lean_inc(x_42); +x_44 = lean_apply_6(x_1, x_42, x_3, x_4, x_5, x_6, x_7); +if (lean_obj_tag(x_44) == 0) { -lean_object* x_32; uint8_t x_33; -x_32 = lean_ctor_get(x_31, 0); -lean_inc(x_32); -x_33 = lean_unbox(x_32); -lean_dec(x_32); -if (x_33 == 0) +lean_object* x_45; uint8_t x_46; +x_45 = lean_ctor_get(x_44, 0); +lean_inc(x_45); +x_46 = lean_unbox(x_45); +lean_dec(x_45); +if (x_46 == 0) { -lean_object* x_34; -x_34 = lean_ctor_get(x_31, 1); -lean_inc(x_34); -lean_dec(x_31); -x_2 = x_30; -x_7 = x_34; +lean_object* x_47; lean_object* x_48; lean_object* x_49; +x_47 = lean_ctor_get(x_44, 1); +lean_inc(x_47); +lean_dec(x_44); +x_48 = lean_ctor_get(x_42, 4); +lean_inc(x_48); +lean_dec(x_42); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +lean_inc(x_1); +x_49 = l_Lean_Compiler_LCNF_Probe_filterByFunDecl_go(x_1, x_48, x_3, x_4, x_5, x_6, x_47); +if (lean_obj_tag(x_49) == 0) +{ +lean_object* x_50; uint8_t x_51; +x_50 = lean_ctor_get(x_49, 0); +lean_inc(x_50); +x_51 = lean_unbox(x_50); +if (x_51 == 0) +{ +lean_object* x_52; +lean_dec(x_50); +x_52 = lean_ctor_get(x_49, 1); +lean_inc(x_52); +lean_dec(x_49); +x_2 = x_43; +x_7 = x_52; goto _start; } else { -uint8_t x_36; -lean_dec(x_30); +uint8_t x_54; +lean_dec(x_43); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_1); -x_36 = !lean_is_exclusive(x_31); -if (x_36 == 0) +x_54 = !lean_is_exclusive(x_49); +if (x_54 == 0) { -lean_object* x_37; uint8_t x_38; lean_object* x_39; -x_37 = lean_ctor_get(x_31, 0); -lean_dec(x_37); -x_38 = 1; -x_39 = lean_box(x_38); -lean_ctor_set(x_31, 0, x_39); -return x_31; +lean_object* x_55; +x_55 = lean_ctor_get(x_49, 0); +lean_dec(x_55); +return x_49; } else { -lean_object* x_40; uint8_t x_41; lean_object* x_42; lean_object* x_43; -x_40 = lean_ctor_get(x_31, 1); -lean_inc(x_40); -lean_dec(x_31); -x_41 = 1; -x_42 = lean_box(x_41); -x_43 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_43, 0, x_42); -lean_ctor_set(x_43, 1, x_40); -return x_43; +lean_object* x_56; lean_object* x_57; +x_56 = lean_ctor_get(x_49, 1); +lean_inc(x_56); +lean_dec(x_49); +x_57 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_57, 0, x_50); +lean_ctor_set(x_57, 1, x_56); +return x_57; } } } else { -uint8_t x_44; -lean_dec(x_30); +uint8_t x_58; +lean_dec(x_43); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_1); -x_44 = !lean_is_exclusive(x_31); -if (x_44 == 0) +x_58 = !lean_is_exclusive(x_49); +if (x_58 == 0) { -return x_31; +return x_49; } else { -lean_object* x_45; lean_object* x_46; lean_object* x_47; -x_45 = lean_ctor_get(x_31, 0); -x_46 = lean_ctor_get(x_31, 1); -lean_inc(x_46); -lean_inc(x_45); -lean_dec(x_31); -x_47 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_47, 0, x_45); -lean_ctor_set(x_47, 1, x_46); -return x_47; +lean_object* x_59; lean_object* x_60; lean_object* x_61; +x_59 = lean_ctor_get(x_49, 0); +x_60 = lean_ctor_get(x_49, 1); +lean_inc(x_60); +lean_inc(x_59); +lean_dec(x_49); +x_61 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_61, 0, x_59); +lean_ctor_set(x_61, 1, x_60); +return x_61; +} +} +} +else +{ +uint8_t x_62; +lean_dec(x_43); +lean_dec(x_42); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_1); +x_62 = !lean_is_exclusive(x_44); +if (x_62 == 0) +{ +lean_object* x_63; uint8_t x_64; lean_object* x_65; +x_63 = lean_ctor_get(x_44, 0); +lean_dec(x_63); +x_64 = 1; +x_65 = lean_box(x_64); +lean_ctor_set(x_44, 0, x_65); +return x_44; +} +else +{ +lean_object* x_66; uint8_t x_67; lean_object* x_68; lean_object* x_69; +x_66 = lean_ctor_get(x_44, 1); +lean_inc(x_66); +lean_dec(x_44); +x_67 = 1; +x_68 = lean_box(x_67); +x_69 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_69, 0, x_68); +lean_ctor_set(x_69, 1, x_66); +return x_69; +} +} +} +else +{ +uint8_t x_70; +lean_dec(x_43); +lean_dec(x_42); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_1); +x_70 = !lean_is_exclusive(x_44); +if (x_70 == 0) +{ +return x_44; +} +else +{ +lean_object* x_71; lean_object* x_72; lean_object* x_73; +x_71 = lean_ctor_get(x_44, 0); +x_72 = lean_ctor_get(x_44, 1); +lean_inc(x_72); +lean_inc(x_71); +lean_dec(x_44); +x_73 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_73, 0, x_71); +lean_ctor_set(x_73, 1, x_72); +return x_73; } } } case 4: { -lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; uint8_t x_52; -x_48 = lean_ctor_get(x_2, 0); -lean_inc(x_48); +lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; uint8_t x_78; +x_74 = lean_ctor_get(x_2, 0); +lean_inc(x_74); lean_dec(x_2); -x_49 = lean_ctor_get(x_48, 3); -lean_inc(x_49); -lean_dec(x_48); -x_50 = lean_array_get_size(x_49); -x_51 = lean_unsigned_to_nat(0u); -x_52 = lean_nat_dec_lt(x_51, x_50); -if (x_52 == 0) +x_75 = lean_ctor_get(x_74, 3); +lean_inc(x_75); +lean_dec(x_74); +x_76 = lean_array_get_size(x_75); +x_77 = lean_unsigned_to_nat(0u); +x_78 = lean_nat_dec_lt(x_77, x_76); +if (x_78 == 0) { -uint8_t x_53; lean_object* x_54; lean_object* x_55; -lean_dec(x_50); -lean_dec(x_49); +uint8_t x_79; lean_object* x_80; lean_object* x_81; +lean_dec(x_76); +lean_dec(x_75); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_1); -x_53 = 0; -x_54 = lean_box(x_53); -x_55 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_55, 0, x_54); -lean_ctor_set(x_55, 1, x_7); -return x_55; +x_79 = 0; +x_80 = lean_box(x_79); +x_81 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_81, 0, x_80); +lean_ctor_set(x_81, 1, x_7); +return x_81; } else { -uint8_t x_56; -x_56 = lean_nat_dec_le(x_50, x_50); -if (x_56 == 0) +uint8_t x_82; +x_82 = lean_nat_dec_le(x_76, x_76); +if (x_82 == 0) { -uint8_t x_57; lean_object* x_58; lean_object* x_59; -lean_dec(x_50); -lean_dec(x_49); +uint8_t x_83; lean_object* x_84; lean_object* x_85; +lean_dec(x_76); +lean_dec(x_75); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_1); -x_57 = 0; -x_58 = lean_box(x_57); -x_59 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_59, 0, x_58); -lean_ctor_set(x_59, 1, x_7); -return x_59; +x_83 = 0; +x_84 = lean_box(x_83); +x_85 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_85, 0, x_84); +lean_ctor_set(x_85, 1, x_7); +return x_85; } else { -size_t x_60; size_t x_61; lean_object* x_62; -x_60 = 0; -x_61 = lean_usize_of_nat(x_50); -lean_dec(x_50); -x_62 = l_Array_anyMUnsafe_any___at_Lean_Compiler_LCNF_Probe_filterByFunDecl_go___spec__1(x_1, x_49, x_60, x_61, x_3, x_4, x_5, x_6, x_7); -lean_dec(x_49); -return x_62; +size_t x_86; size_t x_87; lean_object* x_88; +x_86 = 0; +x_87 = lean_usize_of_nat(x_76); +lean_dec(x_76); +x_88 = l_Array_anyMUnsafe_any___at_Lean_Compiler_LCNF_Probe_filterByFunDecl_go___spec__1(x_1, x_75, x_86, x_87, x_3, x_4, x_5, x_6, x_7); +lean_dec(x_75); +return x_88; } } } default: { -uint8_t x_63; lean_object* x_64; lean_object* x_65; +uint8_t x_89; lean_object* x_90; lean_object* x_91; lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_63 = 0; -x_64 = lean_box(x_63); -x_65 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_65, 0, x_64); -lean_ctor_set(x_65, 1, x_7); -return x_65; +x_89 = 0; +x_90 = lean_box(x_89); +x_91 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_91, 0, x_90); +lean_ctor_set(x_91, 1, x_7); +return x_91; } } } @@ -7327,272 +8854,426 @@ LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Probe_filterByCases_go(lean_object _start: { switch (lean_obj_tag(x_2)) { -case 3: +case 0: { -uint8_t x_8; lean_object* x_9; lean_object* x_10; +lean_object* x_8; +x_8 = lean_ctor_get(x_2, 1); +lean_inc(x_8); +lean_dec(x_2); +x_2 = x_8; +goto _start; +} +case 1: +{ +lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; +x_10 = lean_ctor_get(x_2, 0); +lean_inc(x_10); +x_11 = lean_ctor_get(x_2, 1); +lean_inc(x_11); +lean_dec(x_2); +x_12 = lean_ctor_get(x_10, 4); +lean_inc(x_12); +lean_dec(x_10); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +lean_inc(x_1); +x_13 = l_Lean_Compiler_LCNF_Probe_filterByCases_go(x_1, x_12, x_3, x_4, x_5, x_6, x_7); +if (lean_obj_tag(x_13) == 0) +{ +lean_object* x_14; uint8_t x_15; +x_14 = lean_ctor_get(x_13, 0); +lean_inc(x_14); +x_15 = lean_unbox(x_14); +if (x_15 == 0) +{ +lean_object* x_16; +lean_dec(x_14); +x_16 = lean_ctor_get(x_13, 1); +lean_inc(x_16); +lean_dec(x_13); +x_2 = x_11; +x_7 = x_16; +goto _start; +} +else +{ +uint8_t x_18; +lean_dec(x_11); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); -lean_dec(x_2); lean_dec(x_1); -x_8 = 0; -x_9 = lean_box(x_8); -x_10 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_10, 0, x_9); -lean_ctor_set(x_10, 1, x_7); -return x_10; +x_18 = !lean_is_exclusive(x_13); +if (x_18 == 0) +{ +lean_object* x_19; +x_19 = lean_ctor_get(x_13, 0); +lean_dec(x_19); +return x_13; +} +else +{ +lean_object* x_20; lean_object* x_21; +x_20 = lean_ctor_get(x_13, 1); +lean_inc(x_20); +lean_dec(x_13); +x_21 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_21, 0, x_14); +lean_ctor_set(x_21, 1, x_20); +return x_21; +} +} +} +else +{ +uint8_t x_22; +lean_dec(x_11); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_1); +x_22 = !lean_is_exclusive(x_13); +if (x_22 == 0) +{ +return x_13; +} +else +{ +lean_object* x_23; lean_object* x_24; lean_object* x_25; +x_23 = lean_ctor_get(x_13, 0); +x_24 = lean_ctor_get(x_13, 1); +lean_inc(x_24); +lean_inc(x_23); +lean_dec(x_13); +x_25 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_25, 0, x_23); +lean_ctor_set(x_25, 1, x_24); +return x_25; +} +} +} +case 2: +{ +lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; +x_26 = lean_ctor_get(x_2, 0); +lean_inc(x_26); +x_27 = lean_ctor_get(x_2, 1); +lean_inc(x_27); +lean_dec(x_2); +x_28 = lean_ctor_get(x_26, 4); +lean_inc(x_28); +lean_dec(x_26); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +lean_inc(x_1); +x_29 = l_Lean_Compiler_LCNF_Probe_filterByCases_go(x_1, x_28, x_3, x_4, x_5, x_6, x_7); +if (lean_obj_tag(x_29) == 0) +{ +lean_object* x_30; uint8_t x_31; +x_30 = lean_ctor_get(x_29, 0); +lean_inc(x_30); +x_31 = lean_unbox(x_30); +if (x_31 == 0) +{ +lean_object* x_32; +lean_dec(x_30); +x_32 = lean_ctor_get(x_29, 1); +lean_inc(x_32); +lean_dec(x_29); +x_2 = x_27; +x_7 = x_32; +goto _start; +} +else +{ +uint8_t x_34; +lean_dec(x_27); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_1); +x_34 = !lean_is_exclusive(x_29); +if (x_34 == 0) +{ +lean_object* x_35; +x_35 = lean_ctor_get(x_29, 0); +lean_dec(x_35); +return x_29; +} +else +{ +lean_object* x_36; lean_object* x_37; +x_36 = lean_ctor_get(x_29, 1); +lean_inc(x_36); +lean_dec(x_29); +x_37 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_37, 0, x_30); +lean_ctor_set(x_37, 1, x_36); +return x_37; +} +} +} +else +{ +uint8_t x_38; +lean_dec(x_27); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_1); +x_38 = !lean_is_exclusive(x_29); +if (x_38 == 0) +{ +return x_29; +} +else +{ +lean_object* x_39; lean_object* x_40; lean_object* x_41; +x_39 = lean_ctor_get(x_29, 0); +x_40 = lean_ctor_get(x_29, 1); +lean_inc(x_40); +lean_inc(x_39); +lean_dec(x_29); +x_41 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_41, 0, x_39); +lean_ctor_set(x_41, 1, x_40); +return x_41; +} +} } case 4: { -lean_object* x_11; lean_object* x_12; -x_11 = lean_ctor_get(x_2, 0); -lean_inc(x_11); +lean_object* x_42; lean_object* x_43; +x_42 = lean_ctor_get(x_2, 0); +lean_inc(x_42); lean_dec(x_2); lean_inc(x_1); lean_inc(x_6); lean_inc(x_5); lean_inc(x_4); lean_inc(x_3); -lean_inc(x_11); -x_12 = lean_apply_6(x_1, x_11, x_3, x_4, x_5, x_6, x_7); -if (lean_obj_tag(x_12) == 0) +lean_inc(x_42); +x_43 = lean_apply_6(x_1, x_42, x_3, x_4, x_5, x_6, x_7); +if (lean_obj_tag(x_43) == 0) { -lean_object* x_13; uint8_t x_14; -x_13 = lean_ctor_get(x_12, 0); -lean_inc(x_13); -x_14 = lean_unbox(x_13); -lean_dec(x_13); -if (x_14 == 0) -{ -uint8_t x_15; -x_15 = !lean_is_exclusive(x_12); -if (x_15 == 0) -{ -lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; uint8_t x_21; -x_16 = lean_ctor_get(x_12, 1); -x_17 = lean_ctor_get(x_12, 0); -lean_dec(x_17); -x_18 = lean_ctor_get(x_11, 3); -lean_inc(x_18); -lean_dec(x_11); -x_19 = lean_array_get_size(x_18); -x_20 = lean_unsigned_to_nat(0u); -x_21 = lean_nat_dec_lt(x_20, x_19); -if (x_21 == 0) -{ -uint8_t x_22; lean_object* x_23; -lean_dec(x_19); -lean_dec(x_18); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_1); -x_22 = 0; -x_23 = lean_box(x_22); -lean_ctor_set(x_12, 0, x_23); -return x_12; -} -else -{ -uint8_t x_24; -x_24 = lean_nat_dec_le(x_19, x_19); -if (x_24 == 0) -{ -uint8_t x_25; lean_object* x_26; -lean_dec(x_19); -lean_dec(x_18); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_1); -x_25 = 0; -x_26 = lean_box(x_25); -lean_ctor_set(x_12, 0, x_26); -return x_12; -} -else -{ -size_t x_27; size_t x_28; lean_object* x_29; -lean_free_object(x_12); -x_27 = 0; -x_28 = lean_usize_of_nat(x_19); -lean_dec(x_19); -x_29 = l_Array_anyMUnsafe_any___at_Lean_Compiler_LCNF_Probe_filterByCases_go___spec__1(x_1, x_18, x_27, x_28, x_3, x_4, x_5, x_6, x_16); -lean_dec(x_18); -return x_29; -} -} -} -else -{ -lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; uint8_t x_34; -x_30 = lean_ctor_get(x_12, 1); -lean_inc(x_30); -lean_dec(x_12); -x_31 = lean_ctor_get(x_11, 3); -lean_inc(x_31); -lean_dec(x_11); -x_32 = lean_array_get_size(x_31); -x_33 = lean_unsigned_to_nat(0u); -x_34 = lean_nat_dec_lt(x_33, x_32); -if (x_34 == 0) -{ -uint8_t x_35; lean_object* x_36; lean_object* x_37; -lean_dec(x_32); -lean_dec(x_31); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_1); -x_35 = 0; -x_36 = lean_box(x_35); -x_37 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_37, 0, x_36); -lean_ctor_set(x_37, 1, x_30); -return x_37; -} -else -{ -uint8_t x_38; -x_38 = lean_nat_dec_le(x_32, x_32); -if (x_38 == 0) -{ -uint8_t x_39; lean_object* x_40; lean_object* x_41; -lean_dec(x_32); -lean_dec(x_31); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_1); -x_39 = 0; -x_40 = lean_box(x_39); -x_41 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_41, 0, x_40); -lean_ctor_set(x_41, 1, x_30); -return x_41; -} -else -{ -size_t x_42; size_t x_43; lean_object* x_44; -x_42 = 0; -x_43 = lean_usize_of_nat(x_32); -lean_dec(x_32); -x_44 = l_Array_anyMUnsafe_any___at_Lean_Compiler_LCNF_Probe_filterByCases_go___spec__1(x_1, x_31, x_42, x_43, x_3, x_4, x_5, x_6, x_30); -lean_dec(x_31); -return x_44; -} -} -} -} -else -{ -uint8_t x_45; -lean_dec(x_11); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_1); -x_45 = !lean_is_exclusive(x_12); +lean_object* x_44; uint8_t x_45; +x_44 = lean_ctor_get(x_43, 0); +lean_inc(x_44); +x_45 = lean_unbox(x_44); +lean_dec(x_44); if (x_45 == 0) { -lean_object* x_46; uint8_t x_47; lean_object* x_48; -x_46 = lean_ctor_get(x_12, 0); -lean_dec(x_46); -x_47 = 1; -x_48 = lean_box(x_47); -lean_ctor_set(x_12, 0, x_48); -return x_12; -} -else +uint8_t x_46; +x_46 = !lean_is_exclusive(x_43); +if (x_46 == 0) { -lean_object* x_49; uint8_t x_50; lean_object* x_51; lean_object* x_52; -x_49 = lean_ctor_get(x_12, 1); +lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; uint8_t x_52; +x_47 = lean_ctor_get(x_43, 1); +x_48 = lean_ctor_get(x_43, 0); +lean_dec(x_48); +x_49 = lean_ctor_get(x_42, 3); lean_inc(x_49); -lean_dec(x_12); -x_50 = 1; -x_51 = lean_box(x_50); -x_52 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_52, 0, x_51); -lean_ctor_set(x_52, 1, x_49); -return x_52; +lean_dec(x_42); +x_50 = lean_array_get_size(x_49); +x_51 = lean_unsigned_to_nat(0u); +x_52 = lean_nat_dec_lt(x_51, x_50); +if (x_52 == 0) +{ +uint8_t x_53; lean_object* x_54; +lean_dec(x_50); +lean_dec(x_49); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_1); +x_53 = 0; +x_54 = lean_box(x_53); +lean_ctor_set(x_43, 0, x_54); +return x_43; +} +else +{ +uint8_t x_55; +x_55 = lean_nat_dec_le(x_50, x_50); +if (x_55 == 0) +{ +uint8_t x_56; lean_object* x_57; +lean_dec(x_50); +lean_dec(x_49); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_1); +x_56 = 0; +x_57 = lean_box(x_56); +lean_ctor_set(x_43, 0, x_57); +return x_43; +} +else +{ +size_t x_58; size_t x_59; lean_object* x_60; +lean_free_object(x_43); +x_58 = 0; +x_59 = lean_usize_of_nat(x_50); +lean_dec(x_50); +x_60 = l_Array_anyMUnsafe_any___at_Lean_Compiler_LCNF_Probe_filterByCases_go___spec__1(x_1, x_49, x_58, x_59, x_3, x_4, x_5, x_6, x_47); +lean_dec(x_49); +return x_60; } } } else { -uint8_t x_53; -lean_dec(x_11); +lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; uint8_t x_65; +x_61 = lean_ctor_get(x_43, 1); +lean_inc(x_61); +lean_dec(x_43); +x_62 = lean_ctor_get(x_42, 3); +lean_inc(x_62); +lean_dec(x_42); +x_63 = lean_array_get_size(x_62); +x_64 = lean_unsigned_to_nat(0u); +x_65 = lean_nat_dec_lt(x_64, x_63); +if (x_65 == 0) +{ +uint8_t x_66; lean_object* x_67; lean_object* x_68; +lean_dec(x_63); +lean_dec(x_62); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_1); -x_53 = !lean_is_exclusive(x_12); -if (x_53 == 0) -{ -return x_12; +x_66 = 0; +x_67 = lean_box(x_66); +x_68 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_68, 0, x_67); +lean_ctor_set(x_68, 1, x_61); +return x_68; } else { -lean_object* x_54; lean_object* x_55; lean_object* x_56; -x_54 = lean_ctor_get(x_12, 0); -x_55 = lean_ctor_get(x_12, 1); -lean_inc(x_55); -lean_inc(x_54); -lean_dec(x_12); -x_56 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_56, 0, x_54); -lean_ctor_set(x_56, 1, x_55); -return x_56; -} -} -} -case 5: +uint8_t x_69; +x_69 = lean_nat_dec_le(x_63, x_63); +if (x_69 == 0) { -uint8_t x_57; lean_object* x_58; lean_object* x_59; +uint8_t x_70; lean_object* x_71; lean_object* x_72; +lean_dec(x_63); +lean_dec(x_62); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); -lean_dec(x_2); lean_dec(x_1); -x_57 = 0; -x_58 = lean_box(x_57); -x_59 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_59, 0, x_58); -lean_ctor_set(x_59, 1, x_7); -return x_59; +x_70 = 0; +x_71 = lean_box(x_70); +x_72 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_72, 0, x_71); +lean_ctor_set(x_72, 1, x_61); +return x_72; } -case 6: +else { -uint8_t x_60; lean_object* x_61; lean_object* x_62; +size_t x_73; size_t x_74; lean_object* x_75; +x_73 = 0; +x_74 = lean_usize_of_nat(x_63); +lean_dec(x_63); +x_75 = l_Array_anyMUnsafe_any___at_Lean_Compiler_LCNF_Probe_filterByCases_go___spec__1(x_1, x_62, x_73, x_74, x_3, x_4, x_5, x_6, x_61); +lean_dec(x_62); +return x_75; +} +} +} +} +else +{ +uint8_t x_76; +lean_dec(x_42); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); -lean_dec(x_2); lean_dec(x_1); -x_60 = 0; -x_61 = lean_box(x_60); -x_62 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_62, 0, x_61); -lean_ctor_set(x_62, 1, x_7); -return x_62; +x_76 = !lean_is_exclusive(x_43); +if (x_76 == 0) +{ +lean_object* x_77; uint8_t x_78; lean_object* x_79; +x_77 = lean_ctor_get(x_43, 0); +lean_dec(x_77); +x_78 = 1; +x_79 = lean_box(x_78); +lean_ctor_set(x_43, 0, x_79); +return x_43; +} +else +{ +lean_object* x_80; uint8_t x_81; lean_object* x_82; lean_object* x_83; +x_80 = lean_ctor_get(x_43, 1); +lean_inc(x_80); +lean_dec(x_43); +x_81 = 1; +x_82 = lean_box(x_81); +x_83 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_83, 0, x_82); +lean_ctor_set(x_83, 1, x_80); +return x_83; +} +} +} +else +{ +uint8_t x_84; +lean_dec(x_42); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_1); +x_84 = !lean_is_exclusive(x_43); +if (x_84 == 0) +{ +return x_43; +} +else +{ +lean_object* x_85; lean_object* x_86; lean_object* x_87; +x_85 = lean_ctor_get(x_43, 0); +x_86 = lean_ctor_get(x_43, 1); +lean_inc(x_86); +lean_inc(x_85); +lean_dec(x_43); +x_87 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_87, 0, x_85); +lean_ctor_set(x_87, 1, x_86); +return x_87; +} +} } default: { -lean_object* x_63; -x_63 = lean_ctor_get(x_2, 1); -lean_inc(x_63); +uint8_t x_88; lean_object* x_89; lean_object* x_90; +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); lean_dec(x_2); -x_2 = x_63; -goto _start; +lean_dec(x_1); +x_88 = 0; +x_89 = lean_box(x_88); +x_90 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_90, 0, x_89); +lean_ctor_set(x_90, 1, x_7); +return x_90; } } } @@ -7902,120 +9583,213 @@ LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Probe_filterByJmp_go(lean_object* _start: { switch (lean_obj_tag(x_2)) { +case 0: +{ +lean_object* x_8; +x_8 = lean_ctor_get(x_2, 1); +lean_inc(x_8); +lean_dec(x_2); +x_2 = x_8; +goto _start; +} case 3: { -lean_object* x_8; lean_object* x_9; lean_object* x_10; -x_8 = lean_ctor_get(x_2, 0); -lean_inc(x_8); -x_9 = lean_ctor_get(x_2, 1); -lean_inc(x_9); +lean_object* x_10; lean_object* x_11; lean_object* x_12; +x_10 = lean_ctor_get(x_2, 0); +lean_inc(x_10); +x_11 = lean_ctor_get(x_2, 1); +lean_inc(x_11); lean_dec(x_2); -x_10 = lean_apply_7(x_1, x_8, x_9, x_3, x_4, x_5, x_6, x_7); -return x_10; +x_12 = lean_apply_7(x_1, x_10, x_11, x_3, x_4, x_5, x_6, x_7); +return x_12; } case 4: { -lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; uint8_t x_15; -x_11 = lean_ctor_get(x_2, 0); -lean_inc(x_11); +lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; uint8_t x_17; +x_13 = lean_ctor_get(x_2, 0); +lean_inc(x_13); lean_dec(x_2); -x_12 = lean_ctor_get(x_11, 3); -lean_inc(x_12); -lean_dec(x_11); -x_13 = lean_array_get_size(x_12); -x_14 = lean_unsigned_to_nat(0u); -x_15 = lean_nat_dec_lt(x_14, x_13); -if (x_15 == 0) -{ -uint8_t x_16; lean_object* x_17; lean_object* x_18; +x_14 = lean_ctor_get(x_13, 3); +lean_inc(x_14); lean_dec(x_13); -lean_dec(x_12); +x_15 = lean_array_get_size(x_14); +x_16 = lean_unsigned_to_nat(0u); +x_17 = lean_nat_dec_lt(x_16, x_15); +if (x_17 == 0) +{ +uint8_t x_18; lean_object* x_19; lean_object* x_20; +lean_dec(x_15); +lean_dec(x_14); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_1); -x_16 = 0; -x_17 = lean_box(x_16); -x_18 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_18, 0, x_17); -lean_ctor_set(x_18, 1, x_7); -return x_18; +x_18 = 0; +x_19 = lean_box(x_18); +x_20 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_20, 0, x_19); +lean_ctor_set(x_20, 1, x_7); +return x_20; } else { -uint8_t x_19; -x_19 = lean_nat_dec_le(x_13, x_13); -if (x_19 == 0) +uint8_t x_21; +x_21 = lean_nat_dec_le(x_15, x_15); +if (x_21 == 0) { -uint8_t x_20; lean_object* x_21; lean_object* x_22; -lean_dec(x_13); -lean_dec(x_12); +uint8_t x_22; lean_object* x_23; lean_object* x_24; +lean_dec(x_15); +lean_dec(x_14); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_1); -x_20 = 0; -x_21 = lean_box(x_20); -x_22 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_22, 0, x_21); -lean_ctor_set(x_22, 1, x_7); -return x_22; +x_22 = 0; +x_23 = lean_box(x_22); +x_24 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_24, 0, x_23); +lean_ctor_set(x_24, 1, x_7); +return x_24; } else { -size_t x_23; size_t x_24; lean_object* x_25; -x_23 = 0; -x_24 = lean_usize_of_nat(x_13); -lean_dec(x_13); -x_25 = l_Array_anyMUnsafe_any___at_Lean_Compiler_LCNF_Probe_filterByJmp_go___spec__1(x_1, x_12, x_23, x_24, x_3, x_4, x_5, x_6, x_7); -lean_dec(x_12); -return x_25; +size_t x_25; size_t x_26; lean_object* x_27; +x_25 = 0; +x_26 = lean_usize_of_nat(x_15); +lean_dec(x_15); +x_27 = l_Array_anyMUnsafe_any___at_Lean_Compiler_LCNF_Probe_filterByJmp_go___spec__1(x_1, x_14, x_25, x_26, x_3, x_4, x_5, x_6, x_7); +lean_dec(x_14); +return x_27; } } } case 5: { -uint8_t x_26; lean_object* x_27; lean_object* x_28; +uint8_t x_28; lean_object* x_29; lean_object* x_30; lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_26 = 0; -x_27 = lean_box(x_26); -x_28 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_28, 0, x_27); -lean_ctor_set(x_28, 1, x_7); -return x_28; +x_28 = 0; +x_29 = lean_box(x_28); +x_30 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_30, 0, x_29); +lean_ctor_set(x_30, 1, x_7); +return x_30; } case 6: { -uint8_t x_29; lean_object* x_30; lean_object* x_31; +uint8_t x_31; lean_object* x_32; lean_object* x_33; lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_29 = 0; -x_30 = lean_box(x_29); -x_31 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_31, 0, x_30); -lean_ctor_set(x_31, 1, x_7); -return x_31; +x_31 = 0; +x_32 = lean_box(x_31); +x_33 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_33, 0, x_32); +lean_ctor_set(x_33, 1, x_7); +return x_33; } default: { -lean_object* x_32; -x_32 = lean_ctor_get(x_2, 1); -lean_inc(x_32); +lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; +x_34 = lean_ctor_get(x_2, 0); +lean_inc(x_34); +x_35 = lean_ctor_get(x_2, 1); +lean_inc(x_35); lean_dec(x_2); -x_2 = x_32; +x_36 = lean_ctor_get(x_34, 4); +lean_inc(x_36); +lean_dec(x_34); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +lean_inc(x_1); +x_37 = l_Lean_Compiler_LCNF_Probe_filterByJmp_go(x_1, x_36, x_3, x_4, x_5, x_6, x_7); +if (lean_obj_tag(x_37) == 0) +{ +lean_object* x_38; uint8_t x_39; +x_38 = lean_ctor_get(x_37, 0); +lean_inc(x_38); +x_39 = lean_unbox(x_38); +if (x_39 == 0) +{ +lean_object* x_40; +lean_dec(x_38); +x_40 = lean_ctor_get(x_37, 1); +lean_inc(x_40); +lean_dec(x_37); +x_2 = x_35; +x_7 = x_40; goto _start; } +else +{ +uint8_t x_42; +lean_dec(x_35); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_1); +x_42 = !lean_is_exclusive(x_37); +if (x_42 == 0) +{ +lean_object* x_43; +x_43 = lean_ctor_get(x_37, 0); +lean_dec(x_43); +return x_37; +} +else +{ +lean_object* x_44; lean_object* x_45; +x_44 = lean_ctor_get(x_37, 1); +lean_inc(x_44); +lean_dec(x_37); +x_45 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_45, 0, x_38); +lean_ctor_set(x_45, 1, x_44); +return x_45; +} +} +} +else +{ +uint8_t x_46; +lean_dec(x_35); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_1); +x_46 = !lean_is_exclusive(x_37); +if (x_46 == 0) +{ +return x_37; +} +else +{ +lean_object* x_47; lean_object* x_48; lean_object* x_49; +x_47 = lean_ctor_get(x_37, 0); +x_48 = lean_ctor_get(x_37, 1); +lean_inc(x_48); +lean_inc(x_47); +lean_dec(x_37); +x_49 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_49, 0, x_47); +lean_ctor_set(x_49, 1, x_48); +return x_49; +} +} +} } } } @@ -8324,118 +10098,211 @@ LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Probe_filterByReturn_go(lean_objec _start: { switch (lean_obj_tag(x_2)) { +case 0: +{ +lean_object* x_8; +x_8 = lean_ctor_get(x_2, 1); +lean_inc(x_8); +lean_dec(x_2); +x_2 = x_8; +goto _start; +} case 3: { -uint8_t x_8; lean_object* x_9; lean_object* x_10; +uint8_t x_10; lean_object* x_11; lean_object* x_12; lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_8 = 0; -x_9 = lean_box(x_8); -x_10 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_10, 0, x_9); -lean_ctor_set(x_10, 1, x_7); -return x_10; +x_10 = 0; +x_11 = lean_box(x_10); +x_12 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_12, 0, x_11); +lean_ctor_set(x_12, 1, x_7); +return x_12; } case 4: { -lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; uint8_t x_15; -x_11 = lean_ctor_get(x_2, 0); -lean_inc(x_11); +lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; uint8_t x_17; +x_13 = lean_ctor_get(x_2, 0); +lean_inc(x_13); lean_dec(x_2); -x_12 = lean_ctor_get(x_11, 3); -lean_inc(x_12); -lean_dec(x_11); -x_13 = lean_array_get_size(x_12); -x_14 = lean_unsigned_to_nat(0u); -x_15 = lean_nat_dec_lt(x_14, x_13); -if (x_15 == 0) -{ -uint8_t x_16; lean_object* x_17; lean_object* x_18; +x_14 = lean_ctor_get(x_13, 3); +lean_inc(x_14); lean_dec(x_13); -lean_dec(x_12); +x_15 = lean_array_get_size(x_14); +x_16 = lean_unsigned_to_nat(0u); +x_17 = lean_nat_dec_lt(x_16, x_15); +if (x_17 == 0) +{ +uint8_t x_18; lean_object* x_19; lean_object* x_20; +lean_dec(x_15); +lean_dec(x_14); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_1); -x_16 = 0; -x_17 = lean_box(x_16); -x_18 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_18, 0, x_17); -lean_ctor_set(x_18, 1, x_7); -return x_18; +x_18 = 0; +x_19 = lean_box(x_18); +x_20 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_20, 0, x_19); +lean_ctor_set(x_20, 1, x_7); +return x_20; } else { -uint8_t x_19; -x_19 = lean_nat_dec_le(x_13, x_13); -if (x_19 == 0) +uint8_t x_21; +x_21 = lean_nat_dec_le(x_15, x_15); +if (x_21 == 0) { -uint8_t x_20; lean_object* x_21; lean_object* x_22; -lean_dec(x_13); -lean_dec(x_12); +uint8_t x_22; lean_object* x_23; lean_object* x_24; +lean_dec(x_15); +lean_dec(x_14); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_1); -x_20 = 0; -x_21 = lean_box(x_20); -x_22 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_22, 0, x_21); -lean_ctor_set(x_22, 1, x_7); -return x_22; +x_22 = 0; +x_23 = lean_box(x_22); +x_24 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_24, 0, x_23); +lean_ctor_set(x_24, 1, x_7); +return x_24; } else { -size_t x_23; size_t x_24; lean_object* x_25; -x_23 = 0; -x_24 = lean_usize_of_nat(x_13); -lean_dec(x_13); -x_25 = l_Array_anyMUnsafe_any___at_Lean_Compiler_LCNF_Probe_filterByReturn_go___spec__1(x_1, x_12, x_23, x_24, x_3, x_4, x_5, x_6, x_7); -lean_dec(x_12); -return x_25; +size_t x_25; size_t x_26; lean_object* x_27; +x_25 = 0; +x_26 = lean_usize_of_nat(x_15); +lean_dec(x_15); +x_27 = l_Array_anyMUnsafe_any___at_Lean_Compiler_LCNF_Probe_filterByReturn_go___spec__1(x_1, x_14, x_25, x_26, x_3, x_4, x_5, x_6, x_7); +lean_dec(x_14); +return x_27; } } } case 5: { -lean_object* x_26; lean_object* x_27; -x_26 = lean_ctor_get(x_2, 0); -lean_inc(x_26); +lean_object* x_28; lean_object* x_29; +x_28 = lean_ctor_get(x_2, 0); +lean_inc(x_28); lean_dec(x_2); -x_27 = lean_apply_6(x_1, x_26, x_3, x_4, x_5, x_6, x_7); -return x_27; +x_29 = lean_apply_6(x_1, x_28, x_3, x_4, x_5, x_6, x_7); +return x_29; } case 6: { -uint8_t x_28; lean_object* x_29; lean_object* x_30; +uint8_t x_30; lean_object* x_31; lean_object* x_32; lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_28 = 0; -x_29 = lean_box(x_28); -x_30 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_30, 0, x_29); -lean_ctor_set(x_30, 1, x_7); -return x_30; +x_30 = 0; +x_31 = lean_box(x_30); +x_32 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_32, 0, x_31); +lean_ctor_set(x_32, 1, x_7); +return x_32; } default: { -lean_object* x_31; -x_31 = lean_ctor_get(x_2, 1); -lean_inc(x_31); +lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; +x_33 = lean_ctor_get(x_2, 0); +lean_inc(x_33); +x_34 = lean_ctor_get(x_2, 1); +lean_inc(x_34); lean_dec(x_2); -x_2 = x_31; +x_35 = lean_ctor_get(x_33, 4); +lean_inc(x_35); +lean_dec(x_33); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +lean_inc(x_1); +x_36 = l_Lean_Compiler_LCNF_Probe_filterByReturn_go(x_1, x_35, x_3, x_4, x_5, x_6, x_7); +if (lean_obj_tag(x_36) == 0) +{ +lean_object* x_37; uint8_t x_38; +x_37 = lean_ctor_get(x_36, 0); +lean_inc(x_37); +x_38 = lean_unbox(x_37); +if (x_38 == 0) +{ +lean_object* x_39; +lean_dec(x_37); +x_39 = lean_ctor_get(x_36, 1); +lean_inc(x_39); +lean_dec(x_36); +x_2 = x_34; +x_7 = x_39; goto _start; } +else +{ +uint8_t x_41; +lean_dec(x_34); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_1); +x_41 = !lean_is_exclusive(x_36); +if (x_41 == 0) +{ +lean_object* x_42; +x_42 = lean_ctor_get(x_36, 0); +lean_dec(x_42); +return x_36; +} +else +{ +lean_object* x_43; lean_object* x_44; +x_43 = lean_ctor_get(x_36, 1); +lean_inc(x_43); +lean_dec(x_36); +x_44 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_44, 0, x_37); +lean_ctor_set(x_44, 1, x_43); +return x_44; +} +} +} +else +{ +uint8_t x_45; +lean_dec(x_34); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_1); +x_45 = !lean_is_exclusive(x_36); +if (x_45 == 0) +{ +return x_36; +} +else +{ +lean_object* x_46; lean_object* x_47; lean_object* x_48; +x_46 = lean_ctor_get(x_36, 0); +x_47 = lean_ctor_get(x_36, 1); +lean_inc(x_47); +lean_inc(x_46); +lean_dec(x_36); +x_48 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_48, 0, x_46); +lean_ctor_set(x_48, 1, x_47); +return x_48; +} +} +} } } } @@ -8744,118 +10611,211 @@ LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Probe_filterByUnreach_go(lean_obje _start: { switch (lean_obj_tag(x_2)) { +case 0: +{ +lean_object* x_8; +x_8 = lean_ctor_get(x_2, 1); +lean_inc(x_8); +lean_dec(x_2); +x_2 = x_8; +goto _start; +} case 3: { -uint8_t x_8; lean_object* x_9; lean_object* x_10; +uint8_t x_10; lean_object* x_11; lean_object* x_12; lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_8 = 0; -x_9 = lean_box(x_8); -x_10 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_10, 0, x_9); -lean_ctor_set(x_10, 1, x_7); -return x_10; +x_10 = 0; +x_11 = lean_box(x_10); +x_12 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_12, 0, x_11); +lean_ctor_set(x_12, 1, x_7); +return x_12; } case 4: { -lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; uint8_t x_15; -x_11 = lean_ctor_get(x_2, 0); -lean_inc(x_11); +lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; uint8_t x_17; +x_13 = lean_ctor_get(x_2, 0); +lean_inc(x_13); lean_dec(x_2); -x_12 = lean_ctor_get(x_11, 3); -lean_inc(x_12); -lean_dec(x_11); -x_13 = lean_array_get_size(x_12); -x_14 = lean_unsigned_to_nat(0u); -x_15 = lean_nat_dec_lt(x_14, x_13); -if (x_15 == 0) -{ -uint8_t x_16; lean_object* x_17; lean_object* x_18; +x_14 = lean_ctor_get(x_13, 3); +lean_inc(x_14); lean_dec(x_13); -lean_dec(x_12); +x_15 = lean_array_get_size(x_14); +x_16 = lean_unsigned_to_nat(0u); +x_17 = lean_nat_dec_lt(x_16, x_15); +if (x_17 == 0) +{ +uint8_t x_18; lean_object* x_19; lean_object* x_20; +lean_dec(x_15); +lean_dec(x_14); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_1); -x_16 = 0; -x_17 = lean_box(x_16); -x_18 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_18, 0, x_17); -lean_ctor_set(x_18, 1, x_7); -return x_18; +x_18 = 0; +x_19 = lean_box(x_18); +x_20 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_20, 0, x_19); +lean_ctor_set(x_20, 1, x_7); +return x_20; } else { -uint8_t x_19; -x_19 = lean_nat_dec_le(x_13, x_13); -if (x_19 == 0) +uint8_t x_21; +x_21 = lean_nat_dec_le(x_15, x_15); +if (x_21 == 0) { -uint8_t x_20; lean_object* x_21; lean_object* x_22; -lean_dec(x_13); -lean_dec(x_12); +uint8_t x_22; lean_object* x_23; lean_object* x_24; +lean_dec(x_15); +lean_dec(x_14); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_1); -x_20 = 0; -x_21 = lean_box(x_20); -x_22 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_22, 0, x_21); -lean_ctor_set(x_22, 1, x_7); -return x_22; +x_22 = 0; +x_23 = lean_box(x_22); +x_24 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_24, 0, x_23); +lean_ctor_set(x_24, 1, x_7); +return x_24; } else { -size_t x_23; size_t x_24; lean_object* x_25; -x_23 = 0; -x_24 = lean_usize_of_nat(x_13); -lean_dec(x_13); -x_25 = l_Array_anyMUnsafe_any___at_Lean_Compiler_LCNF_Probe_filterByUnreach_go___spec__1(x_1, x_12, x_23, x_24, x_3, x_4, x_5, x_6, x_7); -lean_dec(x_12); -return x_25; +size_t x_25; size_t x_26; lean_object* x_27; +x_25 = 0; +x_26 = lean_usize_of_nat(x_15); +lean_dec(x_15); +x_27 = l_Array_anyMUnsafe_any___at_Lean_Compiler_LCNF_Probe_filterByUnreach_go___spec__1(x_1, x_14, x_25, x_26, x_3, x_4, x_5, x_6, x_7); +lean_dec(x_14); +return x_27; } } } case 5: { -uint8_t x_26; lean_object* x_27; lean_object* x_28; +uint8_t x_28; lean_object* x_29; lean_object* x_30; lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_26 = 0; -x_27 = lean_box(x_26); -x_28 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_28, 0, x_27); -lean_ctor_set(x_28, 1, x_7); -return x_28; +x_28 = 0; +x_29 = lean_box(x_28); +x_30 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_30, 0, x_29); +lean_ctor_set(x_30, 1, x_7); +return x_30; } case 6: { -lean_object* x_29; lean_object* x_30; -x_29 = lean_ctor_get(x_2, 0); -lean_inc(x_29); +lean_object* x_31; lean_object* x_32; +x_31 = lean_ctor_get(x_2, 0); +lean_inc(x_31); lean_dec(x_2); -x_30 = lean_apply_6(x_1, x_29, x_3, x_4, x_5, x_6, x_7); -return x_30; +x_32 = lean_apply_6(x_1, x_31, x_3, x_4, x_5, x_6, x_7); +return x_32; } default: { -lean_object* x_31; -x_31 = lean_ctor_get(x_2, 1); -lean_inc(x_31); +lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; +x_33 = lean_ctor_get(x_2, 0); +lean_inc(x_33); +x_34 = lean_ctor_get(x_2, 1); +lean_inc(x_34); lean_dec(x_2); -x_2 = x_31; +x_35 = lean_ctor_get(x_33, 4); +lean_inc(x_35); +lean_dec(x_33); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +lean_inc(x_1); +x_36 = l_Lean_Compiler_LCNF_Probe_filterByUnreach_go(x_1, x_35, x_3, x_4, x_5, x_6, x_7); +if (lean_obj_tag(x_36) == 0) +{ +lean_object* x_37; uint8_t x_38; +x_37 = lean_ctor_get(x_36, 0); +lean_inc(x_37); +x_38 = lean_unbox(x_37); +if (x_38 == 0) +{ +lean_object* x_39; +lean_dec(x_37); +x_39 = lean_ctor_get(x_36, 1); +lean_inc(x_39); +lean_dec(x_36); +x_2 = x_34; +x_7 = x_39; goto _start; } +else +{ +uint8_t x_41; +lean_dec(x_34); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_1); +x_41 = !lean_is_exclusive(x_36); +if (x_41 == 0) +{ +lean_object* x_42; +x_42 = lean_ctor_get(x_36, 0); +lean_dec(x_42); +return x_36; +} +else +{ +lean_object* x_43; lean_object* x_44; +x_43 = lean_ctor_get(x_36, 1); +lean_inc(x_43); +lean_dec(x_36); +x_44 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_44, 0, x_37); +lean_ctor_set(x_44, 1, x_43); +return x_44; +} +} +} +else +{ +uint8_t x_45; +lean_dec(x_34); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_1); +x_45 = !lean_is_exclusive(x_36); +if (x_45 == 0) +{ +return x_36; +} +else +{ +lean_object* x_46; lean_object* x_47; lean_object* x_48; +x_46 = lean_ctor_get(x_36, 0); +x_47 = lean_ctor_get(x_36, 1); +lean_inc(x_47); +lean_inc(x_46); +lean_dec(x_36); +x_48 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_48, 0, x_46); +lean_ctor_set(x_48, 1, x_47); +return x_48; +} +} +} } } } @@ -9338,6 +11298,76 @@ lean_dec(x_1); return x_7; } } +LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Probe_tail___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +_start: +{ +lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; +x_8 = lean_array_get_size(x_2); +x_9 = lean_nat_sub(x_8, x_1); +lean_dec(x_8); +x_10 = lean_array_get_size(x_2); +x_11 = l_Array_toSubarray___rarg(x_2, x_9, x_10); +x_12 = l_Array_ofSubarray___rarg(x_11); +x_13 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_13, 0, x_12); +lean_ctor_set(x_13, 1, x_7); +return x_13; +} +} +LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Probe_tail(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l_Lean_Compiler_LCNF_Probe_tail___rarg___boxed), 7, 0); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Probe_tail___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +_start: +{ +lean_object* x_8; +x_8 = l_Lean_Compiler_LCNF_Probe_tail___rarg(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_1); +return x_8; +} +} +LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Probe_head___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +_start: +{ +lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; +x_8 = lean_unsigned_to_nat(0u); +x_9 = l_Array_toSubarray___rarg(x_2, x_8, x_1); +x_10 = l_Array_ofSubarray___rarg(x_9); +x_11 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_11, 0, x_10); +lean_ctor_set(x_11, 1, x_7); +return x_11; +} +} +LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Probe_head(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l_Lean_Compiler_LCNF_Probe_head___rarg___boxed), 7, 0); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Probe_head___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +_start: +{ +lean_object* x_8; +x_8 = l_Lean_Compiler_LCNF_Probe_head___rarg(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +return x_8; +} +} LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Compiler_LCNF_Probe_runOnModule___spec__1___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { @@ -10197,7 +12227,7 @@ x_5 = l_Lean_Compiler_LCNF_Probe_toPass___rarg(x_1, x_2, x_4); return x_5; } } -LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Probe_initFn____x40_Lean_Compiler_LCNF_Probing___hyg_3534_(lean_object* x_1) { +LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Probe_initFn____x40_Lean_Compiler_LCNF_Probing___hyg_4146_(lean_object* x_1) { _start: { lean_object* x_2; uint8_t x_3; lean_object* x_4; @@ -10234,6 +12264,10 @@ if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_Lean_Compiler_LCNF_Probe_filter___rarg___closed__1 = _init_l_Lean_Compiler_LCNF_Probe_filter___rarg___closed__1(); lean_mark_persistent(l_Lean_Compiler_LCNF_Probe_filter___rarg___closed__1); +l_Array_qsort_sort___at_Lean_Compiler_LCNF_Probe_sortedBySize___spec__2___closed__1 = _init_l_Array_qsort_sort___at_Lean_Compiler_LCNF_Probe_sortedBySize___spec__2___closed__1(); +lean_mark_persistent(l_Array_qsort_sort___at_Lean_Compiler_LCNF_Probe_sortedBySize___spec__2___closed__1); +l_Lean_Compiler_LCNF_Probe_sortedBySize___closed__1 = _init_l_Lean_Compiler_LCNF_Probe_sortedBySize___closed__1(); +lean_mark_persistent(l_Lean_Compiler_LCNF_Probe_sortedBySize___closed__1); l_Lean_Compiler_LCNF_Probe_countUnique___rarg___closed__1 = _init_l_Lean_Compiler_LCNF_Probe_countUnique___rarg___closed__1(); lean_mark_persistent(l_Lean_Compiler_LCNF_Probe_countUnique___rarg___closed__1); l_Array_qsort_sort___at_Lean_Compiler_LCNF_Probe_countUniqueSorted___spec__1___rarg___closed__1 = _init_l_Array_qsort_sort___at_Lean_Compiler_LCNF_Probe_countUniqueSorted___spec__1___rarg___closed__1(); @@ -10284,7 +12318,7 @@ l_Lean_Compiler_LCNF_Probe_toPass___elambda__1___rarg___closed__5 = _init_l_Lean lean_mark_persistent(l_Lean_Compiler_LCNF_Probe_toPass___elambda__1___rarg___closed__5); l_Lean_Compiler_LCNF_Probe_toPass___rarg___closed__1 = _init_l_Lean_Compiler_LCNF_Probe_toPass___rarg___closed__1(); lean_mark_persistent(l_Lean_Compiler_LCNF_Probe_toPass___rarg___closed__1); -res = l_Lean_Compiler_LCNF_Probe_initFn____x40_Lean_Compiler_LCNF_Probing___hyg_3534_(lean_io_mk_world()); +res = l_Lean_Compiler_LCNF_Probe_initFn____x40_Lean_Compiler_LCNF_Probing___hyg_4146_(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/Compiler/LCNF/ReduceArity.c b/stage0/stdlib/Lean/Compiler/LCNF/ReduceArity.c new file mode 100644 index 0000000000..da0a4ef94b --- /dev/null +++ b/stage0/stdlib/Lean/Compiler/LCNF/ReduceArity.c @@ -0,0 +1,2087 @@ +// Lean compiler output +// Module: Lean.Compiler.LCNF.ReduceArity +// Imports: Init Lean.Compiler.LCNF.CompilerM Lean.Compiler.LCNF.PhaseExt +#include +#if defined(__clang__) +#pragma clang diagnostic ignored "-Wunused-parameter" +#pragma clang diagnostic ignored "-Wunused-label" +#elif defined(__GNUC__) && !defined(__CLANG__) +#pragma GCC diagnostic ignored "-Wunused-parameter" +#pragma GCC diagnostic ignored "-Wunused-label" +#pragma GCC diagnostic ignored "-Wunused-but-set-variable" +#endif +#ifdef __cplusplus +extern "C" { +#endif +lean_object* l_List_reverse___rarg(lean_object*); +LEAN_EXPORT lean_object* l_Lean_RBNode_revFold___at_Lean_Compiler_LCNF_Decl_reduceArity___spec__3(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_ReduceArity_visitArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_addTrace___at_Lean_Compiler_LCNF_Decl_reduceArity___spec__5___closed__5; +size_t lean_usize_add(size_t, size_t); +lean_object* l_Lean_registerTraceClass(lean_object*, uint8_t, lean_object*); +lean_object* l_Lean_stringToMessageData(lean_object*); +lean_object* l_Lean_RBNode_insert___at___private_Lean_Meta_FunInfo_0__Lean_Meta_getFunInfoAux___spec__1(lean_object*, lean_object*, lean_object*); +lean_object* lean_mk_empty_array_with_capacity(lean_object*); +lean_object* l_Lean_Name_str___override(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_ReduceArity_visitExpr(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t lean_usize_dec_eq(size_t, size_t); +lean_object* lean_array_uget(lean_object*, size_t); +LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_ReduceArity_visitFVar___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* lean_st_ref_get(lean_object*, lean_object*); +static lean_object* l_Lean_addTrace___at_Lean_Compiler_LCNF_Decl_reduceArity___spec__5___closed__6; +LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at_Lean_Compiler_LCNF_Decl_reduceArity___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_ReduceArity___hyg_1339_(lean_object*); +lean_object* l_Lean_Name_mkStr2(lean_object*, lean_object*); +lean_object* l_Array_toSubarray___rarg(lean_object*, lean_object*, lean_object*); +lean_object* lean_array_get_size(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_ReduceArity_collectUsedParams(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_RBNode_revFold___at_Lean_Compiler_LCNF_Decl_reduceArity___spec__3___boxed(lean_object*, lean_object*); +lean_object* l_Lean_MessageData_ofList(lean_object*); +static lean_object* l_Lean_Compiler_LCNF_Decl_reduceArity___closed__4; +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Compiler_LCNF_ReduceArity_collectUsedParams___spec__1(lean_object*, size_t, size_t, lean_object*); +uint8_t lean_usize_dec_lt(size_t, size_t); +LEAN_EXPORT lean_object* l_Lean_RBTree_toList___at_Lean_Compiler_LCNF_Decl_reduceArity___spec__2(lean_object*); +static lean_object* l_Lean_Compiler_LCNF_reduceArity___closed__1; +extern lean_object* l_Lean_levelZero; +LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_ReduceArity_visitArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* lean_nat_add(lean_object*, lean_object*); +static lean_object* l_Lean_Compiler_LCNF_reduceArity___closed__2; +lean_object* l___private_Lean_Expr_0__Lean_Expr_getAppArgsAux(lean_object*, lean_object*, lean_object*); +lean_object* l_List_mapTRAux___at_Lean_MessageData_instCoeListExprMessageData___spec__1(lean_object*, lean_object*); +extern lean_object* l_Lean_inheritedTraceOptions; +LEAN_EXPORT lean_object* l_List_mapTRAux___at_Lean_Compiler_LCNF_Decl_reduceArity___spec__4(lean_object*, lean_object*); +lean_object* lean_array_fget(lean_object*, lean_object*); +static lean_object* l_Lean_Compiler_LCNF_ReduceArity_visitExpr___closed__1; +lean_object* lean_st_ref_take(lean_object*, lean_object*); +lean_object* lean_nat_sub(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Compiler_LCNF_ReduceArity_collectUsedParams___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_ReduceArity_State_used___default; +static lean_object* l_Lean_addTrace___at_Lean_Compiler_LCNF_Decl_reduceArity___spec__5___closed__7; +lean_object* l___private_Lean_Expr_0__Lean_Expr_getAppNumArgsAux(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Subarray_forInUnsafe_loop___at_Lean_Compiler_LCNF_ReduceArity_visitExpr___spec__3(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Compiler_LCNF_ReduceArity_visitExpr___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* lean_st_mk_ref(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Compiler_LCNF_ReduceArity_visit___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Expr_sort___override(lean_object*); +static lean_object* l_Lean_addTrace___at_Lean_Compiler_LCNF_Decl_reduceArity___spec__5___closed__3; +lean_object* l_Lean_Compiler_LCNF_Pass_mkPerDeclaration(lean_object*, lean_object*, uint8_t, lean_object*); +LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at_Lean_Compiler_LCNF_Decl_reduceArity___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_ReduceArity_visitFVar(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Compiler_LCNF_Decl_reduceArity___closed__3; +uint8_t l_Lean_Expr_isConstOf(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_addTrace___at_Lean_Compiler_LCNF_Decl_reduceArity___spec__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +size_t lean_usize_of_nat(lean_object*); +lean_object* l_Lean_PersistentHashMap_mkEmptyEntriesArray(lean_object*, lean_object*); +lean_object* l_Lean_PersistentArray_push___rarg(lean_object*, lean_object*); +static lean_object* l_Lean_Compiler_LCNF_Decl_reduceArity___closed__5; +LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Decl_reduceArity___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Expr_fvar___override(lean_object*); +static lean_object* l_Lean_Compiler_LCNF_reduceArity___closed__3; +static lean_object* l_Lean_Compiler_LCNF_Decl_reduceArity___closed__7; +LEAN_EXPORT lean_object* l_Subarray_forInUnsafe_loop___at_Lean_Compiler_LCNF_ReduceArity_visitExpr___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t lean_nat_dec_le(lean_object*, lean_object*); +static lean_object* l_Lean_isTracingEnabledFor___at_Lean_Compiler_LCNF_Decl_reduceArity___spec__1___closed__1; +lean_object* l_Lean_Compiler_LCNF_AltCore_getCode(lean_object*); +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Compiler_LCNF_ReduceArity_visitExpr___spec__1(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t l___private_Lean_Util_Trace_0__Lean_checkTraceOption(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Compiler_LCNF_LCtx_toLocalContext(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Decl_reduceArity(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Compiler_LCNF_ReduceArity_visitExpr___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_reduceArity; +lean_object* lean_st_ref_set(lean_object*, lean_object*, lean_object*); +uint8_t lean_nat_dec_eq(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_ReduceArity_visit(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Compiler_LCNF_ReduceArity_visit___spec__1(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* lean_mk_array(lean_object*, lean_object*); +lean_object* l_Lean_RBNode_fold___at_Lean_RBMap_size___spec__1___rarg(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Decl_reduceArity___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Compiler_LCNF_Decl_reduceArity___closed__2; +lean_object* l_Lean_Expr_getAppFn(lean_object*); +static lean_object* l_Lean_addTrace___at_Lean_Compiler_LCNF_Decl_reduceArity___spec__5___closed__4; +static lean_object* l_Lean_Compiler_LCNF_Decl_reduceArity___closed__1; +uint8_t l_Lean_Expr_isFVarOf(lean_object*, lean_object*); +static lean_object* l_Lean_Compiler_LCNF_Decl_reduceArity___closed__6; +static lean_object* l_Lean_addTrace___at_Lean_Compiler_LCNF_Decl_reduceArity___spec__5___closed__2; +LEAN_EXPORT lean_object* l_Lean_addTrace___at_Lean_Compiler_LCNF_Decl_reduceArity___spec__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_RBNode_findCore___at___private_Lean_Meta_FunInfo_0__Lean_Meta_getFunInfoAux___spec__5(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Compiler_LCNF_ReduceArity_visitExpr___spec__2(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_addTrace___at_Lean_Compiler_LCNF_Decl_reduceArity___spec__5___closed__1; +uint8_t lean_nat_dec_lt(lean_object*, lean_object*); +static lean_object* _init_l_Lean_Compiler_LCNF_ReduceArity_State_used___default() { +_start: +{ +lean_object* x_1; +x_1 = lean_box(0); +return x_1; +} +} +LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_ReduceArity_visitFVar(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +_start: +{ +lean_object* x_9; lean_object* x_10; +x_9 = lean_ctor_get(x_2, 1); +x_10 = l_Lean_RBNode_findCore___at___private_Lean_Meta_FunInfo_0__Lean_Meta_getFunInfoAux___spec__5(x_9, x_1); +if (lean_obj_tag(x_10) == 0) +{ +lean_object* x_11; lean_object* x_12; +lean_dec(x_1); +x_11 = lean_box(0); +x_12 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_12, 0, x_11); +lean_ctor_set(x_12, 1, x_8); +return x_12; +} +else +{ +lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; uint8_t x_21; +lean_dec(x_10); +x_13 = lean_st_ref_get(x_7, x_8); +x_14 = lean_ctor_get(x_13, 1); +lean_inc(x_14); +lean_dec(x_13); +x_15 = lean_st_ref_take(x_3, x_14); +x_16 = lean_ctor_get(x_15, 0); +lean_inc(x_16); +x_17 = lean_ctor_get(x_15, 1); +lean_inc(x_17); +lean_dec(x_15); +x_18 = lean_box(0); +x_19 = l_Lean_RBNode_insert___at___private_Lean_Meta_FunInfo_0__Lean_Meta_getFunInfoAux___spec__1(x_16, x_1, x_18); +x_20 = lean_st_ref_set(x_3, x_19, x_17); +x_21 = !lean_is_exclusive(x_20); +if (x_21 == 0) +{ +lean_object* x_22; +x_22 = lean_ctor_get(x_20, 0); +lean_dec(x_22); +lean_ctor_set(x_20, 0, x_18); +return x_20; +} +else +{ +lean_object* x_23; lean_object* x_24; +x_23 = lean_ctor_get(x_20, 1); +lean_inc(x_23); +lean_dec(x_20); +x_24 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_24, 0, x_18); +lean_ctor_set(x_24, 1, x_23); +return x_24; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_ReduceArity_visitFVar___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +_start: +{ +lean_object* x_9; +x_9 = l_Lean_Compiler_LCNF_ReduceArity_visitFVar(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +return x_9; +} +} +LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_ReduceArity_visitArg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +_start: +{ +if (lean_obj_tag(x_1) == 1) +{ +lean_object* x_9; lean_object* x_10; +x_9 = lean_ctor_get(x_1, 0); +lean_inc(x_9); +lean_dec(x_1); +x_10 = l_Lean_Compiler_LCNF_ReduceArity_visitFVar(x_9, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +return x_10; +} +else +{ +lean_object* x_11; lean_object* x_12; +lean_dec(x_1); +x_11 = lean_box(0); +x_12 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_12, 0, x_11); +lean_ctor_set(x_12, 1, x_8); +return x_12; +} +} +} +LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_ReduceArity_visitArg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +_start: +{ +lean_object* x_9; +x_9 = l_Lean_Compiler_LCNF_ReduceArity_visitArg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +return x_9; +} +} +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Compiler_LCNF_ReduceArity_visitExpr___spec__1(lean_object* x_1, size_t x_2, size_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +_start: +{ +uint8_t x_12; +x_12 = lean_usize_dec_eq(x_2, x_3); +if (x_12 == 0) +{ +lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; size_t x_17; size_t x_18; +lean_dec(x_4); +x_13 = lean_array_uget(x_1, x_2); +x_14 = l_Lean_Compiler_LCNF_ReduceArity_visitArg(x_13, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_15 = lean_ctor_get(x_14, 0); +lean_inc(x_15); +x_16 = lean_ctor_get(x_14, 1); +lean_inc(x_16); +lean_dec(x_14); +x_17 = 1; +x_18 = lean_usize_add(x_2, x_17); +x_2 = x_18; +x_4 = x_15; +x_11 = x_16; +goto _start; +} +else +{ +lean_object* x_20; +x_20 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_20, 0, x_4); +lean_ctor_set(x_20, 1, x_11); +return x_20; +} +} +} +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Compiler_LCNF_ReduceArity_visitExpr___spec__2(lean_object* x_1, size_t x_2, size_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +_start: +{ +uint8_t x_12; +x_12 = lean_usize_dec_lt(x_3, x_2); +if (x_12 == 0) +{ +lean_object* x_13; +x_13 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_13, 0, x_4); +lean_ctor_set(x_13, 1, x_11); +return x_13; +} +else +{ +lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; uint8_t x_18; +x_14 = lean_array_uget(x_1, x_3); +x_15 = lean_ctor_get(x_4, 0); +lean_inc(x_15); +x_16 = lean_ctor_get(x_4, 1); +lean_inc(x_16); +x_17 = lean_ctor_get(x_4, 2); +lean_inc(x_17); +x_18 = lean_nat_dec_lt(x_16, x_17); +if (x_18 == 0) +{ +lean_object* x_19; +lean_dec(x_17); +lean_dec(x_16); +lean_dec(x_15); +lean_dec(x_14); +x_19 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_19, 0, x_4); +lean_ctor_set(x_19, 1, x_11); +return x_19; +} +else +{ +uint8_t x_20; +x_20 = !lean_is_exclusive(x_4); +if (x_20 == 0) +{ +lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; uint8_t x_28; +x_21 = lean_ctor_get(x_4, 2); +lean_dec(x_21); +x_22 = lean_ctor_get(x_4, 1); +lean_dec(x_22); +x_23 = lean_ctor_get(x_4, 0); +lean_dec(x_23); +x_24 = lean_array_fget(x_15, x_16); +x_25 = lean_unsigned_to_nat(1u); +x_26 = lean_nat_add(x_16, x_25); +lean_dec(x_16); +lean_ctor_set(x_4, 1, x_26); +x_27 = lean_ctor_get(x_14, 0); +lean_inc(x_27); +lean_dec(x_14); +x_28 = l_Lean_Expr_isFVarOf(x_24, x_27); +lean_dec(x_27); +if (x_28 == 0) +{ +lean_object* x_29; lean_object* x_30; size_t x_31; size_t x_32; +x_29 = l_Lean_Compiler_LCNF_ReduceArity_visitArg(x_24, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_30 = lean_ctor_get(x_29, 1); +lean_inc(x_30); +lean_dec(x_29); +x_31 = 1; +x_32 = lean_usize_add(x_3, x_31); +x_3 = x_32; +x_11 = x_30; +goto _start; +} +else +{ +size_t x_34; size_t x_35; +lean_dec(x_24); +x_34 = 1; +x_35 = lean_usize_add(x_3, x_34); +x_3 = x_35; +goto _start; +} +} +else +{ +lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; uint8_t x_42; +lean_dec(x_4); +x_37 = lean_array_fget(x_15, x_16); +x_38 = lean_unsigned_to_nat(1u); +x_39 = lean_nat_add(x_16, x_38); +lean_dec(x_16); +x_40 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_40, 0, x_15); +lean_ctor_set(x_40, 1, x_39); +lean_ctor_set(x_40, 2, x_17); +x_41 = lean_ctor_get(x_14, 0); +lean_inc(x_41); +lean_dec(x_14); +x_42 = l_Lean_Expr_isFVarOf(x_37, x_41); +lean_dec(x_41); +if (x_42 == 0) +{ +lean_object* x_43; lean_object* x_44; size_t x_45; size_t x_46; +x_43 = l_Lean_Compiler_LCNF_ReduceArity_visitArg(x_37, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_44 = lean_ctor_get(x_43, 1); +lean_inc(x_44); +lean_dec(x_43); +x_45 = 1; +x_46 = lean_usize_add(x_3, x_45); +x_3 = x_46; +x_4 = x_40; +x_11 = x_44; +goto _start; +} +else +{ +size_t x_48; size_t x_49; +lean_dec(x_37); +x_48 = 1; +x_49 = lean_usize_add(x_3, x_48); +x_3 = x_49; +x_4 = x_40; +goto _start; +} +} +} +} +} +} +LEAN_EXPORT lean_object* l_Subarray_forInUnsafe_loop___at_Lean_Compiler_LCNF_ReduceArity_visitExpr___spec__3(lean_object* x_1, size_t x_2, size_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +_start: +{ +uint8_t x_12; +x_12 = lean_usize_dec_lt(x_3, x_2); +if (x_12 == 0) +{ +lean_object* x_13; +x_13 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_13, 0, x_4); +lean_ctor_set(x_13, 1, x_11); +return x_13; +} +else +{ +lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; size_t x_18; size_t x_19; lean_object* x_20; +lean_dec(x_4); +x_14 = lean_ctor_get(x_1, 0); +x_15 = lean_array_uget(x_14, x_3); +x_16 = l_Lean_Compiler_LCNF_ReduceArity_visitArg(x_15, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_17 = lean_ctor_get(x_16, 1); +lean_inc(x_17); +lean_dec(x_16); +x_18 = 1; +x_19 = lean_usize_add(x_3, x_18); +x_20 = lean_box(0); +x_3 = x_19; +x_4 = x_20; +x_11 = x_17; +goto _start; +} +} +} +static lean_object* _init_l_Lean_Compiler_LCNF_ReduceArity_visitExpr___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_levelZero; +x_2 = l_Lean_Expr_sort___override(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_ReduceArity_visitExpr(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +_start: +{ +switch (lean_obj_tag(x_1)) { +case 1: +{ +lean_object* x_9; lean_object* x_10; +x_9 = lean_ctor_get(x_1, 0); +lean_inc(x_9); +lean_dec(x_1); +x_10 = l_Lean_Compiler_LCNF_ReduceArity_visitFVar(x_9, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +return x_10; +} +case 5: +{ +lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; uint8_t x_21; +x_11 = l_Lean_Expr_getAppFn(x_1); +x_12 = lean_unsigned_to_nat(0u); +x_13 = l___private_Lean_Expr_0__Lean_Expr_getAppNumArgsAux(x_1, x_12); +x_14 = l_Lean_Compiler_LCNF_ReduceArity_visitExpr___closed__1; +lean_inc(x_13); +x_15 = lean_mk_array(x_13, x_14); +x_16 = lean_unsigned_to_nat(1u); +x_17 = lean_nat_sub(x_13, x_16); +lean_dec(x_13); +x_18 = l___private_Lean_Expr_0__Lean_Expr_getAppArgsAux(x_1, x_15, x_17); +x_19 = lean_ctor_get(x_2, 0); +lean_inc(x_19); +x_20 = lean_ctor_get(x_19, 0); +lean_inc(x_20); +x_21 = l_Lean_Expr_isConstOf(x_11, x_20); +lean_dec(x_20); +if (x_21 == 0) +{ +lean_object* x_22; uint8_t x_23; +lean_dec(x_19); +x_22 = l_Lean_Compiler_LCNF_ReduceArity_visitArg(x_11, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_23 = !lean_is_exclusive(x_22); +if (x_23 == 0) +{ +lean_object* x_24; lean_object* x_25; lean_object* x_26; uint8_t x_27; +x_24 = lean_ctor_get(x_22, 1); +x_25 = lean_ctor_get(x_22, 0); +lean_dec(x_25); +x_26 = lean_array_get_size(x_18); +x_27 = lean_nat_dec_lt(x_12, x_26); +if (x_27 == 0) +{ +lean_object* x_28; +lean_dec(x_26); +lean_dec(x_18); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_28 = lean_box(0); +lean_ctor_set(x_22, 0, x_28); +return x_22; +} +else +{ +uint8_t x_29; +x_29 = lean_nat_dec_le(x_26, x_26); +if (x_29 == 0) +{ +lean_object* x_30; +lean_dec(x_26); +lean_dec(x_18); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_30 = lean_box(0); +lean_ctor_set(x_22, 0, x_30); +return x_22; +} +else +{ +size_t x_31; size_t x_32; lean_object* x_33; lean_object* x_34; +lean_free_object(x_22); +x_31 = 0; +x_32 = lean_usize_of_nat(x_26); +lean_dec(x_26); +x_33 = lean_box(0); +x_34 = l_Array_foldlMUnsafe_fold___at_Lean_Compiler_LCNF_ReduceArity_visitExpr___spec__1(x_18, x_31, x_32, x_33, x_2, x_3, x_4, x_5, x_6, x_7, x_24); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_18); +return x_34; +} +} +} +else +{ +lean_object* x_35; lean_object* x_36; uint8_t x_37; +x_35 = lean_ctor_get(x_22, 1); +lean_inc(x_35); +lean_dec(x_22); +x_36 = lean_array_get_size(x_18); +x_37 = lean_nat_dec_lt(x_12, x_36); +if (x_37 == 0) +{ +lean_object* x_38; lean_object* x_39; +lean_dec(x_36); +lean_dec(x_18); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_38 = lean_box(0); +x_39 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_39, 0, x_38); +lean_ctor_set(x_39, 1, x_35); +return x_39; +} +else +{ +uint8_t x_40; +x_40 = lean_nat_dec_le(x_36, x_36); +if (x_40 == 0) +{ +lean_object* x_41; lean_object* x_42; +lean_dec(x_36); +lean_dec(x_18); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_41 = lean_box(0); +x_42 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_42, 0, x_41); +lean_ctor_set(x_42, 1, x_35); +return x_42; +} +else +{ +size_t x_43; size_t x_44; lean_object* x_45; lean_object* x_46; +x_43 = 0; +x_44 = lean_usize_of_nat(x_36); +lean_dec(x_36); +x_45 = lean_box(0); +x_46 = l_Array_foldlMUnsafe_fold___at_Lean_Compiler_LCNF_ReduceArity_visitExpr___spec__1(x_18, x_43, x_44, x_45, x_2, x_3, x_4, x_5, x_6, x_7, x_35); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_18); +return x_46; +} +} +} +} +else +{ +lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; size_t x_51; size_t x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; size_t x_59; lean_object* x_60; size_t x_61; lean_object* x_62; lean_object* x_63; uint8_t x_64; +lean_dec(x_11); +x_47 = lean_array_get_size(x_18); +lean_inc(x_18); +x_48 = l_Array_toSubarray___rarg(x_18, x_12, x_47); +x_49 = lean_ctor_get(x_19, 3); +lean_inc(x_49); +lean_dec(x_19); +x_50 = lean_array_get_size(x_49); +x_51 = lean_usize_of_nat(x_50); +lean_dec(x_50); +x_52 = 0; +x_53 = l_Array_forInUnsafe_loop___at_Lean_Compiler_LCNF_ReduceArity_visitExpr___spec__2(x_49, x_51, x_52, x_48, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_54 = lean_ctor_get(x_53, 1); +lean_inc(x_54); +lean_dec(x_53); +x_55 = lean_array_get_size(x_49); +lean_dec(x_49); +x_56 = lean_array_get_size(x_18); +x_57 = l_Array_toSubarray___rarg(x_18, x_55, x_56); +x_58 = lean_ctor_get(x_57, 2); +lean_inc(x_58); +x_59 = lean_usize_of_nat(x_58); +lean_dec(x_58); +x_60 = lean_ctor_get(x_57, 1); +lean_inc(x_60); +x_61 = lean_usize_of_nat(x_60); +lean_dec(x_60); +x_62 = lean_box(0); +x_63 = l_Subarray_forInUnsafe_loop___at_Lean_Compiler_LCNF_ReduceArity_visitExpr___spec__3(x_57, x_59, x_61, x_62, x_2, x_3, x_4, x_5, x_6, x_7, x_54); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_57); +x_64 = !lean_is_exclusive(x_63); +if (x_64 == 0) +{ +lean_object* x_65; +x_65 = lean_ctor_get(x_63, 0); +lean_dec(x_65); +lean_ctor_set(x_63, 0, x_62); +return x_63; +} +else +{ +lean_object* x_66; lean_object* x_67; +x_66 = lean_ctor_get(x_63, 1); +lean_inc(x_66); +lean_dec(x_63); +x_67 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_67, 0, x_62); +lean_ctor_set(x_67, 1, x_66); +return x_67; +} +} +} +case 10: +{ +lean_object* x_68; +x_68 = lean_ctor_get(x_1, 1); +lean_inc(x_68); +lean_dec(x_1); +x_1 = x_68; +goto _start; +} +case 11: +{ +lean_object* x_70; +x_70 = lean_ctor_get(x_1, 2); +lean_inc(x_70); +lean_dec(x_1); +x_1 = x_70; +goto _start; +} +default: +{ +lean_object* x_72; lean_object* x_73; +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_72 = lean_box(0); +x_73 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_73, 0, x_72); +lean_ctor_set(x_73, 1, x_8); +return x_73; +} +} +} +} +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Compiler_LCNF_ReduceArity_visitExpr___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +_start: +{ +size_t x_12; size_t x_13; lean_object* x_14; +x_12 = lean_unbox_usize(x_2); +lean_dec(x_2); +x_13 = lean_unbox_usize(x_3); +lean_dec(x_3); +x_14 = l_Array_foldlMUnsafe_fold___at_Lean_Compiler_LCNF_ReduceArity_visitExpr___spec__1(x_1, x_12, x_13, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_1); +return x_14; +} +} +LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Compiler_LCNF_ReduceArity_visitExpr___spec__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +_start: +{ +size_t x_12; size_t x_13; lean_object* x_14; +x_12 = lean_unbox_usize(x_2); +lean_dec(x_2); +x_13 = lean_unbox_usize(x_3); +lean_dec(x_3); +x_14 = l_Array_forInUnsafe_loop___at_Lean_Compiler_LCNF_ReduceArity_visitExpr___spec__2(x_1, x_12, x_13, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_1); +return x_14; +} +} +LEAN_EXPORT lean_object* l_Subarray_forInUnsafe_loop___at_Lean_Compiler_LCNF_ReduceArity_visitExpr___spec__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +_start: +{ +size_t x_12; size_t x_13; lean_object* x_14; +x_12 = lean_unbox_usize(x_2); +lean_dec(x_2); +x_13 = lean_unbox_usize(x_3); +lean_dec(x_3); +x_14 = l_Subarray_forInUnsafe_loop___at_Lean_Compiler_LCNF_ReduceArity_visitExpr___spec__3(x_1, x_12, x_13, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_1); +return x_14; +} +} +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Compiler_LCNF_ReduceArity_visit___spec__1(lean_object* x_1, size_t x_2, size_t x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +_start: +{ +uint8_t x_12; +x_12 = lean_usize_dec_eq(x_2, x_3); +if (x_12 == 0) +{ +lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; size_t x_18; size_t x_19; +lean_dec(x_4); +x_13 = lean_array_uget(x_1, x_2); +x_14 = l_Lean_Compiler_LCNF_AltCore_getCode(x_13); +lean_dec(x_13); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +x_15 = l_Lean_Compiler_LCNF_ReduceArity_visit(x_14, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_16 = lean_ctor_get(x_15, 0); +lean_inc(x_16); +x_17 = lean_ctor_get(x_15, 1); +lean_inc(x_17); +lean_dec(x_15); +x_18 = 1; +x_19 = lean_usize_add(x_2, x_18); +x_2 = x_19; +x_4 = x_16; +x_11 = x_17; +goto _start; +} +else +{ +lean_object* x_21; +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +x_21 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_21, 0, x_4); +lean_ctor_set(x_21, 1, x_11); +return x_21; +} +} +} +LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_ReduceArity_visit(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +_start: +{ +switch (lean_obj_tag(x_1)) { +case 0: +{ +lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; +x_9 = lean_ctor_get(x_1, 0); +lean_inc(x_9); +x_10 = lean_ctor_get(x_1, 1); +lean_inc(x_10); +lean_dec(x_1); +x_11 = lean_ctor_get(x_9, 3); +lean_inc(x_11); +lean_dec(x_9); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +lean_inc(x_2); +x_12 = l_Lean_Compiler_LCNF_ReduceArity_visitExpr(x_11, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_13 = lean_ctor_get(x_12, 1); +lean_inc(x_13); +lean_dec(x_12); +x_1 = x_10; +x_8 = x_13; +goto _start; +} +case 3: +{ +lean_object* x_15; lean_object* x_16; lean_object* x_17; uint8_t x_18; +x_15 = lean_ctor_get(x_1, 1); +lean_inc(x_15); +lean_dec(x_1); +x_16 = lean_array_get_size(x_15); +x_17 = lean_unsigned_to_nat(0u); +x_18 = lean_nat_dec_lt(x_17, x_16); +if (x_18 == 0) +{ +lean_object* x_19; lean_object* x_20; +lean_dec(x_16); +lean_dec(x_15); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_19 = lean_box(0); +x_20 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_20, 0, x_19); +lean_ctor_set(x_20, 1, x_8); +return x_20; +} +else +{ +uint8_t x_21; +x_21 = lean_nat_dec_le(x_16, x_16); +if (x_21 == 0) +{ +lean_object* x_22; lean_object* x_23; +lean_dec(x_16); +lean_dec(x_15); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_22 = lean_box(0); +x_23 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_23, 0, x_22); +lean_ctor_set(x_23, 1, x_8); +return x_23; +} +else +{ +size_t x_24; size_t x_25; lean_object* x_26; lean_object* x_27; +x_24 = 0; +x_25 = lean_usize_of_nat(x_16); +lean_dec(x_16); +x_26 = lean_box(0); +x_27 = l_Array_foldlMUnsafe_fold___at_Lean_Compiler_LCNF_ReduceArity_visitExpr___spec__1(x_15, x_24, x_25, x_26, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_15); +return x_27; +} +} +} +case 4: +{ +lean_object* x_28; lean_object* x_29; lean_object* x_30; uint8_t x_31; +x_28 = lean_ctor_get(x_1, 0); +lean_inc(x_28); +lean_dec(x_1); +x_29 = lean_ctor_get(x_28, 2); +lean_inc(x_29); +x_30 = l_Lean_Compiler_LCNF_ReduceArity_visitFVar(x_29, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_31 = !lean_is_exclusive(x_30); +if (x_31 == 0) +{ +lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; uint8_t x_37; +x_32 = lean_ctor_get(x_30, 1); +x_33 = lean_ctor_get(x_30, 0); +lean_dec(x_33); +x_34 = lean_ctor_get(x_28, 3); +lean_inc(x_34); +lean_dec(x_28); +x_35 = lean_array_get_size(x_34); +x_36 = lean_unsigned_to_nat(0u); +x_37 = lean_nat_dec_lt(x_36, x_35); +if (x_37 == 0) +{ +lean_object* x_38; +lean_dec(x_35); +lean_dec(x_34); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_38 = lean_box(0); +lean_ctor_set(x_30, 0, x_38); +return x_30; +} +else +{ +uint8_t x_39; +x_39 = lean_nat_dec_le(x_35, x_35); +if (x_39 == 0) +{ +lean_object* x_40; +lean_dec(x_35); +lean_dec(x_34); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_40 = lean_box(0); +lean_ctor_set(x_30, 0, x_40); +return x_30; +} +else +{ +size_t x_41; size_t x_42; lean_object* x_43; lean_object* x_44; +lean_free_object(x_30); +x_41 = 0; +x_42 = lean_usize_of_nat(x_35); +lean_dec(x_35); +x_43 = lean_box(0); +x_44 = l_Array_foldlMUnsafe_fold___at_Lean_Compiler_LCNF_ReduceArity_visit___spec__1(x_34, x_41, x_42, x_43, x_2, x_3, x_4, x_5, x_6, x_7, x_32); +lean_dec(x_34); +return x_44; +} +} +} +else +{ +lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; uint8_t x_49; +x_45 = lean_ctor_get(x_30, 1); +lean_inc(x_45); +lean_dec(x_30); +x_46 = lean_ctor_get(x_28, 3); +lean_inc(x_46); +lean_dec(x_28); +x_47 = lean_array_get_size(x_46); +x_48 = lean_unsigned_to_nat(0u); +x_49 = lean_nat_dec_lt(x_48, x_47); +if (x_49 == 0) +{ +lean_object* x_50; lean_object* x_51; +lean_dec(x_47); +lean_dec(x_46); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_50 = lean_box(0); +x_51 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_51, 0, x_50); +lean_ctor_set(x_51, 1, x_45); +return x_51; +} +else +{ +uint8_t x_52; +x_52 = lean_nat_dec_le(x_47, x_47); +if (x_52 == 0) +{ +lean_object* x_53; lean_object* x_54; +lean_dec(x_47); +lean_dec(x_46); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_53 = lean_box(0); +x_54 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_54, 0, x_53); +lean_ctor_set(x_54, 1, x_45); +return x_54; +} +else +{ +size_t x_55; size_t x_56; lean_object* x_57; lean_object* x_58; +x_55 = 0; +x_56 = lean_usize_of_nat(x_47); +lean_dec(x_47); +x_57 = lean_box(0); +x_58 = l_Array_foldlMUnsafe_fold___at_Lean_Compiler_LCNF_ReduceArity_visit___spec__1(x_46, x_55, x_56, x_57, x_2, x_3, x_4, x_5, x_6, x_7, x_45); +lean_dec(x_46); +return x_58; +} +} +} +} +case 5: +{ +lean_object* x_59; lean_object* x_60; +x_59 = lean_ctor_get(x_1, 0); +lean_inc(x_59); +lean_dec(x_1); +x_60 = l_Lean_Compiler_LCNF_ReduceArity_visitFVar(x_59, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +return x_60; +} +case 6: +{ +lean_object* x_61; lean_object* x_62; +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_61 = lean_box(0); +x_62 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_62, 0, x_61); +lean_ctor_set(x_62, 1, x_8); +return x_62; +} +default: +{ +lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; +x_63 = lean_ctor_get(x_1, 0); +lean_inc(x_63); +x_64 = lean_ctor_get(x_1, 1); +lean_inc(x_64); +lean_dec(x_1); +x_65 = lean_ctor_get(x_63, 4); +lean_inc(x_65); +lean_dec(x_63); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +lean_inc(x_2); +x_66 = l_Lean_Compiler_LCNF_ReduceArity_visit(x_65, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_67 = lean_ctor_get(x_66, 1); +lean_inc(x_67); +lean_dec(x_66); +x_1 = x_64; +x_8 = x_67; +goto _start; +} +} +} +} +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Compiler_LCNF_ReduceArity_visit___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +_start: +{ +size_t x_12; size_t x_13; lean_object* x_14; +x_12 = lean_unbox_usize(x_2); +lean_dec(x_2); +x_13 = lean_unbox_usize(x_3); +lean_dec(x_3); +x_14 = l_Array_foldlMUnsafe_fold___at_Lean_Compiler_LCNF_ReduceArity_visit___spec__1(x_1, x_12, x_13, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_1); +return x_14; +} +} +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Compiler_LCNF_ReduceArity_collectUsedParams___spec__1(lean_object* x_1, size_t x_2, size_t x_3, lean_object* x_4) { +_start: +{ +uint8_t x_5; +x_5 = lean_usize_dec_eq(x_2, x_3); +if (x_5 == 0) +{ +lean_object* x_6; lean_object* x_7; size_t x_8; size_t x_9; lean_object* x_10; lean_object* x_11; +x_6 = lean_array_uget(x_1, x_2); +x_7 = lean_ctor_get(x_6, 0); +lean_inc(x_7); +lean_dec(x_6); +x_8 = 1; +x_9 = lean_usize_add(x_2, x_8); +x_10 = lean_box(0); +x_11 = l_Lean_RBNode_insert___at___private_Lean_Meta_FunInfo_0__Lean_Meta_getFunInfoAux___spec__1(x_4, x_7, x_10); +x_2 = x_9; +x_4 = x_11; +goto _start; +} +else +{ +return x_4; +} +} +} +LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_ReduceArity_collectUsedParams(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +_start: +{ +lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; uint8_t x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; +x_7 = lean_box(0); +x_8 = lean_ctor_get(x_1, 3); +lean_inc(x_8); +x_9 = lean_array_get_size(x_8); +x_10 = lean_unsigned_to_nat(0u); +x_11 = lean_nat_dec_lt(x_10, x_9); +x_12 = lean_ctor_get(x_1, 4); +lean_inc(x_12); +x_13 = lean_st_ref_get(x_5, x_6); +if (x_11 == 0) +{ +lean_dec(x_9); +lean_dec(x_8); +x_14 = x_7; +goto block_29; +} +else +{ +uint8_t x_30; +x_30 = lean_nat_dec_le(x_9, x_9); +if (x_30 == 0) +{ +lean_dec(x_9); +lean_dec(x_8); +x_14 = x_7; +goto block_29; +} +else +{ +size_t x_31; size_t x_32; lean_object* x_33; +x_31 = 0; +x_32 = lean_usize_of_nat(x_9); +lean_dec(x_9); +x_33 = l_Array_foldlMUnsafe_fold___at_Lean_Compiler_LCNF_ReduceArity_collectUsedParams___spec__1(x_8, x_31, x_32, x_7); +lean_dec(x_8); +x_14 = x_33; +goto block_29; +} +} +block_29: +{ +lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; uint8_t x_25; +x_15 = lean_ctor_get(x_13, 1); +lean_inc(x_15); +lean_dec(x_13); +x_16 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_16, 0, x_1); +lean_ctor_set(x_16, 1, x_14); +x_17 = lean_st_mk_ref(x_7, x_15); +x_18 = lean_ctor_get(x_17, 0); +lean_inc(x_18); +x_19 = lean_ctor_get(x_17, 1); +lean_inc(x_19); +lean_dec(x_17); +lean_inc(x_5); +lean_inc(x_18); +x_20 = l_Lean_Compiler_LCNF_ReduceArity_visit(x_12, x_16, x_18, x_2, x_3, x_4, x_5, x_19); +x_21 = lean_ctor_get(x_20, 1); +lean_inc(x_21); +lean_dec(x_20); +x_22 = lean_st_ref_get(x_5, x_21); +lean_dec(x_5); +x_23 = lean_ctor_get(x_22, 1); +lean_inc(x_23); +lean_dec(x_22); +x_24 = lean_st_ref_get(x_18, x_23); +lean_dec(x_18); +x_25 = !lean_is_exclusive(x_24); +if (x_25 == 0) +{ +return x_24; +} +else +{ +lean_object* x_26; lean_object* x_27; lean_object* x_28; +x_26 = lean_ctor_get(x_24, 0); +x_27 = lean_ctor_get(x_24, 1); +lean_inc(x_27); +lean_inc(x_26); +lean_dec(x_24); +x_28 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_28, 0, x_26); +lean_ctor_set(x_28, 1, x_27); +return x_28; +} +} +} +} +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Compiler_LCNF_ReduceArity_collectUsedParams___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +size_t x_5; size_t x_6; lean_object* x_7; +x_5 = lean_unbox_usize(x_2); +lean_dec(x_2); +x_6 = lean_unbox_usize(x_3); +lean_dec(x_3); +x_7 = l_Array_foldlMUnsafe_fold___at_Lean_Compiler_LCNF_ReduceArity_collectUsedParams___spec__1(x_1, x_5, x_6, x_4); +lean_dec(x_1); +return x_7; +} +} +static lean_object* _init_l_Lean_isTracingEnabledFor___at_Lean_Compiler_LCNF_Decl_reduceArity___spec__1___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = l_Lean_inheritedTraceOptions; +return x_1; +} +} +LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at_Lean_Compiler_LCNF_Decl_reduceArity___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +_start: +{ +lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; uint8_t x_11; +x_7 = lean_st_ref_get(x_5, x_6); +x_8 = lean_ctor_get(x_7, 1); +lean_inc(x_8); +lean_dec(x_7); +x_9 = l_Lean_isTracingEnabledFor___at_Lean_Compiler_LCNF_Decl_reduceArity___spec__1___closed__1; +x_10 = lean_st_ref_get(x_9, x_8); +x_11 = !lean_is_exclusive(x_10); +if (x_11 == 0) +{ +lean_object* x_12; lean_object* x_13; uint8_t x_14; lean_object* x_15; +x_12 = lean_ctor_get(x_10, 0); +x_13 = lean_ctor_get(x_4, 2); +x_14 = l___private_Lean_Util_Trace_0__Lean_checkTraceOption(x_12, x_13, x_1); +lean_dec(x_12); +x_15 = lean_box(x_14); +lean_ctor_set(x_10, 0, x_15); +return x_10; +} +else +{ +lean_object* x_16; lean_object* x_17; lean_object* x_18; uint8_t x_19; lean_object* x_20; lean_object* x_21; +x_16 = lean_ctor_get(x_10, 0); +x_17 = lean_ctor_get(x_10, 1); +lean_inc(x_17); +lean_inc(x_16); +lean_dec(x_10); +x_18 = lean_ctor_get(x_4, 2); +x_19 = l___private_Lean_Util_Trace_0__Lean_checkTraceOption(x_16, x_18, x_1); +lean_dec(x_16); +x_20 = lean_box(x_19); +x_21 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_21, 0, x_20); +lean_ctor_set(x_21, 1, x_17); +return x_21; +} +} +} +LEAN_EXPORT lean_object* l_Lean_RBNode_revFold___at_Lean_Compiler_LCNF_Decl_reduceArity___spec__3(lean_object* x_1, lean_object* x_2) { +_start: +{ +if (lean_obj_tag(x_2) == 0) +{ +return x_1; +} +else +{ +lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; +x_3 = lean_ctor_get(x_2, 0); +x_4 = lean_ctor_get(x_2, 1); +x_5 = lean_ctor_get(x_2, 3); +x_6 = l_Lean_RBNode_revFold___at_Lean_Compiler_LCNF_Decl_reduceArity___spec__3(x_1, x_5); +lean_inc(x_4); +x_7 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_7, 0, x_4); +lean_ctor_set(x_7, 1, x_6); +x_1 = x_7; +x_2 = x_3; +goto _start; +} +} +} +LEAN_EXPORT lean_object* l_Lean_RBTree_toList___at_Lean_Compiler_LCNF_Decl_reduceArity___spec__2(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; +x_2 = lean_box(0); +x_3 = l_Lean_RBNode_revFold___at_Lean_Compiler_LCNF_Decl_reduceArity___spec__3(x_2, x_1); +lean_dec(x_1); +return x_3; +} +} +LEAN_EXPORT lean_object* l_List_mapTRAux___at_Lean_Compiler_LCNF_Decl_reduceArity___spec__4(lean_object* x_1, lean_object* x_2) { +_start: +{ +if (lean_obj_tag(x_1) == 0) +{ +lean_object* x_3; +x_3 = l_List_reverse___rarg(x_2); +return x_3; +} +else +{ +uint8_t x_4; +x_4 = !lean_is_exclusive(x_1); +if (x_4 == 0) +{ +lean_object* x_5; lean_object* x_6; lean_object* x_7; +x_5 = lean_ctor_get(x_1, 0); +x_6 = lean_ctor_get(x_1, 1); +x_7 = l_Lean_Expr_fvar___override(x_5); +lean_ctor_set(x_1, 1, x_2); +lean_ctor_set(x_1, 0, x_7); +{ +lean_object* _tmp_0 = x_6; +lean_object* _tmp_1 = x_1; +x_1 = _tmp_0; +x_2 = _tmp_1; +} +goto _start; +} +else +{ +lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; +x_9 = lean_ctor_get(x_1, 0); +x_10 = lean_ctor_get(x_1, 1); +lean_inc(x_10); +lean_inc(x_9); +lean_dec(x_1); +x_11 = l_Lean_Expr_fvar___override(x_9); +x_12 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_12, 0, x_11); +lean_ctor_set(x_12, 1, x_2); +x_1 = x_10; +x_2 = x_12; +goto _start; +} +} +} +} +static lean_object* _init_l_Lean_addTrace___at_Lean_Compiler_LCNF_Decl_reduceArity___spec__5___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = l_Lean_PersistentHashMap_mkEmptyEntriesArray(lean_box(0), lean_box(0)); +return x_1; +} +} +static lean_object* _init_l_Lean_addTrace___at_Lean_Compiler_LCNF_Decl_reduceArity___spec__5___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_addTrace___at_Lean_Compiler_LCNF_Decl_reduceArity___spec__5___closed__1; +x_2 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_addTrace___at_Lean_Compiler_LCNF_Decl_reduceArity___spec__5___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_addTrace___at_Lean_Compiler_LCNF_Decl_reduceArity___spec__5___closed__2; +x_2 = lean_unsigned_to_nat(0u); +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_addTrace___at_Lean_Compiler_LCNF_Decl_reduceArity___spec__5___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_addTrace___at_Lean_Compiler_LCNF_Decl_reduceArity___spec__5___closed__2; +x_2 = lean_unsigned_to_nat(0u); +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_addTrace___at_Lean_Compiler_LCNF_Decl_reduceArity___spec__5___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_addTrace___at_Lean_Compiler_LCNF_Decl_reduceArity___spec__5___closed__2; +x_2 = lean_unsigned_to_nat(0u); +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_addTrace___at_Lean_Compiler_LCNF_Decl_reduceArity___spec__5___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = lean_unsigned_to_nat(0u); +x_2 = l_Lean_addTrace___at_Lean_Compiler_LCNF_Decl_reduceArity___spec__5___closed__3; +x_3 = l_Lean_addTrace___at_Lean_Compiler_LCNF_Decl_reduceArity___spec__5___closed__4; +x_4 = l_Lean_addTrace___at_Lean_Compiler_LCNF_Decl_reduceArity___spec__5___closed__5; +x_5 = lean_alloc_ctor(0, 8, 0); +lean_ctor_set(x_5, 0, x_1); +lean_ctor_set(x_5, 1, x_1); +lean_ctor_set(x_5, 2, x_2); +lean_ctor_set(x_5, 3, x_3); +lean_ctor_set(x_5, 4, x_4); +lean_ctor_set(x_5, 5, x_2); +lean_ctor_set(x_5, 6, x_3); +lean_ctor_set(x_5, 7, x_3); +return x_5; +} +} +static lean_object* _init_l_Lean_addTrace___at_Lean_Compiler_LCNF_Decl_reduceArity___spec__5___closed__7() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_unsigned_to_nat(0u); +x_2 = lean_mk_empty_array_with_capacity(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_addTrace___at_Lean_Compiler_LCNF_Decl_reduceArity___spec__5(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +_start: +{ +lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; uint8_t x_27; +x_8 = lean_ctor_get(x_5, 5); +x_9 = lean_st_ref_get(x_6, x_7); +x_10 = lean_ctor_get(x_9, 0); +lean_inc(x_10); +x_11 = lean_ctor_get(x_9, 1); +lean_inc(x_11); +lean_dec(x_9); +x_12 = lean_ctor_get(x_10, 0); +lean_inc(x_12); +lean_dec(x_10); +x_13 = lean_st_ref_get(x_6, x_11); +x_14 = lean_ctor_get(x_13, 1); +lean_inc(x_14); +lean_dec(x_13); +x_15 = lean_st_ref_get(x_4, x_14); +x_16 = lean_ctor_get(x_15, 0); +lean_inc(x_16); +x_17 = lean_ctor_get(x_15, 1); +lean_inc(x_17); +lean_dec(x_15); +x_18 = lean_ctor_get(x_16, 0); +lean_inc(x_18); +lean_dec(x_16); +x_19 = l_Lean_Compiler_LCNF_LCtx_toLocalContext(x_18); +x_20 = lean_ctor_get(x_5, 2); +x_21 = l_Lean_addTrace___at_Lean_Compiler_LCNF_Decl_reduceArity___spec__5___closed__6; +lean_inc(x_20); +x_22 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_22, 0, x_12); +lean_ctor_set(x_22, 1, x_21); +lean_ctor_set(x_22, 2, x_19); +lean_ctor_set(x_22, 3, x_20); +x_23 = lean_alloc_ctor(6, 2, 0); +lean_ctor_set(x_23, 0, x_22); +lean_ctor_set(x_23, 1, x_2); +x_24 = lean_st_ref_take(x_6, x_17); +x_25 = lean_ctor_get(x_24, 0); +lean_inc(x_25); +x_26 = lean_ctor_get(x_24, 1); +lean_inc(x_26); +lean_dec(x_24); +x_27 = !lean_is_exclusive(x_25); +if (x_27 == 0) +{ +lean_object* x_28; lean_object* x_29; uint8_t x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; uint8_t x_35; +x_28 = lean_ctor_get(x_25, 3); +x_29 = l_Lean_addTrace___at_Lean_Compiler_LCNF_Decl_reduceArity___spec__5___closed__7; +x_30 = 0; +x_31 = lean_alloc_ctor(12, 3, 1); +lean_ctor_set(x_31, 0, x_1); +lean_ctor_set(x_31, 1, x_23); +lean_ctor_set(x_31, 2, x_29); +lean_ctor_set_uint8(x_31, sizeof(void*)*3, x_30); +lean_inc(x_8); +x_32 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_32, 0, x_8); +lean_ctor_set(x_32, 1, x_31); +x_33 = l_Lean_PersistentArray_push___rarg(x_28, x_32); +lean_ctor_set(x_25, 3, x_33); +x_34 = lean_st_ref_set(x_6, x_25, x_26); +x_35 = !lean_is_exclusive(x_34); +if (x_35 == 0) +{ +lean_object* x_36; lean_object* x_37; +x_36 = lean_ctor_get(x_34, 0); +lean_dec(x_36); +x_37 = lean_box(0); +lean_ctor_set(x_34, 0, x_37); +return x_34; +} +else +{ +lean_object* x_38; lean_object* x_39; lean_object* x_40; +x_38 = lean_ctor_get(x_34, 1); +lean_inc(x_38); +lean_dec(x_34); +x_39 = lean_box(0); +x_40 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_40, 0, x_39); +lean_ctor_set(x_40, 1, x_38); +return x_40; +} +} +else +{ +lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; uint8_t x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; +x_41 = lean_ctor_get(x_25, 0); +x_42 = lean_ctor_get(x_25, 1); +x_43 = lean_ctor_get(x_25, 2); +x_44 = lean_ctor_get(x_25, 3); +x_45 = lean_ctor_get(x_25, 4); +x_46 = lean_ctor_get(x_25, 5); +x_47 = lean_ctor_get(x_25, 6); +lean_inc(x_47); +lean_inc(x_46); +lean_inc(x_45); +lean_inc(x_44); +lean_inc(x_43); +lean_inc(x_42); +lean_inc(x_41); +lean_dec(x_25); +x_48 = l_Lean_addTrace___at_Lean_Compiler_LCNF_Decl_reduceArity___spec__5___closed__7; +x_49 = 0; +x_50 = lean_alloc_ctor(12, 3, 1); +lean_ctor_set(x_50, 0, x_1); +lean_ctor_set(x_50, 1, x_23); +lean_ctor_set(x_50, 2, x_48); +lean_ctor_set_uint8(x_50, sizeof(void*)*3, x_49); +lean_inc(x_8); +x_51 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_51, 0, x_8); +lean_ctor_set(x_51, 1, x_50); +x_52 = l_Lean_PersistentArray_push___rarg(x_44, x_51); +x_53 = lean_alloc_ctor(0, 7, 0); +lean_ctor_set(x_53, 0, x_41); +lean_ctor_set(x_53, 1, x_42); +lean_ctor_set(x_53, 2, x_43); +lean_ctor_set(x_53, 3, x_52); +lean_ctor_set(x_53, 4, x_45); +lean_ctor_set(x_53, 5, x_46); +lean_ctor_set(x_53, 6, x_47); +x_54 = lean_st_ref_set(x_6, x_53, x_26); +x_55 = lean_ctor_get(x_54, 1); +lean_inc(x_55); +if (lean_is_exclusive(x_54)) { + lean_ctor_release(x_54, 0); + lean_ctor_release(x_54, 1); + x_56 = x_54; +} else { + lean_dec_ref(x_54); + x_56 = lean_box(0); +} +x_57 = lean_box(0); +if (lean_is_scalar(x_56)) { + x_58 = lean_alloc_ctor(0, 2, 0); +} else { + x_58 = x_56; +} +lean_ctor_set(x_58, 0, x_57); +lean_ctor_set(x_58, 1, x_55); +return x_58; +} +} +} +LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Decl_reduceArity___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +_start: +{ +lean_object* x_8; +x_8 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_8, 0, x_1); +lean_ctor_set(x_8, 1, x_7); +return x_8; +} +} +static lean_object* _init_l_Lean_Compiler_LCNF_Decl_reduceArity___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("Compiler", 8); +return x_1; +} +} +static lean_object* _init_l_Lean_Compiler_LCNF_Decl_reduceArity___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("reduceArity", 11); +return x_1; +} +} +static lean_object* _init_l_Lean_Compiler_LCNF_Decl_reduceArity___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Compiler_LCNF_Decl_reduceArity___closed__1; +x_2 = l_Lean_Compiler_LCNF_Decl_reduceArity___closed__2; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Compiler_LCNF_Decl_reduceArity___closed__4() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("", 0); +return x_1; +} +} +static lean_object* _init_l_Lean_Compiler_LCNF_Decl_reduceArity___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Compiler_LCNF_Decl_reduceArity___closed__4; +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Compiler_LCNF_Decl_reduceArity___closed__6() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes(", used params: ", 15); +return x_1; +} +} +static lean_object* _init_l_Lean_Compiler_LCNF_Decl_reduceArity___closed__7() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Compiler_LCNF_Decl_reduceArity___closed__6; +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Decl_reduceArity(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +_start: +{ +lean_object* x_7; uint8_t x_8; +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +lean_inc(x_2); +lean_inc(x_1); +x_7 = l_Lean_Compiler_LCNF_ReduceArity_collectUsedParams(x_1, x_2, x_3, x_4, x_5, x_6); +x_8 = !lean_is_exclusive(x_7); +if (x_8 == 0) +{ +lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; uint8_t x_16; +x_9 = lean_ctor_get(x_7, 0); +x_10 = lean_ctor_get(x_7, 1); +x_11 = lean_unsigned_to_nat(0u); +x_12 = l_Lean_RBNode_fold___at_Lean_RBMap_size___spec__1___rarg(x_11, x_9); +x_13 = lean_ctor_get(x_1, 0); +lean_inc(x_13); +x_14 = lean_ctor_get(x_1, 3); +lean_inc(x_14); +x_15 = lean_array_get_size(x_14); +lean_dec(x_14); +x_16 = lean_nat_dec_eq(x_12, x_15); +lean_dec(x_15); +lean_dec(x_12); +if (x_16 == 0) +{ +lean_object* x_17; lean_object* x_18; lean_object* x_19; uint8_t x_20; +lean_free_object(x_7); +x_17 = l_Lean_Compiler_LCNF_Decl_reduceArity___closed__3; +x_18 = l_Lean_isTracingEnabledFor___at_Lean_Compiler_LCNF_Decl_reduceArity___spec__1(x_17, x_2, x_3, x_4, x_5, x_10); +x_19 = lean_ctor_get(x_18, 0); +lean_inc(x_19); +x_20 = lean_unbox(x_19); +lean_dec(x_19); +if (x_20 == 0) +{ +uint8_t x_21; +lean_dec(x_13); +lean_dec(x_9); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_21 = !lean_is_exclusive(x_18); +if (x_21 == 0) +{ +lean_object* x_22; +x_22 = lean_ctor_get(x_18, 0); +lean_dec(x_22); +lean_ctor_set(x_18, 0, x_1); +return x_18; +} +else +{ +lean_object* x_23; lean_object* x_24; +x_23 = lean_ctor_get(x_18, 1); +lean_inc(x_23); +lean_dec(x_18); +x_24 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_24, 0, x_1); +lean_ctor_set(x_24, 1, x_23); +return x_24; +} +} +else +{ +lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; uint8_t x_39; +x_25 = lean_ctor_get(x_18, 1); +lean_inc(x_25); +lean_dec(x_18); +x_26 = lean_alloc_ctor(4, 1, 0); +lean_ctor_set(x_26, 0, x_13); +x_27 = l_Lean_Compiler_LCNF_Decl_reduceArity___closed__5; +x_28 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_28, 0, x_27); +lean_ctor_set(x_28, 1, x_26); +x_29 = l_Lean_Compiler_LCNF_Decl_reduceArity___closed__7; +x_30 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_30, 0, x_28); +lean_ctor_set(x_30, 1, x_29); +x_31 = l_Lean_RBTree_toList___at_Lean_Compiler_LCNF_Decl_reduceArity___spec__2(x_9); +x_32 = lean_box(0); +x_33 = l_List_mapTRAux___at_Lean_Compiler_LCNF_Decl_reduceArity___spec__4(x_31, x_32); +x_34 = l_List_mapTRAux___at_Lean_MessageData_instCoeListExprMessageData___spec__1(x_33, x_32); +x_35 = l_Lean_MessageData_ofList(x_34); +lean_dec(x_34); +x_36 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_36, 0, x_30); +lean_ctor_set(x_36, 1, x_35); +x_37 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_37, 0, x_36); +lean_ctor_set(x_37, 1, x_27); +x_38 = l_Lean_addTrace___at_Lean_Compiler_LCNF_Decl_reduceArity___spec__5(x_17, x_37, x_2, x_3, x_4, x_5, x_25); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_39 = !lean_is_exclusive(x_38); +if (x_39 == 0) +{ +lean_object* x_40; +x_40 = lean_ctor_get(x_38, 0); +lean_dec(x_40); +lean_ctor_set(x_38, 0, x_1); +return x_38; +} +else +{ +lean_object* x_41; lean_object* x_42; +x_41 = lean_ctor_get(x_38, 1); +lean_inc(x_41); +lean_dec(x_38); +x_42 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_42, 0, x_1); +lean_ctor_set(x_42, 1, x_41); +return x_42; +} +} +} +else +{ +lean_dec(x_13); +lean_dec(x_9); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_ctor_set(x_7, 0, x_1); +return x_7; +} +} +else +{ +lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; uint8_t x_50; +x_43 = lean_ctor_get(x_7, 0); +x_44 = lean_ctor_get(x_7, 1); +lean_inc(x_44); +lean_inc(x_43); +lean_dec(x_7); +x_45 = lean_unsigned_to_nat(0u); +x_46 = l_Lean_RBNode_fold___at_Lean_RBMap_size___spec__1___rarg(x_45, x_43); +x_47 = lean_ctor_get(x_1, 0); +lean_inc(x_47); +x_48 = lean_ctor_get(x_1, 3); +lean_inc(x_48); +x_49 = lean_array_get_size(x_48); +lean_dec(x_48); +x_50 = lean_nat_dec_eq(x_46, x_49); +lean_dec(x_49); +lean_dec(x_46); +if (x_50 == 0) +{ +lean_object* x_51; lean_object* x_52; lean_object* x_53; uint8_t x_54; +x_51 = l_Lean_Compiler_LCNF_Decl_reduceArity___closed__3; +x_52 = l_Lean_isTracingEnabledFor___at_Lean_Compiler_LCNF_Decl_reduceArity___spec__1(x_51, x_2, x_3, x_4, x_5, x_44); +x_53 = lean_ctor_get(x_52, 0); +lean_inc(x_53); +x_54 = lean_unbox(x_53); +lean_dec(x_53); +if (x_54 == 0) +{ +lean_object* x_55; lean_object* x_56; lean_object* x_57; +lean_dec(x_47); +lean_dec(x_43); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_55 = lean_ctor_get(x_52, 1); +lean_inc(x_55); +if (lean_is_exclusive(x_52)) { + lean_ctor_release(x_52, 0); + lean_ctor_release(x_52, 1); + x_56 = x_52; +} else { + lean_dec_ref(x_52); + x_56 = lean_box(0); +} +if (lean_is_scalar(x_56)) { + x_57 = lean_alloc_ctor(0, 2, 0); +} else { + x_57 = x_56; +} +lean_ctor_set(x_57, 0, x_1); +lean_ctor_set(x_57, 1, x_55); +return x_57; +} +else +{ +lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; +x_58 = lean_ctor_get(x_52, 1); +lean_inc(x_58); +lean_dec(x_52); +x_59 = lean_alloc_ctor(4, 1, 0); +lean_ctor_set(x_59, 0, x_47); +x_60 = l_Lean_Compiler_LCNF_Decl_reduceArity___closed__5; +x_61 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_61, 0, x_60); +lean_ctor_set(x_61, 1, x_59); +x_62 = l_Lean_Compiler_LCNF_Decl_reduceArity___closed__7; +x_63 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_63, 0, x_61); +lean_ctor_set(x_63, 1, x_62); +x_64 = l_Lean_RBTree_toList___at_Lean_Compiler_LCNF_Decl_reduceArity___spec__2(x_43); +x_65 = lean_box(0); +x_66 = l_List_mapTRAux___at_Lean_Compiler_LCNF_Decl_reduceArity___spec__4(x_64, x_65); +x_67 = l_List_mapTRAux___at_Lean_MessageData_instCoeListExprMessageData___spec__1(x_66, x_65); +x_68 = l_Lean_MessageData_ofList(x_67); +lean_dec(x_67); +x_69 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_69, 0, x_63); +lean_ctor_set(x_69, 1, x_68); +x_70 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_70, 0, x_69); +lean_ctor_set(x_70, 1, x_60); +x_71 = l_Lean_addTrace___at_Lean_Compiler_LCNF_Decl_reduceArity___spec__5(x_51, x_70, x_2, x_3, x_4, x_5, x_58); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_72 = lean_ctor_get(x_71, 1); +lean_inc(x_72); +if (lean_is_exclusive(x_71)) { + lean_ctor_release(x_71, 0); + lean_ctor_release(x_71, 1); + x_73 = x_71; +} else { + lean_dec_ref(x_71); + x_73 = lean_box(0); +} +if (lean_is_scalar(x_73)) { + x_74 = lean_alloc_ctor(0, 2, 0); +} else { + x_74 = x_73; +} +lean_ctor_set(x_74, 0, x_1); +lean_ctor_set(x_74, 1, x_72); +return x_74; +} +} +else +{ +lean_object* x_75; +lean_dec(x_47); +lean_dec(x_43); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_75 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_75, 0, x_1); +lean_ctor_set(x_75, 1, x_44); +return x_75; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at_Lean_Compiler_LCNF_Decl_reduceArity___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +_start: +{ +lean_object* x_7; +x_7 = l_Lean_isTracingEnabledFor___at_Lean_Compiler_LCNF_Decl_reduceArity___spec__1(x_1, x_2, x_3, x_4, x_5, x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +return x_7; +} +} +LEAN_EXPORT lean_object* l_Lean_RBNode_revFold___at_Lean_Compiler_LCNF_Decl_reduceArity___spec__3___boxed(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; +x_3 = l_Lean_RBNode_revFold___at_Lean_Compiler_LCNF_Decl_reduceArity___spec__3(x_1, x_2); +lean_dec(x_2); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Lean_addTrace___at_Lean_Compiler_LCNF_Decl_reduceArity___spec__5___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +_start: +{ +lean_object* x_8; +x_8 = l_Lean_addTrace___at_Lean_Compiler_LCNF_Decl_reduceArity___spec__5(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +return x_8; +} +} +LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Decl_reduceArity___lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +_start: +{ +lean_object* x_8; +x_8 = l_Lean_Compiler_LCNF_Decl_reduceArity___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +return x_8; +} +} +static lean_object* _init_l_Lean_Compiler_LCNF_reduceArity___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Compiler_LCNF_Decl_reduceArity___closed__2; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Compiler_LCNF_reduceArity___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Compiler_LCNF_Decl_reduceArity), 6, 0); +return x_1; +} +} +static lean_object* _init_l_Lean_Compiler_LCNF_reduceArity___closed__3() { +_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_Compiler_LCNF_reduceArity___closed__1; +x_2 = l_Lean_Compiler_LCNF_reduceArity___closed__2; +x_3 = 1; +x_4 = lean_unsigned_to_nat(0u); +x_5 = l_Lean_Compiler_LCNF_Pass_mkPerDeclaration(x_1, x_2, x_3, x_4); +return x_5; +} +} +static lean_object* _init_l_Lean_Compiler_LCNF_reduceArity() { +_start: +{ +lean_object* x_1; +x_1 = l_Lean_Compiler_LCNF_reduceArity___closed__3; +return x_1; +} +} +LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_ReduceArity___hyg_1339_(lean_object* x_1) { +_start: +{ +lean_object* x_2; uint8_t x_3; lean_object* x_4; +x_2 = l_Lean_Compiler_LCNF_Decl_reduceArity___closed__3; +x_3 = 1; +x_4 = l_Lean_registerTraceClass(x_2, x_3, x_1); +return x_4; +} +} +lean_object* initialize_Init(uint8_t builtin, lean_object*); +lean_object* initialize_Lean_Compiler_LCNF_CompilerM(uint8_t builtin, lean_object*); +lean_object* initialize_Lean_Compiler_LCNF_PhaseExt(uint8_t builtin, lean_object*); +static bool _G_initialized = false; +LEAN_EXPORT lean_object* initialize_Lean_Compiler_LCNF_ReduceArity(uint8_t builtin, lean_object* w) { +lean_object * res; +if (_G_initialized) return lean_io_result_mk_ok(lean_box(0)); +_G_initialized = true; +res = initialize_Init(builtin, lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Compiler_LCNF_CompilerM(builtin, lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Compiler_LCNF_PhaseExt(builtin, lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +l_Lean_Compiler_LCNF_ReduceArity_State_used___default = _init_l_Lean_Compiler_LCNF_ReduceArity_State_used___default(); +lean_mark_persistent(l_Lean_Compiler_LCNF_ReduceArity_State_used___default); +l_Lean_Compiler_LCNF_ReduceArity_visitExpr___closed__1 = _init_l_Lean_Compiler_LCNF_ReduceArity_visitExpr___closed__1(); +lean_mark_persistent(l_Lean_Compiler_LCNF_ReduceArity_visitExpr___closed__1); +l_Lean_isTracingEnabledFor___at_Lean_Compiler_LCNF_Decl_reduceArity___spec__1___closed__1 = _init_l_Lean_isTracingEnabledFor___at_Lean_Compiler_LCNF_Decl_reduceArity___spec__1___closed__1(); +lean_mark_persistent(l_Lean_isTracingEnabledFor___at_Lean_Compiler_LCNF_Decl_reduceArity___spec__1___closed__1); +l_Lean_addTrace___at_Lean_Compiler_LCNF_Decl_reduceArity___spec__5___closed__1 = _init_l_Lean_addTrace___at_Lean_Compiler_LCNF_Decl_reduceArity___spec__5___closed__1(); +lean_mark_persistent(l_Lean_addTrace___at_Lean_Compiler_LCNF_Decl_reduceArity___spec__5___closed__1); +l_Lean_addTrace___at_Lean_Compiler_LCNF_Decl_reduceArity___spec__5___closed__2 = _init_l_Lean_addTrace___at_Lean_Compiler_LCNF_Decl_reduceArity___spec__5___closed__2(); +lean_mark_persistent(l_Lean_addTrace___at_Lean_Compiler_LCNF_Decl_reduceArity___spec__5___closed__2); +l_Lean_addTrace___at_Lean_Compiler_LCNF_Decl_reduceArity___spec__5___closed__3 = _init_l_Lean_addTrace___at_Lean_Compiler_LCNF_Decl_reduceArity___spec__5___closed__3(); +lean_mark_persistent(l_Lean_addTrace___at_Lean_Compiler_LCNF_Decl_reduceArity___spec__5___closed__3); +l_Lean_addTrace___at_Lean_Compiler_LCNF_Decl_reduceArity___spec__5___closed__4 = _init_l_Lean_addTrace___at_Lean_Compiler_LCNF_Decl_reduceArity___spec__5___closed__4(); +lean_mark_persistent(l_Lean_addTrace___at_Lean_Compiler_LCNF_Decl_reduceArity___spec__5___closed__4); +l_Lean_addTrace___at_Lean_Compiler_LCNF_Decl_reduceArity___spec__5___closed__5 = _init_l_Lean_addTrace___at_Lean_Compiler_LCNF_Decl_reduceArity___spec__5___closed__5(); +lean_mark_persistent(l_Lean_addTrace___at_Lean_Compiler_LCNF_Decl_reduceArity___spec__5___closed__5); +l_Lean_addTrace___at_Lean_Compiler_LCNF_Decl_reduceArity___spec__5___closed__6 = _init_l_Lean_addTrace___at_Lean_Compiler_LCNF_Decl_reduceArity___spec__5___closed__6(); +lean_mark_persistent(l_Lean_addTrace___at_Lean_Compiler_LCNF_Decl_reduceArity___spec__5___closed__6); +l_Lean_addTrace___at_Lean_Compiler_LCNF_Decl_reduceArity___spec__5___closed__7 = _init_l_Lean_addTrace___at_Lean_Compiler_LCNF_Decl_reduceArity___spec__5___closed__7(); +lean_mark_persistent(l_Lean_addTrace___at_Lean_Compiler_LCNF_Decl_reduceArity___spec__5___closed__7); +l_Lean_Compiler_LCNF_Decl_reduceArity___closed__1 = _init_l_Lean_Compiler_LCNF_Decl_reduceArity___closed__1(); +lean_mark_persistent(l_Lean_Compiler_LCNF_Decl_reduceArity___closed__1); +l_Lean_Compiler_LCNF_Decl_reduceArity___closed__2 = _init_l_Lean_Compiler_LCNF_Decl_reduceArity___closed__2(); +lean_mark_persistent(l_Lean_Compiler_LCNF_Decl_reduceArity___closed__2); +l_Lean_Compiler_LCNF_Decl_reduceArity___closed__3 = _init_l_Lean_Compiler_LCNF_Decl_reduceArity___closed__3(); +lean_mark_persistent(l_Lean_Compiler_LCNF_Decl_reduceArity___closed__3); +l_Lean_Compiler_LCNF_Decl_reduceArity___closed__4 = _init_l_Lean_Compiler_LCNF_Decl_reduceArity___closed__4(); +lean_mark_persistent(l_Lean_Compiler_LCNF_Decl_reduceArity___closed__4); +l_Lean_Compiler_LCNF_Decl_reduceArity___closed__5 = _init_l_Lean_Compiler_LCNF_Decl_reduceArity___closed__5(); +lean_mark_persistent(l_Lean_Compiler_LCNF_Decl_reduceArity___closed__5); +l_Lean_Compiler_LCNF_Decl_reduceArity___closed__6 = _init_l_Lean_Compiler_LCNF_Decl_reduceArity___closed__6(); +lean_mark_persistent(l_Lean_Compiler_LCNF_Decl_reduceArity___closed__6); +l_Lean_Compiler_LCNF_Decl_reduceArity___closed__7 = _init_l_Lean_Compiler_LCNF_Decl_reduceArity___closed__7(); +lean_mark_persistent(l_Lean_Compiler_LCNF_Decl_reduceArity___closed__7); +l_Lean_Compiler_LCNF_reduceArity___closed__1 = _init_l_Lean_Compiler_LCNF_reduceArity___closed__1(); +lean_mark_persistent(l_Lean_Compiler_LCNF_reduceArity___closed__1); +l_Lean_Compiler_LCNF_reduceArity___closed__2 = _init_l_Lean_Compiler_LCNF_reduceArity___closed__2(); +lean_mark_persistent(l_Lean_Compiler_LCNF_reduceArity___closed__2); +l_Lean_Compiler_LCNF_reduceArity___closed__3 = _init_l_Lean_Compiler_LCNF_reduceArity___closed__3(); +lean_mark_persistent(l_Lean_Compiler_LCNF_reduceArity___closed__3); +l_Lean_Compiler_LCNF_reduceArity = _init_l_Lean_Compiler_LCNF_reduceArity(); +lean_mark_persistent(l_Lean_Compiler_LCNF_reduceArity); +res = l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_ReduceArity___hyg_1339_(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +return lean_io_result_mk_ok(lean_box(0)); +} +#ifdef __cplusplus +} +#endif diff --git a/stage0/stdlib/Lean/Compiler/LCNF/Simp/InlineCandidate.c b/stage0/stdlib/Lean/Compiler/LCNF/Simp/InlineCandidate.c index 2194ca00ee..614c153e2d 100644 --- a/stage0/stdlib/Lean/Compiler/LCNF/Simp/InlineCandidate.c +++ b/stage0/stdlib/Lean/Compiler/LCNF/Simp/InlineCandidate.c @@ -17,10 +17,10 @@ LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Simp_inlineCandidate_x3f___lambda_ LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Simp_inlineCandidate_x3f___lambda__14___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Simp_inlineCandidate_x3f___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_registerTraceClass(lean_object*, uint8_t, lean_object*); +static lean_object* l_Lean_Compiler_LCNF_Simp_initFn____x40_Lean_Compiler_LCNF_Simp_InlineCandidate___hyg_1419____closed__3; LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Simp_InlineCandidateInfo_arity(lean_object*); lean_object* l_Lean_Name_str___override(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Simp_inlineCandidate_x3f___lambda__10___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Compiler_LCNF_Simp_initFn____x40_Lean_Compiler_LCNF_Simp_InlineCandidate___hyg_1448____closed__3; LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Simp_inlineCandidate_x3f___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Compiler_LCNF_Simp_inlineCandidate_x3f___lambda__1___closed__1; lean_object* l_Lean_Compiler_LCNF_Decl_isCasesOnParam_x3f(lean_object*); @@ -52,10 +52,9 @@ lean_object* l_Lean_Compiler_LCNF_Decl_getArity(lean_object*); LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Simp_inlineCandidate_x3f___lambda__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Compiler_LCNF_Decl_noinlineAttr(lean_object*); LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Simp_inlineCandidate_x3f___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Compiler_LCNF_Simp_initFn____x40_Lean_Compiler_LCNF_Simp_InlineCandidate___hyg_1448____closed__2; LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Simp_inlineCandidate_x3f___lambda__11(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Compiler_LCNF_Simp_initFn____x40_Lean_Compiler_LCNF_Simp_InlineCandidate___hyg_1448____closed__1; LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Simp_InlineCandidateInfo_arity___boxed(lean_object*); +static lean_object* l_Lean_Compiler_LCNF_Simp_initFn____x40_Lean_Compiler_LCNF_Simp_InlineCandidate___hyg_1419____closed__1; lean_object* l___private_Lean_Expr_0__Lean_Expr_getAppNumArgsAux(lean_object*, lean_object*); lean_object* l_Lean_Compiler_LCNF_Simp_findExpr(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Simp_inlineCandidate_x3f___lambda__10(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -78,10 +77,11 @@ uint8_t l_Lean_Expr_isConstructorApp(lean_object*, lean_object*); lean_object* lean_st_ref_set(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Simp_inlineCandidate_x3f___lambda__11___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_mk_array(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Simp_initFn____x40_Lean_Compiler_LCNF_Simp_InlineCandidate___hyg_1448_(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Simp_initFn____x40_Lean_Compiler_LCNF_Simp_InlineCandidate___hyg_1419_(lean_object*); LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Simp_inlineCandidate_x3f___lambda__8(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Compiler_LCNF_Simp_inlineCandidate_x3f___lambda__4___closed__1; LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Simp_inlineCandidate_x3f___lambda__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Compiler_LCNF_Simp_initFn____x40_Lean_Compiler_LCNF_Simp_InlineCandidate___hyg_1419____closed__2; lean_object* l_Lean_Compiler_LCNF_Simp_isSmall(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Simp_inlineCandidate_x3f___lambda__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_getAppFn(lean_object*); @@ -1573,7 +1573,7 @@ x_13 = l_Lean_Compiler_LCNF_Simp_inlineCandidate_x3f___lambda__14(x_1, x_12, x_3 return x_13; } } -static lean_object* _init_l_Lean_Compiler_LCNF_Simp_initFn____x40_Lean_Compiler_LCNF_Simp_InlineCandidate___hyg_1448____closed__1() { +static lean_object* _init_l_Lean_Compiler_LCNF_Simp_initFn____x40_Lean_Compiler_LCNF_Simp_InlineCandidate___hyg_1419____closed__1() { _start: { lean_object* x_1; @@ -1581,7 +1581,7 @@ x_1 = lean_mk_string_from_bytes("Compiler", 8); return x_1; } } -static lean_object* _init_l_Lean_Compiler_LCNF_Simp_initFn____x40_Lean_Compiler_LCNF_Simp_InlineCandidate___hyg_1448____closed__2() { +static lean_object* _init_l_Lean_Compiler_LCNF_Simp_initFn____x40_Lean_Compiler_LCNF_Simp_InlineCandidate___hyg_1419____closed__2() { _start: { lean_object* x_1; @@ -1589,22 +1589,22 @@ x_1 = lean_mk_string_from_bytes("simp", 4); return x_1; } } -static lean_object* _init_l_Lean_Compiler_LCNF_Simp_initFn____x40_Lean_Compiler_LCNF_Simp_InlineCandidate___hyg_1448____closed__3() { +static lean_object* _init_l_Lean_Compiler_LCNF_Simp_initFn____x40_Lean_Compiler_LCNF_Simp_InlineCandidate___hyg_1419____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Compiler_LCNF_Simp_initFn____x40_Lean_Compiler_LCNF_Simp_InlineCandidate___hyg_1448____closed__1; -x_2 = l_Lean_Compiler_LCNF_Simp_initFn____x40_Lean_Compiler_LCNF_Simp_InlineCandidate___hyg_1448____closed__2; +x_1 = l_Lean_Compiler_LCNF_Simp_initFn____x40_Lean_Compiler_LCNF_Simp_InlineCandidate___hyg_1419____closed__1; +x_2 = l_Lean_Compiler_LCNF_Simp_initFn____x40_Lean_Compiler_LCNF_Simp_InlineCandidate___hyg_1419____closed__2; x_3 = l_Lean_Compiler_LCNF_Simp_inlineCandidate_x3f___closed__2; x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); return x_4; } } -LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Simp_initFn____x40_Lean_Compiler_LCNF_Simp_InlineCandidate___hyg_1448_(lean_object* x_1) { +LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_Simp_initFn____x40_Lean_Compiler_LCNF_Simp_InlineCandidate___hyg_1419_(lean_object* x_1) { _start: { lean_object* x_2; uint8_t x_3; lean_object* x_4; -x_2 = l_Lean_Compiler_LCNF_Simp_initFn____x40_Lean_Compiler_LCNF_Simp_InlineCandidate___hyg_1448____closed__3; +x_2 = l_Lean_Compiler_LCNF_Simp_initFn____x40_Lean_Compiler_LCNF_Simp_InlineCandidate___hyg_1419____closed__3; x_3 = 0; x_4 = l_Lean_registerTraceClass(x_2, x_3, x_1); return x_4; @@ -1638,13 +1638,13 @@ l_Lean_Compiler_LCNF_Simp_inlineCandidate_x3f___closed__2 = _init_l_Lean_Compile lean_mark_persistent(l_Lean_Compiler_LCNF_Simp_inlineCandidate_x3f___closed__2); l_Lean_Compiler_LCNF_Simp_inlineCandidate_x3f___closed__3 = _init_l_Lean_Compiler_LCNF_Simp_inlineCandidate_x3f___closed__3(); lean_mark_persistent(l_Lean_Compiler_LCNF_Simp_inlineCandidate_x3f___closed__3); -l_Lean_Compiler_LCNF_Simp_initFn____x40_Lean_Compiler_LCNF_Simp_InlineCandidate___hyg_1448____closed__1 = _init_l_Lean_Compiler_LCNF_Simp_initFn____x40_Lean_Compiler_LCNF_Simp_InlineCandidate___hyg_1448____closed__1(); -lean_mark_persistent(l_Lean_Compiler_LCNF_Simp_initFn____x40_Lean_Compiler_LCNF_Simp_InlineCandidate___hyg_1448____closed__1); -l_Lean_Compiler_LCNF_Simp_initFn____x40_Lean_Compiler_LCNF_Simp_InlineCandidate___hyg_1448____closed__2 = _init_l_Lean_Compiler_LCNF_Simp_initFn____x40_Lean_Compiler_LCNF_Simp_InlineCandidate___hyg_1448____closed__2(); -lean_mark_persistent(l_Lean_Compiler_LCNF_Simp_initFn____x40_Lean_Compiler_LCNF_Simp_InlineCandidate___hyg_1448____closed__2); -l_Lean_Compiler_LCNF_Simp_initFn____x40_Lean_Compiler_LCNF_Simp_InlineCandidate___hyg_1448____closed__3 = _init_l_Lean_Compiler_LCNF_Simp_initFn____x40_Lean_Compiler_LCNF_Simp_InlineCandidate___hyg_1448____closed__3(); -lean_mark_persistent(l_Lean_Compiler_LCNF_Simp_initFn____x40_Lean_Compiler_LCNF_Simp_InlineCandidate___hyg_1448____closed__3); -res = l_Lean_Compiler_LCNF_Simp_initFn____x40_Lean_Compiler_LCNF_Simp_InlineCandidate___hyg_1448_(lean_io_mk_world()); +l_Lean_Compiler_LCNF_Simp_initFn____x40_Lean_Compiler_LCNF_Simp_InlineCandidate___hyg_1419____closed__1 = _init_l_Lean_Compiler_LCNF_Simp_initFn____x40_Lean_Compiler_LCNF_Simp_InlineCandidate___hyg_1419____closed__1(); +lean_mark_persistent(l_Lean_Compiler_LCNF_Simp_initFn____x40_Lean_Compiler_LCNF_Simp_InlineCandidate___hyg_1419____closed__1); +l_Lean_Compiler_LCNF_Simp_initFn____x40_Lean_Compiler_LCNF_Simp_InlineCandidate___hyg_1419____closed__2 = _init_l_Lean_Compiler_LCNF_Simp_initFn____x40_Lean_Compiler_LCNF_Simp_InlineCandidate___hyg_1419____closed__2(); +lean_mark_persistent(l_Lean_Compiler_LCNF_Simp_initFn____x40_Lean_Compiler_LCNF_Simp_InlineCandidate___hyg_1419____closed__2); +l_Lean_Compiler_LCNF_Simp_initFn____x40_Lean_Compiler_LCNF_Simp_InlineCandidate___hyg_1419____closed__3 = _init_l_Lean_Compiler_LCNF_Simp_initFn____x40_Lean_Compiler_LCNF_Simp_InlineCandidate___hyg_1419____closed__3(); +lean_mark_persistent(l_Lean_Compiler_LCNF_Simp_initFn____x40_Lean_Compiler_LCNF_Simp_InlineCandidate___hyg_1419____closed__3); +res = l_Lean_Compiler_LCNF_Simp_initFn____x40_Lean_Compiler_LCNF_Simp_InlineCandidate___hyg_1419_(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/Compiler/LCNF/SpecInfo.c b/stage0/stdlib/Lean/Compiler/LCNF/SpecInfo.c index 7b6088f7df..6a205fdae8 100644 --- a/stage0/stdlib/Lean/Compiler/LCNF/SpecInfo.c +++ b/stage0/stdlib/Lean/Compiler/LCNF/SpecInfo.c @@ -99,7 +99,7 @@ uint64_t l_Lean_Name_hash___override(lean_object*); LEAN_EXPORT lean_object* l_Array_zipWithAux___at_Lean_Compiler_LCNF_saveSpecParamInfo___spec__10___boxed(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_List_mapTRAux___at_Lean_Compiler_LCNF_saveSpecParamInfo___spec__14___at_Lean_Compiler_LCNF_saveSpecParamInfo___spec__15___at_Lean_Compiler_LCNF_saveSpecParamInfo___spec__16___closed__6; LEAN_EXPORT lean_object* l_Lean_HashMapImp_expand___at_Lean_Compiler_LCNF_SpecState_addEntry___spec__8(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_SpecInfo___hyg_2625_(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_SpecInfo___hyg_2604_(lean_object*); LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_SpecInfo___hyg_479_(lean_object*); LEAN_EXPORT lean_object* l_Lean_AssocList_contains___at_Lean_Compiler_LCNF_SpecState_addEntry___spec__7___boxed(lean_object*, lean_object*); extern lean_object* l_Lean_inheritedTraceOptions; @@ -6535,7 +6535,7 @@ lean_dec(x_3); return x_4; } } -LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_SpecInfo___hyg_2625_(lean_object* x_1) { +LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_SpecInfo___hyg_2604_(lean_object* x_1) { _start: { lean_object* x_2; uint8_t x_3; lean_object* x_4; @@ -6784,7 +6784,7 @@ l_Std_Range_forIn_loop___at_Lean_Compiler_LCNF_saveSpecParamInfo___spec__17___cl lean_mark_persistent(l_Std_Range_forIn_loop___at_Lean_Compiler_LCNF_saveSpecParamInfo___spec__17___closed__6); l_Std_Range_forIn_loop___at_Lean_Compiler_LCNF_saveSpecParamInfo___spec__17___closed__7 = _init_l_Std_Range_forIn_loop___at_Lean_Compiler_LCNF_saveSpecParamInfo___spec__17___closed__7(); lean_mark_persistent(l_Std_Range_forIn_loop___at_Lean_Compiler_LCNF_saveSpecParamInfo___spec__17___closed__7); -res = l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_SpecInfo___hyg_2625_(lean_io_mk_world()); +res = l_Lean_Compiler_LCNF_initFn____x40_Lean_Compiler_LCNF_SpecInfo___hyg_2604_(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/Compiler/LCNF/ToLCNF.c b/stage0/stdlib/Lean/Compiler/LCNF/ToLCNF.c index 41fa9000d0..d2dd3e34fb 100644 --- a/stage0/stdlib/Lean/Compiler/LCNF/ToLCNF.c +++ b/stage0/stdlib/Lean/Compiler/LCNF/ToLCNF.c @@ -84,6 +84,7 @@ LEAN_EXPORT lean_object* l_Lean_HashMapImp_moveEntries___at___private_Lean_Compi static lean_object* l_Lean_Compiler_LCNF_ToLCNF_toLCNF_visitQuotLift___lambda__1___closed__4; uint8_t l_Lean_isCasesOnRecursor(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_ToLCNF_mkUnreachable(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Expr_mdata___override(lean_object*, lean_object*); lean_object* lean_st_ref_get(lean_object*, lean_object*); static lean_object* l_Lean_Compiler_LCNF_ToLCNF_toLCNF_visitQuotLift___lambda__1___closed__1; LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_ToLCNF_bindCases_go___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -142,7 +143,6 @@ extern lean_object* l_Lean_levelZero; lean_object* lean_nat_add(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_ToLCNF_mkParam(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Compiler_LCNF_ToLCNF_toLCNF___closed__1; -LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_ToLCNF_toLCNF_visitMData___boxed(lean_object*); LEAN_EXPORT lean_object* l_Lean_HashMap_insert___at___private_Lean_Compiler_LCNF_ToLCNF_0__Lean_Compiler_LCNF_ToLCNF_isTypeFormerType___spec__1(lean_object*, lean_object*, uint8_t); lean_object* l_Lean_HashMap_insert___at_Lean_Compiler_LCNF_addFVarSubst___spec__1(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Compiler_LCNF_ToLCNF_toLCNF_visitApp___closed__2; @@ -259,7 +259,7 @@ static lean_object* l_Lean_throwMaxRecDepthAt___at_Lean_Compiler_LCNF_ToLCNF_toL size_t lean_usize_modn(size_t, lean_object*); lean_object* l___private_Init_Util_0__mkPanicMessageWithDecl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Array_isEmpty___rarg(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_ToLCNF_toLCNF_visitMData(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_ToLCNF_toLCNF_visitMData(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_AssocList_contains___at___private_Lean_Compiler_LCNF_ToLCNF_0__Lean_Compiler_LCNF_ToLCNF_isTypeFormerType___spec__2___boxed(lean_object*, lean_object*); lean_object* l_Lean_Compiler_LCNF_getCasesInfo_x3f(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_ToLCNF_toLCNF_visitAlt___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -361,7 +361,6 @@ uint8_t l_Lean_RBNode_isRed___rarg(lean_object*); lean_object* l_Lean_Compiler_LCNF_mkFreshBinderName(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Compiler_LCNF_LCtx_toLocalContext(lean_object*); LEAN_EXPORT lean_object* l_Lean_HashMapImp_expand___at___private_Lean_Compiler_LCNF_ToLCNF_0__Lean_Compiler_LCNF_ToLCNF_isTypeFormerType___spec__3(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_ToLCNF_toLCNF_visitMData___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Compiler_LCNF_ToLCNF_seqToCode_go___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Compiler_LCNF_ToLCNF_bindCases_go___closed__6; LEAN_EXPORT lean_object* l_ReaderT_bind___at_Lean_Compiler_LCNF_ToLCNF_toLCNF_visitLambda___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -13388,172 +13387,174 @@ return x_74; } case 10: { -lean_object* x_75; lean_object* x_76; -x_75 = lean_ctor_get(x_1, 1); +lean_object* x_75; lean_object* x_76; lean_object* x_77; +x_75 = lean_ctor_get(x_1, 0); lean_inc(x_75); +x_76 = lean_ctor_get(x_1, 1); +lean_inc(x_76); lean_inc(x_7); lean_inc(x_6); lean_inc(x_5); lean_inc(x_4); lean_inc(x_3); -x_76 = l_Lean_Compiler_LCNF_ToLCNF_toLCNF_visitMData___rarg(x_75, x_3, x_4, x_5, x_6, x_7, x_8); -if (lean_obj_tag(x_76) == 0) +x_77 = l_Lean_Compiler_LCNF_ToLCNF_toLCNF_visitMData(x_75, x_76, x_3, x_4, x_5, x_6, x_7, x_8); +if (lean_obj_tag(x_77) == 0) { -lean_object* x_77; lean_object* x_78; lean_object* x_79; -x_77 = lean_ctor_get(x_76, 0); -lean_inc(x_77); -x_78 = lean_ctor_get(x_76, 1); +lean_object* x_78; lean_object* x_79; lean_object* x_80; +x_78 = lean_ctor_get(x_77, 0); lean_inc(x_78); -lean_dec(x_76); -x_79 = l_Lean_Compiler_LCNF_ToLCNF_toLCNF_visitCore___lambda__1(x_1, x_77, x_3, x_4, x_5, x_6, x_7, x_78); +x_79 = lean_ctor_get(x_77, 1); +lean_inc(x_79); +lean_dec(x_77); +x_80 = l_Lean_Compiler_LCNF_ToLCNF_toLCNF_visitCore___lambda__1(x_1, x_78, x_3, x_4, x_5, x_6, x_7, x_79); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); -return x_79; +return x_80; } else { -uint8_t x_80; +uint8_t x_81; lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_1); -x_80 = !lean_is_exclusive(x_76); -if (x_80 == 0) +x_81 = !lean_is_exclusive(x_77); +if (x_81 == 0) { -return x_76; +return x_77; } else { -lean_object* x_81; lean_object* x_82; lean_object* x_83; -x_81 = lean_ctor_get(x_76, 0); -x_82 = lean_ctor_get(x_76, 1); +lean_object* x_82; lean_object* x_83; lean_object* x_84; +x_82 = lean_ctor_get(x_77, 0); +x_83 = lean_ctor_get(x_77, 1); +lean_inc(x_83); lean_inc(x_82); -lean_inc(x_81); -lean_dec(x_76); -x_83 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_83, 0, x_81); -lean_ctor_set(x_83, 1, x_82); -return x_83; +lean_dec(x_77); +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; } } } case 11: { -lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; -x_84 = lean_ctor_get(x_1, 0); -lean_inc(x_84); -x_85 = lean_ctor_get(x_1, 1); +lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; +x_85 = lean_ctor_get(x_1, 0); lean_inc(x_85); -x_86 = lean_ctor_get(x_1, 2); +x_86 = lean_ctor_get(x_1, 1); lean_inc(x_86); +x_87 = lean_ctor_get(x_1, 2); +lean_inc(x_87); lean_inc(x_7); lean_inc(x_6); lean_inc(x_5); lean_inc(x_4); lean_inc(x_3); -x_87 = l_Lean_Compiler_LCNF_ToLCNF_toLCNF_visitProj(x_84, x_85, x_86, x_3, x_4, x_5, x_6, x_7, x_8); -if (lean_obj_tag(x_87) == 0) +x_88 = l_Lean_Compiler_LCNF_ToLCNF_toLCNF_visitProj(x_85, x_86, x_87, x_3, x_4, x_5, x_6, x_7, x_8); +if (lean_obj_tag(x_88) == 0) { -lean_object* x_88; lean_object* x_89; lean_object* x_90; -x_88 = lean_ctor_get(x_87, 0); -lean_inc(x_88); -x_89 = lean_ctor_get(x_87, 1); +lean_object* x_89; lean_object* x_90; lean_object* x_91; +x_89 = lean_ctor_get(x_88, 0); lean_inc(x_89); -lean_dec(x_87); -x_90 = l_Lean_Compiler_LCNF_ToLCNF_toLCNF_visitCore___lambda__1(x_1, x_88, x_3, x_4, x_5, x_6, x_7, x_89); +x_90 = lean_ctor_get(x_88, 1); +lean_inc(x_90); +lean_dec(x_88); +x_91 = l_Lean_Compiler_LCNF_ToLCNF_toLCNF_visitCore___lambda__1(x_1, x_89, x_3, x_4, x_5, x_6, x_7, x_90); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); -return x_90; +return x_91; } else { -uint8_t x_91; +uint8_t x_92; lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_1); -x_91 = !lean_is_exclusive(x_87); -if (x_91 == 0) +x_92 = !lean_is_exclusive(x_88); +if (x_92 == 0) { -return x_87; +return x_88; } else { -lean_object* x_92; lean_object* x_93; lean_object* x_94; -x_92 = lean_ctor_get(x_87, 0); -x_93 = lean_ctor_get(x_87, 1); +lean_object* x_93; lean_object* x_94; lean_object* x_95; +x_93 = lean_ctor_get(x_88, 0); +x_94 = lean_ctor_get(x_88, 1); +lean_inc(x_94); lean_inc(x_93); -lean_inc(x_92); -lean_dec(x_87); -x_94 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_94, 0, x_92); -lean_ctor_set(x_94, 1, x_93); -return x_94; +lean_dec(x_88); +x_95 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_95, 0, x_93); +lean_ctor_set(x_95, 1, x_94); +return x_95; } } } default: { -lean_object* x_95; +lean_object* x_96; lean_inc(x_7); lean_inc(x_6); lean_inc(x_5); lean_inc(x_4); lean_inc(x_3); lean_inc(x_1); -x_95 = l_Lean_Compiler_LCNF_ToLCNF_toLCNF_visitApp(x_1, x_3, x_4, x_5, x_6, x_7, x_8); -if (lean_obj_tag(x_95) == 0) +x_96 = l_Lean_Compiler_LCNF_ToLCNF_toLCNF_visitApp(x_1, x_3, x_4, x_5, x_6, x_7, x_8); +if (lean_obj_tag(x_96) == 0) { -lean_object* x_96; lean_object* x_97; lean_object* x_98; -x_96 = lean_ctor_get(x_95, 0); -lean_inc(x_96); -x_97 = lean_ctor_get(x_95, 1); +lean_object* x_97; lean_object* x_98; lean_object* x_99; +x_97 = lean_ctor_get(x_96, 0); lean_inc(x_97); -lean_dec(x_95); -x_98 = l_Lean_Compiler_LCNF_ToLCNF_toLCNF_visitCore___lambda__1(x_1, x_96, x_3, x_4, x_5, x_6, x_7, x_97); +x_98 = lean_ctor_get(x_96, 1); +lean_inc(x_98); +lean_dec(x_96); +x_99 = l_Lean_Compiler_LCNF_ToLCNF_toLCNF_visitCore___lambda__1(x_1, x_97, x_3, x_4, x_5, x_6, x_7, x_98); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); -return x_98; +return x_99; } else { -uint8_t x_99; +uint8_t x_100; lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_1); -x_99 = !lean_is_exclusive(x_95); -if (x_99 == 0) +x_100 = !lean_is_exclusive(x_96); +if (x_100 == 0) { -return x_95; +return x_96; } else { -lean_object* x_100; lean_object* x_101; lean_object* x_102; -x_100 = lean_ctor_get(x_95, 0); -x_101 = lean_ctor_get(x_95, 1); +lean_object* x_101; lean_object* x_102; lean_object* x_103; +x_101 = lean_ctor_get(x_96, 0); +x_102 = lean_ctor_get(x_96, 1); +lean_inc(x_102); lean_inc(x_101); -lean_inc(x_100); -lean_dec(x_95); -x_102 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_102, 0, x_100); -lean_ctor_set(x_102, 1, x_101); -return x_102; +lean_dec(x_96); +x_103 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_103, 0, x_101); +lean_ctor_set(x_103, 1, x_102); +return x_103; } } } @@ -14918,73 +14919,68 @@ return x_33; } } } -LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_ToLCNF_toLCNF_visitMData___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_ToLCNF_toLCNF_visitMData(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { -lean_object* x_8; -x_8 = l_Lean_letFunAnnotation_x3f(x_1); -if (lean_obj_tag(x_8) == 0) -{ -lean_object* x_9; -x_9 = l_Lean_Compiler_LCNF_ToLCNF_toLCNF_visit(x_1, x_2, x_3, x_4, x_5, x_6, x_7); -return x_9; -} -else -{ -lean_object* x_10; -x_10 = lean_ctor_get(x_8, 0); -lean_inc(x_10); -lean_dec(x_8); -if (lean_obj_tag(x_10) == 5) +lean_object* x_9; lean_object* x_10; +lean_inc(x_2); +x_9 = l_Lean_Expr_mdata___override(x_1, x_2); +x_10 = l_Lean_letFunAnnotation_x3f(x_9); +lean_dec(x_9); +if (lean_obj_tag(x_10) == 0) { lean_object* x_11; -x_11 = lean_ctor_get(x_10, 0); -lean_inc(x_11); -if (lean_obj_tag(x_11) == 6) +x_11 = l_Lean_Compiler_LCNF_ToLCNF_toLCNF_visit(x_2, x_3, x_4, x_5, x_6, x_7, x_8); +return x_11; +} +else { -lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; uint8_t x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; -lean_dec(x_1); -x_12 = lean_ctor_get(x_10, 1); +lean_object* x_12; +x_12 = lean_ctor_get(x_10, 0); lean_inc(x_12); lean_dec(x_10); -x_13 = lean_ctor_get(x_11, 0); +if (lean_obj_tag(x_12) == 5) +{ +lean_object* x_13; +x_13 = lean_ctor_get(x_12, 0); lean_inc(x_13); -x_14 = lean_ctor_get(x_11, 1); +if (lean_obj_tag(x_13) == 6) +{ +lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; uint8_t x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; +lean_dec(x_2); +x_14 = lean_ctor_get(x_12, 1); lean_inc(x_14); -x_15 = lean_ctor_get(x_11, 2); +lean_dec(x_12); +x_15 = lean_ctor_get(x_13, 0); lean_inc(x_15); -lean_dec(x_11); -x_16 = 1; -x_17 = l_Lean_Expr_letE___override(x_13, x_14, x_12, x_15, x_16); -x_18 = l_Lean_Compiler_LCNF_ToLCNF_instInhabitedElement___closed__1; -x_19 = l_Lean_Compiler_LCNF_ToLCNF_toLCNF_visitLet(x_17, x_18, x_2, x_3, x_4, x_5, x_6, x_7); -return x_19; -} -else -{ -lean_object* x_20; -lean_dec(x_11); -lean_dec(x_10); -x_20 = l_Lean_Compiler_LCNF_ToLCNF_toLCNF_visit(x_1, x_2, x_3, x_4, x_5, x_6, x_7); -return x_20; -} -} -else -{ -lean_object* x_21; -lean_dec(x_10); -x_21 = l_Lean_Compiler_LCNF_ToLCNF_toLCNF_visit(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +x_16 = lean_ctor_get(x_13, 1); +lean_inc(x_16); +x_17 = lean_ctor_get(x_13, 2); +lean_inc(x_17); +lean_dec(x_13); +x_18 = 1; +x_19 = l_Lean_Expr_letE___override(x_15, x_16, x_14, x_17, x_18); +x_20 = l_Lean_Compiler_LCNF_ToLCNF_instInhabitedElement___closed__1; +x_21 = l_Lean_Compiler_LCNF_ToLCNF_toLCNF_visitLet(x_19, x_20, x_3, x_4, x_5, x_6, x_7, x_8); return x_21; } -} -} -} -LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_ToLCNF_toLCNF_visitMData(lean_object* x_1) { -_start: +else { -lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Lean_Compiler_LCNF_ToLCNF_toLCNF_visitMData___rarg), 7, 0); -return x_2; +lean_object* x_22; +lean_dec(x_13); +lean_dec(x_12); +x_22 = l_Lean_Compiler_LCNF_ToLCNF_toLCNF_visit(x_2, x_3, x_4, x_5, x_6, x_7, x_8); +return x_22; +} +} +else +{ +lean_object* x_23; +lean_dec(x_12); +x_23 = l_Lean_Compiler_LCNF_ToLCNF_toLCNF_visit(x_2, x_3, x_4, x_5, x_6, x_7, x_8); +return x_23; +} +} } } LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_ToLCNF_toLCNF_visitProj(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { @@ -22584,15 +22580,6 @@ lean_dec(x_3); return x_9; } } -LEAN_EXPORT lean_object* l_Lean_Compiler_LCNF_ToLCNF_toLCNF_visitMData___boxed(lean_object* x_1) { -_start: -{ -lean_object* x_2; -x_2 = l_Lean_Compiler_LCNF_ToLCNF_toLCNF_visitMData(x_1); -lean_dec(x_1); -return x_2; -} -} LEAN_EXPORT lean_object* l_Lean_getProjectionFnInfo_x3f___at_Lean_Compiler_LCNF_ToLCNF_toLCNF_visitApp___spec__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { diff --git a/stage0/stdlib/Lean/Elab/App.c b/stage0/stdlib/Lean/Elab/App.c index 80c3994a19..2c5bf8d9ce 100644 --- a/stage0/stdlib/Lean/Elab/App.c +++ b/stage0/stdlib/Lean/Elab/App.c @@ -29,6 +29,8 @@ static lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_mkProjAndCheck__ lean_object* lean_array_set(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_MetavarContext_0__Lean_DependsOn_dep_visit___at___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_anyNamedArgDependsOnCurrent___spec__19(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at_Lean_Elab_Term_ElabElim_revertArgs___spec__8___boxed(lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____closed__4; +static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__3; LEAN_EXPORT lean_object* l_Lean_getRefPos___at___private_Lean_Elab_App_0__Lean_Elab_Term_mergeFailures___spec__5(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_MVarId_isAssigned___at___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_finalize___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_getArgExpectedType(lean_object*); @@ -48,10 +50,11 @@ lean_object* l___private_Lean_MetavarContext_0__Lean_DependsOn_shouldVisit(lean_ static lean_object* l___regBuiltin_Lean_Elab_Term_elabExplicit_declRange___closed__6; static lean_object* l_Lean_Elab_Term_throwInvalidNamedArg___rarg___closed__1; LEAN_EXPORT lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_isNextOutParamOfLocalInstanceAndResult_hasLocalInstaceWithOutParams___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__18; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_elabExplicitUniv_declRange(lean_object*); lean_object* l_Lean_Expr_mvarId_x21(lean_object*); lean_object* l_List_tail_x21___rarg(lean_object*); -static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__5; +static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__15; lean_object* l_Lean_instantiateMVars___at___private_Lean_MetavarContext_0__Lean_DependsOn_dep_visitMain___spec__7(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_transform_visit_visitForall___at_Lean_Elab_Term_ElabElim_revertArgs___spec__5___lambda__1(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_registerTraceClass(lean_object*, uint8_t, lean_object*); @@ -69,6 +72,7 @@ LEAN_EXPORT lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs static lean_object* l_Lean_Elab_throwErrorWithNestedErrors___at___private_Lean_Elab_App_0__Lean_Elab_Term_mergeFailures___spec__3___rarg___closed__2; LEAN_EXPORT lean_object* l_Lean_Elab_Term_elabAppArgs_elabAsElim_x3f(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT uint8_t l_Lean_PersistentArray_anyMAux___at___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_anyNamedArgDependsOnCurrent___spec__23(lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_24008____closed__1; LEAN_EXPORT lean_object* l_Lean_throwErrorAt___at___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppAux___spec__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___regBuiltin_Lean_Elab_Term_elabExplicit_declRange___closed__2; static lean_object* l_Lean_throwMaxRecDepthAt___at_Lean_Elab_Term_ElabElim_revertArgs___spec__14___rarg___closed__1; @@ -94,7 +98,6 @@ LEAN_EXPORT lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_resolveLVal LEAN_EXPORT uint8_t l_Lean_PersistentArray_anyMAux___at___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_anyNamedArgDependsOnCurrent___spec__39(lean_object*, lean_object*); lean_object* l_Lean_Meta_whnfForall(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_App_0__Lean_Elab_Term_findMethod_x3f___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____closed__4; LEAN_EXPORT lean_object* l_Std_Range_forIn_loop___at___private_Lean_Elab_App_0__Lean_Elab_Term_addLValArg___spec__2___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Term_synthesizeAppInstMVars___spec__1(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_mkFreshBinderName___at_Lean_Elab_Term_ElabElim_mkMotive___spec__1___rarg___closed__1; @@ -116,7 +119,6 @@ static lean_object* l_Lean_Elab_Term_elabAppArgs___lambda__3___closed__2; lean_object* l_Lean_Expr_bindingDomain_x21(lean_object*); static lean_object* l___regBuiltin_Lean_Elab_Term_elabApp___closed__4; LEAN_EXPORT lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_resolveLVal(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__16; LEAN_EXPORT lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_anyNamedArgDependsOnCurrent(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___regBuiltin_Lean_Elab_Term_elabNamedPattern_declRange___closed__3; LEAN_EXPORT lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_typeMatchesBaseName(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -125,6 +127,7 @@ extern lean_object* l_Std_Format_defWidth; LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at_Lean_Elab_Term_ElabElim_revertArgs___spec__7___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppLValsAux_loop___lambda__3___closed__7; static lean_object* l_Lean_Elab_throwErrorWithNestedErrors___at___private_Lean_Elab_App_0__Lean_Elab_Term_mergeFailures___spec__3___rarg___closed__1; +static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__1; static lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppFn___closed__11; LEAN_EXPORT uint8_t l_Lean_PersistentArray_anyM___at___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_anyNamedArgDependsOnCurrent___spec__38(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_Range_forIn_loop___at_Lean_Elab_Term_ElabElim_finalize___spec__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -146,7 +149,9 @@ lean_object* l_Lean_Meta_getElimInfo(lean_object*, lean_object*, lean_object*, l LEAN_EXPORT lean_object* l___private_Lean_MetavarContext_0__Lean_DependsOn_dep_visitApp___at___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_anyNamedArgDependsOnCurrent___spec__45___boxed(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_maxRecDepthErrorMessage; lean_object* lean_array_uset(lean_object*, size_t, lean_object*); +static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__14; LEAN_EXPORT lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_elabAndAddNewArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__5; LEAN_EXPORT lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_elabAndAddNewArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_mkFreshFVarId___at___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_isNextOutParamOfLocalInstanceAndResult___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_finalize___lambda__5___closed__3; @@ -157,19 +162,18 @@ static lean_object* l___regBuiltin_Lean_Elab_Term_elabExplicitUniv_declRange___c LEAN_EXPORT uint8_t l_Lean_PersistentArray_anyM___at___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_anyNamedArgDependsOnCurrent___spec__30(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_instInhabitedTermElabResult___rarg(lean_object*); static lean_object* l___regBuiltin_Lean_Elab_Term_elabNamedPattern_declRange___closed__5; -static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__7; lean_object* l_Lean_Expr_getAutoParamTactic_x3f(lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_hasArgsToProcess___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_elabIdent_declRange(lean_object*); LEAN_EXPORT lean_object* l___private_Lean_MetavarContext_0__Lean_DependsOn_dep_visitApp___at___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_anyNamedArgDependsOnCurrent___spec__37___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_findMethodAlias_x3f___boxed(lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__24; LEAN_EXPORT lean_object* l_Lean_Meta_forallTelescope___at_Lean_Elab_Term_ElabElim_finalize___spec__6(lean_object*); lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_withLocalDeclImp___rarg(lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_App_0__Lean_Elab_Term_resolveLValAux___spec__10___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___regBuiltin_Lean_Elab_Term_elabApp_declRange___closed__6; static lean_object* l_Lean_Elab_Term_throwInvalidNamedArg___rarg___closed__2; LEAN_EXPORT lean_object* l_Lean_Elab_Term_ElabElim_finalize___lambda__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__4; static lean_object* l___regBuiltin_Lean_Elab_Term_elabApp___closed__2; size_t lean_usize_sub(size_t, size_t); LEAN_EXPORT lean_object* l_Lean_PersistentArray_anyMAux___at___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_anyNamedArgDependsOnCurrent___spec__15___boxed(lean_object*, lean_object*); @@ -182,6 +186,7 @@ static lean_object* l_Lean_Elab_Term_mkFreshBinderName___at_Lean_Elab_Term_ElabE LEAN_EXPORT lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_hasArgsToProcess___boxed(lean_object*); LEAN_EXPORT lean_object* l_List_filterTRAux___at_Lean_Elab_Term_eraseNamedArg___spec__1___boxed(lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppAux___closed__3; +static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__13; uint8_t l_Lean_isCasesOnRecursor(lean_object*, lean_object*); static lean_object* l_Lean_Elab_nestedExceptionToMessageData___at___private_Lean_Elab_App_0__Lean_Elab_Term_mergeFailures___spec__4___closed__2; lean_object* l_Lean_Elab_Term_registerMVarErrorHoleInfo(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -192,12 +197,12 @@ static lean_object* l___regBuiltin_Lean_Elab_Term_elabApp___closed__1; LEAN_EXPORT lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_resolveLValLoop___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_RBNode_find___at_Lean_Elab_Term_resolveLocalName___spec__1(lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_propagateExpectedType___lambda__2___closed__2; -static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__10; LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at___private_Lean_Elab_App_0__Lean_Elab_Term_hasOptAutoParams___spec__1(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_st_ref_get(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_addEtaArg___spec__1___rarg(lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_5____closed__3; LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_App_0__Lean_Elab_Term_resolveLValAux___spec__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__9; static lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_resolveDotName___closed__2; LEAN_EXPORT lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_propagateExpectedType(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_ElabElim_finalize___lambda__4___closed__6; @@ -216,11 +221,11 @@ LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_elabApp(lean_object*); LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_elabIdent(lean_object*); LEAN_EXPORT lean_object* l_panic___at___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppAux___spec__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processExplictArg___closed__3; -static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____closed__5; uint8_t l_Lean_Expr_isAppOf(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_getBindingName___boxed(lean_object*); lean_object* l_Lean_Name_mkStr2(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Elab_Term_ElabElim_finalize___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____closed__5; static lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_propagateExpectedType___closed__7; LEAN_EXPORT uint8_t l_Lean_PersistentArray_anyMAux___at___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_anyNamedArgDependsOnCurrent___spec__31(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_panic___at_Lean_Elab_Term_ElabElim_finalize___spec__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -231,9 +236,9 @@ lean_object* l_Array_toSubarray___rarg(lean_object*, lean_object*, lean_object*) static lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_propagateExpectedType___lambda__2___closed__1; lean_object* lean_array_push(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_isNextOutParamOfLocalInstanceAndResult_isResultType___boxed(lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____closed__3; LEAN_EXPORT lean_object* l___private_Lean_MetavarContext_0__Lean_DependsOn_dep_visit___at___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_anyNamedArgDependsOnCurrent___spec__11(lean_object*, lean_object*, lean_object*); lean_object* lean_array_get_size(lean_object*); -static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__20; LEAN_EXPORT lean_object* l_Lean_Elab_Term_elabAppArgs___lambda__5(lean_object*, lean_object*, uint8_t, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_nestedExceptionToMessageData___at___private_Lean_Elab_App_0__Lean_Elab_Term_mergeFailures___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_throwError___at___private_Lean_Meta_InferType_0__Lean_Meta_inferProjType___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -256,7 +261,6 @@ lean_object* l_Lean_Expr_getOptParamDefault_x3f(lean_object*); LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_elabChoice_declRange(lean_object*); LEAN_EXPORT lean_object* l_Lean_mkFreshId___at___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_isNextOutParamOfLocalInstanceAndResult___spec__2___rarg(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_5____closed__1; -static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__15; LEAN_EXPORT lean_object* l_Lean_Elab_Term_ElabElim_State_idx___default; LEAN_EXPORT uint8_t l_List_foldr___at___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_anyNamedArgDependsOnCurrent___spec__1(lean_object*, uint8_t, lean_object*); static lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_resolveLValAux___lambda__3___closed__2; @@ -273,7 +277,6 @@ LEAN_EXPORT uint8_t l_Array_anyMUnsafe_any___at___private_Lean_Elab_App_0__Lean_ LEAN_EXPORT lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_resolveLValAux___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_List_mapTRAux___at_Lean_Elab_Term_elabAppArgs___spec__4___at_Lean_Elab_Term_elabAppArgs___spec__5___at_Lean_Elab_Term_elabAppArgs___spec__6(lean_object*, lean_object*); LEAN_EXPORT uint8_t l_Array_anyMUnsafe_any___at___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_anyNamedArgDependsOnCurrent___spec__16(lean_object*, lean_object*, size_t, size_t); -static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__3; static lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_propagateExpectedType___closed__3; LEAN_EXPORT lean_object* l_Lean_Elab_Term_ElabElim_State_instMVars___default; LEAN_EXPORT lean_object* l_Lean_throwError___at___private_Lean_Elab_App_0__Lean_Elab_Term_addLValArg___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -282,7 +285,6 @@ LEAN_EXPORT lean_object* l_List_foldlM___at___private_Lean_Elab_App_0__Lean_Elab static lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_resolveLValAux___lambda__2___closed__2; lean_object* l_Lean_Elab_Term_synthesizeSyntheticMVars(uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwError___at___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_synthesizePendingAndNormalizeFunType___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__18; LEAN_EXPORT uint8_t l_Lean_Elab_Term_hasElabWithoutExpectedType(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_postponeElabTerm(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at_Lean_Elab_Term_ElabElim_mkMotive___spec__2___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -293,6 +295,7 @@ lean_object* l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(lean_object*, lean_obj static lean_object* l___regBuiltin_Lean_Elab_Term_elabExplicitUniv_declRange___closed__3; LEAN_EXPORT uint8_t l_Lean_PersistentArray_anyM___at___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_anyNamedArgDependsOnCurrent___spec__14(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_MetavarContext_0__Lean_DependsOn_dep_visitApp___at___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_anyNamedArgDependsOnCurrent___spec__5(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__2; LEAN_EXPORT lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_isNextArgHole(lean_object*); uint8_t lean_usize_dec_lt(size_t, size_t); static lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppFn___closed__10; @@ -300,7 +303,6 @@ LEAN_EXPORT lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_mergeFailur LEAN_EXPORT lean_object* l_Lean_throwUnknownConstant___at___private_Lean_Elab_App_0__Lean_Elab_Term_resolveLValAux___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentArray_forInAux___at___private_Lean_Elab_App_0__Lean_Elab_Term_resolveLValAux___spec__4___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___regBuiltin_Lean_Elab_Term_elabExplicit_declRange___closed__1; -static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__14; static lean_object* l_Lean_Elab_Term_elabAppArgs___lambda__5___closed__2; LEAN_EXPORT lean_object* l___private_Lean_MetavarContext_0__Lean_DependsOn_dep_visit___at___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_anyNamedArgDependsOnCurrent___spec__35___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkHashSetImp___rarg(lean_object*); @@ -408,12 +410,12 @@ static lean_object* l_Lean_Elab_Term_elabAppArgs___lambda__5___closed__5; lean_object* lean_array_fget(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_Range_forIn_loop___at___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_anyNamedArgDependsOnCurrent___spec__51(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Elab_Term_throwInvalidNamedArg___spec__2(lean_object*); +static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____closed__1; LEAN_EXPORT uint8_t l_Array_anyMUnsafe_any___at___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_anyNamedArgDependsOnCurrent___spec__10(lean_object*, lean_object*, size_t, size_t); lean_object* l_Lean_mkHashMapImp___rarg(lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppLVals___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____closed__2; +static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__22; LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at_Lean_Elab_Term_elabExplicitUnivs___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__6; LEAN_EXPORT lean_object* l_Lean_PersistentArray_forIn___at___private_Lean_Elab_App_0__Lean_Elab_Term_resolveLValAux___spec__8___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_isNextOutParamOfLocalInstanceAndResult___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_transform_visit_visitLambda___at_Lean_Elab_Term_ElabElim_revertArgs___spec__4___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -428,7 +430,6 @@ LEAN_EXPORT uint8_t l_Lean_PersistentArray_anyM___at___private_Lean_Elab_App_0__ uint8_t l_Lean_Syntax_matchesNull(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_isNextArgHole___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_shouldPropagateExpectedTypeFor___closed__7; -static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____closed__1; static lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_App_0__Lean_Elab_Term_mergeFailures___spec__2___closed__1; lean_object* lean_st_ref_take(lean_object*, lean_object*); LEAN_EXPORT uint8_t l_Lean_PersistentArray_anyM___at___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_anyNamedArgDependsOnCurrent___spec__46(lean_object*, lean_object*); @@ -464,7 +465,6 @@ lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_forallTelescopeReducingImp LEAN_EXPORT lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_5____lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_propagateExpectedType___closed__9; LEAN_EXPORT lean_object* l_List_foldlM___at_Lean_Elab_Term_ElabElim_revertArgs___spec__15(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____closed__3; lean_object* l_Lean_HashMapImp_find_x3f___at_Lean_instantiateExprMVars___spec__1(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_normalizeFunType(lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_resolveLValAux___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -490,7 +490,6 @@ LEAN_EXPORT lean_object* l_Lean_PersistentArray_anyM___at___private_Lean_Elab_Ap uint8_t l_Lean_BinderInfo_isStrictImplicit(uint8_t); lean_object* l_Lean_Name_num___override(lean_object*, lean_object*); uint8_t lean_is_out_param(lean_object*); -static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__22; lean_object* l_Lean_replaceRef(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_List_forIn_loop___at___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_synthesizePendingAndNormalizeFunType___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Term_ElabElim_finalize___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -521,7 +520,6 @@ lean_object* l_instInhabited___rarg(lean_object*, lean_object*); lean_object* l_Lean_Name_eraseSuffix_x3f(lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_mkProjAndCheck___closed__4; LEAN_EXPORT lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_resolveLValAux___lambda__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_24260____closed__1; LEAN_EXPORT lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_resolveLValAux___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_hasOptAutoParams___closed__1; static lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_resolveLValAux___lambda__1___closed__4; @@ -572,7 +570,6 @@ LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_App_ static lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_addLValArg___lambda__1___closed__1; LEAN_EXPORT lean_object* l_Lean_Meta_forallTelescope___at_Lean_Elab_Term_ElabElim_finalize___spec__6___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_getId(lean_object*); -static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__23; lean_object* l_Lean_Elab_addMacroStack___at_Lean_Elab_Term_instAddErrorMessageContextTermElabM___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___regBuiltin_Lean_Elab_Term_elabExplicitUniv_declRange___closed__2; static lean_object* l___regBuiltin_Lean_Elab_Term_elabProj_declRange___closed__5; @@ -589,6 +586,7 @@ LEAN_EXPORT lean_object* l_Lean_throwError___at___private_Lean_Elab_App_0__Lean_ LEAN_EXPORT lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_resolveDotName_go___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_anyNamedArgDependsOnCurrent___spec__48___boxed(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___regBuiltin_Lean_Elab_Term_elabNamedPattern_declRange___closed__4; +static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__6; LEAN_EXPORT lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_resolveLValAux___lambda__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_List_forIn_loop___at___private_Lean_Elab_App_0__Lean_Elab_Term_mkBaseProjections___spec__1___closed__2; static lean_object* l___regBuiltin_Lean_Elab_Term_elabExplicit_declRange___closed__3; @@ -600,7 +598,6 @@ static lean_object* l_Std_Range_forIn_loop___at___private_Lean_Elab_App_0__Lean_ LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at_Lean_Elab_Term_ElabElim_revertArgs___spec__7(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_elabNamedPattern(lean_object*); static lean_object* l_List_forIn_loop___at___private_Lean_Elab_App_0__Lean_Elab_Term_mkBaseProjections___spec__1___closed__1; -static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__21; lean_object* l_Lean_getStructureFields(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_synthesizePendingAndNormalizeFunType(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___regBuiltin_Lean_Elab_Term_elabDotIdent___closed__1; @@ -630,7 +627,6 @@ static lean_object* l_Lean_Elab_Term_instToStringNamedArg___closed__2; static lean_object* l_Lean_Elab_Term_ElabElim_finalize___lambda__4___closed__4; static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_5____closed__7; static lean_object* l___regBuiltin_Lean_Elab_Term_elabPipeProj___closed__3; -static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__13; LEAN_EXPORT lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_isNextOutParamOfLocalInstanceAndResult_isOutParamOf(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_MetavarContext_0__Lean_DependsOn_dep_visitApp___at___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_anyNamedArgDependsOnCurrent___spec__13___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Term_elabIdent(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -691,12 +687,14 @@ lean_object* l_Lean_Expr_consumeMData(lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_findMethod_x3f(lean_object*, lean_object*, lean_object*); static lean_object* l___regBuiltin_Lean_Elab_Term_elabPipeProj_declRange___closed__5; LEAN_EXPORT lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_anyNamedArgDependsOnCurrent___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__17; LEAN_EXPORT lean_object* l_Lean_Meta_transform_visit_visitPost___at_Lean_Elab_Term_ElabElim_revertArgs___spec__3(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppFn___closed__16; static lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_mkProjAndCheck___closed__5; static lean_object* l_Lean_Elab_Term_instToStringNamedArg___closed__3; LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Elab_Term_throwInvalidNamedArg___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_getAliases(lean_object*, lean_object*, uint8_t); +static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__8; LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at___private_Lean_Elab_App_0__Lean_Elab_Term_hasOptAutoParams___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Expr_isForall(lean_object*); uint8_t l_Lean_BinderInfo_isInstImplicit(uint8_t); @@ -715,7 +713,6 @@ static lean_object* l___regBuiltin_Lean_Elab_Term_elabDotIdent_declRange___close LEAN_EXPORT lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processStrictImplicitArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_finalize___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_transform_visit___at_Lean_Elab_Term_ElabElim_revertArgs___spec__2___lambda__1(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__8; static lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppLValsAux_loop___lambda__3___closed__1; size_t lean_usize_of_nat(lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Term_instToStringNamedArg(lean_object*); @@ -725,6 +722,7 @@ lean_object* l_Lean_Elab_Term_LVal_getRef(lean_object*); uint8_t l_Lean_Expr_isAutoParam(lean_object*); LEAN_EXPORT lean_object* l_Lean_mkFreshId___at___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_isNextOutParamOfLocalInstanceAndResult___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_ConstantInfo_type(lean_object*); +static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__10; static lean_object* l___regBuiltin_Lean_Elab_Term_elabDotIdent_declRange___closed__1; LEAN_EXPORT lean_object* l_Lean_Elab_Term_elabNamedPattern(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___regBuiltin_Lean_Elab_Term_elabIdent_declRange___closed__5; @@ -737,7 +735,7 @@ LEAN_EXPORT lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppLVal lean_object* l_Lean_addMacroScope(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_List_mapTRAux___at_Lean_Elab_Term_ElabElim_finalize___spec__8(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_App_0__Lean_Elab_Term_mergeFailures___spec__2(size_t, size_t, lean_object*); -static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__4; +static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__20; LEAN_EXPORT lean_object* l_Lean_Meta_transform___at_Lean_Elab_Term_ElabElim_revertArgs___spec__1(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_localDeclDependsOn___at___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_anyNamedArgDependsOnCurrent___spec__2___closed__1; LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_addEtaArg___spec__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -751,13 +749,12 @@ LEAN_EXPORT lean_object* l_Lean_Meta_withLetDecl___at_Lean_Elab_Term_ElabElim_re LEAN_EXPORT lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppFnId_toName_go___boxed(lean_object*); static lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppFn___closed__14; static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_5____closed__6; -static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__17; LEAN_EXPORT lean_object* l_Lean_Expr_withAppAux___at_Lean_Elab_Term_ElabElim_revertArgs___spec__11___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_elabApp_declRange(lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_App_0__Lean_Elab_Term_getSuccesses___spec__2(lean_object*, size_t, size_t, lean_object*); -static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__9; LEAN_EXPORT lean_object* l_Lean_PersistentArray_anyMAux___at___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_anyNamedArgDependsOnCurrent___spec__7___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_Range_forIn_loop___at___private_Lean_Elab_App_0__Lean_Elab_Term_addLValArg___spec__2___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__11; LEAN_EXPORT lean_object* l_Lean_Elab_Term_elabProj(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PersistentHashMap_mkEmptyEntriesArray(lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppFn___closed__23; @@ -799,6 +796,7 @@ LEAN_EXPORT lean_object* l_Lean_Elab_Term_elabWithoutExpectedTypeAttr; static lean_object* l_Lean_Elab_Term_elabAppArgs___lambda__5___closed__6; static lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppLValsAux_loop___lambda__3___closed__5; size_t lean_ptr_addr(lean_object*); +static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__16; LEAN_EXPORT lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_findMethod_x3f___lambda__1(lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_getArgExpectedType___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_App_0__Lean_Elab_Term_getSuccesses___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -821,7 +819,6 @@ static lean_object* l_Std_Range_forIn_loop___at___private_Lean_Elab_App_0__Lean_ static lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_resolveLValAux___closed__2; LEAN_EXPORT lean_object* l___private_Lean_MetavarContext_0__Lean_DependsOn_dep_visitMain___at___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_anyNamedArgDependsOnCurrent___spec__20(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Elab_Term_instMonadTermElabM; -static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__2; lean_object* l_Lean_Meta_whnfR(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_isNextArgHole___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_getParentStructures(lean_object*, lean_object*); @@ -832,7 +829,6 @@ lean_object* l_Lean_Expr_bindingName_x21(lean_object*); lean_object* lean_environment_main_module(lean_object*); uint8_t lean_expr_eqv(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwError___at___private_Lean_Elab_App_0__Lean_Elab_Term_throwLValError___spec__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__1; LEAN_EXPORT lean_object* l_Lean_Meta_withIncRecDepth___at_Lean_Elab_Term_ElabElim_revertArgs___spec__13(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_MetavarContext_0__Lean_DependsOn_dep_visit___at___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_anyNamedArgDependsOnCurrent___spec__27___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_List_mapTRAux___at_Lean_Elab_Term_elabAppArgs___spec__4(lean_object*, lean_object*, lean_object*, lean_object*); @@ -895,11 +891,12 @@ LEAN_EXPORT lean_object* l___private_Lean_MetavarContext_0__Lean_DependsOn_dep_v LEAN_EXPORT lean_object* l_Lean_Meta_withIncRecDepth___at_Lean_Elab_Term_ElabElim_revertArgs___spec__13___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_elabExplicit___closed__1; LEAN_EXPORT lean_object* l_Lean_Elab_Term_ElabAppArgs_State_etaArgs___default; -static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__19; uint8_t l_Lean_TagAttribute_hasTag(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_expandArgs(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_findMethod_x3f___closed__1; LEAN_EXPORT lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_resolveDotName___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__7; +static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__24; LEAN_EXPORT lean_object* l_Lean_PersistentArray_anyM___at___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_anyNamedArgDependsOnCurrent___spec__6___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwError___at___private_Lean_Elab_App_0__Lean_Elab_Term_addLValArg___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_ElabElim_finalize___closed__3; @@ -917,7 +914,6 @@ static lean_object* l___regBuiltin_Lean_Elab_Term_elabProj_declRange___closed__2 static lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppLValsAux_loop___lambda__3___closed__8; static lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_resolveDotName_go___closed__3; lean_object* l_Lean_instantiateMVars___at_Lean_Elab_Term_MVarErrorInfo_logError___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__11; LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_App_0__Lean_Elab_Term_resolveLValLoop___spec__1(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_addTrace___at___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_propagateExpectedType___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Term_elabExplicitUniv(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -939,6 +935,7 @@ lean_object* l_Lean_Elab_logException___at_Lean_Elab_Term_exceptionToSorry___spe lean_object* l_Lean_instantiateMVarsCore(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processExplictArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_tryPostponeIfMVar(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__23; LEAN_EXPORT lean_object* l_List_foldlM___at_Lean_Elab_Term_ElabElim_revertArgs___spec__15___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_resolveName_x27(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_anyNamedArgDependsOnCurrent___spec__26___boxed(lean_object*, lean_object*, lean_object*, lean_object*); @@ -958,8 +955,8 @@ uint8_t l_Lean_Expr_isFVar(lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_finalize___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_mkProjAndCheck___closed__7; static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_5____closed__9; -LEAN_EXPORT lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_24260_(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416_(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_24008_(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375_(lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_5_(lean_object*); uint8_t lean_nat_dec_eq(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppAux(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -982,6 +979,7 @@ lean_object* l_Lean_Expr_app___override(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_hasArgsToProcess___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_mkProjAndCheck___closed__2; static lean_object* l_Std_Range_forIn_loop___at___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_anyNamedArgDependsOnCurrent___spec__51___closed__2; +static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__21; static lean_object* l_Lean_Elab_Term_elabExplicit___closed__2; LEAN_EXPORT lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_annotateIfRec(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_infer_type(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1067,7 +1065,6 @@ LEAN_EXPORT lean_object* l_Lean_Elab_Term_ElabElim_mkImplicitArg(lean_object*, u lean_object* l_List_lengthTRAux___rarg(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_applyResult___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_getBindingName___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__12; static lean_object* l_Lean_throwUnknownConstant___at___private_Lean_Elab_App_0__Lean_Elab_Term_resolveLValAux___spec__1___closed__1; static lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_propagateExpectedType___closed__8; static lean_object* l_Lean_Elab_Term_elabAppArgs___closed__2; @@ -1104,6 +1101,7 @@ LEAN_EXPORT lean_object* l_Lean_Meta_transform_visit_visitLet___at_Lean_Elab_Ter static lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_addLValArg___lambda__1___closed__3; static lean_object* l___regBuiltin_Lean_Elab_Term_elabPipeProj___closed__1; LEAN_EXPORT lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_addImplicitArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_findBinderName_x3f___lambda__1___boxed(lean_object*, lean_object*); lean_object* l_Array_findIdx_x3f_loop___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Term_ElabAppArgs_synthesizeAppInstMVars___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1117,12 +1115,14 @@ LEAN_EXPORT lean_object* l_Lean_throwError___at___private_Lean_Elab_App_0__Lean_ LEAN_EXPORT lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppAux___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_anyNamedArgDependsOnCurrent___spec__25___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_elabNamedPattern_declRange(lean_object*); +static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____closed__2; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_App_0__Lean_Elab_Term_mergeFailures___spec__6(size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___regBuiltin_Lean_Elab_Term_elabProj_declRange___closed__1; uint8_t l_List_isEmpty___rarg(lean_object*); LEAN_EXPORT lean_object* l___private_Lean_MetavarContext_0__Lean_DependsOn_dep_visitMain___at___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_anyNamedArgDependsOnCurrent___spec__36___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_throwErrorWithNestedErrors___at___private_Lean_Elab_App_0__Lean_Elab_Term_mergeFailures___spec__3___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_localDeclDependsOn___at___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_anyNamedArgDependsOnCurrent___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__12; LEAN_EXPORT lean_object* l_Lean_Elab_Term_ElabElim_State_discrs___default; LEAN_EXPORT lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_throwInvalidFieldNotation(lean_object*); LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_App_0__Lean_Elab_Term_findMethod_x3f___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*); @@ -1156,7 +1156,6 @@ LEAN_EXPORT lean_object* l___private_Lean_MetavarContext_0__Lean_DependsOn_dep_v static lean_object* l___regBuiltin_Lean_Elab_Term_elabChoice_declRange___closed__4; static lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppFn___closed__4; LEAN_EXPORT lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_shouldElabAsElim___lambda__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_isProp(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_elabAppArgs___lambda__5___closed__10; static lean_object* l___regBuiltin_Lean_Elab_Term_elabChoice_declRange___closed__1; @@ -1170,6 +1169,7 @@ LEAN_EXPORT lean_object* l_Lean_Elab_throwErrorWithNestedErrors___at___private_L uint8_t l_Lean_Expr_hasFVar(lean_object*); static lean_object* l___regBuiltin_Lean_Elab_Term_elabIdent___closed__1; static lean_object* l_Lean_Elab_Term_ElabElim_finalize___lambda__2___closed__1; +static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__19; static lean_object* l_Lean_Meta_transform___at_Lean_Elab_Term_ElabElim_revertArgs___spec__1___closed__1; LEAN_EXPORT lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_resolveDotName_go___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppAux___closed__1; @@ -17585,7 +17585,7 @@ lean_dec(x_2); return x_11; } } -static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__1() { +static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__1() { _start: { uint8_t x_1; uint8_t x_2; uint8_t x_3; uint8_t x_4; lean_object* x_5; @@ -17611,7 +17611,7 @@ lean_ctor_set_uint8(x_5, 13, x_4); return x_5; } } -static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__2() { +static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__2() { _start: { lean_object* x_1; @@ -17619,21 +17619,21 @@ x_1 = l_Lean_PersistentHashMap_mkEmptyEntriesArray(lean_box(0), lean_box(0)); return x_1; } } -static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__3() { +static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__3() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__2; +x_1 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__2; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__4() { +static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__3; +x_1 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__3; x_2 = lean_unsigned_to_nat(0u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -17641,7 +17641,7 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__5() { +static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__5() { _start: { lean_object* x_1; lean_object* x_2; @@ -17650,23 +17650,23 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__6() { +static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__6() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__5; +x_1 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__5; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__7() { +static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__7() { _start: { size_t x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_1 = 5; -x_2 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__6; -x_3 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__5; +x_2 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__6; +x_3 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__5; x_4 = lean_unsigned_to_nat(0u); x_5 = lean_alloc_ctor(0, 4, sizeof(size_t)*1); lean_ctor_set(x_5, 0, x_2); @@ -17677,25 +17677,25 @@ lean_ctor_set_usize(x_5, 4, x_1); return x_5; } } -static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__8() { +static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__4; -x_2 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__7; +x_1 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__4; +x_2 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__7; 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_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__9() { +static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; x_1 = lean_box(0); -x_2 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__1; -x_3 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__8; +x_2 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__1; +x_3 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__8; x_4 = l_Lean_Elab_Term_ElabAppArgs_State_etaArgs___default___closed__1; x_5 = lean_unsigned_to_nat(0u); x_6 = lean_alloc_ctor(0, 6, 0); @@ -17708,11 +17708,11 @@ lean_ctor_set(x_6, 5, x_1); return x_6; } } -static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__10() { +static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__3; +x_1 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__3; x_2 = lean_unsigned_to_nat(0u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -17720,11 +17720,11 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__11() { +static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__11() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__3; +x_1 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__3; x_2 = lean_unsigned_to_nat(0u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -17732,11 +17732,11 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__12() { +static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__12() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__3; +x_1 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__3; x_2 = lean_unsigned_to_nat(0u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -17744,14 +17744,14 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__13() { +static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__13() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_1 = lean_unsigned_to_nat(0u); -x_2 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__10; -x_3 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__11; -x_4 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__12; +x_2 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__10; +x_3 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__11; +x_4 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__12; x_5 = lean_alloc_ctor(0, 8, 0); lean_ctor_set(x_5, 0, x_1); lean_ctor_set(x_5, 1, x_1); @@ -17764,11 +17764,11 @@ lean_ctor_set(x_5, 7, x_3); return x_5; } } -static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__14() { +static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__14() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__3; +x_1 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__3; x_2 = lean_unsigned_to_nat(0u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -17776,7 +17776,7 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__15() { +static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__15() { _start: { lean_object* x_1; @@ -17784,11 +17784,11 @@ x_1 = lean_alloc_closure((void*)(l_Lean_Meta_InfoCacheKey_instHashableInfoCacheK return x_1; } } -static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__16() { +static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__16() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__3; +x_1 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__3; x_2 = lean_unsigned_to_nat(0u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -17796,11 +17796,11 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__17() { +static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__17() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__3; +x_1 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__3; x_2 = lean_unsigned_to_nat(0u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -17808,7 +17808,7 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__18() { +static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__18() { _start: { lean_object* x_1; lean_object* x_2; @@ -17819,7 +17819,7 @@ lean_closure_set(x_2, 1, x_1); return x_2; } } -static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__19() { +static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__19() { _start: { lean_object* x_1; lean_object* x_2; @@ -17830,11 +17830,11 @@ lean_closure_set(x_2, 1, x_1); return x_2; } } -static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__20() { +static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__20() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__3; +x_1 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__3; x_2 = lean_unsigned_to_nat(0u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -17842,14 +17842,14 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__21() { +static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__21() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__14; -x_2 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__16; -x_3 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__17; -x_4 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__20; +x_1 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__14; +x_2 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__16; +x_3 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__17; +x_4 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__20; x_5 = lean_alloc_ctor(0, 6, 0); lean_ctor_set(x_5, 0, x_1); lean_ctor_set(x_5, 1, x_2); @@ -17860,14 +17860,14 @@ lean_ctor_set(x_5, 5, x_4); return x_5; } } -static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__22() { +static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__22() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_1 = lean_box(0); -x_2 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__13; -x_3 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__21; -x_4 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__7; +x_2 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__13; +x_3 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__21; +x_4 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__7; x_5 = lean_alloc_ctor(0, 4, 0); lean_ctor_set(x_5, 0, x_2); lean_ctor_set(x_5, 1, x_3); @@ -17876,7 +17876,7 @@ lean_ctor_set(x_5, 3, x_4); return x_5; } } -static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__23() { +static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__23() { _start: { lean_object* x_1; @@ -17884,16 +17884,16 @@ x_1 = lean_mk_string_from_bytes("[elabAsElim] attribute cannot be used in declar return x_1; } } -static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__24() { +static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__24() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__23; +x_1 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__23; x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +LEAN_EXPORT lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_22; lean_object* x_23; @@ -17902,14 +17902,14 @@ x_6 = lean_st_ref_get(x_3, x_4); x_7 = lean_ctor_get(x_6, 1); lean_inc(x_7); lean_dec(x_6); -x_8 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__22; +x_8 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__22; x_9 = lean_st_mk_ref(x_8, x_7); x_10 = lean_ctor_get(x_9, 0); lean_inc(x_10); x_11 = lean_ctor_get(x_9, 1); lean_inc(x_11); lean_dec(x_9); -x_22 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__9; +x_22 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__9; lean_inc(x_3); lean_inc(x_2); lean_inc(x_10); @@ -17962,7 +17962,7 @@ lean_object* x_35; lean_object* x_36; lean_object* x_37; uint8_t x_38; x_35 = lean_ctor_get(x_30, 1); lean_inc(x_35); lean_dec(x_30); -x_36 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__24; +x_36 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__24; x_37 = l_Lean_throwError___at_Lean_Meta_setInlineAttribute___spec__1(x_36, x_22, x_10, x_2, x_3, x_35); lean_dec(x_3); lean_dec(x_2); @@ -18098,7 +18098,7 @@ return x_20; } } } -static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____closed__1() { +static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____closed__1() { _start: { lean_object* x_1; @@ -18106,29 +18106,29 @@ x_1 = lean_mk_string_from_bytes("elabAsElim", 10); return x_1; } } -static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____closed__2() { +static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____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_Term_initFn____x40_Lean_Elab_App___hyg_7416____closed__1; +x_2 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____closed__1; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____closed__3() { +static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_1 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_5____closed__3; x_2 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_5____closed__4; x_3 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_5____closed__5; -x_4 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____closed__1; +x_4 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____closed__1; x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); return x_5; } } -static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____closed__4() { +static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____closed__4() { _start: { lean_object* x_1; @@ -18136,22 +18136,22 @@ x_1 = lean_mk_string_from_bytes("instructs elaborator that the arguments of the return x_1; } } -static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____closed__5() { +static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____closed__5() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1), 4, 0); +x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1), 4, 0); return x_1; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416_(lean_object* x_1) { +LEAN_EXPORT lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; -x_2 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____closed__2; -x_3 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____closed__4; -x_4 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____closed__5; -x_5 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____closed__3; +x_2 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____closed__2; +x_3 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____closed__4; +x_4 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____closed__5; +x_5 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____closed__3; x_6 = l_Lean_registerTagAttribute(x_2, x_3, x_4, x_5, x_1); return x_6; } @@ -45617,7 +45617,7 @@ static lean_object* _init_l_Lean_setEnv___at___private_Lean_Elab_App_0__Lean_Ela _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__12; +x_1 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__12; x_2 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_2, 0, x_1); lean_ctor_set(x_2, 1, x_1); @@ -45665,7 +45665,7 @@ if (x_23 == 0) lean_object* x_24; lean_object* x_25; lean_object* x_26; uint8_t x_27; x_24 = lean_ctor_get(x_21, 1); lean_dec(x_24); -x_25 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__21; +x_25 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__21; lean_ctor_set(x_21, 1, x_25); x_26 = lean_st_ref_set(x_5, x_21, x_22); x_27 = !lean_is_exclusive(x_26); @@ -45701,7 +45701,7 @@ lean_inc(x_35); lean_inc(x_34); lean_inc(x_33); lean_dec(x_21); -x_36 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__21; +x_36 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__21; x_37 = lean_alloc_ctor(0, 4, 0); lean_ctor_set(x_37, 0, x_33); lean_ctor_set(x_37, 1, x_36); @@ -45782,7 +45782,7 @@ if (lean_is_exclusive(x_55)) { lean_dec_ref(x_55); x_60 = lean_box(0); } -x_61 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__21; +x_61 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__21; if (lean_is_scalar(x_60)) { x_62 = lean_alloc_ctor(0, 4, 0); } else { @@ -48677,7 +48677,7 @@ x_4 = l_Lean_addBuiltinDeclarationRanges(x_2, x_3, x_1); return x_4; } } -static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_24260____closed__1() { +static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_24008____closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -48687,11 +48687,11 @@ x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_24260_(lean_object* x_1) { +LEAN_EXPORT lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_24008_(lean_object* x_1) { _start: { lean_object* x_2; uint8_t x_3; lean_object* x_4; -x_2 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_24260____closed__1; +x_2 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_24008____closed__1; x_3 = 0; x_4 = l_Lean_registerTraceClass(x_2, x_3, x_1); return x_4; @@ -48899,65 +48899,65 @@ l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processExplictArg___clos lean_mark_persistent(l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processExplictArg___closed__2); l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processExplictArg___closed__3 = _init_l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processExplictArg___closed__3(); lean_mark_persistent(l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processExplictArg___closed__3); -l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__1 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__1(); -lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__1); -l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__2 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__2(); -lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__2); -l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__3 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__3(); -lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__3); -l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__4 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__4(); -lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__4); -l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__5 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__5(); -lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__5); -l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__6 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__6(); -lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__6); -l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__7 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__7(); -lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__7); -l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__8 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__8(); -lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__8); -l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__9 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__9(); -lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__9); -l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__10 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__10(); -lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__10); -l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__11 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__11(); -lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__11); -l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__12 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__12(); -lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__12); -l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__13 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__13(); -lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__13); -l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__14 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__14(); -lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__14); -l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__15 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__15(); -lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__15); -l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__16 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__16(); -lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__16); -l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__17 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__17(); -lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__17); -l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__18 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__18(); -lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__18); -l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__19 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__19(); -lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__19); -l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__20 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__20(); -lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__20); -l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__21 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__21(); -lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__21); -l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__22 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__22(); -lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__22); -l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__23 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__23(); -lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__23); -l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__24 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__24(); -lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____lambda__1___closed__24); -l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____closed__1 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____closed__1(); -lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____closed__1); -l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____closed__2 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____closed__2(); -lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____closed__2); -l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____closed__3 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____closed__3(); -lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____closed__3); -l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____closed__4 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____closed__4(); -lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____closed__4); -l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____closed__5 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____closed__5(); -lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416____closed__5); -if (builtin) {res = l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7416_(lean_io_mk_world()); +l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__1 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__1(); +lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__1); +l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__2 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__2(); +lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__2); +l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__3 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__3(); +lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__3); +l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__4 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__4(); +lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__4); +l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__5 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__5(); +lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__5); +l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__6 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__6(); +lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__6); +l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__7 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__7(); +lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__7); +l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__8 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__8(); +lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__8); +l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__9 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__9(); +lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__9); +l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__10 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__10(); +lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__10); +l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__11 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__11(); +lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__11); +l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__12 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__12(); +lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__12); +l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__13 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__13(); +lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__13); +l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__14 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__14(); +lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__14); +l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__15 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__15(); +lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__15); +l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__16 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__16(); +lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__16); +l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__17 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__17(); +lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__17); +l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__18 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__18(); +lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__18); +l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__19 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__19(); +lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__19); +l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__20 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__20(); +lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__20); +l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__21 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__21(); +lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__21); +l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__22 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__22(); +lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__22); +l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__23 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__23(); +lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__23); +l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__24 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__24(); +lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____lambda__1___closed__24); +l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____closed__1 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____closed__1(); +lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____closed__1); +l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____closed__2 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____closed__2(); +lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____closed__2); +l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____closed__3 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____closed__3(); +lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____closed__3); +l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____closed__4 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____closed__4(); +lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____closed__4); +l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____closed__5 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____closed__5(); +lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375____closed__5); +if (builtin) {res = l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7375_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; l_Lean_Elab_Term_elabAsElim = lean_io_result_get_value(res); lean_mark_persistent(l_Lean_Elab_Term_elabAsElim); @@ -49539,9 +49539,9 @@ lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_elabProj_declRange___closed__ res = l___regBuiltin_Lean_Elab_Term_elabProj_declRange(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_24260____closed__1 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_24260____closed__1(); -lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_24260____closed__1); -res = l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_24260_(lean_io_mk_world()); +l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_24008____closed__1 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_24008____closed__1(); +lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_24008____closed__1); +res = l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_24008_(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/Binders.c b/stage0/stdlib/Lean/Elab/Binders.c index 9f73a496eb..0563fa913f 100644 --- a/stage0/stdlib/Lean/Elab/Binders.c +++ b/stage0/stdlib/Lean/Elab/Binders.c @@ -35,7 +35,6 @@ lean_object* l_Lean_Elab_Term_Quotation_withNewLocals___rarg(lean_object*, lean_ LEAN_EXPORT lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Term_elabForall___spec__1___rarg(lean_object*); static lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__10; size_t lean_usize_add(size_t, size_t); -static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_12488____closed__1; LEAN_EXPORT lean_object* l_Lean_Elab_Term_elabLetDecl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandBinderIdent___closed__4; static lean_object* l_Lean_Elab_Term_quoteAutoTactic___closed__3; @@ -65,6 +64,7 @@ lean_object* l_Lean_Meta_whnfForall(lean_object*, lean_object*, lean_object*, le static lean_object* l___regBuiltin_Lean_Elab_Term_elabLetFunDecl_declRange___closed__4; static lean_object* l_Lean_Elab_Term_quoteAutoTactic___closed__52; static lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandBinderModifier___closed__11; +static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_12482____closed__1; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_expandExplicitFun(lean_object*); static lean_object* l___regBuiltin_Lean_Elab_Term_expandFun_declRange___closed__7; static lean_object* l___regBuiltin_Lean_Elab_Term_elabDepArrow_declRange___closed__2; @@ -336,7 +336,7 @@ LEAN_EXPORT lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_getFunB LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Term_expandFunBinders_loop___spec__4(lean_object*, size_t, size_t, lean_object*); static lean_object* l___regBuiltin_Lean_Elab_Term_elabLetTmpDecl___closed__4; static lean_object* l___regBuiltin_Lean_Elab_Term_expandFun_declRange___closed__4; -LEAN_EXPORT lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_12488_(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_12482_(lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_2425_(lean_object*); static lean_object* l___regBuiltin_Lean_Elab_Term_elabDepArrow___closed__4; LEAN_EXPORT lean_object* l_Lean_Elab_Term_elabLetDeclAux___lambda__6(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -27245,7 +27245,7 @@ x_4 = l_Lean_addBuiltinDeclarationRanges(x_2, x_3, x_1); return x_4; } } -static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_12488____closed__1() { +static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_12482____closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -27255,11 +27255,11 @@ x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_12488_(lean_object* x_1) { +LEAN_EXPORT lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_12482_(lean_object* x_1) { _start: { lean_object* x_2; uint8_t x_3; lean_object* x_4; -x_2 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_12488____closed__1; +x_2 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_12482____closed__1; x_3 = 0; x_4 = l_Lean_registerTraceClass(x_2, x_3, x_1); return x_4; @@ -28054,9 +28054,9 @@ lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_elabLetTmpDecl_declRange___cl res = l___regBuiltin_Lean_Elab_Term_elabLetTmpDecl_declRange(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_12488____closed__1 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_12488____closed__1(); -lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_12488____closed__1); -res = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_12488_(lean_io_mk_world()); +l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_12482____closed__1 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_12482____closed__1(); +lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_12482____closed__1); +res = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_12482_(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/Command.c b/stage0/stdlib/Lean/Elab/Command.c index 078831d6e5..98a50e3ec4 100644 --- a/stage0/stdlib/Lean/Elab/Command.c +++ b/stage0/stdlib/Lean/Elab/Command.c @@ -376,7 +376,7 @@ static lean_object* l_Lean_Elab_Command_instInhabitedState___closed__6; lean_object* lean_st_mk_ref(lean_object*, lean_object*); lean_object* l_Lean_Core_getMaxHeartbeats(lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_Command___hyg_671_(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_Command___hyg_4885_(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_Command___hyg_4875_(lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_Command___hyg_4418_(lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_Command___hyg_3677_(lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_Command___hyg_4387_(lean_object*); @@ -478,6 +478,7 @@ static lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Command_runLinters__ static lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Elab_Command_elabCommandTopLevel___spec__12___lambda__1___closed__2; lean_object* l_EStateM_instMonadEStateM(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_addTrace___at_Lean_Elab_Command_elabCommand___spec__8___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_Command___hyg_4875____closed__2; size_t lean_usize_land(size_t, size_t); LEAN_EXPORT lean_object* l_Lean_Elab_withSaveInfoContext___at_Lean_Elab_Command_liftTermElabM___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Command_expandDeclId___spec__5___closed__7; @@ -574,7 +575,6 @@ LEAN_EXPORT lean_object* l_Lean_AssocList_replace___at___private_Lean_Elab_Comma static lean_object* l_Lean_Elab_Command_Scope_varDecls___default___closed__1; LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Command_0__Lean_Elab_Command_addTraceAsMessagesCore___spec__20___boxed(lean_object*, 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_Elab_Command_initFn____x40_Lean_Elab_Command___hyg_4885____closed__2; LEAN_EXPORT lean_object* l_Lean_PersistentArray_mapMAux___at_Lean_Elab_Command_liftTermElabM___spec__8___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_isTracingEnabledFor___at_Lean_Elab_Command_elabCommand___spec__7___closed__1; static lean_object* l_Lean_Elab_Command_State_infoState___default___closed__3; @@ -723,7 +723,6 @@ static lean_object* l_Lean_Elab_Command_mkCommandElabAttributeUnsafe___closed__6 uint32_t lean_uint32_of_nat(lean_object*); static lean_object* l_Lean_Elab_Command_instMonadLogCommandElabM___closed__3; LEAN_EXPORT lean_object* l___private_Lean_Elab_Command_0__Lean_Elab_Command_mkTermContext(lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_Command___hyg_4885____closed__1; LEAN_EXPORT lean_object* l_Lean_Elab_Command_getScopes___boxed(lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_logException___at_Lean_Elab_Command_elabCommand___spec__3(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Command_State_infoState___default; @@ -780,6 +779,7 @@ LEAN_EXPORT lean_object* l_Lean_Elab_Command_instMonadEnvCommandElabM___lambda__ LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Command_expandDeclId___spec__20(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_string_dec_eq(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Command_lintersRef; +static lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_Command___hyg_4875____closed__1; LEAN_EXPORT lean_object* l_Lean_Elab_Command_runTermElabM___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_nat_dec_lt(lean_object*, lean_object*); static lean_object* l_Lean_Elab_addMacroStack___at_Lean_Elab_Command_instAddErrorMessageContextCommandElabM___spec__1___closed__4; @@ -14506,7 +14506,7 @@ lean_dec(x_1); return x_4; } } -static lean_object* _init_l_Lean_Elab_Command_initFn____x40_Lean_Elab_Command___hyg_4885____closed__1() { +static lean_object* _init_l_Lean_Elab_Command_initFn____x40_Lean_Elab_Command___hyg_4875____closed__1() { _start: { lean_object* x_1; @@ -14514,21 +14514,21 @@ x_1 = lean_mk_string_from_bytes("input", 5); return x_1; } } -static lean_object* _init_l_Lean_Elab_Command_initFn____x40_Lean_Elab_Command___hyg_4885____closed__2() { +static lean_object* _init_l_Lean_Elab_Command_initFn____x40_Lean_Elab_Command___hyg_4875____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Elab_Command_mkCommandElabAttributeUnsafe___closed__9; -x_2 = l_Lean_Elab_Command_initFn____x40_Lean_Elab_Command___hyg_4885____closed__1; +x_2 = l_Lean_Elab_Command_initFn____x40_Lean_Elab_Command___hyg_4875____closed__1; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_Command___hyg_4885_(lean_object* x_1) { +LEAN_EXPORT lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_Command___hyg_4875_(lean_object* x_1) { _start: { lean_object* x_2; uint8_t x_3; lean_object* x_4; -x_2 = l_Lean_Elab_Command_initFn____x40_Lean_Elab_Command___hyg_4885____closed__2; +x_2 = l_Lean_Elab_Command_initFn____x40_Lean_Elab_Command___hyg_4875____closed__2; x_3 = 0; x_4 = l_Lean_registerTraceClass(x_2, x_3, x_1); return x_4; @@ -16689,7 +16689,7 @@ LEAN_EXPORT lean_object* l_Lean_Elab_Command_elabCommandTopLevel(lean_object* x_ _start: { lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; uint8_t x_10; -x_5 = l_Lean_Elab_Command_initFn____x40_Lean_Elab_Command___hyg_4885____closed__2; +x_5 = l_Lean_Elab_Command_initFn____x40_Lean_Elab_Command___hyg_4875____closed__2; x_6 = l_Lean_Elab_Command_getRef(x_2, x_3, x_4); x_7 = lean_ctor_get(x_6, 0); lean_inc(x_7); @@ -25699,11 +25699,11 @@ l_Lean_Elab_Command_elabCommand___closed__6 = _init_l_Lean_Elab_Command_elabComm lean_mark_persistent(l_Lean_Elab_Command_elabCommand___closed__6); l_Lean_Elab_Command_elabCommand___boxed__const__1 = _init_l_Lean_Elab_Command_elabCommand___boxed__const__1(); lean_mark_persistent(l_Lean_Elab_Command_elabCommand___boxed__const__1); -l_Lean_Elab_Command_initFn____x40_Lean_Elab_Command___hyg_4885____closed__1 = _init_l_Lean_Elab_Command_initFn____x40_Lean_Elab_Command___hyg_4885____closed__1(); -lean_mark_persistent(l_Lean_Elab_Command_initFn____x40_Lean_Elab_Command___hyg_4885____closed__1); -l_Lean_Elab_Command_initFn____x40_Lean_Elab_Command___hyg_4885____closed__2 = _init_l_Lean_Elab_Command_initFn____x40_Lean_Elab_Command___hyg_4885____closed__2(); -lean_mark_persistent(l_Lean_Elab_Command_initFn____x40_Lean_Elab_Command___hyg_4885____closed__2); -res = l_Lean_Elab_Command_initFn____x40_Lean_Elab_Command___hyg_4885_(lean_io_mk_world()); +l_Lean_Elab_Command_initFn____x40_Lean_Elab_Command___hyg_4875____closed__1 = _init_l_Lean_Elab_Command_initFn____x40_Lean_Elab_Command___hyg_4875____closed__1(); +lean_mark_persistent(l_Lean_Elab_Command_initFn____x40_Lean_Elab_Command___hyg_4875____closed__1); +l_Lean_Elab_Command_initFn____x40_Lean_Elab_Command___hyg_4875____closed__2 = _init_l_Lean_Elab_Command_initFn____x40_Lean_Elab_Command___hyg_4875____closed__2(); +lean_mark_persistent(l_Lean_Elab_Command_initFn____x40_Lean_Elab_Command___hyg_4875____closed__2); +res = l_Lean_Elab_Command_initFn____x40_Lean_Elab_Command___hyg_4875_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_Array_forInUnsafe_loop___at_Lean_Elab_Command_elabCommandTopLevel___spec__6___closed__1 = _init_l_Array_forInUnsafe_loop___at_Lean_Elab_Command_elabCommandTopLevel___spec__6___closed__1(); diff --git a/stage0/stdlib/Lean/Elab/Deriving/Basic.c b/stage0/stdlib/Lean/Elab/Deriving/Basic.c index 03200c948e..8574a97fc9 100644 --- a/stage0/stdlib/Lean/Elab/Deriving/Basic.c +++ b/stage0/stdlib/Lean/Elab/Deriving/Basic.c @@ -67,7 +67,6 @@ LEAN_EXPORT lean_object* l_Array_sequenceMap_loop___at_Lean_Elab_elabDeriving___ lean_object* lean_expr_instantiate1(lean_object*, lean_object*); lean_object* l_Array_toSubarray___rarg(lean_object*, lean_object*, lean_object*); lean_object* lean_array_push(lean_object*, lean_object*); -static lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_2880____closed__1; lean_object* lean_array_get_size(lean_object*); lean_object* lean_string_append(lean_object*, lean_object*); lean_object* l_Lean_Name_mkStr3(lean_object*, lean_object*, lean_object*); @@ -83,6 +82,7 @@ lean_object* l_liftExcept___at_Lean_Elab_liftMacroM___spec__1(lean_object*, lean static lean_object* l_Lean_throwMaxRecDepthAt___at_Lean_Elab_Term_processDefDeriving___spec__3___closed__2; LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_getOptDerivingClasses___spec__1___rarg___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_getOptDerivingClasses___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_2869____closed__1; static lean_object* l_Lean_Elab_elabDeriving___closed__7; static lean_object* l_Lean_Elab_defaultHandler___closed__6; lean_object* lean_nat_add(lean_object*, lean_object*); @@ -117,7 +117,7 @@ LEAN_EXPORT lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_elabD LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at_Lean_Elab_Term_processDefDeriving___spec__1___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_registerDerivingHandler___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_registerDerivingHandler___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_2880_(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_2869_(lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_685_(lean_object*); static lean_object* l___regBuiltin_Lean_Elab_elabDeriving_declRange___closed__5; LEAN_EXPORT lean_object* l_Lean_Elab_defaultHandler___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -152,12 +152,12 @@ uint8_t l_Lean_Environment_contains(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwMaxRecDepthAt___at_Lean_Elab_Term_processDefDeriving___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkConstWithLevelParams___at_Lean_Elab_Command_expandDeclId___spec__8(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_addConstInfo___at_Lean_Elab_elabDeriving___spec__17(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_2880____closed__2; static lean_object* l_Lean_Elab_elabDeriving___closed__6; LEAN_EXPORT lean_object* l_Lean_resolveGlobalConstCore___at_Lean_Elab_elabDeriving___spec__12___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_ResolveName_resolveGlobalName(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_resolveGlobalConst___at_Lean_Elab_elabDeriving___spec__10(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Expr_isForall(lean_object*); +static lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_2869____closed__2; size_t lean_usize_of_nat(lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at_Lean_Elab_Term_processDefDeriving___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_elabDeriving___spec__18___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -6667,7 +6667,7 @@ return x_24; } } } -static lean_object* _init_l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_2880____closed__1() { +static lean_object* _init_l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_2869____closed__1() { _start: { lean_object* x_1; @@ -6675,21 +6675,21 @@ x_1 = lean_mk_string_from_bytes("Deriving", 8); return x_1; } } -static lean_object* _init_l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_2880____closed__2() { +static lean_object* _init_l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_2869____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l___regBuiltin_Lean_Elab_elabDeriving___closed__1; -x_2 = l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_2880____closed__1; +x_2 = l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_2869____closed__1; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -LEAN_EXPORT lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_2880_(lean_object* x_1) { +LEAN_EXPORT lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_2869_(lean_object* x_1) { _start: { lean_object* x_2; uint8_t x_3; lean_object* x_4; -x_2 = l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_2880____closed__2; +x_2 = l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_2869____closed__2; x_3 = 0; x_4 = l_Lean_registerTraceClass(x_2, x_3, x_1); return x_4; @@ -6823,11 +6823,11 @@ l_Lean_Elab_getOptDerivingClasses___rarg___closed__1 = _init_l_Lean_Elab_getOptD lean_mark_persistent(l_Lean_Elab_getOptDerivingClasses___rarg___closed__1); l_Lean_Elab_getOptDerivingClasses___rarg___closed__2 = _init_l_Lean_Elab_getOptDerivingClasses___rarg___closed__2(); lean_mark_persistent(l_Lean_Elab_getOptDerivingClasses___rarg___closed__2); -l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_2880____closed__1 = _init_l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_2880____closed__1(); -lean_mark_persistent(l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_2880____closed__1); -l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_2880____closed__2 = _init_l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_2880____closed__2(); -lean_mark_persistent(l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_2880____closed__2); -res = l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_2880_(lean_io_mk_world()); +l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_2869____closed__1 = _init_l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_2869____closed__1(); +lean_mark_persistent(l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_2869____closed__1); +l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_2869____closed__2 = _init_l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_2869____closed__2(); +lean_mark_persistent(l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_2869____closed__2); +res = l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_2869_(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/Deriving/DecEq.c b/stage0/stdlib/Lean/Elab/Deriving/DecEq.c index be53a674d2..1b11e2850a 100644 --- a/stage0/stdlib/Lean/Elab/Deriving/DecEq.c +++ b/stage0/stdlib/Lean/Elab/Deriving/DecEq.c @@ -204,6 +204,7 @@ LEAN_EXPORT lean_object* l_Lean_Elab_Deriving_DecEq_mkAuxFunction___boxed(lean_o static lean_object* l_Lean_Elab_Deriving_DecEq_mkEnumOfNatThm___closed__5; static lean_object* l_List_forIn_loop___at_Lean_Elab_Deriving_DecEq_mkMatch_mkAlts___spec__6___lambda__1___closed__5; static lean_object* l_Lean_Elab_Deriving_DecEq_mkAuxFunction___closed__8; +static lean_object* l_Lean_Elab_Deriving_DecEq_initFn____x40_Lean_Elab_Deriving_DecEq___hyg_5194____closed__1; lean_object* l_Array_mkArray8___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Deriving_DecEq_mkEnumOfNat(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Deriving_DecEq_mkAuxFunction___closed__13; @@ -297,8 +298,7 @@ LEAN_EXPORT lean_object* l_Lean_Elab_Deriving_DecEq_mkEnumOfNatThm___lambda__1__ lean_object* l_String_toSubstring_x27(lean_object*); lean_object* l_Lean_Meta_withLocalDecl___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_removeUnusedArguments_x3f___spec__2___rarg(lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_List_forIn_loop___at_Lean_Elab_Deriving_DecEq_mkMatch_mkAlts___spec__6___closed__6; -LEAN_EXPORT lean_object* l_Lean_Elab_Deriving_DecEq_initFn____x40_Lean_Elab_Deriving_DecEq___hyg_5222_(lean_object*); -static lean_object* l_Lean_Elab_Deriving_DecEq_initFn____x40_Lean_Elab_Deriving_DecEq___hyg_5222____closed__1; +LEAN_EXPORT lean_object* l_Lean_Elab_Deriving_DecEq_initFn____x40_Lean_Elab_Deriving_DecEq___hyg_5194_(lean_object*); static lean_object* l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___lambda__3___closed__14; static lean_object* l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___lambda__2___closed__39; lean_object* l_Lean_Elab_Command_getMainModule___rarg(lean_object*, lean_object*); @@ -9636,7 +9636,7 @@ lean_dec(x_1); return x_5; } } -static lean_object* _init_l_Lean_Elab_Deriving_DecEq_initFn____x40_Lean_Elab_Deriving_DecEq___hyg_5222____closed__1() { +static lean_object* _init_l_Lean_Elab_Deriving_DecEq_initFn____x40_Lean_Elab_Deriving_DecEq___hyg_5194____closed__1() { _start: { lean_object* x_1; @@ -9644,12 +9644,12 @@ x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Deriving_DecEq_mkDecEqInstanceHandl return x_1; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Deriving_DecEq_initFn____x40_Lean_Elab_Deriving_DecEq___hyg_5222_(lean_object* x_1) { +LEAN_EXPORT lean_object* l_Lean_Elab_Deriving_DecEq_initFn____x40_Lean_Elab_Deriving_DecEq___hyg_5194_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; x_2 = l_Lean_Elab_Deriving_DecEq_mkDecEqHeader___closed__2; -x_3 = l_Lean_Elab_Deriving_DecEq_initFn____x40_Lean_Elab_Deriving_DecEq___hyg_5222____closed__1; +x_3 = l_Lean_Elab_Deriving_DecEq_initFn____x40_Lean_Elab_Deriving_DecEq___hyg_5194____closed__1; x_4 = l_Lean_Elab_registerDerivingHandler(x_2, x_3, x_1); if (lean_obj_tag(x_4) == 0) { @@ -10181,9 +10181,9 @@ l_Lean_Elab_Deriving_DecEq_mkDecEqEnum___closed__56 = _init_l_Lean_Elab_Deriving lean_mark_persistent(l_Lean_Elab_Deriving_DecEq_mkDecEqEnum___closed__56); l_Lean_Elab_Deriving_DecEq_mkDecEqEnum___closed__57 = _init_l_Lean_Elab_Deriving_DecEq_mkDecEqEnum___closed__57(); lean_mark_persistent(l_Lean_Elab_Deriving_DecEq_mkDecEqEnum___closed__57); -l_Lean_Elab_Deriving_DecEq_initFn____x40_Lean_Elab_Deriving_DecEq___hyg_5222____closed__1 = _init_l_Lean_Elab_Deriving_DecEq_initFn____x40_Lean_Elab_Deriving_DecEq___hyg_5222____closed__1(); -lean_mark_persistent(l_Lean_Elab_Deriving_DecEq_initFn____x40_Lean_Elab_Deriving_DecEq___hyg_5222____closed__1); -res = l_Lean_Elab_Deriving_DecEq_initFn____x40_Lean_Elab_Deriving_DecEq___hyg_5222_(lean_io_mk_world()); +l_Lean_Elab_Deriving_DecEq_initFn____x40_Lean_Elab_Deriving_DecEq___hyg_5194____closed__1 = _init_l_Lean_Elab_Deriving_DecEq_initFn____x40_Lean_Elab_Deriving_DecEq___hyg_5194____closed__1(); +lean_mark_persistent(l_Lean_Elab_Deriving_DecEq_initFn____x40_Lean_Elab_Deriving_DecEq___hyg_5194____closed__1); +res = l_Lean_Elab_Deriving_DecEq_initFn____x40_Lean_Elab_Deriving_DecEq___hyg_5194_(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/Do.c b/stage0/stdlib/Lean/Elab/Do.c index abbf6b7a94..ae2c819ab4 100644 --- a/stage0/stdlib/Lean/Elab/Do.c +++ b/stage0/stdlib/Lean/Elab/Do.c @@ -865,7 +865,7 @@ LEAN_EXPORT lean_object* l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__3(lean_ LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___spec__5___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Term_Do_ToTerm_toTerm_go___spec__1(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_Do_ToTerm_breakToTerm___closed__15; -LEAN_EXPORT lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Do___hyg_37206_(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Do___hyg_37072_(lean_object*); static lean_object* l_Lean_Elab_Term_Do_pullExitPointsAux___lambda__1___closed__9; static lean_object* l_Lean_Elab_Term_Do_ToCodeBlock_doSeqToCode___closed__3; static lean_object* l_Lean_Elab_Term_Do_ToCodeBlock_doReassignArrowToCode___closed__3; @@ -43691,7 +43691,7 @@ x_4 = l_Lean_addBuiltinDeclarationRanges(x_2, x_3, x_1); return x_4; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Do___hyg_37206_(lean_object* x_1) { +LEAN_EXPORT lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Do___hyg_37072_(lean_object* x_1) { _start: { lean_object* x_2; uint8_t x_3; lean_object* x_4; @@ -45732,7 +45732,7 @@ lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Do_elabDo_declRange___closed_ res = l___regBuiltin_Lean_Elab_Term_Do_elabDo_declRange(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Do___hyg_37206_(lean_io_mk_world()); +res = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Do___hyg_37072_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l___regBuiltin_Lean_Elab_Term_expandTermFor___closed__1 = _init_l___regBuiltin_Lean_Elab_Term_expandTermFor___closed__1(); diff --git a/stage0/stdlib/Lean/Elab/Extra.c b/stage0/stdlib/Lean/Elab/Extra.c index 337ea7e85e..aafb9cd4bb 100644 --- a/stage0/stdlib/Lean/Elab/Extra.c +++ b/stage0/stdlib/Lean/Elab/Extra.c @@ -237,7 +237,7 @@ static lean_object* l___private_Lean_Elab_Extra_0__Lean_Elab_Term_BinOp_toExpr__ LEAN_EXPORT lean_object* l___private_Lean_Elab_Extra_0__Lean_Elab_Term_BinOp_toExprCore___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Extra_0__Lean_Elab_Term_BinOp_toExpr(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_withNewMCtxDepth___at___private_Lean_Elab_Extra_0__Lean_Elab_Term_BinOp_analyze_go___spec__2(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Term_BinOp_initFn____x40_Lean_Elab_Extra___hyg_7572_(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Term_BinOp_initFn____x40_Lean_Elab_Extra___hyg_7563_(lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Term_elabForIn_x27___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Extra_0__Lean_Elab_Term_throwForInFailure___closed__2; static lean_object* l_Lean_isTracingEnabledFor___at___private_Lean_Elab_Extra_0__Lean_Elab_Term_BinOp_analyze_go___spec__3___closed__1; @@ -13336,7 +13336,7 @@ x_4 = l_Lean_addBuiltinDeclarationRanges(x_2, x_3, x_1); return x_4; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Term_BinOp_initFn____x40_Lean_Elab_Extra___hyg_7572_(lean_object* x_1) { +LEAN_EXPORT lean_object* l_Lean_Elab_Term_BinOp_initFn____x40_Lean_Elab_Extra___hyg_7563_(lean_object* x_1) { _start: { lean_object* x_2; uint8_t x_3; lean_object* x_4; @@ -13845,7 +13845,7 @@ lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_BinOp_elabDefaultOrNonempty_d res = l___regBuiltin_Lean_Elab_Term_BinOp_elabDefaultOrNonempty_declRange(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = l_Lean_Elab_Term_BinOp_initFn____x40_Lean_Elab_Extra___hyg_7572_(lean_io_mk_world()); +res = l_Lean_Elab_Term_BinOp_initFn____x40_Lean_Elab_Extra___hyg_7563_(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/Inductive.c b/stage0/stdlib/Lean/Elab/Inductive.c index a612db99f8..bbbd77fa54 100644 --- a/stage0/stdlib/Lean/Elab/Inductive.c +++ b/stage0/stdlib/Lean/Elab/Inductive.c @@ -19,6 +19,7 @@ static lean_object* l___private_Lean_Elab_Inductive_0__Lean_Elab_Command_checkPa lean_object* l_Lean_Elab_ContextInfo_save___at_Lean_Elab_Term_withoutModifyingElabMetaStateWithInfo___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Command_withCtorRef___spec__2___rarg___lambda__2(lean_object*, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, size_t, lean_object*); +static lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_Inductive___hyg_8064____closed__5; lean_object* lean_array_set(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_KVMap_setBool(lean_object*, lean_object*, uint8_t); lean_object* lean_mk_brec_on(lean_object*, lean_object*); @@ -111,6 +112,7 @@ lean_object* l_Array_extract___rarg(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Command_checkValidInductiveModifier___rarg___lambda__1___closed__1; LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Inductive_0__Lean_Elab_Command_applyComputedFields___spec__1___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_elabCtorType___closed__2; +static lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_Inductive___hyg_8064____closed__3; LEAN_EXPORT lean_object* l_Lean_Elab_Command_checkValidInductiveModifier___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Inductive_0__Lean_Elab_Command_checkResultingUniverses(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Inductive_0__Lean_Elab_Command_getResultingUniverse___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -193,6 +195,7 @@ LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Inducti LEAN_EXPORT lean_object* l_List_mapM_loop___at___private_Lean_Elab_Inductive_0__Lean_Elab_Command_fixedIndicesToParams___spec__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Command_bootstrap_inductiveCheckResultingUniverse; LEAN_EXPORT lean_object* l_Lean_assignLevelMVar___at_Lean_Elab_Command_shouldInferResultUniverse___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_Inductive___hyg_8064____closed__1; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Inductive_0__Lean_Elab_Command_applyComputedFields___spec__1___lambda__1___closed__22; static lean_object* l___private_Lean_Elab_Inductive_0__Lean_Elab_Command_throwUnexpectedInductiveType___rarg___closed__2; LEAN_EXPORT lean_object* l___private_Lean_Elab_Inductive_0__Lean_Elab_Command_mkInductiveDecl___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -284,7 +287,6 @@ LEAN_EXPORT lean_object* l___private_Lean_Elab_Inductive_0__Lean_Elab_Command_mk LEAN_EXPORT lean_object* l_Lean_Elab_Command_checkResultingUniverse___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_List_mapM_loop___at___private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors___spec__2___lambda__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Command_checkValidCtorModifier___rarg(lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_Inductive___hyg_8078____closed__1; LEAN_EXPORT lean_object* l_List_mapM_loop___at___private_Lean_Elab_Inductive_0__Lean_Elab_Command_replaceIndFVarsWithConsts___spec__1___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_HashMapImp_find_x3f___at_Lean_Meta_forEachExpr_x27_visit___spec__1(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentArray_mapMAux___at___private_Lean_Elab_Inductive_0__Lean_Elab_Command_mkInductiveDecl___spec__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -365,7 +367,6 @@ LEAN_EXPORT lean_object* l_Lean_Elab_Command_withCtorRef___rarg___lambda__1(lean LEAN_EXPORT uint8_t l_Array_anyMUnsafe_any___at___private_Lean_Elab_Inductive_0__Lean_Elab_Command_fixedIndicesToParams_go___spec__3(lean_object*, lean_object*, size_t, size_t); LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at___private_Lean_Elab_Inductive_0__Lean_Elab_Command_reorderCtorArgs___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Inductive_0__Lean_Elab_Command_fixedIndicesToParams(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_Inductive___hyg_8078____closed__3; lean_object* l_List_mapTRAux___at_Lean_Meta_Match_mkMatcher___spec__7(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwError___at___private_Lean_Elab_Inductive_0__Lean_Elab_Command_throwUnexpectedInductiveType___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Inductive_0__Lean_Elab_Command_applyComputedFields___lambda__3___closed__1; @@ -456,7 +457,6 @@ LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Inducti LEAN_EXPORT lean_object* l_Lean_Elab_Command_elabInductiveViews___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___private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_elabCtorType(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_to_list(lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_Inductive___hyg_8078____closed__5; uint8_t l_Lean_Environment_contains(lean_object*, lean_object*); lean_object* l_Lean_Meta_InfoCacheKey_instHashableInfoCacheKey___boxed(lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Inductive_0__Lean_Elab_Command_checkHeaders___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -510,7 +510,6 @@ static lean_object* l___private_Lean_Elab_Inductive_0__Lean_Elab_Command_getResu lean_object* l_Lean_Expr_bvar___override(lean_object*); LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Inductive_0__Lean_Elab_Command_applyDerivingHandlers___spec__3(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT uint8_t l_Array_anyMUnsafe_any___at___private_Lean_Elab_Inductive_0__Lean_Elab_Command_fixedIndicesToParams___spec__11(lean_object*, size_t, size_t); -static lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_Inductive___hyg_8078____closed__4; LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Elab_Command_shouldInferResultUniverse___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Inductive_0__Lean_Elab_Command_fixedIndicesToParams___lambda__3___closed__2; uint8_t l_Lean_Expr_isForall(lean_object*); @@ -652,9 +651,8 @@ uint8_t l_Lean_BinderInfo_isExplicit(uint8_t); static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Inductive_0__Lean_Elab_Command_applyComputedFields___spec__1___lambda__1___closed__6; LEAN_EXPORT lean_object* l___private_Lean_Elab_Inductive_0__Lean_Elab_Command_eqvFirstTypeResult___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Command_accLevelAtCtor___closed__3; -static lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_Inductive___hyg_8078____closed__2; LEAN_EXPORT lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_Inductive___hyg_5_(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_Inductive___hyg_8078_(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_Inductive___hyg_8064_(lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Inductive_0__Lean_Elab_Command_applyComputedFields___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_List_mapM_loop___at___private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors___spec__2___lambda__4___closed__1; LEAN_EXPORT lean_object* l___private_Lean_Elab_Inductive_0__Lean_Elab_Command_resetMaskAt(lean_object*, lean_object*); @@ -755,6 +753,7 @@ LEAN_EXPORT lean_object* l_Lean_Elab_Command_accLevelAtCtor___lambda__1(lean_obj LEAN_EXPORT lean_object* l_Lean_mkBelow___at___private_Lean_Elab_Inductive_0__Lean_Elab_Command_mkAuxConstructions___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Inductive_0__Lean_Elab_Command_applyComputedFields___spec__1___lambda__1___closed__10; LEAN_EXPORT lean_object* l___private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabHeaderAux___lambda__7(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_Inductive___hyg_8064____closed__2; LEAN_EXPORT lean_object* l_Lean_mkBInductionOn___at___private_Lean_Elab_Inductive_0__Lean_Elab_Command_mkAuxConstructions___spec__7(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Command_elabInductiveViews___spec__1(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Command_checkValidInductiveModifier___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); @@ -897,6 +896,7 @@ lean_object* l_List_appendTR___rarg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Inductive_0__Lean_Elab_Command_levelMVarToParam_levelMVarToParam_x27___lambda__1___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabHeaderAux___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_List_forM___at___private_Lean_Elab_Inductive_0__Lean_Elab_Command_collectUniverses_go___spec__6___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_Inductive___hyg_8064____closed__4; LEAN_EXPORT lean_object* l___private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabHeaderAux___lambda__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_isType(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_List_mapM_loop___at___private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors___spec__2___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -14811,7 +14811,7 @@ lean_dec(x_5); return x_13; } } -static lean_object* _init_l_Lean_Elab_Command_initFn____x40_Lean_Elab_Inductive___hyg_8078____closed__1() { +static lean_object* _init_l_Lean_Elab_Command_initFn____x40_Lean_Elab_Inductive___hyg_8064____closed__1() { _start: { lean_object* x_1; @@ -14819,7 +14819,7 @@ x_1 = lean_mk_string_from_bytes("bootstrap", 9); return x_1; } } -static lean_object* _init_l_Lean_Elab_Command_initFn____x40_Lean_Elab_Inductive___hyg_8078____closed__2() { +static lean_object* _init_l_Lean_Elab_Command_initFn____x40_Lean_Elab_Inductive___hyg_8064____closed__2() { _start: { lean_object* x_1; @@ -14827,17 +14827,17 @@ x_1 = lean_mk_string_from_bytes("inductiveCheckResultingUniverse", 31); return x_1; } } -static lean_object* _init_l_Lean_Elab_Command_initFn____x40_Lean_Elab_Inductive___hyg_8078____closed__3() { +static lean_object* _init_l_Lean_Elab_Command_initFn____x40_Lean_Elab_Inductive___hyg_8064____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Command_initFn____x40_Lean_Elab_Inductive___hyg_8078____closed__1; -x_2 = l_Lean_Elab_Command_initFn____x40_Lean_Elab_Inductive___hyg_8078____closed__2; +x_1 = l_Lean_Elab_Command_initFn____x40_Lean_Elab_Inductive___hyg_8064____closed__1; +x_2 = l_Lean_Elab_Command_initFn____x40_Lean_Elab_Inductive___hyg_8064____closed__2; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Command_initFn____x40_Lean_Elab_Inductive___hyg_8078____closed__4() { +static lean_object* _init_l_Lean_Elab_Command_initFn____x40_Lean_Elab_Inductive___hyg_8064____closed__4() { _start: { lean_object* x_1; @@ -14845,13 +14845,13 @@ x_1 = lean_mk_string_from_bytes("by default the `inductive/structure commands re return x_1; } } -static lean_object* _init_l_Lean_Elab_Command_initFn____x40_Lean_Elab_Inductive___hyg_8078____closed__5() { +static lean_object* _init_l_Lean_Elab_Command_initFn____x40_Lean_Elab_Inductive___hyg_8064____closed__5() { _start: { uint8_t x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_1 = 1; -x_2 = l_Lean_Elab_Command_initFn____x40_Lean_Elab_Inductive___hyg_8078____closed__1; -x_3 = l_Lean_Elab_Command_initFn____x40_Lean_Elab_Inductive___hyg_8078____closed__4; +x_2 = l_Lean_Elab_Command_initFn____x40_Lean_Elab_Inductive___hyg_8064____closed__1; +x_3 = l_Lean_Elab_Command_initFn____x40_Lean_Elab_Inductive___hyg_8064____closed__4; x_4 = lean_box(x_1); x_5 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_5, 0, x_4); @@ -14860,12 +14860,12 @@ lean_ctor_set(x_5, 2, x_3); return x_5; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_Inductive___hyg_8078_(lean_object* x_1) { +LEAN_EXPORT lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_Inductive___hyg_8064_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_2 = l_Lean_Elab_Command_initFn____x40_Lean_Elab_Inductive___hyg_8078____closed__3; -x_3 = l_Lean_Elab_Command_initFn____x40_Lean_Elab_Inductive___hyg_8078____closed__5; +x_2 = l_Lean_Elab_Command_initFn____x40_Lean_Elab_Inductive___hyg_8064____closed__3; +x_3 = l_Lean_Elab_Command_initFn____x40_Lean_Elab_Inductive___hyg_8064____closed__5; x_4 = l_Lean_Option_register___at_Lean_Elab_initFn____x40_Lean_Elab_AutoBound___hyg_7____spec__1(x_2, x_3, x_1); return x_4; } @@ -32560,7 +32560,7 @@ static lean_object* _init_l___private_Lean_Elab_Inductive_0__Lean_Elab_Command_a _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Command_initFn____x40_Lean_Elab_Inductive___hyg_8078____closed__1; +x_1 = l_Lean_Elab_Command_initFn____x40_Lean_Elab_Inductive___hyg_8064____closed__1; x_2 = l___private_Lean_Elab_Inductive_0__Lean_Elab_Command_applyComputedFields___lambda__1___closed__1; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; @@ -34357,17 +34357,17 @@ l___private_Lean_Elab_Inductive_0__Lean_Elab_Command_updateResultingUniverse___c lean_mark_persistent(l___private_Lean_Elab_Inductive_0__Lean_Elab_Command_updateResultingUniverse___closed__1); l___private_Lean_Elab_Inductive_0__Lean_Elab_Command_updateResultingUniverse___closed__2 = _init_l___private_Lean_Elab_Inductive_0__Lean_Elab_Command_updateResultingUniverse___closed__2(); lean_mark_persistent(l___private_Lean_Elab_Inductive_0__Lean_Elab_Command_updateResultingUniverse___closed__2); -l_Lean_Elab_Command_initFn____x40_Lean_Elab_Inductive___hyg_8078____closed__1 = _init_l_Lean_Elab_Command_initFn____x40_Lean_Elab_Inductive___hyg_8078____closed__1(); -lean_mark_persistent(l_Lean_Elab_Command_initFn____x40_Lean_Elab_Inductive___hyg_8078____closed__1); -l_Lean_Elab_Command_initFn____x40_Lean_Elab_Inductive___hyg_8078____closed__2 = _init_l_Lean_Elab_Command_initFn____x40_Lean_Elab_Inductive___hyg_8078____closed__2(); -lean_mark_persistent(l_Lean_Elab_Command_initFn____x40_Lean_Elab_Inductive___hyg_8078____closed__2); -l_Lean_Elab_Command_initFn____x40_Lean_Elab_Inductive___hyg_8078____closed__3 = _init_l_Lean_Elab_Command_initFn____x40_Lean_Elab_Inductive___hyg_8078____closed__3(); -lean_mark_persistent(l_Lean_Elab_Command_initFn____x40_Lean_Elab_Inductive___hyg_8078____closed__3); -l_Lean_Elab_Command_initFn____x40_Lean_Elab_Inductive___hyg_8078____closed__4 = _init_l_Lean_Elab_Command_initFn____x40_Lean_Elab_Inductive___hyg_8078____closed__4(); -lean_mark_persistent(l_Lean_Elab_Command_initFn____x40_Lean_Elab_Inductive___hyg_8078____closed__4); -l_Lean_Elab_Command_initFn____x40_Lean_Elab_Inductive___hyg_8078____closed__5 = _init_l_Lean_Elab_Command_initFn____x40_Lean_Elab_Inductive___hyg_8078____closed__5(); -lean_mark_persistent(l_Lean_Elab_Command_initFn____x40_Lean_Elab_Inductive___hyg_8078____closed__5); -if (builtin) {res = l_Lean_Elab_Command_initFn____x40_Lean_Elab_Inductive___hyg_8078_(lean_io_mk_world()); +l_Lean_Elab_Command_initFn____x40_Lean_Elab_Inductive___hyg_8064____closed__1 = _init_l_Lean_Elab_Command_initFn____x40_Lean_Elab_Inductive___hyg_8064____closed__1(); +lean_mark_persistent(l_Lean_Elab_Command_initFn____x40_Lean_Elab_Inductive___hyg_8064____closed__1); +l_Lean_Elab_Command_initFn____x40_Lean_Elab_Inductive___hyg_8064____closed__2 = _init_l_Lean_Elab_Command_initFn____x40_Lean_Elab_Inductive___hyg_8064____closed__2(); +lean_mark_persistent(l_Lean_Elab_Command_initFn____x40_Lean_Elab_Inductive___hyg_8064____closed__2); +l_Lean_Elab_Command_initFn____x40_Lean_Elab_Inductive___hyg_8064____closed__3 = _init_l_Lean_Elab_Command_initFn____x40_Lean_Elab_Inductive___hyg_8064____closed__3(); +lean_mark_persistent(l_Lean_Elab_Command_initFn____x40_Lean_Elab_Inductive___hyg_8064____closed__3); +l_Lean_Elab_Command_initFn____x40_Lean_Elab_Inductive___hyg_8064____closed__4 = _init_l_Lean_Elab_Command_initFn____x40_Lean_Elab_Inductive___hyg_8064____closed__4(); +lean_mark_persistent(l_Lean_Elab_Command_initFn____x40_Lean_Elab_Inductive___hyg_8064____closed__4); +l_Lean_Elab_Command_initFn____x40_Lean_Elab_Inductive___hyg_8064____closed__5 = _init_l_Lean_Elab_Command_initFn____x40_Lean_Elab_Inductive___hyg_8064____closed__5(); +lean_mark_persistent(l_Lean_Elab_Command_initFn____x40_Lean_Elab_Inductive___hyg_8064____closed__5); +if (builtin) {res = l_Lean_Elab_Command_initFn____x40_Lean_Elab_Inductive___hyg_8064_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; l_Lean_Elab_Command_bootstrap_inductiveCheckResultingUniverse = lean_io_result_get_value(res); lean_mark_persistent(l_Lean_Elab_Command_bootstrap_inductiveCheckResultingUniverse); diff --git a/stage0/stdlib/Lean/Elab/Match.c b/stage0/stdlib/Lean/Elab/Match.c index bc30de0b00..9fa204f92c 100644 --- a/stage0/stdlib/Lean/Elab/Match.c +++ b/stage0/stdlib/Lean/Elab/Match.c @@ -26,7 +26,6 @@ lean_object* l_Lean_Elab_Term_collectPatternVars(lean_object*, lean_object*, lea LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at___private_Lean_Elab_Match_0__Lean_Elab_Term_withToClear___spec__8___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_ToDepElimPattern_applyRefMap___lambda__1(lean_object*, lean_object*); lean_object* l_Lean_throwError___at_Lean_Elab_Term_addAutoBoundImplicits_go___spec__50(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18390____closed__1; LEAN_EXPORT lean_object* l_Lean_Elab_Term_ToDepElimPattern_savePatternInfo_go(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_set(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_KVMap_setBool(lean_object*, lean_object*, uint8_t); @@ -53,7 +52,6 @@ LEAN_EXPORT lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_withPatte LEAN_EXPORT lean_object* l_Lean_Meta_transform___at___private_Lean_Elab_Match_0__Lean_Elab_Term_elabMatchTypeAndDiscrs_elabDiscrs___spec__1___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_elabMatchAux___closed__2; static lean_object* l_Lean_Elab_getResetInfoTrees___at_Lean_Elab_Term_ToDepElimPattern_savePatternInfo_go___spec__4___rarg___closed__3; -static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18390____closed__2; lean_object* l_Lean_stringToMessageData(lean_object*); LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Term_ToDepElimPattern_main___spec__4(size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_expandMatchAlts_x3f(lean_object*, lean_object*, lean_object*); @@ -210,6 +208,7 @@ static lean_object* l_List_forIn_loop___at___private_Lean_Elab_Match_0__Lean_Ela LEAN_EXPORT lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_ToDepElimPattern_mkPatternRefMap_go___lambda__1___boxed(lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_isMatchUnit_x3f___closed__3; LEAN_EXPORT uint8_t l_Array_anyMUnsafe_any___at___private_Lean_Elab_Match_0__Lean_Elab_Term_elabMatchAltViews_containsFVar___spec__1(lean_object*, lean_object*, size_t, size_t); +static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18362____closed__4; lean_object* lean_string_append(lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_expandSimpleMatch___closed__2; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Term_ToDepElimPattern_main___spec__5(size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -247,7 +246,6 @@ lean_object* l_Array_mapMUnsafe_map___at_Lean_LocalContext_getFVars___spec__1(si lean_object* l_Lean_MessageData_joinSep(lean_object*, lean_object*); lean_object* l_Lean_Expr_getRevArg_x21(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_sequenceMap___at_Lean_Elab_Term_precheckMatch___spec__1___boxed(lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18390____closed__3; LEAN_EXPORT lean_object* l_Lean_Meta_transform_visit___at___private_Lean_Elab_Match_0__Lean_Elab_Term_elabMatchTypeAndDiscrs_elabDiscrs___spec__2___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_ToDepElimPattern_normalize_addVar___closed__2; lean_object* l_Lean_Meta_Match_mkMatcher(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -893,6 +891,7 @@ uint8_t l_Lean_Expr_hasLooseBVars(lean_object*); static lean_object* l___regBuiltin_Lean_Elab_Term_elabInaccessible___closed__5; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Match_0__Lean_Elab_Term_generalize___spec__1___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_throwUnsupportedSyntax___at___private_Lean_Elab_Match_0__Lean_Elab_Term_elabMatchAux___spec__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18362____closed__3; LEAN_EXPORT lean_object* l___private_Lean_MetavarContext_0__Lean_DependsOn_dep_visitApp___at___private_Lean_Elab_Match_0__Lean_Elab_Term_withToClear___spec__4(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwMaxRecDepthAt___at___private_Lean_Elab_Match_0__Lean_Elab_Term_elabMatchAux___spec__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Match_0__Lean_Elab_Term_elabMatchAltViews_loop___spec__2___closed__1; @@ -919,7 +918,6 @@ LEAN_EXPORT lean_object* l___private_Lean_MetavarContext_0__Lean_DependsOn_dep_v LEAN_EXPORT lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_elabMatchAux___lambda__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_1115____at___private_Lean_Elab_Match_0__Lean_Elab_Term_elabMatchAux___spec__13___boxed(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_precheckMatch___lambda__3___closed__1; -static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18390____closed__4; LEAN_EXPORT lean_object* l_Lean_instantiateMVars___at___private_Lean_Elab_Match_0__Lean_Elab_Term_ToDepElimPattern_topSort_visit___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at___private_Lean_Elab_Match_0__Lean_Elab_Term_generalize___spec__6(size_t, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_ToDepElimPattern_mkPatternRefMap_go___lambda__1(lean_object*, lean_object*, lean_object*); @@ -1019,10 +1017,11 @@ static lean_object* l_Lean_Elab_Term_ToDepElimPattern_main___rarg___closed__3; LEAN_EXPORT lean_object* l_Lean_Meta_transform_visit_visitLet___at___private_Lean_Elab_Match_0__Lean_Elab_Term_elabMatchTypeAndDiscrs_elabDiscrs___spec__6(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at___private_Lean_Elab_Match_0__Lean_Elab_Term_withToClear___spec__9___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_elabNoMatch_declRange(lean_object*); +static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18362____closed__1; LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at___private_Lean_Elab_Match_0__Lean_Elab_Term_elabMatchAux___spec__1___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_mapMUnsafe_map___at_Lean_Meta_Closure_mkBinding___spec__1(size_t, size_t, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_22754_(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18390_(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_22698_(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18362_(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_withLCtx___at___private_Lean_Elab_Match_0__Lean_Elab_Term_withToClear___spec__25(lean_object*); LEAN_EXPORT lean_object* l_Lean_RBNode_revFold___at___private_Lean_Elab_Match_0__Lean_Elab_Term_elabMatchAltViews_collectDeps___spec__3(lean_object*, lean_object*); lean_object* l_Lean_mkSimpleThunk(lean_object*); @@ -1075,6 +1074,7 @@ LEAN_EXPORT lean_object* l_Lean_Elab_Term_precheckMatch___lambda__3(lean_object* LEAN_EXPORT lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_findDiscrRefinementPath_checkCompatibleApps___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_elabMatchAux___closed__1; LEAN_EXPORT lean_object* l_Lean_Meta_transform_visit_visitLambda___at___private_Lean_Elab_Match_0__Lean_Elab_Term_elabMatchTypeAndDiscrs_elabDiscrs___spec__4___lambda__1(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18362____closed__2; lean_object* l_runST___rarg(lean_object*); LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Match_0__Lean_Elab_Term_elabMatchTypeAndDiscrs_elabDiscrsWitMatchType___spec__1___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_withLocalInstances___at___private_Lean_Elab_Match_0__Lean_Elab_Term_elabMatchAltView___spec__5(lean_object*); @@ -38572,7 +38572,7 @@ lean_dec(x_2); return x_9; } } -static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18390____closed__1() { +static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18362____closed__1() { _start: { lean_object* x_1; @@ -38580,17 +38580,17 @@ x_1 = lean_mk_string_from_bytes("ignoreUnusedAlts", 16); return x_1; } } -static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18390____closed__2() { +static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18362____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Match_0__Lean_Elab_Term_elabMatchTypeAndDiscrs_elabDiscrsWitMatchType___spec__1___closed__6; -x_2 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18390____closed__1; +x_2 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18362____closed__1; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18390____closed__3() { +static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18362____closed__3() { _start: { lean_object* x_1; @@ -38598,13 +38598,13 @@ x_1 = lean_mk_string_from_bytes("if true, do not generate error if an alternativ return x_1; } } -static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18390____closed__4() { +static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18362____closed__4() { _start: { uint8_t x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_1 = 0; x_2 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Match_0__Lean_Elab_Term_elabMatchTypeAndDiscrs_elabDiscrsWitMatchType___spec__1___closed__14; -x_3 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18390____closed__3; +x_3 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18362____closed__3; x_4 = lean_box(x_1); x_5 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_5, 0, x_4); @@ -38613,12 +38613,12 @@ lean_ctor_set(x_5, 2, x_3); return x_5; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18390_(lean_object* x_1) { +LEAN_EXPORT lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18362_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_2 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18390____closed__2; -x_3 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18390____closed__4; +x_2 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18362____closed__2; +x_3 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18362____closed__4; x_4 = l_Lean_Option_register___at_Lean_Elab_initFn____x40_Lean_Elab_AutoBound___hyg_7____spec__1(x_2, x_3, x_1); return x_4; } @@ -45988,7 +45988,7 @@ x_4 = l_Lean_addBuiltinDeclarationRanges(x_2, x_3, x_1); return x_4; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_22754_(lean_object* x_1) { +LEAN_EXPORT lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_22698_(lean_object* x_1) { _start: { lean_object* x_2; uint8_t x_3; lean_object* x_4; @@ -46819,15 +46819,15 @@ l___private_Lean_Elab_Match_0__Lean_Elab_Term_elabMatchAltViews_loop___closed__1 lean_mark_persistent(l___private_Lean_Elab_Match_0__Lean_Elab_Term_elabMatchAltViews_loop___closed__1); l___private_Lean_Elab_Match_0__Lean_Elab_Term_elabMatchAltViews_loop___closed__2 = _init_l___private_Lean_Elab_Match_0__Lean_Elab_Term_elabMatchAltViews_loop___closed__2(); lean_mark_persistent(l___private_Lean_Elab_Match_0__Lean_Elab_Term_elabMatchAltViews_loop___closed__2); -l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18390____closed__1 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18390____closed__1(); -lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18390____closed__1); -l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18390____closed__2 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18390____closed__2(); -lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18390____closed__2); -l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18390____closed__3 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18390____closed__3(); -lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18390____closed__3); -l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18390____closed__4 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18390____closed__4(); -lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18390____closed__4); -if (builtin) {res = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18390_(lean_io_mk_world()); +l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18362____closed__1 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18362____closed__1(); +lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18362____closed__1); +l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18362____closed__2 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18362____closed__2(); +lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18362____closed__2); +l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18362____closed__3 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18362____closed__3(); +lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18362____closed__3); +l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18362____closed__4 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18362____closed__4(); +lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18362____closed__4); +if (builtin) {res = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_18362_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; l_Lean_Elab_Term_match_ignoreUnusedAlts = lean_io_result_get_value(res); lean_mark_persistent(l_Lean_Elab_Term_match_ignoreUnusedAlts); @@ -46940,7 +46940,7 @@ lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_elabMatch_declRange___closed_ res = l___regBuiltin_Lean_Elab_Term_elabMatch_declRange(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_22754_(lean_io_mk_world()); +res = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_22698_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_Lean_Elab_Term_elabNoMatch___closed__1 = _init_l_Lean_Elab_Term_elabNoMatch___closed__1(); diff --git a/stage0/stdlib/Lean/Elab/PreDefinition/Eqns.c b/stage0/stdlib/Lean/Elab/PreDefinition/Eqns.c index 524fa8f8b8..8d55fd34b9 100644 --- a/stage0/stdlib/Lean/Elab/PreDefinition/Eqns.c +++ b/stage0/stdlib/Lean/Elab/PreDefinition/Eqns.c @@ -131,12 +131,12 @@ LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at___private_Lean_Elab_PreD LEAN_EXPORT lean_object* l___private_Lean_Elab_PreDefinition_Eqns_0__Lean_Elab_Eqns_findMatchToSplit_x3f___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Std_Range_forIn_loop___at___private_Lean_Elab_PreDefinition_Eqns_0__Lean_Elab_Eqns_findMatchToSplit_x3f___spec__3___closed__2; size_t lean_usize_shift_right(size_t, size_t); +static lean_object* l_Lean_Elab_Eqns_initFn____x40_Lean_Elab_PreDefinition_Eqns___hyg_6406____closed__1; LEAN_EXPORT lean_object* l_Lean_Elab_Eqns_mkUnfoldProof_go___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_PreDefinition_Eqns_0__Lean_Elab_Eqns_findMatchToSplit_x3f___lambda__1___boxed(lean_object*); lean_object* l_Lean_Expr_FindExtImpl_findUnsafe_x3f(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at___private_Lean_Elab_PreDefinition_Eqns_0__Lean_Elab_Eqns_saveEqn___spec__22___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_appArg_x21(lean_object*); -static lean_object* l_Lean_Elab_Eqns_initFn____x40_Lean_Elab_PreDefinition_Eqns___hyg_6415____closed__1; lean_object* l_Array_mapMUnsafe_map___at_Lean_LocalContext_getFVars___spec__1(size_t, size_t, lean_object*); lean_object* l_Lean_addTrace___at_Lean_Meta_processPostponed_loop___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Eqns_deltaLHS___lambda__2___closed__2; @@ -222,8 +222,8 @@ LEAN_EXPORT lean_object* l_Lean_Elab_Eqns_splitMatch_x3f_go(lean_object*, lean_o LEAN_EXPORT lean_object* l___private_Lean_Elab_PreDefinition_Eqns_0__Lean_Elab_Eqns_saveEqn_isIrrelevant___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Eqns_simpEqnType___spec__1___at_Lean_Elab_Eqns_simpEqnType___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_replaceFVar(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Eqns_initFn____x40_Lean_Elab_PreDefinition_Eqns___hyg_7669_(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Eqns_initFn____x40_Lean_Elab_PreDefinition_Eqns___hyg_6415_(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Eqns_initFn____x40_Lean_Elab_PreDefinition_Eqns___hyg_7660_(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Eqns_initFn____x40_Lean_Elab_PreDefinition_Eqns___hyg_6406_(lean_object*); static lean_object* l_Lean_commitWhenSome_x3f___at_Lean_Elab_Eqns_funext_x3f___spec__1___at_Lean_Elab_Eqns_funext_x3f___spec__2___closed__1; LEAN_EXPORT lean_object* l___private_Lean_Elab_PreDefinition_Eqns_0__Lean_Elab_Eqns_saveEqn_pushDecl___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_RBNode_insert___at_Lean_CollectFVars_State_add___spec__1(lean_object*, lean_object*, lean_object*); @@ -442,10 +442,12 @@ LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Eqns_removeUnus LEAN_EXPORT lean_object* l___private_Lean_Data_PersistentArray_0__Lean_PersistentArray_foldrMAux___at___private_Lean_Elab_PreDefinition_Eqns_0__Lean_Elab_Eqns_saveEqn___spec__15(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_addTrace___at_Lean_Elab_Eqns_mkEqnTypes_go___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PersistentHashMap_mkEmptyEntries(lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Eqns_initFn____x40_Lean_Elab_PreDefinition_Eqns___hyg_7660____closed__2; static lean_object* l_Lean_LocalContext_foldrM___at___private_Lean_Elab_PreDefinition_Eqns_0__Lean_Elab_Eqns_saveEqn___spec__2___at___private_Lean_Elab_PreDefinition_Eqns_0__Lean_Elab_Eqns_saveEqn___spec__26___closed__1; LEAN_EXPORT lean_object* l_Lean_Elab_Eqns_getUnfoldFor_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Eqns_mkEqnTypes(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Eqns_tryContradiction(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Eqns_initFn____x40_Lean_Elab_PreDefinition_Eqns___hyg_7660____closed__1; lean_object* lean_infer_type(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_PreDefinition_Eqns_0__Lean_Elab_Eqns_findMatchToSplit_x3f___lambda__3___closed__4; LEAN_EXPORT lean_object* l_Lean_Elab_Eqns_simpEqnType_collect___lambda__1___boxed(lean_object*, lean_object*, lean_object*); @@ -494,7 +496,6 @@ LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_PreDe LEAN_EXPORT lean_object* l_Lean_Loop_forIn_loop___at___private_Lean_Elab_PreDefinition_Eqns_0__Lean_Elab_Eqns_saveEqn___spec__32___at___private_Lean_Elab_PreDefinition_Eqns_0__Lean_Elab_Eqns_saveEqn___spec__33(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Eqns_expand(lean_object*); LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at___private_Lean_Elab_PreDefinition_Eqns_0__Lean_Elab_Eqns_saveEqn___spec__13(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Eqns_initFn____x40_Lean_Elab_PreDefinition_Eqns___hyg_7669____closed__1; lean_object* l_Lean_Expr_getAppFn(lean_object*); LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_PreDefinition_Eqns_0__Lean_Elab_Eqns_saveEqn_collectDeps___spec__3___at___private_Lean_Elab_PreDefinition_Eqns_0__Lean_Elab_Eqns_saveEqn_collectDeps___spec__4(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_Match_MatcherInfo_numAlts(lean_object*); @@ -525,7 +526,6 @@ LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Eqns_removeUnus lean_object* l_Lean_Expr_bindingBody_x21(lean_object*); static lean_object* l_Lean_Elab_Eqns_mkUnfoldProof___closed__1; lean_object* l_Lean_commitWhenSome_x3f___at_Lean_Meta_splitTarget_x3f___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Eqns_initFn____x40_Lean_Elab_PreDefinition_Eqns___hyg_7669____closed__2; LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Eqns_removeUnusedEqnHypotheses_go___spec__17___at_Lean_Elab_Eqns_removeUnusedEqnHypotheses_go___spec__18(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_PreDefinition_Eqns_0__Lean_Elab_Eqns_lhsDependsOn___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Eqns_removeUnusedEqnHypotheses_go___spec__1(lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*); @@ -20850,7 +20850,7 @@ x_1 = l_Lean_Elab_Eqns_UnfoldEqnExtState_map___default___closed__1; return x_1; } } -static lean_object* _init_l_Lean_Elab_Eqns_initFn____x40_Lean_Elab_PreDefinition_Eqns___hyg_6415____closed__1() { +static lean_object* _init_l_Lean_Elab_Eqns_initFn____x40_Lean_Elab_PreDefinition_Eqns___hyg_6406____closed__1() { _start: { lean_object* x_1; lean_object* x_2; @@ -20860,11 +20860,11 @@ lean_closure_set(x_2, 0, x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Eqns_initFn____x40_Lean_Elab_PreDefinition_Eqns___hyg_6415_(lean_object* x_1) { +LEAN_EXPORT lean_object* l_Lean_Elab_Eqns_initFn____x40_Lean_Elab_PreDefinition_Eqns___hyg_6406_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; -x_2 = l_Lean_Elab_Eqns_initFn____x40_Lean_Elab_PreDefinition_Eqns___hyg_6415____closed__1; +x_2 = l_Lean_Elab_Eqns_initFn____x40_Lean_Elab_PreDefinition_Eqns___hyg_6406____closed__1; x_3 = l_Lean_EnvExtensionInterfaceUnsafe_registerExt___rarg(x_2, x_1); return x_3; } @@ -24068,7 +24068,7 @@ x_8 = l_Lean_PersistentHashMap_insertAux___at_Lean_Elab_Eqns_getUnfoldFor_x3f___ return x_8; } } -static lean_object* _init_l_Lean_Elab_Eqns_initFn____x40_Lean_Elab_PreDefinition_Eqns___hyg_7669____closed__1() { +static lean_object* _init_l_Lean_Elab_Eqns_initFn____x40_Lean_Elab_PreDefinition_Eqns___hyg_7660____closed__1() { _start: { lean_object* x_1; @@ -24076,22 +24076,22 @@ x_1 = lean_mk_string_from_bytes("unfoldEqn", 9); return x_1; } } -static lean_object* _init_l_Lean_Elab_Eqns_initFn____x40_Lean_Elab_PreDefinition_Eqns___hyg_7669____closed__2() { +static lean_object* _init_l_Lean_Elab_Eqns_initFn____x40_Lean_Elab_PreDefinition_Eqns___hyg_7660____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; x_1 = l_Lean_Elab_Eqns_simpEqnType___lambda__2___closed__1; x_2 = l_Lean_Elab_Eqns_simpEqnType___lambda__2___closed__2; -x_3 = l_Lean_Elab_Eqns_initFn____x40_Lean_Elab_PreDefinition_Eqns___hyg_7669____closed__1; +x_3 = l_Lean_Elab_Eqns_initFn____x40_Lean_Elab_PreDefinition_Eqns___hyg_7660____closed__1; x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); return x_4; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Eqns_initFn____x40_Lean_Elab_PreDefinition_Eqns___hyg_7669_(lean_object* x_1) { +LEAN_EXPORT lean_object* l_Lean_Elab_Eqns_initFn____x40_Lean_Elab_PreDefinition_Eqns___hyg_7660_(lean_object* x_1) { _start: { lean_object* x_2; uint8_t x_3; lean_object* x_4; -x_2 = l_Lean_Elab_Eqns_initFn____x40_Lean_Elab_PreDefinition_Eqns___hyg_7669____closed__2; +x_2 = l_Lean_Elab_Eqns_initFn____x40_Lean_Elab_PreDefinition_Eqns___hyg_7660____closed__2; x_3 = 0; x_4 = l_Lean_registerTraceClass(x_2, x_3, x_1); if (lean_obj_tag(x_4) == 0) @@ -24309,9 +24309,9 @@ l_Lean_Elab_Eqns_UnfoldEqnExtState_map___default = _init_l_Lean_Elab_Eqns_Unfold lean_mark_persistent(l_Lean_Elab_Eqns_UnfoldEqnExtState_map___default); l_Lean_Elab_Eqns_instInhabitedUnfoldEqnExtState = _init_l_Lean_Elab_Eqns_instInhabitedUnfoldEqnExtState(); lean_mark_persistent(l_Lean_Elab_Eqns_instInhabitedUnfoldEqnExtState); -l_Lean_Elab_Eqns_initFn____x40_Lean_Elab_PreDefinition_Eqns___hyg_6415____closed__1 = _init_l_Lean_Elab_Eqns_initFn____x40_Lean_Elab_PreDefinition_Eqns___hyg_6415____closed__1(); -lean_mark_persistent(l_Lean_Elab_Eqns_initFn____x40_Lean_Elab_PreDefinition_Eqns___hyg_6415____closed__1); -if (builtin) {res = l_Lean_Elab_Eqns_initFn____x40_Lean_Elab_PreDefinition_Eqns___hyg_6415_(lean_io_mk_world()); +l_Lean_Elab_Eqns_initFn____x40_Lean_Elab_PreDefinition_Eqns___hyg_6406____closed__1 = _init_l_Lean_Elab_Eqns_initFn____x40_Lean_Elab_PreDefinition_Eqns___hyg_6406____closed__1(); +lean_mark_persistent(l_Lean_Elab_Eqns_initFn____x40_Lean_Elab_PreDefinition_Eqns___hyg_6406____closed__1); +if (builtin) {res = l_Lean_Elab_Eqns_initFn____x40_Lean_Elab_PreDefinition_Eqns___hyg_6406_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; l_Lean_Elab_Eqns_unfoldEqnExt = lean_io_result_get_value(res); lean_mark_persistent(l_Lean_Elab_Eqns_unfoldEqnExt); @@ -24362,11 +24362,11 @@ l_Lean_Elab_Eqns_getUnfoldFor_x3f___closed__9 = _init_l_Lean_Elab_Eqns_getUnfold lean_mark_persistent(l_Lean_Elab_Eqns_getUnfoldFor_x3f___closed__9); l_Lean_Elab_Eqns_getUnfoldFor_x3f___closed__10 = _init_l_Lean_Elab_Eqns_getUnfoldFor_x3f___closed__10(); lean_mark_persistent(l_Lean_Elab_Eqns_getUnfoldFor_x3f___closed__10); -l_Lean_Elab_Eqns_initFn____x40_Lean_Elab_PreDefinition_Eqns___hyg_7669____closed__1 = _init_l_Lean_Elab_Eqns_initFn____x40_Lean_Elab_PreDefinition_Eqns___hyg_7669____closed__1(); -lean_mark_persistent(l_Lean_Elab_Eqns_initFn____x40_Lean_Elab_PreDefinition_Eqns___hyg_7669____closed__1); -l_Lean_Elab_Eqns_initFn____x40_Lean_Elab_PreDefinition_Eqns___hyg_7669____closed__2 = _init_l_Lean_Elab_Eqns_initFn____x40_Lean_Elab_PreDefinition_Eqns___hyg_7669____closed__2(); -lean_mark_persistent(l_Lean_Elab_Eqns_initFn____x40_Lean_Elab_PreDefinition_Eqns___hyg_7669____closed__2); -res = l_Lean_Elab_Eqns_initFn____x40_Lean_Elab_PreDefinition_Eqns___hyg_7669_(lean_io_mk_world()); +l_Lean_Elab_Eqns_initFn____x40_Lean_Elab_PreDefinition_Eqns___hyg_7660____closed__1 = _init_l_Lean_Elab_Eqns_initFn____x40_Lean_Elab_PreDefinition_Eqns___hyg_7660____closed__1(); +lean_mark_persistent(l_Lean_Elab_Eqns_initFn____x40_Lean_Elab_PreDefinition_Eqns___hyg_7660____closed__1); +l_Lean_Elab_Eqns_initFn____x40_Lean_Elab_PreDefinition_Eqns___hyg_7660____closed__2 = _init_l_Lean_Elab_Eqns_initFn____x40_Lean_Elab_PreDefinition_Eqns___hyg_7660____closed__2(); +lean_mark_persistent(l_Lean_Elab_Eqns_initFn____x40_Lean_Elab_PreDefinition_Eqns___hyg_7660____closed__2); +res = l_Lean_Elab_Eqns_initFn____x40_Lean_Elab_PreDefinition_Eqns___hyg_7660_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); return lean_io_result_mk_ok(lean_box(0)); diff --git a/stage0/stdlib/Lean/Elab/PreDefinition/Main.c b/stage0/stdlib/Lean/Elab/PreDefinition/Main.c index f7af8530be..fc2af95423 100644 --- a/stage0/stdlib/Lean/Elab/PreDefinition/Main.c +++ b/stage0/stdlib/Lean/Elab/PreDefinition/Main.c @@ -122,7 +122,7 @@ LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_PreDe LEAN_EXPORT lean_object* l_Lean_throwErrorAt___at_Lean_Elab_addPreDefinitions___spec__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_applyAttributesOf(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_addPreDefinitions___spec__20___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_PreDefinition_Main___hyg_3380_(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_PreDefinition_Main___hyg_3256_(lean_object*); LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at_Lean_Elab_addPreDefinitions___spec__17___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_PreDefinition_Main_0__Lean_Elab_addAndCompilePartial___spec__2___closed__6; lean_object* l___private_Lean_Expr_0__Lean_Expr_getAppArgsAux(lean_object*, lean_object*, lean_object*); @@ -10806,7 +10806,7 @@ x_16 = l_Lean_Elab_addPreDefinitions___lambda__1(x_1, x_14, x_15, x_4, x_5, x_6, return x_16; } } -LEAN_EXPORT lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_PreDefinition_Main___hyg_3380_(lean_object* x_1) { +LEAN_EXPORT lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_PreDefinition_Main___hyg_3256_(lean_object* x_1) { _start: { lean_object* x_2; uint8_t x_3; lean_object* x_4; @@ -11024,7 +11024,7 @@ l_Lean_Elab_addPreDefinitions___closed__15 = _init_l_Lean_Elab_addPreDefinitions lean_mark_persistent(l_Lean_Elab_addPreDefinitions___closed__15); l_Lean_Elab_addPreDefinitions___boxed__const__1 = _init_l_Lean_Elab_addPreDefinitions___boxed__const__1(); lean_mark_persistent(l_Lean_Elab_addPreDefinitions___boxed__const__1); -res = l_Lean_Elab_initFn____x40_Lean_Elab_PreDefinition_Main___hyg_3380_(lean_io_mk_world()); +res = l_Lean_Elab_initFn____x40_Lean_Elab_PreDefinition_Main___hyg_3256_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); return lean_io_result_mk_ok(lean_box(0)); diff --git a/stage0/stdlib/Lean/Elab/PreDefinition/Structural/Main.c b/stage0/stdlib/Lean/Elab/PreDefinition/Structural/Main.c index 545d799bbb..3db40d9f5f 100644 --- a/stage0/stdlib/Lean/Elab/PreDefinition/Structural/Main.c +++ b/stage0/stdlib/Lean/Elab/PreDefinition/Structural/Main.c @@ -30,7 +30,7 @@ LEAN_EXPORT lean_object* l_Lean_setEnv___at___private_Lean_Elab_PreDefinition_St lean_object* l___private_Init_Util_0__outOfBounds___rarg(lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Structural_structuralRecursion(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_PreDefinition_Structural_Main_0__Lean_Elab_Structural_elimRecursion___lambda__6___closed__3; -LEAN_EXPORT lean_object* l_Lean_Elab_Structural_initFn____x40_Lean_Elab_PreDefinition_Structural_Main___hyg_1531_(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Structural_initFn____x40_Lean_Elab_PreDefinition_Structural_Main___hyg_1522_(lean_object*); static lean_object* l_Lean_setEnv___at___private_Lean_Elab_PreDefinition_Structural_Main_0__Lean_Elab_Structural_elimRecursion___spec__2___closed__10; static lean_object* l_Lean_Elab_Structural_structuralRecursion___lambda__1___closed__1; static lean_object* l_Lean_setEnv___at___private_Lean_Elab_PreDefinition_Structural_Main_0__Lean_Elab_Structural_elimRecursion___spec__2___closed__9; @@ -3135,7 +3135,7 @@ lean_dec(x_1); return x_9; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Structural_initFn____x40_Lean_Elab_PreDefinition_Structural_Main___hyg_1531_(lean_object* x_1) { +LEAN_EXPORT lean_object* l_Lean_Elab_Structural_initFn____x40_Lean_Elab_PreDefinition_Structural_Main___hyg_1522_(lean_object* x_1) { _start: { lean_object* x_2; uint8_t x_3; lean_object* x_4; @@ -3264,7 +3264,7 @@ l_Lean_Elab_Structural_structuralRecursion___closed__4 = _init_l_Lean_Elab_Struc lean_mark_persistent(l_Lean_Elab_Structural_structuralRecursion___closed__4); l_Lean_Elab_Structural_structuralRecursion___closed__5 = _init_l_Lean_Elab_Structural_structuralRecursion___closed__5(); lean_mark_persistent(l_Lean_Elab_Structural_structuralRecursion___closed__5); -res = l_Lean_Elab_Structural_initFn____x40_Lean_Elab_PreDefinition_Structural_Main___hyg_1531_(lean_io_mk_world()); +res = l_Lean_Elab_Structural_initFn____x40_Lean_Elab_PreDefinition_Structural_Main___hyg_1522_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); return lean_io_result_mk_ok(lean_box(0)); diff --git a/stage0/stdlib/Lean/Elab/PreDefinition/WF/Main.c b/stage0/stdlib/Lean/Elab/PreDefinition/WF/Main.c index 74db2d515d..8d64fc3f5b 100644 --- a/stage0/stdlib/Lean/Elab/PreDefinition/WF/Main.c +++ b/stage0/stdlib/Lean/Elab/PreDefinition/WF/Main.c @@ -116,7 +116,7 @@ lean_object* lean_st_mk_ref(lean_object*, lean_object*); lean_object* l_instMonadControlReaderT___lambda__3___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_wfRecursion___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Expr_instHashableExpr; -LEAN_EXPORT lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_PreDefinition_WF_Main___hyg_2942_(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_PreDefinition_WF_Main___hyg_2950_(lean_object*); static lean_object* l_Lean_Expr_withAppAux___at___private_Lean_Elab_PreDefinition_WF_Main_0__Lean_Elab_addNonRecPreDefs_mkSum___spec__1___closed__10; lean_object* l_Lean_Expr_sort___override(lean_object*); static lean_object* l_Lean_Elab_wfRecursion___closed__5; @@ -6378,7 +6378,7 @@ lean_dec(x_5); return x_15; } } -LEAN_EXPORT lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_PreDefinition_WF_Main___hyg_2942_(lean_object* x_1) { +LEAN_EXPORT lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_PreDefinition_WF_Main___hyg_2950_(lean_object* x_1) { _start: { lean_object* x_2; uint8_t x_3; lean_object* x_4; @@ -6555,7 +6555,7 @@ l_Lean_Elab_wfRecursion___closed__5 = _init_l_Lean_Elab_wfRecursion___closed__5( lean_mark_persistent(l_Lean_Elab_wfRecursion___closed__5); l_Lean_Elab_wfRecursion___closed__6 = _init_l_Lean_Elab_wfRecursion___closed__6(); lean_mark_persistent(l_Lean_Elab_wfRecursion___closed__6); -res = l_Lean_Elab_initFn____x40_Lean_Elab_PreDefinition_WF_Main___hyg_2942_(lean_io_mk_world()); +res = l_Lean_Elab_initFn____x40_Lean_Elab_PreDefinition_WF_Main___hyg_2950_(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/Quotation.c b/stage0/stdlib/Lean/Elab/Quotation.c index 4738bd862e..fe7928d586 100644 --- a/stage0/stdlib/Lean/Elab/Quotation.c +++ b/stage0/stdlib/Lean/Elab/Quotation.c @@ -13,6 +13,7 @@ #ifdef __cplusplus extern "C" { #endif +static lean_object* l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__48; static lean_object* l_List_mapM_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__4___closed__12; lean_object* l_List_reverse___rarg(lean_object*); uint8_t l_Lean_Syntax_isQuot(lean_object*); @@ -20,27 +21,28 @@ static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_ LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__18___boxed(lean_object**); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___closed__25; LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__16___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8682__declRange___closed__3; static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot____1___closed__20; lean_object* l_Lean_mkCIdentFrom(lean_object*, lean_object*, uint8_t); static lean_object* l_Lean_Elab_Term_Quotation_getQuotKind___closed__18; LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_markRhss___spec__9___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8590__declRange___closed__3; LEAN_EXPORT lean_object* l_Lean_resolveNamespaceCore___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__24; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__24___lambda__2___closed__1; LEAN_EXPORT lean_object* l_Array_sequenceMap___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__1___boxed(lean_object*, lean_object*); -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7319____closed__3; lean_object* l_Lean_Elab_Term_Quotation_getAntiquotKindSpec_x3f(lean_object*); LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__11___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7296____closed__2; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8498__declRange___closed__1; lean_object* l_Lean_Syntax_unescapeAntiquot(lean_object*); static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_markRhss___spec__9___lambda__1___closed__1; static lean_object* l_Lean_Elab_Term_Quotation_mkTuple___closed__13; uint8_t l_Lean_Syntax_isAntiquotSuffixSplice(lean_object*); LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__14(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7480__declRange___closed__3; static lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__38; static lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__11___closed__4; lean_object* l_Lean_extractMacroScopes(lean_object*); +static lean_object* l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__2; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__24___closed__48; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__2___closed__17; static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot____1___closed__6; @@ -51,6 +53,8 @@ static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_ static lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__21; static lean_object* l_Lean_Elab_Term_Quotation_getQuotKind___closed__29; lean_object* l_List_tail_x21___rarg(lean_object*); +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8452____closed__2; +static lean_object* l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__50; uint8_t l_Lean_Syntax_isTokenAntiquot(lean_object*); static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__24___closed__34; LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__6(lean_object*); @@ -60,6 +64,7 @@ lean_object* l_Lean_Elab_Term_addTermInfo_x27(lean_object*, lean_object*, lean_o static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__2; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__11___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__24___closed__12; +static lean_object* l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__51; static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot____1___closed__25; static lean_object* l_Lean_Elab_Term_Quotation_getQuotKind___closed__14; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___spec__1(size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -72,12 +77,10 @@ LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quota static lean_object* l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__13; LEAN_EXPORT lean_object* l_Lean_throwErrorAt___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__19(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__11(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7296__declRange___closed__1; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8636____closed__3; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__24___closed__6; lean_object* lean_mk_empty_array_with_capacity(lean_object*); static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__24___closed__68; -static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__49; -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7273__declRange(lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__4; lean_object* l_Lean_Name_str___override(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_markRhss___spec__9___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -89,11 +92,12 @@ static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_ LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_quoteList___at_Lean_Elab_Term_Quotation_ArrayStxBuilder_build___spec__2(lean_object*); LEAN_EXPORT lean_object* l_Lean_throwErrorAt___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__19___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__42; lean_object* l_Lean_RBNode_find___at_Lean_sanitizeName___spec__1(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7434__declRange(lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8567__declRange(lean_object*); static lean_object* l_Lean_Elab_Term_Quotation_ArrayStxBuilder_empty___closed__1; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7250____closed__3; +static lean_object* l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__39; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__12; +static lean_object* l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__65; lean_object* l_List_filterTRAux___at_Lean_resolveGlobalConstCore___spec__1(lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__10___closed__1; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__23___closed__1; @@ -104,7 +108,6 @@ static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_ LEAN_EXPORT uint8_t l_List_beq___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__5(lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__24___closed__13; static lean_object* l_Array_foldrMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__5; -static lean_object* l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__21; static lean_object* l_Lean_throwUnknownConstant___at_Lean_Elab_Term_Quotation_getQuotKind___spec__6___closed__2; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__24___closed__14; uint8_t l_Lean_isLitKind(lean_object*); @@ -112,6 +115,7 @@ static lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__26; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__9___closed__6; static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot____1___closed__44; static lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__10___closed__1; +static lean_object* l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__46; lean_object* l_Array_eraseIdx___rarg(lean_object*, lean_object*); uint8_t lean_usize_dec_eq(size_t, size_t); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__2___closed__21; @@ -134,35 +138,37 @@ static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation_____ lean_object* l_List_mapTRAux___at_Lean_resolveGlobalConstCore___spec__2(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__28(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__13(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__19; LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__26___closed__3; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__24___closed__22; LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_resolveSectionVariable___boxed(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7388__declRange(lean_object*); -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7480__declRange___closed__2; lean_object* l_Lean_log___at_Lean_Elab_Term_exceptionToSorry___spec__2(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__25; static lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__34; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__23___closed__17; lean_object* l_Lean_Meta_mkConstWithFreshMVarLevels(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__24___lambda__3___closed__27; +static lean_object* l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__86; LEAN_EXPORT lean_object* l_Std_Format_joinSep___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__11(lean_object*, lean_object*); static lean_object* l_List_foldlM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__17___closed__9; lean_object* l_Lean_Syntax_antiquotSuffixSplice_x3f(lean_object*); -static lean_object* l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__23; lean_object* l_Lean_SourceInfo_fromRef(lean_object*, uint8_t); static lean_object* l___private_Init_Meta_0__Lean_quoteArray___at_Lean_Elab_Term_Quotation_ArrayStxBuilder_build___spec__1___closed__3; LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_markRhss(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8682____closed__2; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__24___lambda__3___closed__4; +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8590__declRange(lean_object*); lean_object* l___private_Init_Util_0__outOfBounds___rarg(lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__37; static lean_object* l_List_mapM_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__4___closed__9; +static lean_object* l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__6; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__24___lambda__2___closed__8; static lean_object* l_Lean_throwUnknownConstant___at_Lean_Elab_Term_Quotation_getQuotKind___spec__6___closed__1; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_noOpMatchAdaptPats___closed__3; LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_List_mapTRAux___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__20(lean_object*, lean_object*); lean_object* l_List_filterMap___at_Lean_resolveGlobalConst___spec__1(lean_object*); -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7365__declRange___closed__4; static lean_object* l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__6; lean_object* lean_array_uset(lean_object*, size_t, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_throwUnsupportedSyntax___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -170,17 +176,19 @@ static lean_object* l_List_foldlM___at___private_Lean_Elab_Quotation_0__Lean_Ela lean_object* l_List_unzip___rarg(lean_object*); static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot____1___closed__10; static lean_object* l_List_foldlM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__17___closed__4; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7388____closed__1; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8475____closed__1; static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot____1___closed__32; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7342____closed__2; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8636__declRange___closed__1; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__23___closed__8; LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__16___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__19___boxed(lean_object**); static lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__11___closed__6; +static lean_object* l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__80; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_hasNoErrorIfUnused___closed__2; LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__24___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__9; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__7(size_t, size_t, lean_object*); +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8498__declRange___closed__3; LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__23___closed__9; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__24___closed__2; @@ -193,13 +201,12 @@ LEAN_EXPORT lean_object* l_Lean_throwUnknownConstant___at_Lean_Elab_Term_Quotati LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_quoteList___at_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___spec__1(lean_object*); static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__24___closed__52; static lean_object* l_Lean_Elab_Term_Quotation_getQuotKind___closed__16; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7319__declRange___closed__1; size_t lean_usize_sub(size_t, size_t); -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7273__declRange___closed__2; static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot____1___closed__11; +static lean_object* l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__62; +static lean_object* l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__54; LEAN_EXPORT lean_object* l_Lean_resolveGlobalConst___at_Lean_Elab_Term_Quotation_getQuotKind___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__10___closed__4; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7480____closed__2; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__24___closed__18; LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__10(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___closed__23; @@ -208,10 +215,10 @@ static lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__9; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__24___closed__5; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_deduplicate___lambda__3___closed__1; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__5___closed__1; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227__declRange___closed__2; lean_object* lean_st_ref_get(lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__10___closed__20; LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___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_Term_Quotation_ArrayStxBuilder_mkNode___closed__33; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__10; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__24___closed__57; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__7___boxed(lean_object*, lean_object*, lean_object*); @@ -223,13 +230,17 @@ static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_ LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__5(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__27; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___closed__6; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8429____closed__2; LEAN_EXPORT uint8_t l_Array_anyMUnsafe_any___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__10(lean_object*, size_t, size_t); static lean_object* l_Lean_Elab_Term_Quotation_getQuotKind___closed__7; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7319____closed__2; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8498____closed__2; static lean_object* l_Lean_Elab_Term_Quotation_getQuotKind___closed__24; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__17___closed__2; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_deduplicate___lambda__1___closed__3; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8429____closed__1; +static lean_object* l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__8; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__32; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8498____closed__1; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabNoErrorIfUnused(lean_object*); static lean_object* l_Lean_Elab_Term_Quotation_mkTuple___closed__12; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__2___closed__2; @@ -239,17 +250,17 @@ static lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__2; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__24___closed__11; LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__9___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Name_mkStr2(lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__29; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__24___closed__30; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__24___lambda__3___closed__29; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7273____closed__3; -static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__43; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8613__declRange___closed__3; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___closed__13; +static lean_object* l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__84; lean_object* l_Array_toSubarray___rarg(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_List_format___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__10(lean_object*); static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__24___closed__28; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__6; +static lean_object* l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__44; lean_object* lean_array_push(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7411__declRange(lean_object*); static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__24___closed__3; static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot____1___closed__51; lean_object* lean_array_get_size(lean_object*); @@ -257,21 +268,23 @@ static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_ static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__26___closed__7; LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__8(size_t, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7250__declRange(lean_object*); lean_object* lean_string_append(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot____1___closed__48; +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8498__declRange(lean_object*); static lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__23; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7434____closed__3; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__24___closed__45; static lean_object* l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__12; LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__10___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8429__declRange(lean_object*); lean_object* l_Lean_Name_mkStr3(lean_object*, lean_object*, lean_object*); lean_object* l_List_range(lean_object*); -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7411____closed__3; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8406____closed__1; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__20; lean_object* l_Lean_MessageData_ofList(lean_object*); +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8590____closed__3; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__24___lambda__3___closed__30; LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__7___boxed(lean_object*); +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8636__declRange___closed__2; static lean_object* l_List_mapM_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__4___closed__1; LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__26___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_resolveNamespaceCore___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -287,9 +300,10 @@ static lean_object* l_Lean_Elab_Term_Quotation_getQuotKind___closed__2; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__24___closed__54; LEAN_EXPORT lean_object* l_List_mapM_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__6; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8567____closed__3; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__24___closed__62; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__24___lambda__3___closed__18; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7342____closed__3; +static lean_object* l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__17; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__24___lambda__3___closed__5; static lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__3___closed__1; LEAN_EXPORT lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__9(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -300,7 +314,7 @@ LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quota LEAN_EXPORT lean_object* l_Lean_Elab_resolveGlobalConstWithInfos___at_Lean_Elab_Term_Quotation_getQuotKind___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__3(size_t, size_t, lean_object*); static lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__44; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7296__declRange___closed__4; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8636__declRange___closed__4; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__2___closed__6; static lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__1; static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__1; @@ -310,12 +324,13 @@ static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_ static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__23___closed__3; lean_object* l_Lean_throwError___at_Lean_Elab_Term_expandDeclId___spec__11(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__14___closed__18; +static lean_object* l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__31; static lean_object* l_List_mapM_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__4___closed__8; LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7411__declRange___closed__3; LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_deduplicate___lambda__3___boxed(lean_object*, lean_object*); static lean_object* l_panic___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__1___closed__1; lean_object* l_List_head_x21___rarg(lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__82; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__24___lambda__3___closed__15; LEAN_EXPORT lean_object* l_List_mapM_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__4___lambda__1___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Name_mkStr5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -324,6 +339,7 @@ static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabNoErrorIfUnused_ static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__16___closed__7; LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_mkTuple(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__11; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_findUsedAlts___closed__1; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__14___closed__5; static lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__13; @@ -342,6 +358,7 @@ static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_ static lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__41; static lean_object* l_List_format___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__10___closed__9; static lean_object* l___private_Init_Meta_0__Lean_quoteList___at_Lean_Elab_Term_Quotation_ArrayStxBuilder_build___spec__2___closed__4; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8429____closed__4; uint8_t lean_usize_dec_lt(size_t, size_t); static lean_object* l_Lean_Elab_Term_Quotation_getQuotKind___closed__1; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__2___closed__23; @@ -351,6 +368,7 @@ LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotati static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__23___closed__18; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__12___closed__1; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__10___closed__9; +static lean_object* l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__69; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__14___closed__15; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__12___boxed(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__3; @@ -361,44 +379,44 @@ static lean_object* l_List_mapM_loop___at___private_Lean_Elab_Quotation_0__Lean_ static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__24___closed__33; static lean_object* l_List_format___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__10___closed__4; LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__12___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7342_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7296_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7319_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7411_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7365_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7388_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7273_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7250_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7457_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7480_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7434_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7526_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7503_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__70; +LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8613_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8636_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8590_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8682_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8659_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8452_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8498_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8475_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8544_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8567_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8521_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8429_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8406_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383_(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__24___lambda__3___closed__7; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227__declRange___closed__4; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__2; LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_deduplicate___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__1; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__24___closed__65; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_deduplicate___lambda__1___closed__1; lean_object* lean_nat_add(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7319__declRange(lean_object*); +static lean_object* l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__35; static lean_object* l_Lean_Elab_Term_Quotation_getQuotKind___closed__21; static lean_object* l_Lean_Elab_Term_Quotation_mkTuple___closed__3; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__23___closed__21; static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot____1___closed__24; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__24___lambda__3___closed__24; static lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__18; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__2; LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__20___boxed(lean_object**); LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__21(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Init_Meta_0__Lean_quoteList___at_Lean_Elab_Term_Quotation_ArrayStxBuilder_build___spec__2___closed__6; static lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__5; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7457__declRange___closed__3; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__24___closed__41; +static lean_object* l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__36; static lean_object* l_Lean_Elab_Term_Quotation_getQuotKind___closed__8; LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__10; static lean_object* l_Lean_Elab_Term_Quotation_getQuotKind___closed__23; LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot____1___closed__7; @@ -406,6 +424,7 @@ lean_object* l_Array_zip___rarg(lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__26___closed__4; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__2; static lean_object* l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__2; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__8; static lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__30; LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__24___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_deduplicate___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -421,7 +440,7 @@ size_t lean_uint64_to_usize(uint64_t); static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot____1___closed__16; LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__9(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__42; -static lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__1; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8682____closed__3; static lean_object* l_Lean_Elab_Term_Quotation_mkTuple___closed__5; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__24___closed__49; LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -442,36 +461,38 @@ static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_ static lean_object* l_Array_foldrMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__3; LEAN_EXPORT lean_object* l_List_replace___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_markRhss___spec__8(lean_object*, lean_object*, lean_object*); static lean_object* l_List_mapM_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__4___closed__7; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8498__declRange___closed__2; LEAN_EXPORT lean_object* l_List_mapTRAux___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__9___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__10___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7388__declRange___closed__3; static lean_object* l_Lean_Elab_Term_Quotation_tryAddSyntaxNodeKindInfo___closed__1; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__24___closed__24; LEAN_EXPORT lean_object* l_Lean_throwErrorAt___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__21(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_deduplicate___lambda__1___closed__4; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7296____closed__4; lean_object* l_Array_mapMUnsafe_map___at___aux__Init__NotationExtra______macroRules__term_x25_x5b___x7c___x5d__1___spec__3(size_t, size_t, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwErrorAt___at_Lean_Elab_Term_Quotation_getQuotKind___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__12; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__9___closed__10; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__2___closed__2; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7434__declRange___closed__2; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__24___closed__3; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__4; +static lean_object* l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__4; LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7503____closed__2; +static lean_object* l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__67; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8475____closed__3; static lean_object* l_List_format___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__10___closed__1; +static lean_object* l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__40; static lean_object* l_Array_foldrMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__8; LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_isLit_x3f(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__18(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7388__declRange___closed__2; static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot____1___closed__19; LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__16(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_quoteArray_go___at_Lean_Elab_Term_Quotation_ArrayStxBuilder_build___spec__3(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__9; static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot____1___closed__29; +static lean_object* l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__27; static lean_object* l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__15; lean_object* lean_array_fget(lean_object*, lean_object*); -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__7; uint8_t l_Lean_Option_get___at_Lean_getSanitizeNames___spec__1(lean_object*, lean_object*); static lean_object* l_List_foldlM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__17___closed__6; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__9___closed__7; @@ -479,7 +500,6 @@ static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_ static lean_object* l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__18; static lean_object* l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__3; LEAN_EXPORT lean_object* l_List_mapM_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__7(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7342__declRange___closed__3; uint8_t lean_nat_dec_eq(lean_object*, lean_object*); static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__9___closed__5; static lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__37; @@ -487,28 +507,30 @@ LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at___private_Lean_Elab_Quot LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__24(lean_object*, lean_object*, size_t, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot____1___closed__52; LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__8(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8452____closed__3; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__8; -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227__declRange(lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__5___closed__4; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__24___lambda__3___closed__25; lean_object* l___private_Init_Meta_0__Lean_getEscapedNameParts_x3f(lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__2___closed__18; +static lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__1; uint8_t l_Lean_Syntax_matchesNull(lean_object*, lean_object*); lean_object* l_Lean_Elab_throwUnsupportedSyntax___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabTermAux___spec__12___rarg(lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__2___closed__14; +static lean_object* l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__57; static lean_object* l_Lean_Elab_Term_Quotation_mkTuple___closed__14; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8452__declRange___closed__1; LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_markRhss___spec__9___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__14___closed__8; LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_checkUnusedAlts___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_st_ref_take(lean_object*, lean_object*); +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8452__declRange___closed__2; LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__27(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227__declRange___closed__1; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7273__declRange___closed__3; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__2___closed__25; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8406__declRange___closed__2; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__14___closed__9; static lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__3___closed__2; static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot____1___closed__54; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7434__declRange___closed__4; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__23___closed__6; static lean_object* l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__7; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__2___closed__5; @@ -516,7 +538,6 @@ LEAN_EXPORT lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Term_ static lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__45; lean_object* lean_nat_sub(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapIdxM_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__16; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__24___closed__13; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__5___closed__8; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__2___closed__4; @@ -524,24 +545,29 @@ static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_ static lean_object* l_List_format___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__10___closed__5; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__9___closed__3; static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot____1___closed__31; -static lean_object* l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__24; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8613____closed__1; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__26___closed__8; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___closed__10; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7434__declRange___closed__1; LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Elab_Term_Quotation_getQuotKind___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Array_foldrMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__7; static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabNoErrorIfUnused_declRange___closed__4; +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383__declRange(lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__3___boxed(lean_object*, lean_object*, lean_object*); +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8567__declRange___closed__3; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__14___closed__4; static lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__17; lean_object* l_Lean_Syntax_mkCApp(lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__8___closed__8; LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1(lean_object*); +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8544____closed__1; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__24___closed__36; static lean_object* l_Lean_Elab_Term_Quotation_tryAddSyntaxNodeKindInfo___closed__2; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__14___closed__17; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___closed__20; static lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__8; +static lean_object* l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__45; +static lean_object* l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__83; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8544____closed__2; static lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__4; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax_declRange(lean_object*); static lean_object* l_Lean_Elab_Term_Quotation_mkTuple___closed__17; @@ -549,7 +575,9 @@ LEAN_EXPORT lean_object* l_List_mapTRAux___at___private_Lean_Elab_Quotation_0__L static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__24___closed__8; static lean_object* l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_checkUnusedAlts___spec__2___closed__1; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__10___closed__12; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8406__declRange___closed__1; static lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__33; +static lean_object* l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__64; static lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__22; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___closed__15; static lean_object* l_Lean_Elab_Term_Quotation_mkTuple___closed__8; @@ -558,16 +586,15 @@ static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_ static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot____1___closed__47; static lean_object* l_Lean_Elab_Term_Quotation_commandElab__stx__quot_____closed__12; LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_ArrayStxBuilder_push(lean_object*, lean_object*); -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7296__declRange___closed__2; +static lean_object* l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__1; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___closed__3; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__19; lean_object* l_Lean_Elab_Term_elabTerm(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_Quotation_getQuotKind___closed__25; static lean_object* l_List_format___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__10___closed__2; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7503__declRange___closed__3; static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot____1___closed__38; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__2___closed__8; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7526____closed__2; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8659____closed__3; static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabNoErrorIfUnused_declRange___closed__7; lean_object* l_Lean_Name_toString(lean_object*, uint8_t); lean_object* l_Lean_Name_num___override(lean_object*, lean_object*); @@ -581,27 +608,31 @@ LEAN_EXPORT lean_object* l_Lean_throwError___at___private_Lean_Elab_Quotation_0_ static lean_object* l_Lean_Elab_Term_Quotation_getQuotKind___closed__13; static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot____1___closed__21; static lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__6; +LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_findUsedAlts_go(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot____1___closed__23; static lean_object* l_Lean_Elab_Term_Quotation_mkTuple___closed__9; +static lean_object* l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__26; LEAN_EXPORT lean_object* l_List_foldlM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__17___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_List_mapTRAux___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__9(lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7526__declRange___closed__3; static lean_object* l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__8; LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__13___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__24___closed__60; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___closed__7; +static lean_object* l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__58; lean_object* lean_array_fset(lean_object*, lean_object*, lean_object*); static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__24___lambda__3___closed__31; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__2___closed__22; static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabNoErrorIfUnused_declRange___closed__3; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__10___closed__14; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__14___closed__10; +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8475__declRange(lean_object*); static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__24___closed__47; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__24___closed__2; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___closed__24; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__24___lambda__2___closed__7; static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot____1___closed__41; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8406__declRange___closed__4; LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_match__syntax_expand___lambda__3(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_resolveNamespaceCore___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -614,10 +645,11 @@ LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quota LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__15___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Elab_Term_Quotation_getQuotKind___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__1; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7457____closed__2; LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__24___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_List_foldlM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__17___closed__2; -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7365__declRange(lean_object*); +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8544__declRange___closed__3; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383__declRange___closed__3; +static lean_object* l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__79; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__2___closed__7; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__2___closed__24; static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot____1___closed__42; @@ -632,32 +664,31 @@ LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at___private_Lean_Elab_Quot LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_findUsedAlts_go___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__24___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__24___closed__15; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7319__declRange___closed__4; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__5; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8429__declRange___closed__3; static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot____1___closed__53; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__7; -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7342__declRange(lean_object*); -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__14; LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__22___boxed(lean_object**); lean_object* lean_st_mk_ref(lean_object*, lean_object*); static lean_object* l_List_mapM_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__4___closed__11; +lean_object* l_Array_mkArray8___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8452__declRange(lean_object*); static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot____1___closed__55; LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_markRhss___spec__9(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_getId(lean_object*); static lean_object* l_Lean_Elab_Term_Quotation_getQuotKind___closed__31; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___closed__5; lean_object* l_Lean_Elab_addMacroStack___at_Lean_Elab_Term_instAddErrorMessageContextTermElabM___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8475__declRange___closed__3; static lean_object* l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__17; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__15; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__31; static lean_object* l_Lean_Elab_Term_Quotation_getQuotKind___closed__6; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__8___closed__6; LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__6(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__8; static lean_object* l_List_foldlM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__17___closed__5; LEAN_EXPORT uint8_t l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_hasNoErrorIfUnused(lean_object*); static lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__28; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__24___closed__1; +static lean_object* l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__20; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax(lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__16___closed__6; static lean_object* l_List_format___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__10___closed__8; @@ -671,8 +702,9 @@ static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_ LEAN_EXPORT lean_object* l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_checkUnusedAlts___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_Quotation_mkTuple___closed__1; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__26; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__3; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8452__declRange___closed__3; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__1; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__11; lean_object* l_Lean_addBuiltinDeclarationRanges(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_List_mapTRAux___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__12___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__13(lean_object*, lean_object*); lean_object* l_Function_comp___rarg(lean_object*, lean_object*, lean_object*); @@ -687,39 +719,38 @@ LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_mkTuple___boxed(lean_object* uint8_t l_Lean_Environment_contains(lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___closed__2; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__24___lambda__3___closed__11; +static lean_object* l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__43; static lean_object* l___private_Init_Meta_0__Lean_quoteList___at_Lean_Elab_Term_Quotation_ArrayStxBuilder_build___spec__2___closed__1; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__24___lambda__3___closed__20; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__2___closed__15; static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax_declRange___closed__1; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7411____closed__1; LEAN_EXPORT lean_object* l_List_forIn_loop___at_Lean_Elab_Term_Quotation_getQuotKind___spec__8___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__8___closed__4; static lean_object* l_List_foldlM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__17___closed__3; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8498__declRange___closed__4; LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__15(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_addConstInfo___at_Lean_Elab_Term_Quotation_getQuotKind___spec__7(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__24___closed__64; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8590____closed__2; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8429____closed__3; uint64_t lean_uint64_of_nat(lean_object*); LEAN_EXPORT lean_object* l_Lean_resolveGlobalConstCore___at_Lean_Elab_Term_Quotation_getQuotKind___spec__5___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_mkStrLit(lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__4; static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot____1___closed__2; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__10___closed__15; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7503__declRange___closed__4; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__30___closed__1; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7365____closed__3; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7250__declRange___closed__4; -static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__45; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__30___closed__3; LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_noOpMatchAdaptPats(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Quotation_getAntiquotationIds(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Array_foldrMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__6; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__5; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__10___closed__22; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7319__declRange___closed__2; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__17; static lean_object* l_Lean_Elab_Term_Quotation_getQuotKind___closed__19; -static lean_object* l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__22; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8406__declRange___closed__3; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___closed__26; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__24___closed__46; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__10(lean_object*, lean_object*, size_t, size_t, lean_object*); @@ -727,13 +758,11 @@ size_t lean_usize_modn(size_t, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_addNamedQuotInfo(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Init_Meta_0__Lean_quoteList___at_Lean_Elab_Term_Quotation_ArrayStxBuilder_build___spec__2___closed__7; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__24___lambda__2___closed__10; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7434____closed__1; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__14; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__9; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7411____closed__2; LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__24(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7388__declRange___closed__1; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7434____closed__2; -LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_initFn____x40_Lean_Elab_Quotation___hyg_19421_(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_initFn____x40_Lean_Elab_Quotation___hyg_20577_(lean_object*); +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8567__declRange___closed__1; LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__23___closed__20; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__3; @@ -743,36 +772,43 @@ LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at___private_Lean_Elab_Quot static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot____1___closed__12; uint8_t l_Array_isEmpty___rarg(lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__2___closed__5; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8590____closed__1; static lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__43; LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_List_format___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__10___closed__7; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8613__declRange___closed__1; +static lean_object* l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__3; extern lean_object* l_Lean_instInhabitedSyntax; extern lean_object* l_Lean_firstFrontendMacroScope; static lean_object* l_Lean_Elab_Term_Quotation_getQuotKind___closed__11; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__23___closed__10; static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax_declRange___closed__5; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__12(lean_object*, size_t, size_t, lean_object*); -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7503__declRange___closed__1; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__27; +static lean_object* l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__42; LEAN_EXPORT lean_object* l_List_mapM_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__10___closed__7; lean_object* l_Lean_mkSepArray(lean_object*, lean_object*); +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8521__declRange___closed__2; LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__30(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_List_mapM_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__4___closed__6; LEAN_EXPORT lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Term_Quotation_elabNoErrorIfUnused___spec__1___rarg(lean_object*); +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8613__declRange___closed__4; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___closed__3; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8659__declRange___closed__1; LEAN_EXPORT lean_object* l_List_mapTRAux___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__29(lean_object*, lean_object*); -static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__40; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__3; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__24___lambda__3___closed__19; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8659__declRange___closed__2; LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_getQuotKind(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_List_mapTRAux___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__12___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__13___closed__1; +static lean_object* l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__53; static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot____1___closed__26; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__24___lambda__2___closed__11; LEAN_EXPORT lean_object* l_Lean_resolveGlobalConstCore___at_Lean_Elab_Term_Quotation_getQuotKind___spec__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__24___closed__25; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7273____closed__4; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__15; LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__23(lean_object*); -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7411__declRange___closed__1; LEAN_EXPORT lean_object* l_Lean_throwErrorAt___at_Lean_Elab_Term_Quotation_getQuotKind___spec__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_String_dropRight(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_List_foldl___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_markRhss___spec__6___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_markRhss___spec__7(lean_object*, lean_object*); @@ -780,9 +816,10 @@ LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quota static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__5; static lean_object* l_Lean_Elab_throwUnsupportedSyntax___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__1___rarg___closed__1; static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot____1___closed__56; +static lean_object* l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__90; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__24___closed__11; static lean_object* l___private_Init_Meta_0__Lean_quoteList___at_Lean_Elab_Term_Quotation_ArrayStxBuilder_build___spec__2___closed__2; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__12; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8521____closed__3; static lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__12___closed__3; LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__24___closed__4; @@ -792,6 +829,7 @@ static lean_object* l_List_format___at___private_Lean_Elab_Quotation_0__Lean_Ela LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_ArrayStxBuilder_empty; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__14; LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__12; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__23___closed__16; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__10___closed__3; LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_resolveSectionVariable(lean_object*, lean_object*); @@ -815,28 +853,30 @@ static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabNoErrorIfUnused_ static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__2___closed__20; LEAN_EXPORT lean_object* l_Lean_HashSetImp_expand___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_markRhss___spec__4(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__8___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__75; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8498____closed__3; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8567____closed__2; LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7457____closed__1; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___closed__12; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__14___closed__12; LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__18___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7388____closed__3; LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__27___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Syntax_isAtom(lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__35; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8659__declRange___closed__4; LEAN_EXPORT lean_object* l_List_mapM_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT uint8_t l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_1115____at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3(lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__39; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__23___closed__7; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7273____closed__1; LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_addNamedQuotInfo___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Elab_Term_termElabAttribute; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__27___closed__1; LEAN_EXPORT uint8_t l_Array_anyMUnsafe_any___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__11(size_t, lean_object*, size_t, size_t); -static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__51; +static lean_object* l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__87; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__24___closed__19; lean_object* l_Lean_resolveGlobalName___at_Lean_Elab_Term_resolveName___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8406____closed__3; LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__19(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__24___closed__10; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__11; @@ -845,10 +885,10 @@ LEAN_EXPORT lean_object* l_List_beq___at___private_Lean_Elab_Quotation_0__Lean_E static lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__29; LEAN_EXPORT uint8_t l_Lean_HashSetImp_contains___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_checkUnusedAlts___spec__1(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__25; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7480____closed__3; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__10___closed__5; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8567____closed__1; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8475__declRange___closed__4; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__2___closed__16; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7526____closed__1; LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepFromSplice(lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__23___closed__24; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__10___closed__18; @@ -862,60 +902,66 @@ static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_ static lean_object* l_Lean_Elab_throwUnsupportedSyntax___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__1___rarg___closed__2; static lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__32; static lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__10; -static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__41; +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8406__declRange(lean_object*); LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__7(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7457____closed__3; static lean_object* l_Lean_Elab_Term_Quotation_commandElab__stx__quot_____closed__7; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__10___closed__16; LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_String_intercalate(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot____1___closed__28; static lean_object* l_Lean_Elab_Term_Quotation_getQuotKind___closed__17; +static lean_object* l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__61; lean_object* l_List_redLength___rarg(lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__8___closed__5; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__23___closed__12; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__24___closed__16; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8475__declRange___closed__2; LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__17___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__8___closed__1; LEAN_EXPORT lean_object* l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_checkUnusedAlts___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__24___lambda__3___boxed(lean_object**); LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__16___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot____1___closed__30; +static lean_object* l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__68; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8452__declRange___closed__4; static lean_object* l_Lean_Elab_Term_Quotation_mkTuple___closed__6; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8613____closed__2; lean_object* l_Lean_Expr_const___override(lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__10___closed__2; LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__20(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__29(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__23; static lean_object* l_Array_foldrMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__2; +static lean_object* l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__59; static lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__7; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__24___closed__5; LEAN_EXPORT lean_object* l_Lean_resolveGlobalConstCore___at_Lean_Elab_Term_Quotation_getQuotKind___spec__5___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_getNumArgs(lean_object*); +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__13; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__7; lean_object* l_Array_mkArray5___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_addConstInfo___at_Lean_Elab_Term_Quotation_getQuotKind___spec__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_mkArray1___rarg(lean_object*); static lean_object* l___private_Init_Meta_0__Lean_quoteList___at_Lean_Elab_Term_Quotation_ArrayStxBuilder_build___spec__2___closed__5; static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot____1___closed__5; LEAN_EXPORT lean_object* l_List_foldlM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__17(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7480_(lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7526_(lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7503_(lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7296_(lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7342_(lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7319_(lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7411_(lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7457_(lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227_(lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7273_(lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7250_(lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7365_(lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7388_(lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7434_(lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8521_(lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8498_(lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8544_(lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8636_(lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8682_(lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8659_(lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8452_(lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8475_(lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8590_(lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8567_(lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8613_(lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383_(lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8429_(lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8406_(lean_object*); static lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__11___closed__3; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7503____closed__1; +static lean_object* l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__66; lean_object* l_Lean_Syntax_setArg(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7480__declRange(lean_object*); static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot____1___closed__18; lean_object* lean_environment_main_module(lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -937,22 +983,30 @@ static lean_object* l_Lean_Elab_Term_Quotation_getQuotKind___closed__27; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__24___closed__12; uint8_t lean_nat_dec_le(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_markRhss___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383__declRange___closed__2; static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot____1___closed__15; +static lean_object* l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__56; LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_markRhss___spec__9___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_List_mapM_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__4___lambda__1(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_Quotation_commandElab__stx__quot_____closed__10; static lean_object* l_Lean_Elab_Term_Quotation_match__syntax_expand___lambda__3___closed__1; static lean_object* l_Lean_Elab_Term_Quotation_getQuotKind___closed__4; +static lean_object* l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__77; static lean_object* l_List_mapM_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__4___closed__3; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8567__declRange___closed__2; LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__14___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__2___closed__10; +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8521__declRange(lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8636__declRange(lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__2; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8475__declRange___closed__1; static lean_object* l_Lean_Elab_Term_Quotation_match__syntax_expand___lambda__4___closed__1; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__24___closed__63; lean_object* l_Lean_Syntax_getArgs(lean_object*); static lean_object* l_Lean_Elab_Term_Quotation_getQuotKind___closed__10; lean_object* l_Lean_Name_append(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_match__syntax_expand___lambda__1(lean_object*); +static lean_object* l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__5; LEAN_EXPORT uint8_t l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__7(lean_object*); lean_object* l_Lean_Syntax_getAntiquotSpliceSuffix(lean_object*); lean_object* l_Lean_Syntax_getKind(lean_object*); @@ -962,15 +1016,14 @@ LEAN_EXPORT lean_object* l_List_mapTRAux___at___private_Lean_Elab_Quotation_0__L LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_hasNoErrorIfUnused___boxed(lean_object*); lean_object* l_Lean_MacroScopesView_review(lean_object*); static lean_object* l_Lean_Elab_Term_Quotation_getQuotKind___closed__20; +static lean_object* l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__76; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__14___closed__11; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__16___closed__8; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7273____closed__2; lean_object* l_Lean_quoteNameMk(lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_hasNoErrorIfUnused___closed__1; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7365__declRange___closed__3; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7365____closed__1; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7365____closed__2; +static lean_object* l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__18; LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__15; LEAN_EXPORT lean_object* l_Lean_throwError___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__22___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Term_Quotation_elabNoErrorIfUnused___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__10___closed__10; @@ -978,13 +1031,9 @@ LEAN_EXPORT lean_object* l_List_mapM_loop___at___private_Lean_Elab_Quotation_0__ static lean_object* l_Lean_Elab_Term_Quotation_match__syntax_expand___closed__2; lean_object* l_Lean_RBNode_find___at___private_Lean_Hygiene_0__Lean_sanitizeSyntaxAux___spec__2(lean_object*, lean_object*); static lean_object* l___private_Init_Meta_0__Lean_quoteArray_go___at_Lean_Elab_Term_Quotation_ArrayStxBuilder_build___spec__3___closed__2; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7503__declRange___closed__2; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227__declRange___closed__3; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__23___closed__19; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__13; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__24___closed__7; -static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__47; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7250____closed__2; lean_object* l_String_toSubstring_x27(lean_object*); LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__10(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_match__syntax_expand___lambda__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -994,10 +1043,15 @@ LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quota static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___closed__1; static lean_object* l_Lean_Elab_Term_Quotation_match__syntax_expand___lambda__4___closed__2; LEAN_EXPORT lean_object* l_Array_sequenceMap___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_deduplicate___spec__1___boxed(lean_object*, lean_object*); +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8544__declRange___closed__4; lean_object* l_Lean_Name_mkStr6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__14; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8636____closed__2; LEAN_EXPORT lean_object* l_List_foldl___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_markRhss___spec__6(lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__44; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__3(lean_object*, size_t, size_t, lean_object*); +static lean_object* l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__78; +static lean_object* l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__91; +static lean_object* l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__22; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__23___closed__11; lean_object* l_Array_sequenceMap___at___aux__Init__NotationExtra______macroRules__term_x25_x5b___x7c___x5d__1___spec__1(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__17(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1008,35 +1062,38 @@ lean_object* l_Array_mkArray7___rarg(lean_object*, lean_object*, lean_object*, l lean_object* l_Array_mkArray2___rarg(lean_object*, lean_object*); static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__24___closed__61; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__16___closed__2; +static lean_object* l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__30; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__24___closed__31; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__1; static lean_object* l_Array_foldrMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__1; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7250____closed__1; static lean_object* l___private_Init_Meta_0__Lean_quoteArray_go___at_Lean_Elab_Term_Quotation_ArrayStxBuilder_build___spec__3___closed__1; lean_object* l_Lean_addTrace___at_Lean_Elab_Term_traceAtCmdPos___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__12; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7480__declRange___closed__1; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__2___closed__3; static lean_object* l_List_mapM_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__4___closed__10; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8636____closed__1; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__1; +static lean_object* l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__28; LEAN_EXPORT lean_object* l_Lean_resolveNamespaceCore___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__27___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_adaptExpander(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___closed__3; lean_object* lean_nat_mul(lean_object*, lean_object*); -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7342____closed__1; static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot____1___closed__45; LEAN_EXPORT lean_object* l_Lean_throwErrorAt___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7411__declRange___closed__2; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7342__declRange___closed__1; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__24___closed__53; LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot____1(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__37; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___closed__4; lean_object* l_Lean_Syntax_mkNameLit(lean_object*, lean_object*); +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8429__declRange___closed__2; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__13___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__24___closed__42; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__9___closed__1; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383__declRange___closed__4; static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax_declRange___closed__2; lean_object* l_Lean_isTracingEnabledFor___at_Lean_Elab_Term_traceAtCmdPos___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_sequenceMap_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_deduplicate___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__10; static lean_object* l___private_Init_Meta_0__Lean_quoteList___at_Lean_Elab_Term_Quotation_ArrayStxBuilder_build___spec__2___closed__3; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__24___closed__67; lean_object* lean_st_ref_set(lean_object*, lean_object*, lean_object*); @@ -1049,8 +1106,10 @@ static lean_object* l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___clos static lean_object* l_Lean_Elab_Term_Quotation_commandElab__stx__quot_____closed__2; static lean_object* l_List_mapM_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__4___closed__4; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8544__declRange___closed__1; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__25; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7365__declRange___closed__1; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8521____closed__1; +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8544__declRange(lean_object*); lean_object* l_Lean_addMessageContextFull___at_Lean_Meta_instAddMessageContextMetaM___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__12___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_setInfo(lean_object*, lean_object*); @@ -1059,41 +1118,43 @@ static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_ LEAN_EXPORT lean_object* l_panic___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___closed__5; LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__9___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__20; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8429__declRange___closed__1; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8521____closed__2; LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__14___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__1; lean_object* l_List_toArrayAux___rarg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_sequenceMap_loop___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Syntax_isNone(lean_object*); -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7388____closed__2; static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot____1___closed__27; lean_object* l_Lean_logAt___at___private_Lean_Elab_Term_0__Lean_Elab_Term_applyAttributesCore___spec__4(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7342__declRange___closed__2; -static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__46; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8682__declRange___closed__4; static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot____1___closed__40; +static lean_object* l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__34; +static lean_object* l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__88; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__24___closed__27; static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot____1___closed__9; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__10___closed__6; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__24___lambda__3___closed__36; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8406____closed__2; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__24___lambda__3___closed__13; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__2(size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__2; +static lean_object* l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__41; +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8659__declRange(lean_object*); static lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__12___closed__2; +static lean_object* l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__23; LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__16(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7296__declRange(lean_object*); lean_object* lean_panic_fn(lean_object*, lean_object*); -static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__50; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7250__declRange___closed__1; static lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__3___closed__3; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___closed__5; LEAN_EXPORT lean_object* l_Lean_throwError___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__6; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__9___closed__2; LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8613__declRange(lean_object*); static lean_object* l_Lean_Elab_Term_Quotation_ArrayStxBuilder_push___closed__2; LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_resolveSectionVariable_loop___boxed(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot____1___closed__4; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___closed__17; +static lean_object* l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__55; lean_object* l_Lean_Syntax_getAntiquotSpliceContents(lean_object*); static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__24___lambda__3___closed__34; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__5___closed__7; @@ -1115,34 +1176,37 @@ lean_object* l_Lean_Syntax_getTailPos_x3f(lean_object*, uint8_t); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__2___closed__11; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__24___closed__37; LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__9(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8659____closed__2; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepFromSplice___closed__2; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7296__declRange___closed__3; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383__declRange___closed__1; static lean_object* l_List_mapTRAux___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__12___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__13___closed__3; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8567__declRange___closed__4; LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__12___closed__1; static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax_declRange___closed__3; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__24___closed__32; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__24___closed__10; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7457__declRange___closed__2; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7296____closed__3; static lean_object* l_Lean_Elab_Term_Quotation_commandElab__stx__quot_____closed__3; LEAN_EXPORT lean_object* l_Array_sequenceMap_loop___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__16; +static lean_object* l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__13; LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_adaptRhs(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__22(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__10___closed__17; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7411__declRange___closed__4; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__16___closed__5; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___closed__9; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__14___closed__7; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8429__declRange___closed__4; static lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__35; static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax_declRange___closed__6; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__9; +LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__7(lean_object*, size_t, size_t, lean_object*); static lean_object* l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__19; LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_markRhss___spec__9___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_1115____at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3___boxed(lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__49; lean_object* lean_string_length(lean_object*); -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7250__declRange___closed__2; +static lean_object* l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__16; uint8_t l___private_Init_Data_Option_Basic_0__beqOption____x40_Init_Data_Option_Basic___hyg_1115____at___private_Lean_Meta_Basic_0__Lean_Meta_beqInfoCacheKey____x40_Lean_Meta_Basic___hyg_377____spec__1(lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__10___closed__8; extern lean_object* l_Lean_Elab_unsupportedSyntaxExceptionId; @@ -1155,10 +1219,9 @@ static lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__39; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__24___closed__43; LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_resolveSectionVariable_loop(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Syntax_isEscapedAntiquot(lean_object*); +static lean_object* l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__7; LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_Quotation_commandElab__stx__quot_____closed__4; -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7503__declRange(lean_object*); -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__13; LEAN_EXPORT lean_object* l_Lean_throwError___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__22(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__24___lambda__3___closed__26; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__34; @@ -1166,19 +1229,22 @@ LEAN_EXPORT lean_object* l_Lean_throwUnknownConstant___at_Lean_Elab_Term_Quotati lean_object* l_List_lengthTRAux___rarg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__5___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_ReaderT_pure___at_Lean_Elab_Term_addTermInfo___spec__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8521__declRange___closed__3; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_deduplicate___lambda__1___closed__2; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8682__declRange___closed__1; LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepFromSplice___boxed(lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__14___closed__16; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7480____closed__1; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__4; static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot____1___closed__22; LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabNoErrorIfUnused(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__11___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_Term_Quotation_stxQuot_expand___closed__24; LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8659____closed__1; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8682__declRange___closed__2; lean_object* l_Lean_Syntax_getArg(lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___closed__2; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__9; LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_quoteArray___at_Lean_Elab_Term_Quotation_ArrayStxBuilder_build___spec__1(lean_object*); static lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__11___closed__7; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepFromSplice___closed__1; @@ -1187,38 +1253,41 @@ static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_ static lean_object* l_Lean_Elab_Term_Quotation_commandElab__stx__quot_____closed__8; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__13; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__24___closed__55; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7526____closed__3; static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot____1___closed__33; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8544__declRange___closed__2; lean_object* l_Array_mkArray3___rarg(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__71; +static lean_object* l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__63; LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__29___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7526__declRange___closed__2; -static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__48; +static lean_object* l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__24; LEAN_EXPORT lean_object* l_Array_sequenceMap_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_deduplicate___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_HashSetImp_insert___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_markRhss___spec__2(lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__10___closed__21; LEAN_EXPORT lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Term_Quotation_elabNoErrorIfUnused___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8475____closed__2; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8636__declRange___closed__3; static lean_object* l_Lean_Elab_Term_Quotation_commandElab__stx__quot_____closed__6; lean_object* l_Array_findIdx_x3f_loop___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7319__declRange___closed__3; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__14___closed__13; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7365__declRange___closed__2; static lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__31; +static lean_object* l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__73; lean_object* l_Lean_Syntax_antiquotSpliceKind_x3f(lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__14; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8590__declRange___closed__4; LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__14(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabNoErrorIfUnused___closed__1; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7480__declRange___closed__4; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__28; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__9___closed__8; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7296____closed__1; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__24___lambda__3___closed__28; lean_object* l_Lean_Syntax_getAtomVal(lean_object*); static lean_object* l_Lean_Elab_Term_Quotation_mkTuple___closed__7; static lean_object* l_Lean_resolveGlobalConst___at_Lean_Elab_Term_Quotation_getQuotKind___spec__3___closed__2; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__15; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__13(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*); +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8682____closed__1; uint8_t l_List_isEmpty___rarg(lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__6(lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*); +static lean_object* l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__81; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__2___closed__19; LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot____1___closed__43; @@ -1226,29 +1295,33 @@ LEAN_EXPORT lean_object* l_List_mapM_loop___at___private_Lean_Elab_Quotation_0__ lean_object* l_Lean_Syntax_antiquotKinds(lean_object*); lean_object* l_panic___at_Lean_Name_getString_x21___spec__1(lean_object*); static lean_object* l_Lean_Elab_Term_Quotation_getQuotKind___closed__26; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8521__declRange___closed__1; LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_quoteList___at_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___spec__1___boxed(lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__13___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_sequenceMap___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_deduplicate___spec__1(lean_object*, lean_object*); +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8544____closed__3; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__14___closed__1; static lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__12; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepFromSplice___closed__4; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7503____closed__3; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8590__declRange___closed__2; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8521__declRange___closed__4; +static lean_object* l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__32; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__24___closed__56; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__3; +static lean_object* l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__10; lean_object* l_Lean_RBNode_insert___at_Lean_NameMap_insert___spec__1___rarg(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__15___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Name_mkStr4(lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7526__declRange___closed__1; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__6; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__24___closed__66; -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7457__declRange(lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__5; LEAN_EXPORT lean_object* l_Array_sequenceMap___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__1(lean_object*, lean_object*); +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8452____closed__4; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_noOpMatchAdaptPats___closed__1; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__30; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__26___closed__6; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__24___lambda__3___closed__33; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_noOpMatchAdaptPats___closed__2; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7388__declRange___closed__4; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__10___closed__11; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__24___closed__20; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__22; @@ -1260,45 +1333,43 @@ LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Elab_Term_Quotation static lean_object* l_List_foldlM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__17___closed__10; static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabNoErrorIfUnused___closed__2; static lean_object* l___private_Init_Meta_0__Lean_quoteArray___at_Lean_Elab_Term_Quotation_ArrayStxBuilder_build___spec__1___closed__1; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8613____closed__3; LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__25(lean_object*, lean_object*, lean_object*); static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__24___lambda__3___closed__17; -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7526__declRange(lean_object*); +static lean_object* l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__85; LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__14___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___closed__19; LEAN_EXPORT lean_object* l_Lean_HashSetImp_moveEntries___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_markRhss___spec__5(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___spec__2(lean_object*, size_t, size_t, lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__6___closed__1; static lean_object* l_Lean_Elab_Term_Quotation_getQuotKind___closed__12; +static lean_object* l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__52; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__14___closed__2; static lean_object* l_Lean_Elab_Term_Quotation_mkTuple___closed__16; lean_object* l_Lean_Syntax_getCanonicalAntiquot(lean_object*); static lean_object* l_Lean_resolveGlobalConst___at_Lean_Elab_Term_Quotation_getQuotKind___spec__3___closed__1; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__27___closed__2; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7457__declRange___closed__1; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__24___lambda__2___closed__9; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__24___lambda__3___closed__8; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7273__declRange___closed__1; static lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__11___closed__2; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__23___closed__23; static lean_object* l_Lean_Elab_Term_Quotation_getQuotKind___closed__22; static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot____1___closed__17; LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_ArrayStxBuilder_build(lean_object*); LEAN_EXPORT lean_object* l_Lean_throwError___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__26(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8659__declRange___closed__3; lean_object* l_Lean_throwError___at_Lean_Elab_Term_synthesizeInstMVarCore___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7526__declRange___closed__4; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__11; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__2___closed__9; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7319____closed__1; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__24___closed__50; lean_object* lean_nat_to_int(lean_object*); +static lean_object* l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__38; +static lean_object* l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__21; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__9___closed__9; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_markRhss___spec__9___lambda__1___closed__2; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__33; LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_findUsedAlts_go___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_List_appendTR___rarg(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__16; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7342__declRange___closed__4; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7273__declRange___closed__4; lean_object* l_Lean_Syntax_antiquotKind_x3f(lean_object*); static lean_object* l_Lean_resolveGlobalConst___at_Lean_Elab_Term_Quotation_getQuotKind___spec__3___closed__3; LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1317,6 +1388,7 @@ LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand(lean_object*, static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabNoErrorIfUnused___closed__3; lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Syntax_SepArray_getElems___spec__1(lean_object*, size_t, size_t, lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__23___closed__13; +static lean_object* l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__72; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__24___closed__6; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_findUsedAlts_go___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_mkHashSet___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_markRhss___spec__1(lean_object*); @@ -1328,14 +1400,15 @@ static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_ static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__9___closed__4; static lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__11___closed__5; static lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__11; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7250__declRange___closed__3; LEAN_EXPORT lean_object* l_List_elem___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_markRhss___spec__3___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__9___rarg(lean_object*); LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__10___boxed(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot____1___closed__35; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7457__declRange___closed__4; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__24___lambda__3___closed__2; +static lean_object* l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__60; +static lean_object* l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__47; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__5___closed__3; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8590__declRange___closed__1; static lean_object* l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot____1___closed__36; static lean_object* l_Lean_Elab_Term_Quotation_commandElab__stx__quot_____closed__5; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__24___lambda__3___closed__14; @@ -1344,6 +1417,7 @@ lean_object* l_Lean_Elab_getBetterRef(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__4___boxed(lean_object*, lean_object*, lean_object*); uint8_t lean_string_dec_eq(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__30(lean_object*); +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8452____closed__1; LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_tryAddSyntaxNodeKindInfo(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__19; LEAN_EXPORT lean_object* l_List_mapM_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1351,14 +1425,17 @@ static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_ uint8_t lean_nat_dec_lt(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__5; static lean_object* l_Lean_Elab_Term_Quotation_match__syntax_expand___closed__1; +static lean_object* l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__74; static lean_object* l_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__1; uint8_t l_Lean_Syntax_isIdent(lean_object*); static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__9; -static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7434__declRange___closed__3; +static lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8613__declRange___closed__2; static lean_object* l_Lean_Elab_Term_Quotation_mkTuple___closed__10; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__29; +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8682__declRange(lean_object*); uint8_t l_Lean_Syntax_isAntiquotSplice(lean_object*); static lean_object* l_List_mapM_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__4___closed__1; +static lean_object* l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__89; static lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___closed__4; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___spec__1(size_t x_1, size_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: @@ -3514,6 +3591,2270 @@ lean_ctor_set(x_9, 0, x_8); return x_9; } } +static lean_object* _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("Syntax.node", 11); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__1; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__3() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("Syntax", 6); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__4() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("node", 4); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__3; +x_2 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__4; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__1; +x_2 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__3; +x_3 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__4; +x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); +return x_4; +} +} +static lean_object* _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__7() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__6; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__8() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__6; +x_2 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__9() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__8; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__10() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__7; +x_2 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__9; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set(x_3, 1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__11() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("info", 4); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__12() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__11; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__13() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__11; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__14() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("Syntax.node8", 12); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__15() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__14; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__16() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("node8", 5); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__17() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__3; +x_2 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__16; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__18() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__1; +x_2 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__3; +x_3 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__16; +x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); +return x_4; +} +} +static lean_object* _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__19() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__18; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__20() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__18; +x_2 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__21() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__20; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__22() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__19; +x_2 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__21; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set(x_3, 1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__23() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_unsigned_to_nat(10u); +x_2 = lean_mk_empty_array_with_capacity(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__24() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("Syntax.node7", 12); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__25() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__24; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__26() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("node7", 5); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__27() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__3; +x_2 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__26; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__28() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__1; +x_2 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__3; +x_3 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__26; +x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); +return x_4; +} +} +static lean_object* _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__29() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__28; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__30() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__28; +x_2 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__31() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__30; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__32() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__29; +x_2 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__31; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set(x_3, 1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__33() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_unsigned_to_nat(9u); +x_2 = lean_mk_empty_array_with_capacity(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__34() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("Syntax.node6", 12); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__35() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__34; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__36() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("node6", 5); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__37() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__3; +x_2 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__36; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__38() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__1; +x_2 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__3; +x_3 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__36; +x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); +return x_4; +} +} +static lean_object* _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__39() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__38; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__40() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__38; +x_2 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__41() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__40; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__42() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__39; +x_2 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__41; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set(x_3, 1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__43() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("Syntax.node5", 12); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__44() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__43; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__45() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("node5", 5); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__46() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__3; +x_2 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__45; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__47() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__1; +x_2 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__3; +x_3 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__45; +x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); +return x_4; +} +} +static lean_object* _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__48() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__47; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__49() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__47; +x_2 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__50() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__49; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__51() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__48; +x_2 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__50; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set(x_3, 1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__52() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("Syntax.node4", 12); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__53() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__52; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__54() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("node4", 5); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__55() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__3; +x_2 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__54; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__56() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__1; +x_2 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__3; +x_3 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__54; +x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); +return x_4; +} +} +static lean_object* _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__57() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__56; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__58() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__56; +x_2 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__59() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__58; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__60() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__57; +x_2 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__59; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set(x_3, 1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__61() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("Syntax.node3", 12); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__62() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__61; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__63() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("node3", 5); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__64() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__3; +x_2 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__63; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__65() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__1; +x_2 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__3; +x_3 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__63; +x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); +return x_4; +} +} +static lean_object* _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__66() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__65; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__67() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__65; +x_2 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__68() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__67; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__69() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__66; +x_2 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__68; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set(x_3, 1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__70() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("Syntax.node2", 12); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__71() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__70; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__72() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("node2", 5); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__73() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__3; +x_2 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__72; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__74() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__1; +x_2 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__3; +x_3 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__72; +x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); +return x_4; +} +} +static lean_object* _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__75() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__74; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__76() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__74; +x_2 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__77() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__76; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__78() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__75; +x_2 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__77; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set(x_3, 1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__79() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("Syntax.node1", 12); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__80() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__79; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__81() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("node1", 5); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__82() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__3; +x_2 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__81; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__83() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__1; +x_2 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__3; +x_3 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__81; +x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); +return x_4; +} +} +static lean_object* _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__84() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__83; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__85() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__83; +x_2 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__86() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__85; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__87() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__84; +x_2 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__86; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set(x_3, 1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__88() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("quotedName", 10); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__89() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__1; +x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__2; +x_3 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__3; +x_4 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__88; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; +} +} +static lean_object* _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__90() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes(".", 1); +return x_1; +} +} +static lean_object* _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__91() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("`", 1); +return x_1; +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +_start: +{ +lean_object* x_10; lean_object* x_11; lean_object* x_528; lean_object* x_578; lean_object* x_579; +x_578 = lean_box(0); +lean_inc(x_2); +x_579 = l___private_Init_Meta_0__Lean_getEscapedNameParts_x3f(x_578, x_2); +if (lean_obj_tag(x_579) == 0) +{ +lean_object* x_580; +x_580 = l_Lean_quoteNameMk(x_2); +if (lean_obj_tag(x_1) == 0) +{ +lean_object* x_581; +x_581 = lean_ctor_get(x_1, 0); +lean_inc(x_581); +x_10 = x_580; +x_11 = x_581; +goto block_527; +} +else +{ +x_528 = x_580; +goto block_577; +} +} +else +{ +lean_object* x_582; lean_object* x_583; lean_object* x_584; lean_object* x_585; lean_object* x_586; lean_object* x_587; lean_object* x_588; lean_object* x_589; lean_object* x_590; lean_object* x_591; lean_object* x_592; +lean_dec(x_2); +x_582 = lean_ctor_get(x_579, 0); +lean_inc(x_582); +lean_dec(x_579); +x_583 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__90; +x_584 = l_String_intercalate(x_583, x_582); +x_585 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__91; +x_586 = lean_string_append(x_585, x_584); +lean_dec(x_584); +x_587 = lean_box(2); +x_588 = l_Lean_Syntax_mkNameLit(x_586, x_587); +x_589 = l___private_Init_Meta_0__Lean_quoteArray___at_Lean_Elab_Term_Quotation_ArrayStxBuilder_build___spec__1___closed__3; +x_590 = lean_array_push(x_589, x_588); +x_591 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__89; +x_592 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_592, 0, x_587); +lean_ctor_set(x_592, 1, x_591); +lean_ctor_set(x_592, 2, x_590); +if (lean_obj_tag(x_1) == 0) +{ +lean_object* x_593; +x_593 = lean_ctor_get(x_1, 0); +lean_inc(x_593); +x_10 = x_592; +x_11 = x_593; +goto block_527; +} +else +{ +x_528 = x_592; +goto block_577; +} +} +block_527: +{ +lean_object* x_12; lean_object* x_13; uint8_t x_14; +x_12 = lean_array_get_size(x_11); +x_13 = lean_unsigned_to_nat(1u); +x_14 = lean_nat_dec_eq(x_12, x_13); +if (x_14 == 0) +{ +lean_object* x_15; uint8_t x_16; +x_15 = lean_unsigned_to_nat(2u); +x_16 = lean_nat_dec_eq(x_12, x_15); +if (x_16 == 0) +{ +lean_object* x_17; uint8_t x_18; +x_17 = lean_unsigned_to_nat(3u); +x_18 = lean_nat_dec_eq(x_12, x_17); +if (x_18 == 0) +{ +lean_object* x_19; uint8_t x_20; +x_19 = lean_unsigned_to_nat(4u); +x_20 = lean_nat_dec_eq(x_12, x_19); +if (x_20 == 0) +{ +lean_object* x_21; uint8_t x_22; +x_21 = lean_unsigned_to_nat(5u); +x_22 = lean_nat_dec_eq(x_12, x_21); +if (x_22 == 0) +{ +lean_object* x_23; uint8_t x_24; +x_23 = lean_unsigned_to_nat(6u); +x_24 = lean_nat_dec_eq(x_12, x_23); +if (x_24 == 0) +{ +lean_object* x_25; uint8_t x_26; +x_25 = lean_unsigned_to_nat(7u); +x_26 = lean_nat_dec_eq(x_12, x_25); +if (x_26 == 0) +{ +lean_object* x_27; uint8_t x_28; +x_27 = lean_unsigned_to_nat(8u); +x_28 = lean_nat_dec_eq(x_12, x_27); +lean_dec(x_12); +if (x_28 == 0) +{ +lean_object* x_29; uint8_t x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; uint8_t x_34; +lean_dec(x_11); +x_29 = lean_ctor_get(x_7, 5); +lean_inc(x_29); +x_30 = 0; +x_31 = l_Lean_SourceInfo_fromRef(x_29, x_30); +x_32 = lean_ctor_get(x_7, 10); +lean_inc(x_32); +lean_dec(x_7); +x_33 = lean_st_ref_get(x_8, x_9); +x_34 = !lean_is_exclusive(x_33); +if (x_34 == 0) +{ +lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; +x_35 = lean_ctor_get(x_33, 0); +x_36 = lean_ctor_get(x_35, 0); +lean_inc(x_36); +lean_dec(x_35); +x_37 = lean_environment_main_module(x_36); +x_38 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__5; +lean_inc(x_32); +lean_inc(x_37); +x_39 = l_Lean_addMacroScope(x_37, x_38, x_32); +x_40 = lean_box(0); +x_41 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__2; +x_42 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__10; +lean_inc(x_31); +x_43 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_43, 0, x_31); +lean_ctor_set(x_43, 1, x_41); +lean_ctor_set(x_43, 2, x_39); +lean_ctor_set(x_43, 3, x_42); +x_44 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__13; +x_45 = l_Lean_addMacroScope(x_37, x_44, x_32); +x_46 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__12; +lean_inc(x_31); +x_47 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_47, 0, x_31); +lean_ctor_set(x_47, 1, x_46); +lean_ctor_set(x_47, 2, x_45); +lean_ctor_set(x_47, 3, x_40); +x_48 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_build(x_1); +x_49 = l_Array_mkArray3___rarg(x_47, x_10, x_48); +x_50 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__11; +lean_inc(x_31); +x_51 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_51, 0, x_31); +lean_ctor_set(x_51, 1, x_50); +lean_ctor_set(x_51, 2, x_49); +x_52 = l_Array_mkArray2___rarg(x_43, x_51); +x_53 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___closed__6; +x_54 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_54, 0, x_31); +lean_ctor_set(x_54, 1, x_53); +lean_ctor_set(x_54, 2, x_52); +lean_ctor_set(x_33, 0, x_54); +return x_33; +} +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; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; +x_55 = lean_ctor_get(x_33, 0); +x_56 = lean_ctor_get(x_33, 1); +lean_inc(x_56); +lean_inc(x_55); +lean_dec(x_33); +x_57 = lean_ctor_get(x_55, 0); +lean_inc(x_57); +lean_dec(x_55); +x_58 = lean_environment_main_module(x_57); +x_59 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__5; +lean_inc(x_32); +lean_inc(x_58); +x_60 = l_Lean_addMacroScope(x_58, x_59, x_32); +x_61 = lean_box(0); +x_62 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__2; +x_63 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__10; +lean_inc(x_31); +x_64 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_64, 0, x_31); +lean_ctor_set(x_64, 1, x_62); +lean_ctor_set(x_64, 2, x_60); +lean_ctor_set(x_64, 3, x_63); +x_65 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__13; +x_66 = l_Lean_addMacroScope(x_58, x_65, x_32); +x_67 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__12; +lean_inc(x_31); +x_68 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_68, 0, x_31); +lean_ctor_set(x_68, 1, x_67); +lean_ctor_set(x_68, 2, x_66); +lean_ctor_set(x_68, 3, x_61); +x_69 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_build(x_1); +x_70 = l_Array_mkArray3___rarg(x_68, x_10, x_69); +x_71 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__11; +lean_inc(x_31); +x_72 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_72, 0, x_31); +lean_ctor_set(x_72, 1, x_71); +lean_ctor_set(x_72, 2, x_70); +x_73 = l_Array_mkArray2___rarg(x_64, x_72); +x_74 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___closed__6; +x_75 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_75, 0, x_31); +lean_ctor_set(x_75, 1, x_74); +lean_ctor_set(x_75, 2, x_73); +x_76 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_76, 0, x_75); +lean_ctor_set(x_76, 1, x_56); +return x_76; +} +} +else +{ +lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; uint8_t x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; uint8_t x_91; +lean_dec(x_1); +x_77 = lean_unsigned_to_nat(0u); +x_78 = lean_array_fget(x_11, x_77); +x_79 = lean_array_fget(x_11, x_13); +x_80 = lean_array_fget(x_11, x_15); +x_81 = lean_array_fget(x_11, x_17); +x_82 = lean_array_fget(x_11, x_19); +x_83 = lean_array_fget(x_11, x_21); +x_84 = lean_array_fget(x_11, x_23); +x_85 = lean_array_fget(x_11, x_25); +lean_dec(x_11); +x_86 = lean_ctor_get(x_7, 5); +lean_inc(x_86); +x_87 = 0; +x_88 = l_Lean_SourceInfo_fromRef(x_86, x_87); +x_89 = lean_ctor_get(x_7, 10); +lean_inc(x_89); +lean_dec(x_7); +x_90 = lean_st_ref_get(x_8, x_9); +x_91 = !lean_is_exclusive(x_90); +if (x_91 == 0) +{ +lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; +x_92 = lean_ctor_get(x_90, 0); +x_93 = lean_ctor_get(x_92, 0); +lean_inc(x_93); +lean_dec(x_92); +x_94 = lean_environment_main_module(x_93); +x_95 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__17; +lean_inc(x_89); +lean_inc(x_94); +x_96 = l_Lean_addMacroScope(x_94, x_95, x_89); +x_97 = lean_box(0); +x_98 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__15; +x_99 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__22; +lean_inc(x_88); +x_100 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_100, 0, x_88); +lean_ctor_set(x_100, 1, x_98); +lean_ctor_set(x_100, 2, x_96); +lean_ctor_set(x_100, 3, x_99); +x_101 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__13; +x_102 = l_Lean_addMacroScope(x_94, x_101, x_89); +x_103 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__12; +lean_inc(x_88); +x_104 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_104, 0, x_88); +lean_ctor_set(x_104, 1, x_103); +lean_ctor_set(x_104, 2, x_102); +lean_ctor_set(x_104, 3, x_97); +x_105 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__23; +x_106 = lean_array_push(x_105, x_104); +x_107 = lean_array_push(x_106, x_10); +x_108 = lean_array_push(x_107, x_78); +x_109 = lean_array_push(x_108, x_79); +x_110 = lean_array_push(x_109, x_80); +x_111 = lean_array_push(x_110, x_81); +x_112 = lean_array_push(x_111, x_82); +x_113 = lean_array_push(x_112, x_83); +x_114 = lean_array_push(x_113, x_84); +x_115 = lean_array_push(x_114, x_85); +x_116 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__11; +lean_inc(x_88); +x_117 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_117, 0, x_88); +lean_ctor_set(x_117, 1, x_116); +lean_ctor_set(x_117, 2, x_115); +x_118 = l_Array_mkArray2___rarg(x_100, x_117); +x_119 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___closed__6; +x_120 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_120, 0, x_88); +lean_ctor_set(x_120, 1, x_119); +lean_ctor_set(x_120, 2, x_118); +lean_ctor_set(x_90, 0, x_120); +return x_90; +} +else +{ +lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; +x_121 = lean_ctor_get(x_90, 0); +x_122 = lean_ctor_get(x_90, 1); +lean_inc(x_122); +lean_inc(x_121); +lean_dec(x_90); +x_123 = lean_ctor_get(x_121, 0); +lean_inc(x_123); +lean_dec(x_121); +x_124 = lean_environment_main_module(x_123); +x_125 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__17; +lean_inc(x_89); +lean_inc(x_124); +x_126 = l_Lean_addMacroScope(x_124, x_125, x_89); +x_127 = lean_box(0); +x_128 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__15; +x_129 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__22; +lean_inc(x_88); +x_130 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_130, 0, x_88); +lean_ctor_set(x_130, 1, x_128); +lean_ctor_set(x_130, 2, x_126); +lean_ctor_set(x_130, 3, x_129); +x_131 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__13; +x_132 = l_Lean_addMacroScope(x_124, x_131, x_89); +x_133 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__12; +lean_inc(x_88); +x_134 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_134, 0, x_88); +lean_ctor_set(x_134, 1, x_133); +lean_ctor_set(x_134, 2, x_132); +lean_ctor_set(x_134, 3, x_127); +x_135 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__23; +x_136 = lean_array_push(x_135, x_134); +x_137 = lean_array_push(x_136, x_10); +x_138 = lean_array_push(x_137, x_78); +x_139 = lean_array_push(x_138, x_79); +x_140 = lean_array_push(x_139, x_80); +x_141 = lean_array_push(x_140, x_81); +x_142 = lean_array_push(x_141, x_82); +x_143 = lean_array_push(x_142, x_83); +x_144 = lean_array_push(x_143, x_84); +x_145 = lean_array_push(x_144, x_85); +x_146 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__11; +lean_inc(x_88); +x_147 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_147, 0, x_88); +lean_ctor_set(x_147, 1, x_146); +lean_ctor_set(x_147, 2, x_145); +x_148 = l_Array_mkArray2___rarg(x_130, x_147); +x_149 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___closed__6; +x_150 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_150, 0, x_88); +lean_ctor_set(x_150, 1, x_149); +lean_ctor_set(x_150, 2, x_148); +x_151 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_151, 0, x_150); +lean_ctor_set(x_151, 1, x_122); +return x_151; +} +} +} +else +{ +lean_object* x_152; lean_object* x_153; lean_object* x_154; lean_object* x_155; lean_object* x_156; lean_object* x_157; lean_object* x_158; lean_object* x_159; lean_object* x_160; uint8_t x_161; lean_object* x_162; lean_object* x_163; lean_object* x_164; uint8_t x_165; +lean_dec(x_12); +lean_dec(x_1); +x_152 = lean_unsigned_to_nat(0u); +x_153 = lean_array_fget(x_11, x_152); +x_154 = lean_array_fget(x_11, x_13); +x_155 = lean_array_fget(x_11, x_15); +x_156 = lean_array_fget(x_11, x_17); +x_157 = lean_array_fget(x_11, x_19); +x_158 = lean_array_fget(x_11, x_21); +x_159 = lean_array_fget(x_11, x_23); +lean_dec(x_11); +x_160 = lean_ctor_get(x_7, 5); +lean_inc(x_160); +x_161 = 0; +x_162 = l_Lean_SourceInfo_fromRef(x_160, x_161); +x_163 = lean_ctor_get(x_7, 10); +lean_inc(x_163); +lean_dec(x_7); +x_164 = lean_st_ref_get(x_8, x_9); +x_165 = !lean_is_exclusive(x_164); +if (x_165 == 0) +{ +lean_object* x_166; lean_object* x_167; lean_object* x_168; lean_object* x_169; lean_object* x_170; lean_object* x_171; lean_object* x_172; lean_object* x_173; lean_object* x_174; lean_object* x_175; lean_object* x_176; lean_object* x_177; lean_object* x_178; lean_object* x_179; lean_object* x_180; lean_object* x_181; lean_object* x_182; lean_object* x_183; lean_object* x_184; lean_object* x_185; lean_object* x_186; lean_object* x_187; lean_object* x_188; lean_object* x_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; lean_object* x_193; +x_166 = lean_ctor_get(x_164, 0); +x_167 = lean_ctor_get(x_166, 0); +lean_inc(x_167); +lean_dec(x_166); +x_168 = lean_environment_main_module(x_167); +x_169 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__27; +lean_inc(x_163); +lean_inc(x_168); +x_170 = l_Lean_addMacroScope(x_168, x_169, x_163); +x_171 = lean_box(0); +x_172 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__25; +x_173 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__32; +lean_inc(x_162); +x_174 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_174, 0, x_162); +lean_ctor_set(x_174, 1, x_172); +lean_ctor_set(x_174, 2, x_170); +lean_ctor_set(x_174, 3, x_173); +x_175 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__13; +x_176 = l_Lean_addMacroScope(x_168, x_175, x_163); +x_177 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__12; +lean_inc(x_162); +x_178 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_178, 0, x_162); +lean_ctor_set(x_178, 1, x_177); +lean_ctor_set(x_178, 2, x_176); +lean_ctor_set(x_178, 3, x_171); +x_179 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__33; +x_180 = lean_array_push(x_179, x_178); +x_181 = lean_array_push(x_180, x_10); +x_182 = lean_array_push(x_181, x_153); +x_183 = lean_array_push(x_182, x_154); +x_184 = lean_array_push(x_183, x_155); +x_185 = lean_array_push(x_184, x_156); +x_186 = lean_array_push(x_185, x_157); +x_187 = lean_array_push(x_186, x_158); +x_188 = lean_array_push(x_187, x_159); +x_189 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__11; +lean_inc(x_162); +x_190 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_190, 0, x_162); +lean_ctor_set(x_190, 1, x_189); +lean_ctor_set(x_190, 2, x_188); +x_191 = l_Array_mkArray2___rarg(x_174, x_190); +x_192 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___closed__6; +x_193 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_193, 0, x_162); +lean_ctor_set(x_193, 1, x_192); +lean_ctor_set(x_193, 2, x_191); +lean_ctor_set(x_164, 0, x_193); +return x_164; +} +else +{ +lean_object* x_194; lean_object* x_195; lean_object* x_196; lean_object* x_197; lean_object* x_198; lean_object* x_199; lean_object* x_200; lean_object* x_201; lean_object* x_202; lean_object* x_203; lean_object* x_204; lean_object* x_205; lean_object* x_206; lean_object* x_207; lean_object* x_208; lean_object* x_209; lean_object* x_210; lean_object* x_211; lean_object* x_212; lean_object* x_213; lean_object* x_214; lean_object* x_215; lean_object* x_216; lean_object* x_217; lean_object* x_218; lean_object* x_219; lean_object* x_220; lean_object* x_221; lean_object* x_222; lean_object* x_223; +x_194 = lean_ctor_get(x_164, 0); +x_195 = lean_ctor_get(x_164, 1); +lean_inc(x_195); +lean_inc(x_194); +lean_dec(x_164); +x_196 = lean_ctor_get(x_194, 0); +lean_inc(x_196); +lean_dec(x_194); +x_197 = lean_environment_main_module(x_196); +x_198 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__27; +lean_inc(x_163); +lean_inc(x_197); +x_199 = l_Lean_addMacroScope(x_197, x_198, x_163); +x_200 = lean_box(0); +x_201 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__25; +x_202 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__32; +lean_inc(x_162); +x_203 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_203, 0, x_162); +lean_ctor_set(x_203, 1, x_201); +lean_ctor_set(x_203, 2, x_199); +lean_ctor_set(x_203, 3, x_202); +x_204 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__13; +x_205 = l_Lean_addMacroScope(x_197, x_204, x_163); +x_206 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__12; +lean_inc(x_162); +x_207 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_207, 0, x_162); +lean_ctor_set(x_207, 1, x_206); +lean_ctor_set(x_207, 2, x_205); +lean_ctor_set(x_207, 3, x_200); +x_208 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__33; +x_209 = lean_array_push(x_208, x_207); +x_210 = lean_array_push(x_209, x_10); +x_211 = lean_array_push(x_210, x_153); +x_212 = lean_array_push(x_211, x_154); +x_213 = lean_array_push(x_212, x_155); +x_214 = lean_array_push(x_213, x_156); +x_215 = lean_array_push(x_214, x_157); +x_216 = lean_array_push(x_215, x_158); +x_217 = lean_array_push(x_216, x_159); +x_218 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__11; +lean_inc(x_162); +x_219 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_219, 0, x_162); +lean_ctor_set(x_219, 1, x_218); +lean_ctor_set(x_219, 2, x_217); +x_220 = l_Array_mkArray2___rarg(x_203, x_219); +x_221 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___closed__6; +x_222 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_222, 0, x_162); +lean_ctor_set(x_222, 1, x_221); +lean_ctor_set(x_222, 2, x_220); +x_223 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_223, 0, x_222); +lean_ctor_set(x_223, 1, x_195); +return x_223; +} +} +} +else +{ +lean_object* x_224; lean_object* x_225; lean_object* x_226; lean_object* x_227; lean_object* x_228; lean_object* x_229; lean_object* x_230; lean_object* x_231; uint8_t x_232; lean_object* x_233; lean_object* x_234; lean_object* x_235; uint8_t x_236; +lean_dec(x_12); +lean_dec(x_1); +x_224 = lean_unsigned_to_nat(0u); +x_225 = lean_array_fget(x_11, x_224); +x_226 = lean_array_fget(x_11, x_13); +x_227 = lean_array_fget(x_11, x_15); +x_228 = lean_array_fget(x_11, x_17); +x_229 = lean_array_fget(x_11, x_19); +x_230 = lean_array_fget(x_11, x_21); +lean_dec(x_11); +x_231 = lean_ctor_get(x_7, 5); +lean_inc(x_231); +x_232 = 0; +x_233 = l_Lean_SourceInfo_fromRef(x_231, x_232); +x_234 = lean_ctor_get(x_7, 10); +lean_inc(x_234); +lean_dec(x_7); +x_235 = lean_st_ref_get(x_8, x_9); +x_236 = !lean_is_exclusive(x_235); +if (x_236 == 0) +{ +lean_object* x_237; lean_object* x_238; lean_object* x_239; lean_object* x_240; lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; lean_object* x_245; lean_object* x_246; lean_object* x_247; lean_object* x_248; lean_object* x_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_237 = lean_ctor_get(x_235, 0); +x_238 = lean_ctor_get(x_237, 0); +lean_inc(x_238); +lean_dec(x_237); +x_239 = lean_environment_main_module(x_238); +x_240 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__37; +lean_inc(x_234); +lean_inc(x_239); +x_241 = l_Lean_addMacroScope(x_239, x_240, x_234); +x_242 = lean_box(0); +x_243 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__35; +x_244 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__42; +lean_inc(x_233); +x_245 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_245, 0, x_233); +lean_ctor_set(x_245, 1, x_243); +lean_ctor_set(x_245, 2, x_241); +lean_ctor_set(x_245, 3, x_244); +x_246 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__13; +x_247 = l_Lean_addMacroScope(x_239, x_246, x_234); +x_248 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__12; +lean_inc(x_233); +x_249 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_249, 0, x_233); +lean_ctor_set(x_249, 1, x_248); +lean_ctor_set(x_249, 2, x_247); +lean_ctor_set(x_249, 3, x_242); +x_250 = l_Array_mkArray8___rarg(x_249, x_10, x_225, x_226, x_227, x_228, x_229, x_230); +x_251 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__11; +lean_inc(x_233); +x_252 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_252, 0, x_233); +lean_ctor_set(x_252, 1, x_251); +lean_ctor_set(x_252, 2, x_250); +x_253 = l_Array_mkArray2___rarg(x_245, x_252); +x_254 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___closed__6; +x_255 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_255, 0, x_233); +lean_ctor_set(x_255, 1, x_254); +lean_ctor_set(x_255, 2, x_253); +lean_ctor_set(x_235, 0, x_255); +return x_235; +} +else +{ +lean_object* x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; lean_object* x_260; lean_object* x_261; lean_object* x_262; lean_object* x_263; lean_object* x_264; lean_object* x_265; lean_object* x_266; lean_object* x_267; lean_object* x_268; lean_object* x_269; lean_object* x_270; lean_object* x_271; lean_object* x_272; lean_object* x_273; lean_object* x_274; lean_object* x_275; lean_object* x_276; +x_256 = lean_ctor_get(x_235, 0); +x_257 = lean_ctor_get(x_235, 1); +lean_inc(x_257); +lean_inc(x_256); +lean_dec(x_235); +x_258 = lean_ctor_get(x_256, 0); +lean_inc(x_258); +lean_dec(x_256); +x_259 = lean_environment_main_module(x_258); +x_260 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__37; +lean_inc(x_234); +lean_inc(x_259); +x_261 = l_Lean_addMacroScope(x_259, x_260, x_234); +x_262 = lean_box(0); +x_263 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__35; +x_264 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__42; +lean_inc(x_233); +x_265 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_265, 0, x_233); +lean_ctor_set(x_265, 1, x_263); +lean_ctor_set(x_265, 2, x_261); +lean_ctor_set(x_265, 3, x_264); +x_266 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__13; +x_267 = l_Lean_addMacroScope(x_259, x_266, x_234); +x_268 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__12; +lean_inc(x_233); +x_269 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_269, 0, x_233); +lean_ctor_set(x_269, 1, x_268); +lean_ctor_set(x_269, 2, x_267); +lean_ctor_set(x_269, 3, x_262); +x_270 = l_Array_mkArray8___rarg(x_269, x_10, x_225, x_226, x_227, x_228, x_229, x_230); +x_271 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__11; +lean_inc(x_233); +x_272 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_272, 0, x_233); +lean_ctor_set(x_272, 1, x_271); +lean_ctor_set(x_272, 2, x_270); +x_273 = l_Array_mkArray2___rarg(x_265, x_272); +x_274 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___closed__6; +x_275 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_275, 0, x_233); +lean_ctor_set(x_275, 1, x_274); +lean_ctor_set(x_275, 2, x_273); +x_276 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_276, 0, x_275); +lean_ctor_set(x_276, 1, x_257); +return x_276; +} +} +} +else +{ +lean_object* x_277; lean_object* x_278; lean_object* x_279; lean_object* x_280; lean_object* x_281; lean_object* x_282; lean_object* x_283; uint8_t x_284; lean_object* x_285; lean_object* x_286; lean_object* x_287; uint8_t x_288; +lean_dec(x_12); +lean_dec(x_1); +x_277 = lean_unsigned_to_nat(0u); +x_278 = lean_array_fget(x_11, x_277); +x_279 = lean_array_fget(x_11, x_13); +x_280 = lean_array_fget(x_11, x_15); +x_281 = lean_array_fget(x_11, x_17); +x_282 = lean_array_fget(x_11, x_19); +lean_dec(x_11); +x_283 = lean_ctor_get(x_7, 5); +lean_inc(x_283); +x_284 = 0; +x_285 = l_Lean_SourceInfo_fromRef(x_283, x_284); +x_286 = lean_ctor_get(x_7, 10); +lean_inc(x_286); +lean_dec(x_7); +x_287 = lean_st_ref_get(x_8, x_9); +x_288 = !lean_is_exclusive(x_287); +if (x_288 == 0) +{ +lean_object* x_289; lean_object* x_290; lean_object* x_291; lean_object* x_292; lean_object* x_293; lean_object* x_294; lean_object* x_295; lean_object* x_296; lean_object* x_297; lean_object* x_298; lean_object* x_299; lean_object* x_300; lean_object* x_301; lean_object* x_302; lean_object* x_303; lean_object* x_304; lean_object* x_305; lean_object* x_306; lean_object* x_307; +x_289 = lean_ctor_get(x_287, 0); +x_290 = lean_ctor_get(x_289, 0); +lean_inc(x_290); +lean_dec(x_289); +x_291 = lean_environment_main_module(x_290); +x_292 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__46; +lean_inc(x_286); +lean_inc(x_291); +x_293 = l_Lean_addMacroScope(x_291, x_292, x_286); +x_294 = lean_box(0); +x_295 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__44; +x_296 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__51; +lean_inc(x_285); +x_297 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_297, 0, x_285); +lean_ctor_set(x_297, 1, x_295); +lean_ctor_set(x_297, 2, x_293); +lean_ctor_set(x_297, 3, x_296); +x_298 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__13; +x_299 = l_Lean_addMacroScope(x_291, x_298, x_286); +x_300 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__12; +lean_inc(x_285); +x_301 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_301, 0, x_285); +lean_ctor_set(x_301, 1, x_300); +lean_ctor_set(x_301, 2, x_299); +lean_ctor_set(x_301, 3, x_294); +x_302 = l_Array_mkArray7___rarg(x_301, x_10, x_278, x_279, x_280, x_281, x_282); +x_303 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__11; +lean_inc(x_285); +x_304 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_304, 0, x_285); +lean_ctor_set(x_304, 1, x_303); +lean_ctor_set(x_304, 2, x_302); +x_305 = l_Array_mkArray2___rarg(x_297, x_304); +x_306 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___closed__6; +x_307 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_307, 0, x_285); +lean_ctor_set(x_307, 1, x_306); +lean_ctor_set(x_307, 2, x_305); +lean_ctor_set(x_287, 0, x_307); +return x_287; +} +else +{ +lean_object* x_308; lean_object* x_309; lean_object* x_310; lean_object* x_311; lean_object* x_312; lean_object* x_313; lean_object* x_314; lean_object* x_315; lean_object* x_316; lean_object* x_317; lean_object* x_318; lean_object* x_319; lean_object* x_320; lean_object* x_321; lean_object* x_322; lean_object* x_323; lean_object* x_324; lean_object* x_325; lean_object* x_326; lean_object* x_327; lean_object* x_328; +x_308 = lean_ctor_get(x_287, 0); +x_309 = lean_ctor_get(x_287, 1); +lean_inc(x_309); +lean_inc(x_308); +lean_dec(x_287); +x_310 = lean_ctor_get(x_308, 0); +lean_inc(x_310); +lean_dec(x_308); +x_311 = lean_environment_main_module(x_310); +x_312 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__46; +lean_inc(x_286); +lean_inc(x_311); +x_313 = l_Lean_addMacroScope(x_311, x_312, x_286); +x_314 = lean_box(0); +x_315 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__44; +x_316 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__51; +lean_inc(x_285); +x_317 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_317, 0, x_285); +lean_ctor_set(x_317, 1, x_315); +lean_ctor_set(x_317, 2, x_313); +lean_ctor_set(x_317, 3, x_316); +x_318 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__13; +x_319 = l_Lean_addMacroScope(x_311, x_318, x_286); +x_320 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__12; +lean_inc(x_285); +x_321 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_321, 0, x_285); +lean_ctor_set(x_321, 1, x_320); +lean_ctor_set(x_321, 2, x_319); +lean_ctor_set(x_321, 3, x_314); +x_322 = l_Array_mkArray7___rarg(x_321, x_10, x_278, x_279, x_280, x_281, x_282); +x_323 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__11; +lean_inc(x_285); +x_324 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_324, 0, x_285); +lean_ctor_set(x_324, 1, x_323); +lean_ctor_set(x_324, 2, x_322); +x_325 = l_Array_mkArray2___rarg(x_317, x_324); +x_326 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___closed__6; +x_327 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_327, 0, x_285); +lean_ctor_set(x_327, 1, x_326); +lean_ctor_set(x_327, 2, x_325); +x_328 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_328, 0, x_327); +lean_ctor_set(x_328, 1, x_309); +return x_328; +} +} +} +else +{ +lean_object* x_329; lean_object* x_330; lean_object* x_331; lean_object* x_332; lean_object* x_333; lean_object* x_334; uint8_t x_335; lean_object* x_336; lean_object* x_337; lean_object* x_338; uint8_t x_339; +lean_dec(x_12); +lean_dec(x_1); +x_329 = lean_unsigned_to_nat(0u); +x_330 = lean_array_fget(x_11, x_329); +x_331 = lean_array_fget(x_11, x_13); +x_332 = lean_array_fget(x_11, x_15); +x_333 = lean_array_fget(x_11, x_17); +lean_dec(x_11); +x_334 = lean_ctor_get(x_7, 5); +lean_inc(x_334); +x_335 = 0; +x_336 = l_Lean_SourceInfo_fromRef(x_334, x_335); +x_337 = lean_ctor_get(x_7, 10); +lean_inc(x_337); +lean_dec(x_7); +x_338 = lean_st_ref_get(x_8, x_9); +x_339 = !lean_is_exclusive(x_338); +if (x_339 == 0) +{ +lean_object* x_340; lean_object* x_341; lean_object* x_342; lean_object* x_343; lean_object* x_344; lean_object* x_345; lean_object* x_346; lean_object* x_347; lean_object* x_348; lean_object* x_349; lean_object* x_350; lean_object* x_351; lean_object* x_352; lean_object* x_353; lean_object* x_354; lean_object* x_355; lean_object* x_356; lean_object* x_357; lean_object* x_358; +x_340 = lean_ctor_get(x_338, 0); +x_341 = lean_ctor_get(x_340, 0); +lean_inc(x_341); +lean_dec(x_340); +x_342 = lean_environment_main_module(x_341); +x_343 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__55; +lean_inc(x_337); +lean_inc(x_342); +x_344 = l_Lean_addMacroScope(x_342, x_343, x_337); +x_345 = lean_box(0); +x_346 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__53; +x_347 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__60; +lean_inc(x_336); +x_348 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_348, 0, x_336); +lean_ctor_set(x_348, 1, x_346); +lean_ctor_set(x_348, 2, x_344); +lean_ctor_set(x_348, 3, x_347); +x_349 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__13; +x_350 = l_Lean_addMacroScope(x_342, x_349, x_337); +x_351 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__12; +lean_inc(x_336); +x_352 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_352, 0, x_336); +lean_ctor_set(x_352, 1, x_351); +lean_ctor_set(x_352, 2, x_350); +lean_ctor_set(x_352, 3, x_345); +x_353 = l_Array_mkArray6___rarg(x_352, x_10, x_330, x_331, x_332, x_333); +x_354 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__11; +lean_inc(x_336); +x_355 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_355, 0, x_336); +lean_ctor_set(x_355, 1, x_354); +lean_ctor_set(x_355, 2, x_353); +x_356 = l_Array_mkArray2___rarg(x_348, x_355); +x_357 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___closed__6; +x_358 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_358, 0, x_336); +lean_ctor_set(x_358, 1, x_357); +lean_ctor_set(x_358, 2, x_356); +lean_ctor_set(x_338, 0, x_358); +return x_338; +} +else +{ +lean_object* x_359; lean_object* x_360; lean_object* x_361; lean_object* x_362; lean_object* x_363; lean_object* x_364; lean_object* x_365; lean_object* x_366; lean_object* x_367; lean_object* x_368; lean_object* x_369; lean_object* x_370; lean_object* x_371; lean_object* x_372; lean_object* x_373; lean_object* x_374; lean_object* x_375; lean_object* x_376; lean_object* x_377; lean_object* x_378; lean_object* x_379; +x_359 = lean_ctor_get(x_338, 0); +x_360 = lean_ctor_get(x_338, 1); +lean_inc(x_360); +lean_inc(x_359); +lean_dec(x_338); +x_361 = lean_ctor_get(x_359, 0); +lean_inc(x_361); +lean_dec(x_359); +x_362 = lean_environment_main_module(x_361); +x_363 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__55; +lean_inc(x_337); +lean_inc(x_362); +x_364 = l_Lean_addMacroScope(x_362, x_363, x_337); +x_365 = lean_box(0); +x_366 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__53; +x_367 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__60; +lean_inc(x_336); +x_368 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_368, 0, x_336); +lean_ctor_set(x_368, 1, x_366); +lean_ctor_set(x_368, 2, x_364); +lean_ctor_set(x_368, 3, x_367); +x_369 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__13; +x_370 = l_Lean_addMacroScope(x_362, x_369, x_337); +x_371 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__12; +lean_inc(x_336); +x_372 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_372, 0, x_336); +lean_ctor_set(x_372, 1, x_371); +lean_ctor_set(x_372, 2, x_370); +lean_ctor_set(x_372, 3, x_365); +x_373 = l_Array_mkArray6___rarg(x_372, x_10, x_330, x_331, x_332, x_333); +x_374 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__11; +lean_inc(x_336); +x_375 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_375, 0, x_336); +lean_ctor_set(x_375, 1, x_374); +lean_ctor_set(x_375, 2, x_373); +x_376 = l_Array_mkArray2___rarg(x_368, x_375); +x_377 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___closed__6; +x_378 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_378, 0, x_336); +lean_ctor_set(x_378, 1, x_377); +lean_ctor_set(x_378, 2, x_376); +x_379 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_379, 0, x_378); +lean_ctor_set(x_379, 1, x_360); +return x_379; +} +} +} +else +{ +lean_object* x_380; lean_object* x_381; lean_object* x_382; lean_object* x_383; lean_object* x_384; uint8_t x_385; lean_object* x_386; lean_object* x_387; lean_object* x_388; uint8_t x_389; +lean_dec(x_12); +lean_dec(x_1); +x_380 = lean_unsigned_to_nat(0u); +x_381 = lean_array_fget(x_11, x_380); +x_382 = lean_array_fget(x_11, x_13); +x_383 = lean_array_fget(x_11, x_15); +lean_dec(x_11); +x_384 = lean_ctor_get(x_7, 5); +lean_inc(x_384); +x_385 = 0; +x_386 = l_Lean_SourceInfo_fromRef(x_384, x_385); +x_387 = lean_ctor_get(x_7, 10); +lean_inc(x_387); +lean_dec(x_7); +x_388 = lean_st_ref_get(x_8, x_9); +x_389 = !lean_is_exclusive(x_388); +if (x_389 == 0) +{ +lean_object* x_390; lean_object* x_391; lean_object* x_392; lean_object* x_393; lean_object* x_394; lean_object* x_395; lean_object* x_396; lean_object* x_397; lean_object* x_398; lean_object* x_399; lean_object* x_400; lean_object* x_401; lean_object* x_402; lean_object* x_403; lean_object* x_404; lean_object* x_405; lean_object* x_406; lean_object* x_407; lean_object* x_408; +x_390 = lean_ctor_get(x_388, 0); +x_391 = lean_ctor_get(x_390, 0); +lean_inc(x_391); +lean_dec(x_390); +x_392 = lean_environment_main_module(x_391); +x_393 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__64; +lean_inc(x_387); +lean_inc(x_392); +x_394 = l_Lean_addMacroScope(x_392, x_393, x_387); +x_395 = lean_box(0); +x_396 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__62; +x_397 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__69; +lean_inc(x_386); +x_398 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_398, 0, x_386); +lean_ctor_set(x_398, 1, x_396); +lean_ctor_set(x_398, 2, x_394); +lean_ctor_set(x_398, 3, x_397); +x_399 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__13; +x_400 = l_Lean_addMacroScope(x_392, x_399, x_387); +x_401 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__12; +lean_inc(x_386); +x_402 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_402, 0, x_386); +lean_ctor_set(x_402, 1, x_401); +lean_ctor_set(x_402, 2, x_400); +lean_ctor_set(x_402, 3, x_395); +x_403 = l_Array_mkArray5___rarg(x_402, x_10, x_381, x_382, x_383); +x_404 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__11; +lean_inc(x_386); +x_405 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_405, 0, x_386); +lean_ctor_set(x_405, 1, x_404); +lean_ctor_set(x_405, 2, x_403); +x_406 = l_Array_mkArray2___rarg(x_398, x_405); +x_407 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___closed__6; +x_408 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_408, 0, x_386); +lean_ctor_set(x_408, 1, x_407); +lean_ctor_set(x_408, 2, x_406); +lean_ctor_set(x_388, 0, x_408); +return x_388; +} +else +{ +lean_object* x_409; lean_object* x_410; lean_object* x_411; lean_object* x_412; lean_object* x_413; lean_object* x_414; lean_object* x_415; lean_object* x_416; lean_object* x_417; lean_object* x_418; lean_object* x_419; lean_object* x_420; lean_object* x_421; lean_object* x_422; lean_object* x_423; lean_object* x_424; lean_object* x_425; lean_object* x_426; lean_object* x_427; lean_object* x_428; lean_object* x_429; +x_409 = lean_ctor_get(x_388, 0); +x_410 = lean_ctor_get(x_388, 1); +lean_inc(x_410); +lean_inc(x_409); +lean_dec(x_388); +x_411 = lean_ctor_get(x_409, 0); +lean_inc(x_411); +lean_dec(x_409); +x_412 = lean_environment_main_module(x_411); +x_413 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__64; +lean_inc(x_387); +lean_inc(x_412); +x_414 = l_Lean_addMacroScope(x_412, x_413, x_387); +x_415 = lean_box(0); +x_416 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__62; +x_417 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__69; +lean_inc(x_386); +x_418 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_418, 0, x_386); +lean_ctor_set(x_418, 1, x_416); +lean_ctor_set(x_418, 2, x_414); +lean_ctor_set(x_418, 3, x_417); +x_419 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__13; +x_420 = l_Lean_addMacroScope(x_412, x_419, x_387); +x_421 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__12; +lean_inc(x_386); +x_422 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_422, 0, x_386); +lean_ctor_set(x_422, 1, x_421); +lean_ctor_set(x_422, 2, x_420); +lean_ctor_set(x_422, 3, x_415); +x_423 = l_Array_mkArray5___rarg(x_422, x_10, x_381, x_382, x_383); +x_424 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__11; +lean_inc(x_386); +x_425 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_425, 0, x_386); +lean_ctor_set(x_425, 1, x_424); +lean_ctor_set(x_425, 2, x_423); +x_426 = l_Array_mkArray2___rarg(x_418, x_425); +x_427 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___closed__6; +x_428 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_428, 0, x_386); +lean_ctor_set(x_428, 1, x_427); +lean_ctor_set(x_428, 2, x_426); +x_429 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_429, 0, x_428); +lean_ctor_set(x_429, 1, x_410); +return x_429; +} +} +} +else +{ +lean_object* x_430; lean_object* x_431; lean_object* x_432; lean_object* x_433; uint8_t x_434; lean_object* x_435; lean_object* x_436; lean_object* x_437; uint8_t x_438; +lean_dec(x_12); +lean_dec(x_1); +x_430 = lean_unsigned_to_nat(0u); +x_431 = lean_array_fget(x_11, x_430); +x_432 = lean_array_fget(x_11, x_13); +lean_dec(x_11); +x_433 = lean_ctor_get(x_7, 5); +lean_inc(x_433); +x_434 = 0; +x_435 = l_Lean_SourceInfo_fromRef(x_433, x_434); +x_436 = lean_ctor_get(x_7, 10); +lean_inc(x_436); +lean_dec(x_7); +x_437 = lean_st_ref_get(x_8, x_9); +x_438 = !lean_is_exclusive(x_437); +if (x_438 == 0) +{ +lean_object* x_439; lean_object* x_440; lean_object* x_441; lean_object* x_442; lean_object* x_443; lean_object* x_444; lean_object* x_445; lean_object* x_446; lean_object* x_447; lean_object* x_448; lean_object* x_449; lean_object* x_450; lean_object* x_451; lean_object* x_452; lean_object* x_453; lean_object* x_454; lean_object* x_455; lean_object* x_456; lean_object* x_457; +x_439 = lean_ctor_get(x_437, 0); +x_440 = lean_ctor_get(x_439, 0); +lean_inc(x_440); +lean_dec(x_439); +x_441 = lean_environment_main_module(x_440); +x_442 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__73; +lean_inc(x_436); +lean_inc(x_441); +x_443 = l_Lean_addMacroScope(x_441, x_442, x_436); +x_444 = lean_box(0); +x_445 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__71; +x_446 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__78; +lean_inc(x_435); +x_447 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_447, 0, x_435); +lean_ctor_set(x_447, 1, x_445); +lean_ctor_set(x_447, 2, x_443); +lean_ctor_set(x_447, 3, x_446); +x_448 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__13; +x_449 = l_Lean_addMacroScope(x_441, x_448, x_436); +x_450 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__12; +lean_inc(x_435); +x_451 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_451, 0, x_435); +lean_ctor_set(x_451, 1, x_450); +lean_ctor_set(x_451, 2, x_449); +lean_ctor_set(x_451, 3, x_444); +x_452 = l_Array_mkArray4___rarg(x_451, x_10, x_431, x_432); +x_453 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__11; +lean_inc(x_435); +x_454 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_454, 0, x_435); +lean_ctor_set(x_454, 1, x_453); +lean_ctor_set(x_454, 2, x_452); +x_455 = l_Array_mkArray2___rarg(x_447, x_454); +x_456 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___closed__6; +x_457 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_457, 0, x_435); +lean_ctor_set(x_457, 1, x_456); +lean_ctor_set(x_457, 2, x_455); +lean_ctor_set(x_437, 0, x_457); +return x_437; +} +else +{ +lean_object* x_458; lean_object* x_459; lean_object* x_460; lean_object* x_461; lean_object* x_462; lean_object* x_463; lean_object* x_464; lean_object* x_465; lean_object* x_466; lean_object* x_467; lean_object* x_468; lean_object* x_469; lean_object* x_470; lean_object* x_471; lean_object* x_472; lean_object* x_473; lean_object* x_474; lean_object* x_475; lean_object* x_476; lean_object* x_477; lean_object* x_478; +x_458 = lean_ctor_get(x_437, 0); +x_459 = lean_ctor_get(x_437, 1); +lean_inc(x_459); +lean_inc(x_458); +lean_dec(x_437); +x_460 = lean_ctor_get(x_458, 0); +lean_inc(x_460); +lean_dec(x_458); +x_461 = lean_environment_main_module(x_460); +x_462 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__73; +lean_inc(x_436); +lean_inc(x_461); +x_463 = l_Lean_addMacroScope(x_461, x_462, x_436); +x_464 = lean_box(0); +x_465 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__71; +x_466 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__78; +lean_inc(x_435); +x_467 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_467, 0, x_435); +lean_ctor_set(x_467, 1, x_465); +lean_ctor_set(x_467, 2, x_463); +lean_ctor_set(x_467, 3, x_466); +x_468 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__13; +x_469 = l_Lean_addMacroScope(x_461, x_468, x_436); +x_470 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__12; +lean_inc(x_435); +x_471 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_471, 0, x_435); +lean_ctor_set(x_471, 1, x_470); +lean_ctor_set(x_471, 2, x_469); +lean_ctor_set(x_471, 3, x_464); +x_472 = l_Array_mkArray4___rarg(x_471, x_10, x_431, x_432); +x_473 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__11; +lean_inc(x_435); +x_474 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_474, 0, x_435); +lean_ctor_set(x_474, 1, x_473); +lean_ctor_set(x_474, 2, x_472); +x_475 = l_Array_mkArray2___rarg(x_467, x_474); +x_476 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___closed__6; +x_477 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_477, 0, x_435); +lean_ctor_set(x_477, 1, x_476); +lean_ctor_set(x_477, 2, x_475); +x_478 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_478, 0, x_477); +lean_ctor_set(x_478, 1, x_459); +return x_478; +} +} +} +else +{ +lean_object* x_479; lean_object* x_480; lean_object* x_481; uint8_t x_482; lean_object* x_483; lean_object* x_484; lean_object* x_485; uint8_t x_486; +lean_dec(x_12); +lean_dec(x_1); +x_479 = lean_unsigned_to_nat(0u); +x_480 = lean_array_fget(x_11, x_479); +lean_dec(x_11); +x_481 = lean_ctor_get(x_7, 5); +lean_inc(x_481); +x_482 = 0; +x_483 = l_Lean_SourceInfo_fromRef(x_481, x_482); +x_484 = lean_ctor_get(x_7, 10); +lean_inc(x_484); +lean_dec(x_7); +x_485 = lean_st_ref_get(x_8, x_9); +x_486 = !lean_is_exclusive(x_485); +if (x_486 == 0) +{ +lean_object* x_487; lean_object* x_488; lean_object* x_489; lean_object* x_490; lean_object* x_491; lean_object* x_492; lean_object* x_493; lean_object* x_494; lean_object* x_495; lean_object* x_496; lean_object* x_497; lean_object* x_498; lean_object* x_499; lean_object* x_500; lean_object* x_501; lean_object* x_502; lean_object* x_503; lean_object* x_504; lean_object* x_505; +x_487 = lean_ctor_get(x_485, 0); +x_488 = lean_ctor_get(x_487, 0); +lean_inc(x_488); +lean_dec(x_487); +x_489 = lean_environment_main_module(x_488); +x_490 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__82; +lean_inc(x_484); +lean_inc(x_489); +x_491 = l_Lean_addMacroScope(x_489, x_490, x_484); +x_492 = lean_box(0); +x_493 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__80; +x_494 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__87; +lean_inc(x_483); +x_495 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_495, 0, x_483); +lean_ctor_set(x_495, 1, x_493); +lean_ctor_set(x_495, 2, x_491); +lean_ctor_set(x_495, 3, x_494); +x_496 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__13; +x_497 = l_Lean_addMacroScope(x_489, x_496, x_484); +x_498 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__12; +lean_inc(x_483); +x_499 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_499, 0, x_483); +lean_ctor_set(x_499, 1, x_498); +lean_ctor_set(x_499, 2, x_497); +lean_ctor_set(x_499, 3, x_492); +x_500 = l_Array_mkArray3___rarg(x_499, x_10, x_480); +x_501 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__11; +lean_inc(x_483); +x_502 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_502, 0, x_483); +lean_ctor_set(x_502, 1, x_501); +lean_ctor_set(x_502, 2, x_500); +x_503 = l_Array_mkArray2___rarg(x_495, x_502); +x_504 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___closed__6; +x_505 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_505, 0, x_483); +lean_ctor_set(x_505, 1, x_504); +lean_ctor_set(x_505, 2, x_503); +lean_ctor_set(x_485, 0, x_505); +return x_485; +} +else +{ +lean_object* x_506; lean_object* x_507; lean_object* x_508; lean_object* x_509; lean_object* x_510; lean_object* x_511; lean_object* x_512; lean_object* x_513; lean_object* x_514; lean_object* x_515; lean_object* x_516; lean_object* x_517; lean_object* x_518; lean_object* x_519; lean_object* x_520; lean_object* x_521; lean_object* x_522; lean_object* x_523; lean_object* x_524; lean_object* x_525; lean_object* x_526; +x_506 = lean_ctor_get(x_485, 0); +x_507 = lean_ctor_get(x_485, 1); +lean_inc(x_507); +lean_inc(x_506); +lean_dec(x_485); +x_508 = lean_ctor_get(x_506, 0); +lean_inc(x_508); +lean_dec(x_506); +x_509 = lean_environment_main_module(x_508); +x_510 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__82; +lean_inc(x_484); +lean_inc(x_509); +x_511 = l_Lean_addMacroScope(x_509, x_510, x_484); +x_512 = lean_box(0); +x_513 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__80; +x_514 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__87; +lean_inc(x_483); +x_515 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_515, 0, x_483); +lean_ctor_set(x_515, 1, x_513); +lean_ctor_set(x_515, 2, x_511); +lean_ctor_set(x_515, 3, x_514); +x_516 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__13; +x_517 = l_Lean_addMacroScope(x_509, x_516, x_484); +x_518 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__12; +lean_inc(x_483); +x_519 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_519, 0, x_483); +lean_ctor_set(x_519, 1, x_518); +lean_ctor_set(x_519, 2, x_517); +lean_ctor_set(x_519, 3, x_512); +x_520 = l_Array_mkArray3___rarg(x_519, x_10, x_480); +x_521 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__11; +lean_inc(x_483); +x_522 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_522, 0, x_483); +lean_ctor_set(x_522, 1, x_521); +lean_ctor_set(x_522, 2, x_520); +x_523 = l_Array_mkArray2___rarg(x_515, x_522); +x_524 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___closed__6; +x_525 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_525, 0, x_483); +lean_ctor_set(x_525, 1, x_524); +lean_ctor_set(x_525, 2, x_523); +x_526 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_526, 0, x_525); +lean_ctor_set(x_526, 1, x_507); +return x_526; +} +} +} +block_577: +{ +lean_object* x_529; uint8_t x_530; lean_object* x_531; lean_object* x_532; lean_object* x_533; uint8_t x_534; +x_529 = lean_ctor_get(x_7, 5); +lean_inc(x_529); +x_530 = 0; +x_531 = l_Lean_SourceInfo_fromRef(x_529, x_530); +x_532 = lean_ctor_get(x_7, 10); +lean_inc(x_532); +lean_dec(x_7); +x_533 = lean_st_ref_get(x_8, x_9); +x_534 = !lean_is_exclusive(x_533); +if (x_534 == 0) +{ +lean_object* x_535; lean_object* x_536; lean_object* x_537; lean_object* x_538; lean_object* x_539; lean_object* x_540; lean_object* x_541; lean_object* x_542; lean_object* x_543; lean_object* x_544; lean_object* x_545; lean_object* x_546; lean_object* x_547; lean_object* x_548; lean_object* x_549; lean_object* x_550; lean_object* x_551; lean_object* x_552; lean_object* x_553; lean_object* x_554; +x_535 = lean_ctor_get(x_533, 0); +x_536 = lean_ctor_get(x_535, 0); +lean_inc(x_536); +lean_dec(x_535); +x_537 = lean_environment_main_module(x_536); +x_538 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__5; +lean_inc(x_532); +lean_inc(x_537); +x_539 = l_Lean_addMacroScope(x_537, x_538, x_532); +x_540 = lean_box(0); +x_541 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__2; +x_542 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__10; +lean_inc(x_531); +x_543 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_543, 0, x_531); +lean_ctor_set(x_543, 1, x_541); +lean_ctor_set(x_543, 2, x_539); +lean_ctor_set(x_543, 3, x_542); +x_544 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__13; +x_545 = l_Lean_addMacroScope(x_537, x_544, x_532); +x_546 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__12; +lean_inc(x_531); +x_547 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_547, 0, x_531); +lean_ctor_set(x_547, 1, x_546); +lean_ctor_set(x_547, 2, x_545); +lean_ctor_set(x_547, 3, x_540); +x_548 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_build(x_1); +x_549 = l_Array_mkArray3___rarg(x_547, x_528, x_548); +x_550 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__11; +lean_inc(x_531); +x_551 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_551, 0, x_531); +lean_ctor_set(x_551, 1, x_550); +lean_ctor_set(x_551, 2, x_549); +x_552 = l_Array_mkArray2___rarg(x_543, x_551); +x_553 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___closed__6; +x_554 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_554, 0, x_531); +lean_ctor_set(x_554, 1, x_553); +lean_ctor_set(x_554, 2, x_552); +lean_ctor_set(x_533, 0, x_554); +return x_533; +} +else +{ +lean_object* x_555; lean_object* x_556; lean_object* x_557; lean_object* x_558; lean_object* x_559; lean_object* x_560; lean_object* x_561; lean_object* x_562; lean_object* x_563; lean_object* x_564; lean_object* x_565; lean_object* x_566; lean_object* x_567; lean_object* x_568; lean_object* x_569; lean_object* x_570; lean_object* x_571; lean_object* x_572; lean_object* x_573; lean_object* x_574; lean_object* x_575; lean_object* x_576; +x_555 = lean_ctor_get(x_533, 0); +x_556 = lean_ctor_get(x_533, 1); +lean_inc(x_556); +lean_inc(x_555); +lean_dec(x_533); +x_557 = lean_ctor_get(x_555, 0); +lean_inc(x_557); +lean_dec(x_555); +x_558 = lean_environment_main_module(x_557); +x_559 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__5; +lean_inc(x_532); +lean_inc(x_558); +x_560 = l_Lean_addMacroScope(x_558, x_559, x_532); +x_561 = lean_box(0); +x_562 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__2; +x_563 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__10; +lean_inc(x_531); +x_564 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_564, 0, x_531); +lean_ctor_set(x_564, 1, x_562); +lean_ctor_set(x_564, 2, x_560); +lean_ctor_set(x_564, 3, x_563); +x_565 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__13; +x_566 = l_Lean_addMacroScope(x_558, x_565, x_532); +x_567 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__12; +lean_inc(x_531); +x_568 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_568, 0, x_531); +lean_ctor_set(x_568, 1, x_567); +lean_ctor_set(x_568, 2, x_566); +lean_ctor_set(x_568, 3, x_561); +x_569 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_build(x_1); +x_570 = l_Array_mkArray3___rarg(x_568, x_528, x_569); +x_571 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__11; +lean_inc(x_531); +x_572 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_572, 0, x_531); +lean_ctor_set(x_572, 1, x_571); +lean_ctor_set(x_572, 2, x_570); +x_573 = l_Array_mkArray2___rarg(x_564, x_572); +x_574 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___closed__6; +x_575 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_575, 0, x_531); +lean_ctor_set(x_575, 1, x_574); +lean_ctor_set(x_575, 2, x_573); +x_576 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_576, 0, x_575); +lean_ctor_set(x_576, 1, x_556); +return x_576; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +_start: +{ +lean_object* x_10; +x_10 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +lean_dec(x_8); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +return x_10; +} +} static lean_object* _init_l_Lean_Elab_Term_Quotation_tryAddSyntaxNodeKindInfo___closed__1() { _start: { @@ -3821,7 +6162,7 @@ static lean_object* _init_l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1_ _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("Syntax", 6); +x_1 = lean_mk_string_from_bytes("Preresolved", 11); return x_1; } } @@ -3829,50 +6170,54 @@ static lean_object* _init_l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1_ _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("Preresolved", 11); +x_1 = lean_mk_string_from_bytes("namespace", 9); return x_1; } } static lean_object* _init_l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__5() { _start: { -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("namespace", 9); -return x_1; +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__3; +x_2 = l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__3; +x_3 = l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__4; +x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); +return x_4; } } static lean_object* _init_l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__3; -x_2 = l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__4; -x_3 = l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__5; -x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); +x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___closed__4; +x_2 = l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__5; +x_3 = l_Lean_firstFrontendMacroScope; +x_4 = l_Lean_addMacroScope(x_1, x_2, x_3); return x_4; } } static lean_object* _init_l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__7() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___closed__4; -x_2 = l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__6; -x_3 = l_Lean_firstFrontendMacroScope; -x_4 = l_Lean_addMacroScope(x_1, x_2, x_3); -return x_4; +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__1; +x_2 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__3; +x_3 = l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__3; +x_4 = l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__4; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; } } static lean_object* _init_l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__8() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__1; -x_2 = l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__3; -x_3 = l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__4; -x_4 = l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__5; -x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); -return x_5; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__7; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); +return x_3; } } static lean_object* _init_l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__9() { @@ -3890,23 +6235,11 @@ return x_3; static lean_object* _init_l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__10() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__9; -x_3 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3, 0, x_2); -lean_ctor_set(x_3, 1, x_1); -return x_3; -} -} -static lean_object* _init_l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__11() { -_start: -{ lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___closed__2; x_2 = l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__2; -x_3 = l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__7; -x_4 = l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__10; +x_3 = l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__6; +x_4 = l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__9; x_5 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_5, 0, x_1); lean_ctor_set(x_5, 1, x_2); @@ -3915,43 +6248,7 @@ lean_ctor_set(x_5, 3, x_4); return x_5; } } -static lean_object* _init_l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__12() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("quotedName", 10); -return x_1; -} -} -static lean_object* _init_l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__13() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__1; -x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__2; -x_3 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__3; -x_4 = l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__12; -x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); -return x_5; -} -} -static lean_object* _init_l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__14() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes(".", 1); -return x_1; -} -} -static lean_object* _init_l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__15() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("`", 1); -return x_1; -} -} -static lean_object* _init_l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__16() { +static lean_object* _init_l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__11() { _start: { lean_object* x_1; @@ -3959,16 +6256,16 @@ x_1 = lean_mk_string_from_bytes("Syntax.Preresolved.decl", 23); return x_1; } } -static lean_object* _init_l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__17() { +static lean_object* _init_l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__12() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__16; +x_1 = l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__11; x_2 = l_String_toSubstring_x27(x_1); return x_2; } } -static lean_object* _init_l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__18() { +static lean_object* _init_l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__13() { _start: { lean_object* x_1; @@ -3976,72 +6273,72 @@ x_1 = lean_mk_string_from_bytes("decl", 4); return x_1; } } -static lean_object* _init_l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__19() { +static lean_object* _init_l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__14() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__3; -x_2 = l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__4; -x_3 = l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__18; +x_1 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__3; +x_2 = l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__3; +x_3 = l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__13; x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); return x_4; } } -static lean_object* _init_l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__20() { +static lean_object* _init_l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__15() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___closed__4; -x_2 = l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__19; +x_2 = l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__14; x_3 = l_Lean_firstFrontendMacroScope; x_4 = l_Lean_addMacroScope(x_1, x_2, x_3); return x_4; } } -static lean_object* _init_l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__21() { +static lean_object* _init_l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__16() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__1; -x_2 = l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__3; -x_3 = l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__4; -x_4 = l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__18; +x_2 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__3; +x_3 = l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__3; +x_4 = l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__13; x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); return x_5; } } -static lean_object* _init_l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__22() { +static lean_object* _init_l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__17() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__21; +x_2 = l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__16; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__23() { +static lean_object* _init_l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__18() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__22; +x_2 = l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__17; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__24() { +static lean_object* _init_l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__19() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___closed__2; -x_2 = l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__17; -x_3 = l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__20; -x_4 = l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__23; +x_2 = l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__12; +x_3 = l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__15; +x_4 = l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__18; x_5 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_5, 0, x_1); lean_ctor_set(x_5, 1, x_2); @@ -4073,7 +6370,7 @@ x_9 = lean_alloc_ctor(1, 3, 0); lean_ctor_set(x_9, 0, x_7); lean_ctor_set(x_9, 1, x_8); lean_ctor_set(x_9, 2, x_6); -x_10 = l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__11; +x_10 = l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__10; x_11 = l_Array_mkArray2___rarg(x_10, x_9); x_12 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___closed__6; x_13 = lean_alloc_ctor(1, 3, 0); @@ -4089,16 +6386,16 @@ lean_dec(x_2); x_14 = lean_ctor_get(x_4, 0); lean_inc(x_14); lean_dec(x_4); -x_15 = l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__14; +x_15 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__90; x_16 = l_String_intercalate(x_15, x_14); -x_17 = l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__15; +x_17 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__91; x_18 = lean_string_append(x_17, x_16); lean_dec(x_16); x_19 = lean_box(2); x_20 = l_Lean_Syntax_mkNameLit(x_18, x_19); x_21 = l___private_Init_Meta_0__Lean_quoteArray___at_Lean_Elab_Term_Quotation_ArrayStxBuilder_build___spec__1___closed__3; x_22 = lean_array_push(x_21, x_20); -x_23 = l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__13; +x_23 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__89; x_24 = lean_alloc_ctor(1, 3, 0); lean_ctor_set(x_24, 0, x_19); lean_ctor_set(x_24, 1, x_23); @@ -4110,7 +6407,7 @@ x_28 = lean_alloc_ctor(1, 3, 0); lean_ctor_set(x_28, 0, x_26); lean_ctor_set(x_28, 1, x_27); lean_ctor_set(x_28, 2, x_25); -x_29 = l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__11; +x_29 = l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__10; x_30 = l_Array_mkArray2___rarg(x_29, x_28); x_31 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___closed__6; x_32 = lean_alloc_ctor(1, 3, 0); @@ -4144,7 +6441,7 @@ x_42 = lean_alloc_ctor(1, 3, 0); lean_ctor_set(x_42, 0, x_40); lean_ctor_set(x_42, 1, x_41); lean_ctor_set(x_42, 2, x_39); -x_43 = l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__24; +x_43 = l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__19; x_44 = l_Array_mkArray2___rarg(x_43, x_42); x_45 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___closed__6; x_46 = lean_alloc_ctor(1, 3, 0); @@ -4160,16 +6457,16 @@ lean_dec(x_33); x_47 = lean_ctor_get(x_36, 0); lean_inc(x_47); lean_dec(x_36); -x_48 = l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__14; +x_48 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__90; x_49 = l_String_intercalate(x_48, x_47); -x_50 = l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__15; +x_50 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__91; x_51 = lean_string_append(x_50, x_49); lean_dec(x_49); x_52 = lean_box(2); x_53 = l_Lean_Syntax_mkNameLit(x_51, x_52); x_54 = l___private_Init_Meta_0__Lean_quoteArray___at_Lean_Elab_Term_Quotation_ArrayStxBuilder_build___spec__1___closed__3; x_55 = lean_array_push(x_54, x_53); -x_56 = l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__13; +x_56 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__89; x_57 = lean_alloc_ctor(1, 3, 0); lean_ctor_set(x_57, 0, x_52); lean_ctor_set(x_57, 1, x_56); @@ -4181,7 +6478,7 @@ x_61 = lean_alloc_ctor(1, 3, 0); lean_ctor_set(x_61, 0, x_59); lean_ctor_set(x_61, 1, x_60); lean_ctor_set(x_61, 2, x_58); -x_62 = l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__24; +x_62 = l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__19; x_63 = l_Array_mkArray2___rarg(x_62, x_61); x_64 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___closed__6; x_65 = lean_alloc_ctor(1, 3, 0); @@ -5759,16 +8056,16 @@ lean_dec(x_3); x_14 = lean_ctor_get(x_6, 0); lean_inc(x_14); lean_dec(x_6); -x_15 = l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__14; +x_15 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__90; x_16 = l_String_intercalate(x_15, x_14); -x_17 = l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__15; +x_17 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__91; x_18 = lean_string_append(x_17, x_16); lean_dec(x_16); x_19 = lean_box(2); x_20 = l_Lean_Syntax_mkNameLit(x_18, x_19); x_21 = l___private_Init_Meta_0__Lean_quoteArray___at_Lean_Elab_Term_Quotation_ArrayStxBuilder_build___spec__1___closed__3; x_22 = lean_array_push(x_21, x_20); -x_23 = l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__13; +x_23 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__89; x_24 = lean_alloc_ctor(1, 3, 0); lean_ctor_set(x_24, 0, x_19); lean_ctor_set(x_24, 1, x_23); @@ -8398,7 +10695,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__1; -x_2 = l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__3; +x_2 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__3; x_3 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__24___closed__24; x_4 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__24___closed__25; x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); @@ -10835,7 +13132,7 @@ x_13 = lean_alloc_ctor(1, 3, 0); lean_ctor_set(x_13, 0, x_11); lean_ctor_set(x_13, 1, x_12); lean_ctor_set(x_13, 2, x_10); -x_14 = l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__11; +x_14 = l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__10; x_15 = l_Array_mkArray2___rarg(x_14, x_13); x_16 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___closed__6; x_17 = lean_alloc_ctor(1, 3, 0); @@ -10856,16 +13153,16 @@ lean_dec(x_6); x_23 = lean_ctor_get(x_8, 0); lean_inc(x_23); lean_dec(x_8); -x_24 = l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__14; +x_24 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__90; x_25 = l_String_intercalate(x_24, x_23); -x_26 = l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__15; +x_26 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__91; x_27 = lean_string_append(x_26, x_25); lean_dec(x_25); x_28 = lean_box(2); x_29 = l_Lean_Syntax_mkNameLit(x_27, x_28); x_30 = l___private_Init_Meta_0__Lean_quoteArray___at_Lean_Elab_Term_Quotation_ArrayStxBuilder_build___spec__1___closed__3; x_31 = lean_array_push(x_30, x_29); -x_32 = l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__13; +x_32 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__89; x_33 = lean_alloc_ctor(1, 3, 0); lean_ctor_set(x_33, 0, x_28); lean_ctor_set(x_33, 1, x_32); @@ -10877,7 +13174,7 @@ x_37 = lean_alloc_ctor(1, 3, 0); lean_ctor_set(x_37, 0, x_35); lean_ctor_set(x_37, 1, x_36); lean_ctor_set(x_37, 2, x_34); -x_38 = l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__11; +x_38 = l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__10; x_39 = l_Array_mkArray2___rarg(x_38, x_37); x_40 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___closed__6; x_41 = lean_alloc_ctor(1, 3, 0); @@ -10916,7 +13213,7 @@ x_56 = lean_alloc_ctor(1, 3, 0); lean_ctor_set(x_56, 0, x_54); lean_ctor_set(x_56, 1, x_55); lean_ctor_set(x_56, 2, x_53); -x_57 = l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__24; +x_57 = l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__19; x_58 = l_Array_mkArray2___rarg(x_57, x_56); x_59 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___closed__6; x_60 = lean_alloc_ctor(1, 3, 0); @@ -10937,16 +13234,16 @@ lean_dec(x_47); x_66 = lean_ctor_get(x_50, 0); lean_inc(x_66); lean_dec(x_50); -x_67 = l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__14; +x_67 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__90; x_68 = l_String_intercalate(x_67, x_66); -x_69 = l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__15; +x_69 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__91; x_70 = lean_string_append(x_69, x_68); lean_dec(x_68); x_71 = lean_box(2); x_72 = l_Lean_Syntax_mkNameLit(x_70, x_71); x_73 = l___private_Init_Meta_0__Lean_quoteArray___at_Lean_Elab_Term_Quotation_ArrayStxBuilder_build___spec__1___closed__3; x_74 = lean_array_push(x_73, x_72); -x_75 = l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__13; +x_75 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__89; x_76 = lean_alloc_ctor(1, 3, 0); lean_ctor_set(x_76, 0, x_71); lean_ctor_set(x_76, 1, x_75); @@ -10958,7 +13255,7 @@ x_80 = lean_alloc_ctor(1, 3, 0); lean_ctor_set(x_80, 0, x_78); lean_ctor_set(x_80, 1, x_79); lean_ctor_set(x_80, 2, x_77); -x_81 = l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__24; +x_81 = l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__19; x_82 = l_Array_mkArray2___rarg(x_81, x_80); x_83 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___closed__6; x_84 = lean_alloc_ctor(1, 3, 0); @@ -10998,157 +13295,38 @@ static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quot _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("Syntax.node", 11); +x_1 = lean_mk_string_from_bytes("appendCore", 10); return x_1; } } static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__4() { _start: { -lean_object* x_1; lean_object* x_2; -x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__3; -x_2 = l_String_toSubstring_x27(x_1); -return x_2; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___private_Init_Meta_0__Lean_quoteArray_go___at_Lean_Elab_Term_Quotation_ArrayStxBuilder_build___spec__3___closed__2; +x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__3; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; } } static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__5() { _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("node", 4); -return x_1; -} -} -static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__3; -x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__5; -x_3 = l_Lean_Name_mkStr2(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__7() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__1; -x_2 = l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__3; -x_3 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__5; -x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); -return x_4; -} -} -static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__8() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__7; -x_3 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3, 0, x_2); -lean_ctor_set(x_3, 1, x_1); -return x_3; -} -} -static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__9() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___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___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__10() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__9; -x_3 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3, 0, x_2); -lean_ctor_set(x_3, 1, x_1); -return x_3; -} -} -static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__11() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__8; -x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__10; -x_3 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3, 0, x_1); -lean_ctor_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__12() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("info", 4); -return x_1; -} -} -static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__13() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__12; -x_2 = l_String_toSubstring_x27(x_1); -return x_2; -} -} -static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__14() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__12; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__15() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("appendCore", 10); -return x_1; -} -} -static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__16() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Meta_0__Lean_quoteArray_go___at_Lean_Elab_Term_Quotation_ArrayStxBuilder_build___spec__3___closed__2; -x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__15; -x_3 = l_Lean_Name_mkStr2(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__17() { -_start: -{ -lean_object* x_1; x_1 = lean_mk_string_from_bytes("unexpected antiquotation splice", 31); return x_1; } } -static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__18() { +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__6() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__17; +x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__5; x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__19() { +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__7() { _start: { lean_object* x_1; @@ -11156,16 +13334,16 @@ x_1 = lean_mk_string_from_bytes("expected token", 14); return x_1; } } -static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__20() { +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__8() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__19; +x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__7; x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__21() { +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__9() { _start: { lean_object* x_1; @@ -11173,16 +13351,16 @@ x_1 = lean_mk_string_from_bytes("Syntax.atom", 11); return x_1; } } -static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__22() { +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__10() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__21; +x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__9; x_2 = l_String_toSubstring_x27(x_1); return x_2; } } -static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__23() { +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__11() { _start: { lean_object* x_1; @@ -11190,25 +13368,147 @@ x_1 = lean_mk_string_from_bytes("atom", 4); return x_1; } } +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__12() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__3; +x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__11; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__13() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__1; +x_2 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__3; +x_3 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__11; +x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); +return x_4; +} +} +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__14() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__13; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); +return x_3; +} +} +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__15() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___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___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__16() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__15; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); +return x_3; +} +} +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__17() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__14; +x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__16; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set(x_3, 1, x_2); +return x_3; +} +} +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__18() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("SourceInfo.fromRef", 18); +return x_1; +} +} +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__19() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__18; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; +} +} +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__20() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("SourceInfo", 10); +return x_1; +} +} +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__21() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("fromRef", 7); +return x_1; +} +} +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__22() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__20; +x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__21; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__23() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__1; +x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__20; +x_3 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__21; +x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); +return x_4; +} +} static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__24() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__3; +x_1 = lean_box(0); x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__23; -x_3 = l_Lean_Name_mkStr2(x_1, x_2); +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); return x_3; } } static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__25() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__1; -x_2 = l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__3; -x_3 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__23; -x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); -return x_4; +lean_object* x_1; lean_object* x_2; +x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__23; +x_2 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; } } static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__26() { @@ -11226,42 +13526,40 @@ return x_3; static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__27() { _start: { -lean_object* x_1; lean_object* x_2; -x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__25; -x_2 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__28() { -_start: -{ lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__27; -x_3 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3, 0, x_2); -lean_ctor_set(x_3, 1, x_1); -return x_3; -} -} -static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__29() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__26; -x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__28; +x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__24; +x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__26; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); return x_3; } } +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__28() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("namedArgument", 13); +return x_1; +} +} +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__29() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__1; +x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__2; +x_3 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__3; +x_4 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__28; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; +} +} static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__30() { _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("SourceInfo.fromRef", 18); +x_1 = lean_mk_string_from_bytes("canonical", 9); return x_1; } } @@ -11277,60 +13575,56 @@ return x_2; static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__32() { _start: { -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("SourceInfo", 10); -return x_1; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__30; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; } } static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__33() { _start: { lean_object* x_1; -x_1 = lean_mk_string_from_bytes("fromRef", 7); +x_1 = lean_mk_string_from_bytes("true", 4); return x_1; } } static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__34() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__32; -x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__33; -x_3 = l_Lean_Name_mkStr2(x_1, x_2); -return x_3; +lean_object* x_1; lean_object* x_2; +x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__33; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; } } static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__35() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__1; -x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__32; -x_3 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__33; -x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); -return x_4; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__33; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; } } static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__36() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__35; -x_3 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3, 0, x_2); -lean_ctor_set(x_3, 1, x_1); -return x_3; +lean_object* x_1; +x_1 = lean_mk_string_from_bytes("Bool", 4); +return x_1; } } static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__37() { _start: { -lean_object* x_1; lean_object* x_2; -x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__35; -x_2 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_2, 0, x_1); -return x_2; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__36; +x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__33; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; } } static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__38() { @@ -11349,125 +13643,9 @@ static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quot _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__36; +x_1 = lean_box(0); x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__38; x_3 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3, 0, x_1); -lean_ctor_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__40() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("namedArgument", 13); -return x_1; -} -} -static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__41() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__1; -x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__2; -x_3 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__3; -x_4 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__40; -x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); -return x_5; -} -} -static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__42() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("canonical", 9); -return x_1; -} -} -static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__43() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__42; -x_2 = l_String_toSubstring_x27(x_1); -return x_2; -} -} -static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__44() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__42; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__45() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("true", 4); -return x_1; -} -} -static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__46() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__45; -x_2 = l_String_toSubstring_x27(x_1); -return x_2; -} -} -static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__47() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__45; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__48() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("Bool", 4); -return x_1; -} -} -static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__49() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__48; -x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__45; -x_3 = l_Lean_Name_mkStr2(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__50() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__49; -x_3 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3, 0, x_2); -lean_ctor_set(x_3, 1, x_1); -return x_3; -} -} -static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__51() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__50; -x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; @@ -11476,213 +13654,213 @@ return x_3; LEAN_EXPORT lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { -lean_object* x_11; lean_object* x_122; lean_object* x_143; uint8_t x_323; +lean_object* x_11; lean_object* x_36; lean_object* x_57; uint8_t x_237; lean_dec(x_3); lean_inc(x_1); -x_323 = l_Lean_Syntax_isAntiquots(x_1); -if (x_323 == 0) +x_237 = l_Lean_Syntax_isAntiquots(x_1); +if (x_237 == 0) { -uint8_t x_324; +uint8_t x_238; lean_inc(x_1); -x_324 = l_Lean_Syntax_isTokenAntiquot(x_1); -if (x_324 == 0) +x_238 = l_Lean_Syntax_isTokenAntiquot(x_1); +if (x_238 == 0) { -lean_object* x_325; -x_325 = lean_box(0); -x_122 = x_325; -goto block_142; +lean_object* x_239; +x_239 = lean_box(0); +x_36 = x_239; +goto block_56; } else { -uint8_t x_326; -x_326 = l_Lean_Syntax_isEscapedAntiquot(x_1); -if (x_326 == 0) +uint8_t x_240; +x_240 = l_Lean_Syntax_isEscapedAntiquot(x_1); +if (x_240 == 0) { -lean_object* x_327; +lean_object* x_241; lean_dec(x_2); -x_327 = lean_box(0); -x_143 = x_327; -goto block_322; +x_241 = lean_box(0); +x_57 = x_241; +goto block_236; } else { -lean_object* x_328; -x_328 = lean_box(0); -x_122 = x_328; -goto block_142; +lean_object* x_242; +x_242 = lean_box(0); +x_36 = x_242; +goto block_56; } } } else { -lean_object* x_329; uint8_t x_330; +lean_object* x_243; uint8_t x_244; lean_inc(x_1); -x_329 = l_Lean_Syntax_getCanonicalAntiquot(x_1); -x_330 = l_Lean_Syntax_isEscapedAntiquot(x_329); -if (x_330 == 0) +x_243 = l_Lean_Syntax_getCanonicalAntiquot(x_1); +x_244 = l_Lean_Syntax_isEscapedAntiquot(x_243); +if (x_244 == 0) { -lean_object* x_331; lean_object* x_332; uint8_t x_333; lean_object* x_334; lean_object* x_335; lean_object* x_336; uint8_t x_337; +lean_object* x_245; lean_object* x_246; uint8_t x_247; lean_object* x_248; lean_object* x_249; lean_object* x_250; uint8_t x_251; lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); -x_331 = l_Lean_Syntax_antiquotKinds(x_1); -x_332 = lean_ctor_get(x_8, 5); -lean_inc(x_332); -x_333 = 0; -x_334 = l_Lean_SourceInfo_fromRef(x_332, x_333); -x_335 = lean_ctor_get(x_8, 10); -lean_inc(x_335); +x_245 = l_Lean_Syntax_antiquotKinds(x_1); +x_246 = lean_ctor_get(x_8, 5); +lean_inc(x_246); +x_247 = 0; +x_248 = l_Lean_SourceInfo_fromRef(x_246, x_247); +x_249 = lean_ctor_get(x_8, 10); +lean_inc(x_249); lean_dec(x_8); -x_336 = lean_st_ref_get(x_9, x_10); +x_250 = lean_st_ref_get(x_9, x_10); lean_dec(x_9); -x_337 = !lean_is_exclusive(x_336); -if (x_337 == 0) +x_251 = !lean_is_exclusive(x_250); +if (x_251 == 0) { -lean_object* x_338; lean_object* x_339; lean_object* x_340; lean_object* x_341; lean_object* x_342; lean_object* x_343; lean_object* x_344; lean_object* x_345; lean_object* x_346; lean_object* x_347; lean_object* x_348; lean_object* x_349; lean_object* x_350; lean_object* x_351; lean_object* x_352; lean_object* x_353; lean_object* x_354; lean_object* x_355; lean_object* x_356; lean_object* x_357; lean_object* x_358; lean_object* x_359; lean_object* x_360; -x_338 = lean_ctor_get(x_336, 0); -x_339 = lean_ctor_get(x_338, 0); -lean_inc(x_339); -lean_dec(x_338); -x_340 = lean_environment_main_module(x_339); -x_341 = lean_box(0); -x_342 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__24___closed__21; -lean_inc(x_334); -x_343 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_343, 0, x_334); -lean_ctor_set(x_343, 1, x_342); -x_344 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__24___closed__48; -x_345 = l_Lean_addMacroScope(x_340, x_344, x_335); -x_346 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__24___closed__46; -x_347 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__24___closed__51; -lean_inc(x_334); -x_348 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_348, 0, x_334); -lean_ctor_set(x_348, 1, x_346); -lean_ctor_set(x_348, 2, x_345); -lean_ctor_set(x_348, 3, x_347); -x_349 = l_Array_mkArray2___rarg(x_343, x_348); -x_350 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__24___closed__20; -lean_inc(x_334); -x_351 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_351, 0, x_334); -lean_ctor_set(x_351, 1, x_350); -lean_ctor_set(x_351, 2, x_349); -x_352 = l_List_mapTRAux___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__20(x_331, x_341); -x_353 = l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__23(x_352); -x_354 = l_Lean_Syntax_getAntiquotTerm(x_329); -lean_dec(x_329); -x_355 = l_Array_mkArray2___rarg(x_353, x_354); -x_356 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__11; -lean_inc(x_334); -x_357 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_357, 0, x_334); -lean_ctor_set(x_357, 1, x_356); -lean_ctor_set(x_357, 2, x_355); -x_358 = l_Array_mkArray2___rarg(x_351, x_357); -x_359 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___closed__6; -x_360 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_360, 0, x_334); -lean_ctor_set(x_360, 1, x_359); -lean_ctor_set(x_360, 2, x_358); -lean_ctor_set(x_336, 0, x_360); -return x_336; +lean_object* x_252; lean_object* x_253; lean_object* x_254; lean_object* x_255; lean_object* x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; lean_object* x_260; lean_object* x_261; lean_object* x_262; lean_object* x_263; lean_object* x_264; lean_object* x_265; lean_object* x_266; lean_object* x_267; lean_object* x_268; lean_object* x_269; lean_object* x_270; lean_object* x_271; lean_object* x_272; lean_object* x_273; lean_object* x_274; +x_252 = lean_ctor_get(x_250, 0); +x_253 = lean_ctor_get(x_252, 0); +lean_inc(x_253); +lean_dec(x_252); +x_254 = lean_environment_main_module(x_253); +x_255 = lean_box(0); +x_256 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__24___closed__21; +lean_inc(x_248); +x_257 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_257, 0, x_248); +lean_ctor_set(x_257, 1, x_256); +x_258 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__24___closed__48; +x_259 = l_Lean_addMacroScope(x_254, x_258, x_249); +x_260 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__24___closed__46; +x_261 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__24___closed__51; +lean_inc(x_248); +x_262 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_262, 0, x_248); +lean_ctor_set(x_262, 1, x_260); +lean_ctor_set(x_262, 2, x_259); +lean_ctor_set(x_262, 3, x_261); +x_263 = l_Array_mkArray2___rarg(x_257, x_262); +x_264 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__24___closed__20; +lean_inc(x_248); +x_265 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_265, 0, x_248); +lean_ctor_set(x_265, 1, x_264); +lean_ctor_set(x_265, 2, x_263); +x_266 = l_List_mapTRAux___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__20(x_245, x_255); +x_267 = l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__23(x_266); +x_268 = l_Lean_Syntax_getAntiquotTerm(x_243); +lean_dec(x_243); +x_269 = l_Array_mkArray2___rarg(x_267, x_268); +x_270 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__11; +lean_inc(x_248); +x_271 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_271, 0, x_248); +lean_ctor_set(x_271, 1, x_270); +lean_ctor_set(x_271, 2, x_269); +x_272 = l_Array_mkArray2___rarg(x_265, x_271); +x_273 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___closed__6; +x_274 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_274, 0, x_248); +lean_ctor_set(x_274, 1, x_273); +lean_ctor_set(x_274, 2, x_272); +lean_ctor_set(x_250, 0, x_274); +return x_250; } else { -lean_object* x_361; lean_object* x_362; lean_object* x_363; lean_object* x_364; lean_object* x_365; lean_object* x_366; lean_object* x_367; lean_object* x_368; lean_object* x_369; lean_object* x_370; lean_object* x_371; lean_object* x_372; lean_object* x_373; lean_object* x_374; lean_object* x_375; lean_object* x_376; lean_object* x_377; lean_object* x_378; lean_object* x_379; lean_object* x_380; lean_object* x_381; lean_object* x_382; lean_object* x_383; lean_object* x_384; lean_object* x_385; -x_361 = lean_ctor_get(x_336, 0); -x_362 = lean_ctor_get(x_336, 1); -lean_inc(x_362); -lean_inc(x_361); -lean_dec(x_336); -x_363 = lean_ctor_get(x_361, 0); -lean_inc(x_363); -lean_dec(x_361); -x_364 = lean_environment_main_module(x_363); -x_365 = lean_box(0); -x_366 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__24___closed__21; -lean_inc(x_334); -x_367 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_367, 0, x_334); -lean_ctor_set(x_367, 1, x_366); -x_368 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__24___closed__48; -x_369 = l_Lean_addMacroScope(x_364, x_368, x_335); -x_370 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__24___closed__46; -x_371 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__24___closed__51; -lean_inc(x_334); -x_372 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_372, 0, x_334); -lean_ctor_set(x_372, 1, x_370); -lean_ctor_set(x_372, 2, x_369); -lean_ctor_set(x_372, 3, x_371); -x_373 = l_Array_mkArray2___rarg(x_367, x_372); -x_374 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__24___closed__20; -lean_inc(x_334); -x_375 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_375, 0, x_334); -lean_ctor_set(x_375, 1, x_374); -lean_ctor_set(x_375, 2, x_373); -x_376 = l_List_mapTRAux___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__20(x_331, x_365); -x_377 = l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__23(x_376); -x_378 = l_Lean_Syntax_getAntiquotTerm(x_329); -lean_dec(x_329); -x_379 = l_Array_mkArray2___rarg(x_377, x_378); -x_380 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__11; -lean_inc(x_334); -x_381 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_381, 0, x_334); -lean_ctor_set(x_381, 1, x_380); -lean_ctor_set(x_381, 2, x_379); -x_382 = l_Array_mkArray2___rarg(x_375, x_381); -x_383 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___closed__6; -x_384 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_384, 0, x_334); -lean_ctor_set(x_384, 1, x_383); -lean_ctor_set(x_384, 2, x_382); -x_385 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_385, 0, x_384); -lean_ctor_set(x_385, 1, x_362); -return x_385; +lean_object* x_275; lean_object* x_276; lean_object* x_277; lean_object* x_278; lean_object* x_279; lean_object* x_280; lean_object* x_281; lean_object* x_282; lean_object* x_283; lean_object* x_284; lean_object* x_285; lean_object* x_286; lean_object* x_287; lean_object* x_288; lean_object* x_289; lean_object* x_290; lean_object* x_291; lean_object* x_292; lean_object* x_293; lean_object* x_294; lean_object* x_295; lean_object* x_296; lean_object* x_297; lean_object* x_298; lean_object* x_299; +x_275 = lean_ctor_get(x_250, 0); +x_276 = lean_ctor_get(x_250, 1); +lean_inc(x_276); +lean_inc(x_275); +lean_dec(x_250); +x_277 = lean_ctor_get(x_275, 0); +lean_inc(x_277); +lean_dec(x_275); +x_278 = lean_environment_main_module(x_277); +x_279 = lean_box(0); +x_280 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__24___closed__21; +lean_inc(x_248); +x_281 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_281, 0, x_248); +lean_ctor_set(x_281, 1, x_280); +x_282 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__24___closed__48; +x_283 = l_Lean_addMacroScope(x_278, x_282, x_249); +x_284 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__24___closed__46; +x_285 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__24___closed__51; +lean_inc(x_248); +x_286 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_286, 0, x_248); +lean_ctor_set(x_286, 1, x_284); +lean_ctor_set(x_286, 2, x_283); +lean_ctor_set(x_286, 3, x_285); +x_287 = l_Array_mkArray2___rarg(x_281, x_286); +x_288 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__24___closed__20; +lean_inc(x_248); +x_289 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_289, 0, x_248); +lean_ctor_set(x_289, 1, x_288); +lean_ctor_set(x_289, 2, x_287); +x_290 = l_List_mapTRAux___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__20(x_245, x_279); +x_291 = l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__23(x_290); +x_292 = l_Lean_Syntax_getAntiquotTerm(x_243); +lean_dec(x_243); +x_293 = l_Array_mkArray2___rarg(x_291, x_292); +x_294 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__11; +lean_inc(x_248); +x_295 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_295, 0, x_248); +lean_ctor_set(x_295, 1, x_294); +lean_ctor_set(x_295, 2, x_293); +x_296 = l_Array_mkArray2___rarg(x_289, x_295); +x_297 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___closed__6; +x_298 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_298, 0, x_248); +lean_ctor_set(x_298, 1, x_297); +lean_ctor_set(x_298, 2, x_296); +x_299 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_299, 0, x_298); +lean_ctor_set(x_299, 1, x_276); +return x_299; } } else { -uint8_t x_386; -lean_dec(x_329); +uint8_t x_300; +lean_dec(x_243); lean_inc(x_1); -x_386 = l_Lean_Syntax_isTokenAntiquot(x_1); -if (x_386 == 0) +x_300 = l_Lean_Syntax_isTokenAntiquot(x_1); +if (x_300 == 0) { -lean_object* x_387; -x_387 = lean_box(0); -x_122 = x_387; -goto block_142; +lean_object* x_301; +x_301 = lean_box(0); +x_36 = x_301; +goto block_56; } else { -uint8_t x_388; -x_388 = l_Lean_Syntax_isEscapedAntiquot(x_1); -if (x_388 == 0) +uint8_t x_302; +x_302 = l_Lean_Syntax_isEscapedAntiquot(x_1); +if (x_302 == 0) { -lean_object* x_389; +lean_object* x_303; lean_dec(x_2); -x_389 = lean_box(0); -x_143 = x_389; -goto block_322; +x_303 = lean_box(0); +x_57 = x_303; +goto block_236; } else { -lean_object* x_390; -x_390 = lean_box(0); -x_122 = x_390; -goto block_142; +lean_object* x_304; +x_304 = lean_box(0); +x_36 = x_304; +goto block_56; } } } } -block_121: +block_35: { lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; uint8_t x_18; lean_object* x_19; lean_object* x_20; size_t x_21; size_t x_22; lean_object* x_23; lean_dec(x_11); @@ -11705,810 +13883,625 @@ lean_dec(x_20); x_22 = 0; if (x_18 == 0) { -lean_object* x_120; -x_120 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__16; -x_23 = x_120; -goto block_119; +lean_object* x_34; +x_34 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__4; +x_23 = x_34; +goto block_33; } else { x_23 = x_17; -goto block_119; +goto block_33; } -block_119: +block_33: { lean_object* x_24; lean_object* x_25; x_24 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_empty; lean_inc(x_9); lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); x_25 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__24(x_2, x_12, x_22, x_23, x_19, x_21, x_22, x_24, x_4, x_5, x_6, x_7, x_8, x_9, x_15); lean_dec(x_19); lean_dec(x_12); if (lean_obj_tag(x_25) == 0) { -lean_object* x_26; lean_object* x_27; lean_object* x_28; uint8_t x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; uint8_t x_33; +lean_object* x_26; lean_object* x_27; lean_object* x_28; x_26 = lean_ctor_get(x_25, 0); lean_inc(x_26); x_27 = lean_ctor_get(x_25, 1); lean_inc(x_27); lean_dec(x_25); -x_28 = lean_ctor_get(x_8, 5); -lean_inc(x_28); -x_29 = 0; -x_30 = l_Lean_SourceInfo_fromRef(x_28, x_29); -x_31 = lean_ctor_get(x_8, 10); -lean_inc(x_31); -lean_dec(x_8); -x_32 = lean_st_ref_get(x_9, x_27); +x_28 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode(x_26, x_2, x_4, x_5, x_6, x_7, x_8, x_9, x_27); lean_dec(x_9); -x_33 = !lean_is_exclusive(x_32); -if (x_33 == 0) -{ -lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; -x_34 = lean_ctor_get(x_32, 0); -x_35 = lean_ctor_get(x_34, 0); -lean_inc(x_35); -lean_dec(x_34); -x_36 = lean_environment_main_module(x_35); -x_37 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__6; -lean_inc(x_31); -lean_inc(x_36); -x_38 = l_Lean_addMacroScope(x_36, x_37, x_31); -x_39 = lean_box(0); -x_40 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__4; -x_41 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__11; -lean_inc(x_30); -x_42 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_42, 0, x_30); -lean_ctor_set(x_42, 1, x_40); -lean_ctor_set(x_42, 2, x_38); -lean_ctor_set(x_42, 3, x_41); -x_43 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__14; -x_44 = l_Lean_addMacroScope(x_36, x_43, x_31); -x_45 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__13; -lean_inc(x_30); -x_46 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_46, 0, x_30); -lean_ctor_set(x_46, 1, x_45); -lean_ctor_set(x_46, 2, x_44); -lean_ctor_set(x_46, 3, x_39); -lean_inc(x_2); -x_47 = l___private_Init_Meta_0__Lean_getEscapedNameParts_x3f(x_39, x_2); -x_48 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_build(x_26); -if (lean_obj_tag(x_47) == 0) -{ -lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; -x_49 = l_Lean_quoteNameMk(x_2); -x_50 = l_Array_mkArray3___rarg(x_46, x_49, x_48); -x_51 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__11; -lean_inc(x_30); -x_52 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_52, 0, x_30); -lean_ctor_set(x_52, 1, x_51); -lean_ctor_set(x_52, 2, x_50); -x_53 = l_Array_mkArray2___rarg(x_42, x_52); -x_54 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___closed__6; -x_55 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_55, 0, x_30); -lean_ctor_set(x_55, 1, x_54); -lean_ctor_set(x_55, 2, x_53); -lean_ctor_set(x_32, 0, x_55); -return x_32; +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +return x_28; } else { -lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; -lean_dec(x_2); -x_56 = lean_ctor_get(x_47, 0); -lean_inc(x_56); -lean_dec(x_47); -x_57 = l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__14; -x_58 = l_String_intercalate(x_57, x_56); -x_59 = l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__15; -x_60 = lean_string_append(x_59, x_58); -lean_dec(x_58); -x_61 = lean_box(2); -x_62 = l_Lean_Syntax_mkNameLit(x_60, x_61); -x_63 = l___private_Init_Meta_0__Lean_quoteArray___at_Lean_Elab_Term_Quotation_ArrayStxBuilder_build___spec__1___closed__3; -x_64 = lean_array_push(x_63, x_62); -x_65 = l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__13; -x_66 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_66, 0, x_61); -lean_ctor_set(x_66, 1, x_65); -lean_ctor_set(x_66, 2, x_64); -x_67 = l_Array_mkArray3___rarg(x_46, x_66, x_48); -x_68 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__11; -lean_inc(x_30); -x_69 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_69, 0, x_30); -lean_ctor_set(x_69, 1, x_68); -lean_ctor_set(x_69, 2, x_67); -x_70 = l_Array_mkArray2___rarg(x_42, x_69); -x_71 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___closed__6; -x_72 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_72, 0, x_30); -lean_ctor_set(x_72, 1, x_71); -lean_ctor_set(x_72, 2, x_70); -lean_ctor_set(x_32, 0, x_72); -return x_32; -} -} -else -{ -lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; -x_73 = lean_ctor_get(x_32, 0); -x_74 = lean_ctor_get(x_32, 1); -lean_inc(x_74); -lean_inc(x_73); -lean_dec(x_32); -x_75 = lean_ctor_get(x_73, 0); -lean_inc(x_75); -lean_dec(x_73); -x_76 = lean_environment_main_module(x_75); -x_77 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__6; -lean_inc(x_31); -lean_inc(x_76); -x_78 = l_Lean_addMacroScope(x_76, x_77, x_31); -x_79 = lean_box(0); -x_80 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__4; -x_81 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__11; -lean_inc(x_30); -x_82 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_82, 0, x_30); -lean_ctor_set(x_82, 1, x_80); -lean_ctor_set(x_82, 2, x_78); -lean_ctor_set(x_82, 3, x_81); -x_83 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__14; -x_84 = l_Lean_addMacroScope(x_76, x_83, x_31); -x_85 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__13; -lean_inc(x_30); -x_86 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_86, 0, x_30); -lean_ctor_set(x_86, 1, x_85); -lean_ctor_set(x_86, 2, x_84); -lean_ctor_set(x_86, 3, x_79); -lean_inc(x_2); -x_87 = l___private_Init_Meta_0__Lean_getEscapedNameParts_x3f(x_79, x_2); -x_88 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_build(x_26); -if (lean_obj_tag(x_87) == 0) -{ -lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; -x_89 = l_Lean_quoteNameMk(x_2); -x_90 = l_Array_mkArray3___rarg(x_86, x_89, x_88); -x_91 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__11; -lean_inc(x_30); -x_92 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_92, 0, x_30); -lean_ctor_set(x_92, 1, x_91); -lean_ctor_set(x_92, 2, x_90); -x_93 = l_Array_mkArray2___rarg(x_82, x_92); -x_94 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___closed__6; -x_95 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_95, 0, x_30); -lean_ctor_set(x_95, 1, x_94); -lean_ctor_set(x_95, 2, x_93); -x_96 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_96, 0, x_95); -lean_ctor_set(x_96, 1, x_74); -return x_96; -} -else -{ -lean_object* x_97; lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; -lean_dec(x_2); -x_97 = lean_ctor_get(x_87, 0); -lean_inc(x_97); -lean_dec(x_87); -x_98 = l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__14; -x_99 = l_String_intercalate(x_98, x_97); -x_100 = l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__15; -x_101 = lean_string_append(x_100, x_99); -lean_dec(x_99); -x_102 = lean_box(2); -x_103 = l_Lean_Syntax_mkNameLit(x_101, x_102); -x_104 = l___private_Init_Meta_0__Lean_quoteArray___at_Lean_Elab_Term_Quotation_ArrayStxBuilder_build___spec__1___closed__3; -x_105 = lean_array_push(x_104, x_103); -x_106 = l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__13; -x_107 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_107, 0, x_102); -lean_ctor_set(x_107, 1, x_106); -lean_ctor_set(x_107, 2, x_105); -x_108 = l_Array_mkArray3___rarg(x_86, x_107, x_88); -x_109 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__11; -lean_inc(x_30); -x_110 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_110, 0, x_30); -lean_ctor_set(x_110, 1, x_109); -lean_ctor_set(x_110, 2, x_108); -x_111 = l_Array_mkArray2___rarg(x_82, x_110); -x_112 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___closed__6; -x_113 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_113, 0, x_30); -lean_ctor_set(x_113, 1, x_112); -lean_ctor_set(x_113, 2, x_111); -x_114 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_114, 0, x_113); -lean_ctor_set(x_114, 1, x_74); -return x_114; -} -} -} -else -{ -uint8_t x_115; +uint8_t x_29; lean_dec(x_9); lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); lean_dec(x_2); -x_115 = !lean_is_exclusive(x_25); -if (x_115 == 0) +x_29 = !lean_is_exclusive(x_25); +if (x_29 == 0) { return x_25; } else { -lean_object* x_116; lean_object* x_117; lean_object* x_118; -x_116 = lean_ctor_get(x_25, 0); -x_117 = lean_ctor_get(x_25, 1); -lean_inc(x_117); -lean_inc(x_116); +lean_object* x_30; lean_object* x_31; lean_object* x_32; +x_30 = lean_ctor_get(x_25, 0); +x_31 = lean_ctor_get(x_25, 1); +lean_inc(x_31); +lean_inc(x_30); lean_dec(x_25); -x_118 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_118, 0, x_116); -lean_ctor_set(x_118, 1, x_117); -return x_118; +x_32 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_32, 0, x_30); +lean_ctor_set(x_32, 1, x_31); +return x_32; } } } } -block_142: +block_56: { -uint8_t x_123; -lean_dec(x_122); -x_123 = l_Lean_Syntax_isAntiquotSuffixSplice(x_1); -if (x_123 == 0) +uint8_t x_37; +lean_dec(x_36); +x_37 = l_Lean_Syntax_isAntiquotSuffixSplice(x_1); +if (x_37 == 0) { -uint8_t x_124; -x_124 = l_Lean_Syntax_isAntiquotSplice(x_1); -if (x_124 == 0) +uint8_t x_38; +x_38 = l_Lean_Syntax_isAntiquotSplice(x_1); +if (x_38 == 0) { -lean_object* x_125; -x_125 = lean_box(0); -x_11 = x_125; -goto block_121; +lean_object* x_39; +x_39 = lean_box(0); +x_11 = x_39; +goto block_35; } else { -uint8_t x_126; -x_126 = l_Lean_Syntax_isEscapedAntiquot(x_1); -if (x_126 == 0) +uint8_t x_40; +x_40 = l_Lean_Syntax_isEscapedAntiquot(x_1); +if (x_40 == 0) { -lean_object* x_127; lean_object* x_128; +lean_object* x_41; lean_object* x_42; lean_dec(x_2); -x_127 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__18; -x_128 = l_Lean_throwErrorAt___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__25(x_1, x_127, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_128; +x_41 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__6; +x_42 = l_Lean_throwErrorAt___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__25(x_1, x_41, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_42; } else { -lean_object* x_129; -x_129 = lean_box(0); -x_11 = x_129; -goto block_121; +lean_object* x_43; +x_43 = lean_box(0); +x_11 = x_43; +goto block_35; } } } else { -lean_object* x_130; lean_object* x_131; lean_object* x_132; uint8_t x_133; -x_130 = lean_unsigned_to_nat(0u); -x_131 = l_Lean_Syntax_getArg(x_1, x_130); -x_132 = l_Lean_Syntax_getCanonicalAntiquot(x_131); -x_133 = l_Lean_Syntax_isEscapedAntiquot(x_132); -lean_dec(x_132); -if (x_133 == 0) +lean_object* x_44; lean_object* x_45; lean_object* x_46; uint8_t x_47; +x_44 = lean_unsigned_to_nat(0u); +x_45 = l_Lean_Syntax_getArg(x_1, x_44); +x_46 = l_Lean_Syntax_getCanonicalAntiquot(x_45); +x_47 = l_Lean_Syntax_isEscapedAntiquot(x_46); +lean_dec(x_46); +if (x_47 == 0) { -lean_object* x_134; lean_object* x_135; +lean_object* x_48; lean_object* x_49; lean_dec(x_2); -x_134 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__18; -x_135 = l_Lean_throwErrorAt___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__25(x_1, x_134, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_135; +x_48 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__6; +x_49 = l_Lean_throwErrorAt___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__25(x_1, x_48, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_49; } else { -uint8_t x_136; -x_136 = l_Lean_Syntax_isAntiquotSplice(x_1); -if (x_136 == 0) +uint8_t x_50; +x_50 = l_Lean_Syntax_isAntiquotSplice(x_1); +if (x_50 == 0) { -lean_object* x_137; -x_137 = lean_box(0); -x_11 = x_137; -goto block_121; +lean_object* x_51; +x_51 = lean_box(0); +x_11 = x_51; +goto block_35; } else { -uint8_t x_138; -x_138 = l_Lean_Syntax_isEscapedAntiquot(x_1); -if (x_138 == 0) +uint8_t x_52; +x_52 = l_Lean_Syntax_isEscapedAntiquot(x_1); +if (x_52 == 0) { -lean_object* x_139; lean_object* x_140; +lean_object* x_53; lean_object* x_54; lean_dec(x_2); -x_139 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__18; -x_140 = l_Lean_throwErrorAt___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__25(x_1, x_139, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_140; +x_53 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__6; +x_54 = l_Lean_throwErrorAt___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__25(x_1, x_53, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_54; } else { -lean_object* x_141; -x_141 = lean_box(0); -x_11 = x_141; -goto block_121; +lean_object* x_55; +x_55 = lean_box(0); +x_11 = x_55; +goto block_35; } } } } } -block_322: +block_236: { -lean_object* x_144; lean_object* x_145; -lean_dec(x_143); -x_144 = lean_unsigned_to_nat(0u); -x_145 = l_Lean_Syntax_getArg(x_1, x_144); -if (lean_obj_tag(x_145) == 2) +lean_object* x_58; lean_object* x_59; +lean_dec(x_57); +x_58 = lean_unsigned_to_nat(0u); +x_59 = l_Lean_Syntax_getArg(x_1, x_58); +if (lean_obj_tag(x_59) == 2) { -uint8_t x_146; +uint8_t x_60; lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -x_146 = !lean_is_exclusive(x_145); -if (x_146 == 0) +x_60 = !lean_is_exclusive(x_59); +if (x_60 == 0) { -lean_object* x_147; lean_object* x_148; lean_object* x_149; uint8_t x_150; lean_object* x_151; lean_object* x_152; lean_object* x_153; uint8_t x_154; -x_147 = lean_ctor_get(x_145, 1); -x_148 = lean_ctor_get(x_145, 0); -lean_dec(x_148); -x_149 = lean_ctor_get(x_8, 5); -lean_inc(x_149); -x_150 = 0; -x_151 = l_Lean_SourceInfo_fromRef(x_149, x_150); -x_152 = lean_ctor_get(x_8, 10); -lean_inc(x_152); +lean_object* x_61; lean_object* x_62; lean_object* x_63; uint8_t x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; uint8_t x_68; +x_61 = lean_ctor_get(x_59, 1); +x_62 = lean_ctor_get(x_59, 0); +lean_dec(x_62); +x_63 = lean_ctor_get(x_8, 5); +lean_inc(x_63); +x_64 = 0; +x_65 = l_Lean_SourceInfo_fromRef(x_63, x_64); +x_66 = lean_ctor_get(x_8, 10); +lean_inc(x_66); lean_dec(x_8); -x_153 = lean_st_ref_get(x_9, x_10); +x_67 = lean_st_ref_get(x_9, x_10); lean_dec(x_9); -x_154 = !lean_is_exclusive(x_153); -if (x_154 == 0) +x_68 = !lean_is_exclusive(x_67); +if (x_68 == 0) { -lean_object* x_155; lean_object* x_156; lean_object* x_157; lean_object* x_158; lean_object* x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; lean_object* x_164; lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; lean_object* x_169; lean_object* x_170; lean_object* x_171; lean_object* x_172; lean_object* x_173; lean_object* x_174; lean_object* x_175; lean_object* x_176; lean_object* x_177; lean_object* x_178; lean_object* x_179; lean_object* x_180; lean_object* x_181; lean_object* x_182; lean_object* x_183; lean_object* x_184; lean_object* x_185; lean_object* x_186; lean_object* x_187; lean_object* x_188; lean_object* x_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; lean_object* x_193; lean_object* x_194; lean_object* x_195; lean_object* x_196; lean_object* x_197; lean_object* x_198; lean_object* x_199; lean_object* x_200; lean_object* x_201; lean_object* x_202; lean_object* x_203; lean_object* x_204; lean_object* x_205; -x_155 = lean_ctor_get(x_153, 0); -x_156 = lean_ctor_get(x_155, 0); -lean_inc(x_156); -lean_dec(x_155); -x_157 = lean_environment_main_module(x_156); -x_158 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__24; -lean_inc(x_152); -lean_inc(x_157); -x_159 = l_Lean_addMacroScope(x_157, x_158, x_152); -x_160 = lean_box(0); -x_161 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__22; -x_162 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__29; -lean_inc(x_151); -x_163 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_163, 0, x_151); -lean_ctor_set(x_163, 1, x_161); -lean_ctor_set(x_163, 2, x_159); -lean_ctor_set(x_163, 3, x_162); -x_164 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__24___lambda__3___closed__11; -lean_inc(x_151); -lean_ctor_set(x_145, 1, x_164); -lean_ctor_set(x_145, 0, x_151); -x_165 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__34; -lean_inc(x_152); -lean_inc(x_157); -x_166 = l_Lean_addMacroScope(x_157, x_165, x_152); -x_167 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__31; -x_168 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__39; -lean_inc(x_151); -x_169 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_169, 0, x_151); -lean_ctor_set(x_169, 1, x_167); -lean_ctor_set(x_169, 2, x_166); -lean_ctor_set(x_169, 3, x_168); -x_170 = l_Lean_Syntax_getAntiquotTerm(x_1); +lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; +x_69 = lean_ctor_get(x_67, 0); +x_70 = lean_ctor_get(x_69, 0); +lean_inc(x_70); +lean_dec(x_69); +x_71 = lean_environment_main_module(x_70); +x_72 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__12; +lean_inc(x_66); +lean_inc(x_71); +x_73 = l_Lean_addMacroScope(x_71, x_72, x_66); +x_74 = lean_box(0); +x_75 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__10; +x_76 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__17; +lean_inc(x_65); +x_77 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_77, 0, x_65); +lean_ctor_set(x_77, 1, x_75); +lean_ctor_set(x_77, 2, x_73); +lean_ctor_set(x_77, 3, x_76); +x_78 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__24___lambda__3___closed__11; +lean_inc(x_65); +lean_ctor_set(x_59, 1, x_78); +lean_ctor_set(x_59, 0, x_65); +x_79 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__22; +lean_inc(x_66); +lean_inc(x_71); +x_80 = l_Lean_addMacroScope(x_71, x_79, x_66); +x_81 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__19; +x_82 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__27; +lean_inc(x_65); +x_83 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_83, 0, x_65); +lean_ctor_set(x_83, 1, x_81); +lean_ctor_set(x_83, 2, x_80); +lean_ctor_set(x_83, 3, x_82); +x_84 = l_Lean_Syntax_getAntiquotTerm(x_1); lean_dec(x_1); -x_171 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__44; -lean_inc(x_152); -lean_inc(x_157); -x_172 = l_Lean_addMacroScope(x_157, x_171, x_152); -x_173 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__43; -lean_inc(x_151); -x_174 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_174, 0, x_151); -lean_ctor_set(x_174, 1, x_173); -lean_ctor_set(x_174, 2, x_172); -lean_ctor_set(x_174, 3, x_160); -x_175 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__13; -lean_inc(x_151); -x_176 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_176, 0, x_151); -lean_ctor_set(x_176, 1, x_175); -x_177 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__47; -x_178 = l_Lean_addMacroScope(x_157, x_177, x_152); -x_179 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__46; -x_180 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__51; -lean_inc(x_151); -x_181 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_181, 0, x_151); -lean_ctor_set(x_181, 1, x_179); -lean_ctor_set(x_181, 2, x_178); -lean_ctor_set(x_181, 3, x_180); -x_182 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__24___lambda__3___closed__17; -lean_inc(x_151); -x_183 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_183, 0, x_151); -lean_ctor_set(x_183, 1, x_182); -lean_inc(x_183); -lean_inc(x_145); -x_184 = l_Array_mkArray5___rarg(x_145, x_174, x_176, x_181, x_183); -x_185 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__41; -lean_inc(x_151); -x_186 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_186, 0, x_151); -lean_ctor_set(x_186, 1, x_185); -lean_ctor_set(x_186, 2, x_184); -x_187 = l_Array_mkArray2___rarg(x_170, x_186); -x_188 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__11; -lean_inc(x_151); -x_189 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_189, 0, x_151); -lean_ctor_set(x_189, 1, x_188); -lean_ctor_set(x_189, 2, x_187); -x_190 = l_Array_mkArray2___rarg(x_169, x_189); -x_191 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___closed__6; -lean_inc(x_151); -x_192 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_192, 0, x_151); -lean_ctor_set(x_192, 1, x_191); -lean_ctor_set(x_192, 2, x_190); -x_193 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__12; -lean_inc(x_151); -x_194 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_194, 0, x_151); -lean_ctor_set(x_194, 1, x_188); -lean_ctor_set(x_194, 2, x_193); -x_195 = l_Array_mkArray2___rarg(x_192, x_194); -lean_inc(x_151); -x_196 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_196, 0, x_151); -lean_ctor_set(x_196, 1, x_188); -lean_ctor_set(x_196, 2, x_195); -x_197 = l_Array_mkArray3___rarg(x_145, x_196, x_183); -x_198 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__24___lambda__3___closed__10; -lean_inc(x_151); -x_199 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_199, 0, x_151); -lean_ctor_set(x_199, 1, x_198); -lean_ctor_set(x_199, 2, x_197); -x_200 = lean_box(2); -x_201 = l_Lean_Syntax_mkStrLit(x_147, x_200); -lean_dec(x_147); -x_202 = l_Array_mkArray2___rarg(x_199, x_201); -lean_inc(x_151); -x_203 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_203, 0, x_151); -lean_ctor_set(x_203, 1, x_188); -lean_ctor_set(x_203, 2, x_202); -x_204 = l_Array_mkArray2___rarg(x_163, x_203); -x_205 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_205, 0, x_151); -lean_ctor_set(x_205, 1, x_191); -lean_ctor_set(x_205, 2, x_204); -lean_ctor_set(x_153, 0, x_205); -return x_153; +x_85 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__32; +lean_inc(x_66); +lean_inc(x_71); +x_86 = l_Lean_addMacroScope(x_71, x_85, x_66); +x_87 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__31; +lean_inc(x_65); +x_88 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_88, 0, x_65); +lean_ctor_set(x_88, 1, x_87); +lean_ctor_set(x_88, 2, x_86); +lean_ctor_set(x_88, 3, x_74); +x_89 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__13; +lean_inc(x_65); +x_90 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_90, 0, x_65); +lean_ctor_set(x_90, 1, x_89); +x_91 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__35; +x_92 = l_Lean_addMacroScope(x_71, x_91, x_66); +x_93 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__34; +x_94 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__39; +lean_inc(x_65); +x_95 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_95, 0, x_65); +lean_ctor_set(x_95, 1, x_93); +lean_ctor_set(x_95, 2, x_92); +lean_ctor_set(x_95, 3, x_94); +x_96 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__24___lambda__3___closed__17; +lean_inc(x_65); +x_97 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_97, 0, x_65); +lean_ctor_set(x_97, 1, x_96); +lean_inc(x_97); +lean_inc(x_59); +x_98 = l_Array_mkArray5___rarg(x_59, x_88, x_90, x_95, x_97); +x_99 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__29; +lean_inc(x_65); +x_100 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_100, 0, x_65); +lean_ctor_set(x_100, 1, x_99); +lean_ctor_set(x_100, 2, x_98); +x_101 = l_Array_mkArray2___rarg(x_84, x_100); +x_102 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__11; +lean_inc(x_65); +x_103 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_103, 0, x_65); +lean_ctor_set(x_103, 1, x_102); +lean_ctor_set(x_103, 2, x_101); +x_104 = l_Array_mkArray2___rarg(x_83, x_103); +x_105 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___closed__6; +lean_inc(x_65); +x_106 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_106, 0, x_65); +lean_ctor_set(x_106, 1, x_105); +lean_ctor_set(x_106, 2, x_104); +x_107 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__12; +lean_inc(x_65); +x_108 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_108, 0, x_65); +lean_ctor_set(x_108, 1, x_102); +lean_ctor_set(x_108, 2, x_107); +x_109 = l_Array_mkArray2___rarg(x_106, x_108); +lean_inc(x_65); +x_110 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_110, 0, x_65); +lean_ctor_set(x_110, 1, x_102); +lean_ctor_set(x_110, 2, x_109); +x_111 = l_Array_mkArray3___rarg(x_59, x_110, x_97); +x_112 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__24___lambda__3___closed__10; +lean_inc(x_65); +x_113 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_113, 0, x_65); +lean_ctor_set(x_113, 1, x_112); +lean_ctor_set(x_113, 2, x_111); +x_114 = lean_box(2); +x_115 = l_Lean_Syntax_mkStrLit(x_61, x_114); +lean_dec(x_61); +x_116 = l_Array_mkArray2___rarg(x_113, x_115); +lean_inc(x_65); +x_117 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_117, 0, x_65); +lean_ctor_set(x_117, 1, x_102); +lean_ctor_set(x_117, 2, x_116); +x_118 = l_Array_mkArray2___rarg(x_77, x_117); +x_119 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_119, 0, x_65); +lean_ctor_set(x_119, 1, x_105); +lean_ctor_set(x_119, 2, x_118); +lean_ctor_set(x_67, 0, x_119); +return x_67; } else { -lean_object* x_206; lean_object* x_207; lean_object* x_208; lean_object* x_209; lean_object* x_210; lean_object* x_211; lean_object* x_212; lean_object* x_213; lean_object* x_214; lean_object* x_215; lean_object* x_216; lean_object* x_217; lean_object* x_218; lean_object* x_219; lean_object* x_220; lean_object* x_221; lean_object* x_222; lean_object* x_223; lean_object* x_224; lean_object* x_225; lean_object* x_226; lean_object* x_227; lean_object* x_228; lean_object* x_229; lean_object* x_230; lean_object* x_231; lean_object* x_232; lean_object* x_233; lean_object* x_234; lean_object* x_235; lean_object* x_236; lean_object* x_237; lean_object* x_238; lean_object* x_239; lean_object* x_240; lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; lean_object* x_245; lean_object* x_246; lean_object* x_247; lean_object* x_248; lean_object* x_249; lean_object* x_250; lean_object* x_251; lean_object* x_252; lean_object* x_253; lean_object* x_254; lean_object* x_255; lean_object* x_256; lean_object* x_257; lean_object* x_258; -x_206 = lean_ctor_get(x_153, 0); -x_207 = lean_ctor_get(x_153, 1); -lean_inc(x_207); -lean_inc(x_206); -lean_dec(x_153); -x_208 = lean_ctor_get(x_206, 0); -lean_inc(x_208); -lean_dec(x_206); -x_209 = lean_environment_main_module(x_208); -x_210 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__24; -lean_inc(x_152); -lean_inc(x_209); -x_211 = l_Lean_addMacroScope(x_209, x_210, x_152); -x_212 = lean_box(0); -x_213 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__22; -x_214 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__29; -lean_inc(x_151); -x_215 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_215, 0, x_151); -lean_ctor_set(x_215, 1, x_213); -lean_ctor_set(x_215, 2, x_211); -lean_ctor_set(x_215, 3, x_214); -x_216 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__24___lambda__3___closed__11; -lean_inc(x_151); -lean_ctor_set(x_145, 1, x_216); -lean_ctor_set(x_145, 0, x_151); -x_217 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__34; -lean_inc(x_152); -lean_inc(x_209); -x_218 = l_Lean_addMacroScope(x_209, x_217, x_152); -x_219 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__31; -x_220 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__39; -lean_inc(x_151); -x_221 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_221, 0, x_151); -lean_ctor_set(x_221, 1, x_219); -lean_ctor_set(x_221, 2, x_218); -lean_ctor_set(x_221, 3, x_220); -x_222 = l_Lean_Syntax_getAntiquotTerm(x_1); +lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; lean_object* x_153; lean_object* x_154; lean_object* x_155; lean_object* x_156; lean_object* x_157; lean_object* x_158; lean_object* x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; lean_object* x_164; lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; lean_object* x_169; lean_object* x_170; lean_object* x_171; lean_object* x_172; +x_120 = lean_ctor_get(x_67, 0); +x_121 = lean_ctor_get(x_67, 1); +lean_inc(x_121); +lean_inc(x_120); +lean_dec(x_67); +x_122 = lean_ctor_get(x_120, 0); +lean_inc(x_122); +lean_dec(x_120); +x_123 = lean_environment_main_module(x_122); +x_124 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__12; +lean_inc(x_66); +lean_inc(x_123); +x_125 = l_Lean_addMacroScope(x_123, x_124, x_66); +x_126 = lean_box(0); +x_127 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__10; +x_128 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__17; +lean_inc(x_65); +x_129 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_129, 0, x_65); +lean_ctor_set(x_129, 1, x_127); +lean_ctor_set(x_129, 2, x_125); +lean_ctor_set(x_129, 3, x_128); +x_130 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__24___lambda__3___closed__11; +lean_inc(x_65); +lean_ctor_set(x_59, 1, x_130); +lean_ctor_set(x_59, 0, x_65); +x_131 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__22; +lean_inc(x_66); +lean_inc(x_123); +x_132 = l_Lean_addMacroScope(x_123, x_131, x_66); +x_133 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__19; +x_134 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__27; +lean_inc(x_65); +x_135 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_135, 0, x_65); +lean_ctor_set(x_135, 1, x_133); +lean_ctor_set(x_135, 2, x_132); +lean_ctor_set(x_135, 3, x_134); +x_136 = l_Lean_Syntax_getAntiquotTerm(x_1); lean_dec(x_1); -x_223 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__44; -lean_inc(x_152); -lean_inc(x_209); -x_224 = l_Lean_addMacroScope(x_209, x_223, x_152); -x_225 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__43; -lean_inc(x_151); -x_226 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_226, 0, x_151); +x_137 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__32; +lean_inc(x_66); +lean_inc(x_123); +x_138 = l_Lean_addMacroScope(x_123, x_137, x_66); +x_139 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__31; +lean_inc(x_65); +x_140 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_140, 0, x_65); +lean_ctor_set(x_140, 1, x_139); +lean_ctor_set(x_140, 2, x_138); +lean_ctor_set(x_140, 3, x_126); +x_141 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__13; +lean_inc(x_65); +x_142 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_142, 0, x_65); +lean_ctor_set(x_142, 1, x_141); +x_143 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__35; +x_144 = l_Lean_addMacroScope(x_123, x_143, x_66); +x_145 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__34; +x_146 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__39; +lean_inc(x_65); +x_147 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_147, 0, x_65); +lean_ctor_set(x_147, 1, x_145); +lean_ctor_set(x_147, 2, x_144); +lean_ctor_set(x_147, 3, x_146); +x_148 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__24___lambda__3___closed__17; +lean_inc(x_65); +x_149 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_149, 0, x_65); +lean_ctor_set(x_149, 1, x_148); +lean_inc(x_149); +lean_inc(x_59); +x_150 = l_Array_mkArray5___rarg(x_59, x_140, x_142, x_147, x_149); +x_151 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__29; +lean_inc(x_65); +x_152 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_152, 0, x_65); +lean_ctor_set(x_152, 1, x_151); +lean_ctor_set(x_152, 2, x_150); +x_153 = l_Array_mkArray2___rarg(x_136, x_152); +x_154 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__11; +lean_inc(x_65); +x_155 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_155, 0, x_65); +lean_ctor_set(x_155, 1, x_154); +lean_ctor_set(x_155, 2, x_153); +x_156 = l_Array_mkArray2___rarg(x_135, x_155); +x_157 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___closed__6; +lean_inc(x_65); +x_158 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_158, 0, x_65); +lean_ctor_set(x_158, 1, x_157); +lean_ctor_set(x_158, 2, x_156); +x_159 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__12; +lean_inc(x_65); +x_160 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_160, 0, x_65); +lean_ctor_set(x_160, 1, x_154); +lean_ctor_set(x_160, 2, x_159); +x_161 = l_Array_mkArray2___rarg(x_158, x_160); +lean_inc(x_65); +x_162 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_162, 0, x_65); +lean_ctor_set(x_162, 1, x_154); +lean_ctor_set(x_162, 2, x_161); +x_163 = l_Array_mkArray3___rarg(x_59, x_162, x_149); +x_164 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__24___lambda__3___closed__10; +lean_inc(x_65); +x_165 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_165, 0, x_65); +lean_ctor_set(x_165, 1, x_164); +lean_ctor_set(x_165, 2, x_163); +x_166 = lean_box(2); +x_167 = l_Lean_Syntax_mkStrLit(x_61, x_166); +lean_dec(x_61); +x_168 = l_Array_mkArray2___rarg(x_165, x_167); +lean_inc(x_65); +x_169 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_169, 0, x_65); +lean_ctor_set(x_169, 1, x_154); +lean_ctor_set(x_169, 2, x_168); +x_170 = l_Array_mkArray2___rarg(x_129, x_169); +x_171 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_171, 0, x_65); +lean_ctor_set(x_171, 1, x_157); +lean_ctor_set(x_171, 2, x_170); +x_172 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_172, 0, x_171); +lean_ctor_set(x_172, 1, x_121); +return x_172; +} +} +else +{ +lean_object* x_173; lean_object* x_174; uint8_t x_175; lean_object* x_176; lean_object* x_177; lean_object* x_178; lean_object* x_179; lean_object* x_180; lean_object* x_181; lean_object* x_182; lean_object* x_183; lean_object* x_184; lean_object* x_185; lean_object* x_186; lean_object* x_187; lean_object* x_188; lean_object* x_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; lean_object* x_193; lean_object* x_194; lean_object* x_195; lean_object* x_196; lean_object* x_197; lean_object* x_198; lean_object* x_199; lean_object* x_200; lean_object* x_201; lean_object* x_202; lean_object* x_203; lean_object* x_204; lean_object* x_205; lean_object* x_206; lean_object* x_207; lean_object* x_208; lean_object* x_209; lean_object* x_210; lean_object* x_211; lean_object* x_212; lean_object* x_213; lean_object* x_214; lean_object* x_215; lean_object* x_216; lean_object* x_217; lean_object* x_218; lean_object* x_219; lean_object* x_220; lean_object* x_221; lean_object* x_222; lean_object* x_223; lean_object* x_224; lean_object* x_225; lean_object* x_226; lean_object* x_227; lean_object* x_228; lean_object* x_229; lean_object* x_230; lean_object* x_231; lean_object* x_232; lean_object* x_233; +x_173 = lean_ctor_get(x_59, 1); +lean_inc(x_173); +lean_dec(x_59); +x_174 = lean_ctor_get(x_8, 5); +lean_inc(x_174); +x_175 = 0; +x_176 = l_Lean_SourceInfo_fromRef(x_174, x_175); +x_177 = lean_ctor_get(x_8, 10); +lean_inc(x_177); +lean_dec(x_8); +x_178 = lean_st_ref_get(x_9, x_10); +lean_dec(x_9); +x_179 = lean_ctor_get(x_178, 0); +lean_inc(x_179); +x_180 = lean_ctor_get(x_178, 1); +lean_inc(x_180); +if (lean_is_exclusive(x_178)) { + lean_ctor_release(x_178, 0); + lean_ctor_release(x_178, 1); + x_181 = x_178; +} else { + lean_dec_ref(x_178); + x_181 = lean_box(0); +} +x_182 = lean_ctor_get(x_179, 0); +lean_inc(x_182); +lean_dec(x_179); +x_183 = lean_environment_main_module(x_182); +x_184 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__12; +lean_inc(x_177); +lean_inc(x_183); +x_185 = l_Lean_addMacroScope(x_183, x_184, x_177); +x_186 = lean_box(0); +x_187 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__10; +x_188 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__17; +lean_inc(x_176); +x_189 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_189, 0, x_176); +lean_ctor_set(x_189, 1, x_187); +lean_ctor_set(x_189, 2, x_185); +lean_ctor_set(x_189, 3, x_188); +x_190 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__24___lambda__3___closed__11; +lean_inc(x_176); +x_191 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_191, 0, x_176); +lean_ctor_set(x_191, 1, x_190); +x_192 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__22; +lean_inc(x_177); +lean_inc(x_183); +x_193 = l_Lean_addMacroScope(x_183, x_192, x_177); +x_194 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__19; +x_195 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__27; +lean_inc(x_176); +x_196 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_196, 0, x_176); +lean_ctor_set(x_196, 1, x_194); +lean_ctor_set(x_196, 2, x_193); +lean_ctor_set(x_196, 3, x_195); +x_197 = l_Lean_Syntax_getAntiquotTerm(x_1); +lean_dec(x_1); +x_198 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__32; +lean_inc(x_177); +lean_inc(x_183); +x_199 = l_Lean_addMacroScope(x_183, x_198, x_177); +x_200 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__31; +lean_inc(x_176); +x_201 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_201, 0, x_176); +lean_ctor_set(x_201, 1, x_200); +lean_ctor_set(x_201, 2, x_199); +lean_ctor_set(x_201, 3, x_186); +x_202 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__13; +lean_inc(x_176); +x_203 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_203, 0, x_176); +lean_ctor_set(x_203, 1, x_202); +x_204 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__35; +x_205 = l_Lean_addMacroScope(x_183, x_204, x_177); +x_206 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__34; +x_207 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__39; +lean_inc(x_176); +x_208 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_208, 0, x_176); +lean_ctor_set(x_208, 1, x_206); +lean_ctor_set(x_208, 2, x_205); +lean_ctor_set(x_208, 3, x_207); +x_209 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__24___lambda__3___closed__17; +lean_inc(x_176); +x_210 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_210, 0, x_176); +lean_ctor_set(x_210, 1, x_209); +lean_inc(x_210); +lean_inc(x_191); +x_211 = l_Array_mkArray5___rarg(x_191, x_201, x_203, x_208, x_210); +x_212 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__29; +lean_inc(x_176); +x_213 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_213, 0, x_176); +lean_ctor_set(x_213, 1, x_212); +lean_ctor_set(x_213, 2, x_211); +x_214 = l_Array_mkArray2___rarg(x_197, x_213); +x_215 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__11; +lean_inc(x_176); +x_216 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_216, 0, x_176); +lean_ctor_set(x_216, 1, x_215); +lean_ctor_set(x_216, 2, x_214); +x_217 = l_Array_mkArray2___rarg(x_196, x_216); +x_218 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___closed__6; +lean_inc(x_176); +x_219 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_219, 0, x_176); +lean_ctor_set(x_219, 1, x_218); +lean_ctor_set(x_219, 2, x_217); +x_220 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__12; +lean_inc(x_176); +x_221 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_221, 0, x_176); +lean_ctor_set(x_221, 1, x_215); +lean_ctor_set(x_221, 2, x_220); +x_222 = l_Array_mkArray2___rarg(x_219, x_221); +lean_inc(x_176); +x_223 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_223, 0, x_176); +lean_ctor_set(x_223, 1, x_215); +lean_ctor_set(x_223, 2, x_222); +x_224 = l_Array_mkArray3___rarg(x_191, x_223, x_210); +x_225 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__24___lambda__3___closed__10; +lean_inc(x_176); +x_226 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_226, 0, x_176); lean_ctor_set(x_226, 1, x_225); lean_ctor_set(x_226, 2, x_224); -lean_ctor_set(x_226, 3, x_212); -x_227 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__13; -lean_inc(x_151); -x_228 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_228, 0, x_151); -lean_ctor_set(x_228, 1, x_227); -x_229 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__47; -x_230 = l_Lean_addMacroScope(x_209, x_229, x_152); -x_231 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__46; -x_232 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__51; -lean_inc(x_151); -x_233 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_233, 0, x_151); -lean_ctor_set(x_233, 1, x_231); -lean_ctor_set(x_233, 2, x_230); -lean_ctor_set(x_233, 3, x_232); -x_234 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__24___lambda__3___closed__17; -lean_inc(x_151); -x_235 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_235, 0, x_151); -lean_ctor_set(x_235, 1, x_234); -lean_inc(x_235); -lean_inc(x_145); -x_236 = l_Array_mkArray5___rarg(x_145, x_226, x_228, x_233, x_235); -x_237 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__41; -lean_inc(x_151); -x_238 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_238, 0, x_151); -lean_ctor_set(x_238, 1, x_237); -lean_ctor_set(x_238, 2, x_236); -x_239 = l_Array_mkArray2___rarg(x_222, x_238); -x_240 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__11; -lean_inc(x_151); -x_241 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_241, 0, x_151); -lean_ctor_set(x_241, 1, x_240); -lean_ctor_set(x_241, 2, x_239); -x_242 = l_Array_mkArray2___rarg(x_221, x_241); -x_243 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___closed__6; -lean_inc(x_151); -x_244 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_244, 0, x_151); -lean_ctor_set(x_244, 1, x_243); -lean_ctor_set(x_244, 2, x_242); -x_245 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__12; -lean_inc(x_151); -x_246 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_246, 0, x_151); -lean_ctor_set(x_246, 1, x_240); -lean_ctor_set(x_246, 2, x_245); -x_247 = l_Array_mkArray2___rarg(x_244, x_246); -lean_inc(x_151); -x_248 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_248, 0, x_151); -lean_ctor_set(x_248, 1, x_240); -lean_ctor_set(x_248, 2, x_247); -x_249 = l_Array_mkArray3___rarg(x_145, x_248, x_235); -x_250 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__24___lambda__3___closed__10; -lean_inc(x_151); -x_251 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_251, 0, x_151); -lean_ctor_set(x_251, 1, x_250); -lean_ctor_set(x_251, 2, x_249); -x_252 = lean_box(2); -x_253 = l_Lean_Syntax_mkStrLit(x_147, x_252); -lean_dec(x_147); -x_254 = l_Array_mkArray2___rarg(x_251, x_253); -lean_inc(x_151); -x_255 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_255, 0, x_151); -lean_ctor_set(x_255, 1, x_240); -lean_ctor_set(x_255, 2, x_254); -x_256 = l_Array_mkArray2___rarg(x_215, x_255); -x_257 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_257, 0, x_151); -lean_ctor_set(x_257, 1, x_243); -lean_ctor_set(x_257, 2, x_256); -x_258 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_258, 0, x_257); -lean_ctor_set(x_258, 1, x_207); -return x_258; +x_227 = lean_box(2); +x_228 = l_Lean_Syntax_mkStrLit(x_173, x_227); +lean_dec(x_173); +x_229 = l_Array_mkArray2___rarg(x_226, x_228); +lean_inc(x_176); +x_230 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_230, 0, x_176); +lean_ctor_set(x_230, 1, x_215); +lean_ctor_set(x_230, 2, x_229); +x_231 = l_Array_mkArray2___rarg(x_189, x_230); +x_232 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_232, 0, x_176); +lean_ctor_set(x_232, 1, x_218); +lean_ctor_set(x_232, 2, x_231); +if (lean_is_scalar(x_181)) { + x_233 = lean_alloc_ctor(0, 2, 0); +} else { + x_233 = x_181; +} +lean_ctor_set(x_233, 0, x_232); +lean_ctor_set(x_233, 1, x_180); +return x_233; } } else { -lean_object* x_259; lean_object* x_260; uint8_t x_261; lean_object* x_262; lean_object* x_263; lean_object* x_264; lean_object* x_265; lean_object* x_266; lean_object* x_267; lean_object* x_268; lean_object* x_269; lean_object* x_270; lean_object* x_271; lean_object* x_272; lean_object* x_273; lean_object* x_274; lean_object* x_275; lean_object* x_276; lean_object* x_277; lean_object* x_278; lean_object* x_279; lean_object* x_280; lean_object* x_281; lean_object* x_282; lean_object* x_283; lean_object* x_284; lean_object* x_285; lean_object* x_286; lean_object* x_287; lean_object* x_288; lean_object* x_289; lean_object* x_290; lean_object* x_291; lean_object* x_292; lean_object* x_293; lean_object* x_294; lean_object* x_295; lean_object* x_296; lean_object* x_297; lean_object* x_298; lean_object* x_299; lean_object* x_300; lean_object* x_301; lean_object* x_302; lean_object* x_303; lean_object* x_304; lean_object* x_305; lean_object* x_306; lean_object* x_307; lean_object* x_308; lean_object* x_309; lean_object* x_310; lean_object* x_311; lean_object* x_312; lean_object* x_313; lean_object* x_314; lean_object* x_315; lean_object* x_316; lean_object* x_317; lean_object* x_318; lean_object* x_319; -x_259 = lean_ctor_get(x_145, 1); -lean_inc(x_259); -lean_dec(x_145); -x_260 = lean_ctor_get(x_8, 5); -lean_inc(x_260); -x_261 = 0; -x_262 = l_Lean_SourceInfo_fromRef(x_260, x_261); -x_263 = lean_ctor_get(x_8, 10); -lean_inc(x_263); -lean_dec(x_8); -x_264 = lean_st_ref_get(x_9, x_10); -lean_dec(x_9); -x_265 = lean_ctor_get(x_264, 0); -lean_inc(x_265); -x_266 = lean_ctor_get(x_264, 1); -lean_inc(x_266); -if (lean_is_exclusive(x_264)) { - lean_ctor_release(x_264, 0); - lean_ctor_release(x_264, 1); - x_267 = x_264; -} else { - lean_dec_ref(x_264); - x_267 = lean_box(0); -} -x_268 = lean_ctor_get(x_265, 0); -lean_inc(x_268); -lean_dec(x_265); -x_269 = lean_environment_main_module(x_268); -x_270 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__24; -lean_inc(x_263); -lean_inc(x_269); -x_271 = l_Lean_addMacroScope(x_269, x_270, x_263); -x_272 = lean_box(0); -x_273 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__22; -x_274 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__29; -lean_inc(x_262); -x_275 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_275, 0, x_262); -lean_ctor_set(x_275, 1, x_273); -lean_ctor_set(x_275, 2, x_271); -lean_ctor_set(x_275, 3, x_274); -x_276 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__24___lambda__3___closed__11; -lean_inc(x_262); -x_277 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_277, 0, x_262); -lean_ctor_set(x_277, 1, x_276); -x_278 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__34; -lean_inc(x_263); -lean_inc(x_269); -x_279 = l_Lean_addMacroScope(x_269, x_278, x_263); -x_280 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__31; -x_281 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__39; -lean_inc(x_262); -x_282 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_282, 0, x_262); -lean_ctor_set(x_282, 1, x_280); -lean_ctor_set(x_282, 2, x_279); -lean_ctor_set(x_282, 3, x_281); -x_283 = l_Lean_Syntax_getAntiquotTerm(x_1); -lean_dec(x_1); -x_284 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__44; -lean_inc(x_263); -lean_inc(x_269); -x_285 = l_Lean_addMacroScope(x_269, x_284, x_263); -x_286 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__43; -lean_inc(x_262); -x_287 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_287, 0, x_262); -lean_ctor_set(x_287, 1, x_286); -lean_ctor_set(x_287, 2, x_285); -lean_ctor_set(x_287, 3, x_272); -x_288 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__13; -lean_inc(x_262); -x_289 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_289, 0, x_262); -lean_ctor_set(x_289, 1, x_288); -x_290 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__47; -x_291 = l_Lean_addMacroScope(x_269, x_290, x_263); -x_292 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__46; -x_293 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__51; -lean_inc(x_262); -x_294 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_294, 0, x_262); -lean_ctor_set(x_294, 1, x_292); -lean_ctor_set(x_294, 2, x_291); -lean_ctor_set(x_294, 3, x_293); -x_295 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__24___lambda__3___closed__17; -lean_inc(x_262); -x_296 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_296, 0, x_262); -lean_ctor_set(x_296, 1, x_295); -lean_inc(x_296); -lean_inc(x_277); -x_297 = l_Array_mkArray5___rarg(x_277, x_287, x_289, x_294, x_296); -x_298 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__41; -lean_inc(x_262); -x_299 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_299, 0, x_262); -lean_ctor_set(x_299, 1, x_298); -lean_ctor_set(x_299, 2, x_297); -x_300 = l_Array_mkArray2___rarg(x_283, x_299); -x_301 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__11; -lean_inc(x_262); -x_302 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_302, 0, x_262); -lean_ctor_set(x_302, 1, x_301); -lean_ctor_set(x_302, 2, x_300); -x_303 = l_Array_mkArray2___rarg(x_282, x_302); -x_304 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___closed__6; -lean_inc(x_262); -x_305 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_305, 0, x_262); -lean_ctor_set(x_305, 1, x_304); -lean_ctor_set(x_305, 2, x_303); -x_306 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__12; -lean_inc(x_262); -x_307 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_307, 0, x_262); -lean_ctor_set(x_307, 1, x_301); -lean_ctor_set(x_307, 2, x_306); -x_308 = l_Array_mkArray2___rarg(x_305, x_307); -lean_inc(x_262); -x_309 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_309, 0, x_262); -lean_ctor_set(x_309, 1, x_301); -lean_ctor_set(x_309, 2, x_308); -x_310 = l_Array_mkArray3___rarg(x_277, x_309, x_296); -x_311 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__24___lambda__3___closed__10; -lean_inc(x_262); -x_312 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_312, 0, x_262); -lean_ctor_set(x_312, 1, x_311); -lean_ctor_set(x_312, 2, x_310); -x_313 = lean_box(2); -x_314 = l_Lean_Syntax_mkStrLit(x_259, x_313); -lean_dec(x_259); -x_315 = l_Array_mkArray2___rarg(x_312, x_314); -lean_inc(x_262); -x_316 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_316, 0, x_262); -lean_ctor_set(x_316, 1, x_301); -lean_ctor_set(x_316, 2, x_315); -x_317 = l_Array_mkArray2___rarg(x_275, x_316); -x_318 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_318, 0, x_262); -lean_ctor_set(x_318, 1, x_304); -lean_ctor_set(x_318, 2, x_317); -if (lean_is_scalar(x_267)) { - x_319 = lean_alloc_ctor(0, 2, 0); -} else { - x_319 = x_267; -} -lean_ctor_set(x_319, 0, x_318); -lean_ctor_set(x_319, 1, x_266); -return x_319; -} -} -else -{ -lean_object* x_320; lean_object* x_321; -lean_dec(x_145); -x_320 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__20; -x_321 = l_Lean_throwErrorAt___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__25(x_1, x_320, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -return x_321; +lean_object* x_234; lean_object* x_235; +lean_dec(x_59); +x_234 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__8; +x_235 = l_Lean_throwErrorAt___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__25(x_1, x_234, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +return x_235; } } } @@ -12542,7 +14535,7 @@ static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quot _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__3; +x_1 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__3; x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__2___closed__3; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; @@ -12553,7 +14546,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__1; -x_2 = l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__3; +x_2 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__3; x_3 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__2___closed__3; x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); return x_4; @@ -12827,16 +14820,16 @@ lean_dec(x_1); x_153 = lean_ctor_get(x_27, 0); lean_inc(x_153); lean_dec(x_27); -x_154 = l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__14; +x_154 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__90; x_155 = l_String_intercalate(x_154, x_153); -x_156 = l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__15; +x_156 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__91; x_157 = lean_string_append(x_156, x_155); lean_dec(x_155); x_158 = lean_box(2); x_159 = l_Lean_Syntax_mkNameLit(x_157, x_158); x_160 = l___private_Init_Meta_0__Lean_quoteArray___at_Lean_Elab_Term_Quotation_ArrayStxBuilder_build___spec__1___closed__3; x_161 = lean_array_push(x_160, x_159); -x_162 = l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__13; +x_162 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__89; x_163 = lean_alloc_ctor(1, 3, 0); lean_ctor_set(x_163, 0, x_158); lean_ctor_set(x_163, 1, x_162); @@ -12868,11 +14861,11 @@ lean_ctor_set(x_42, 0, x_30); lean_ctor_set(x_42, 1, x_40); lean_ctor_set(x_42, 2, x_39); lean_ctor_set(x_42, 3, x_41); -x_43 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__14; +x_43 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__13; lean_inc(x_31); lean_inc(x_37); x_44 = l_Lean_addMacroScope(x_37, x_43, x_31); -x_45 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__13; +x_45 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__12; lean_inc(x_30); x_46 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_46, 0, x_30); @@ -13004,11 +14997,11 @@ lean_ctor_set(x_100, 0, x_30); lean_ctor_set(x_100, 1, x_98); lean_ctor_set(x_100, 2, x_97); lean_ctor_set(x_100, 3, x_99); -x_101 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__14; +x_101 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__13; lean_inc(x_31); lean_inc(x_95); x_102 = l_Lean_addMacroScope(x_95, x_101, x_31); -x_103 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__13; +x_103 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__12; lean_inc(x_30); x_104 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_104, 0, x_30); @@ -13313,22 +15306,22 @@ x_36 = lean_ctor_get(x_35, 0); lean_inc(x_36); lean_dec(x_35); x_37 = lean_environment_main_module(x_36); -x_38 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__24; +x_38 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__12; lean_inc(x_32); lean_inc(x_37); x_39 = l_Lean_addMacroScope(x_37, x_38, x_32); x_40 = lean_box(0); -x_41 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__22; -x_42 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__29; +x_41 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__10; +x_42 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__17; lean_inc(x_31); x_43 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_43, 0, x_31); lean_ctor_set(x_43, 1, x_41); lean_ctor_set(x_43, 2, x_39); lean_ctor_set(x_43, 3, x_42); -x_44 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__14; +x_44 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__13; x_45 = l_Lean_addMacroScope(x_37, x_44, x_32); -x_46 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__13; +x_46 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__12; lean_inc(x_31); x_47 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_47, 0, x_31); @@ -13366,22 +15359,22 @@ x_58 = lean_ctor_get(x_56, 0); lean_inc(x_58); lean_dec(x_56); x_59 = lean_environment_main_module(x_58); -x_60 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__24; +x_60 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__12; lean_inc(x_32); lean_inc(x_59); x_61 = l_Lean_addMacroScope(x_59, x_60, x_32); x_62 = lean_box(0); -x_63 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__22; -x_64 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__29; +x_63 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__10; +x_64 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__17; lean_inc(x_31); x_65 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_65, 0, x_31); lean_ctor_set(x_65, 1, x_63); lean_ctor_set(x_65, 2, x_61); lean_ctor_set(x_65, 3, x_64); -x_66 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__14; +x_66 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__13; x_67 = l_Lean_addMacroScope(x_59, x_66, x_32); -x_68 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__13; +x_68 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__12; lean_inc(x_31); x_69 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_69, 0, x_31); @@ -13464,9 +15457,9 @@ lean_ctor_set(x_1, 3, x_100); lean_ctor_set(x_1, 2, x_97); lean_ctor_set(x_1, 1, x_99); lean_ctor_set(x_1, 0, x_89); -x_101 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__14; +x_101 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__13; x_102 = l_Lean_addMacroScope(x_95, x_101, x_90); -x_103 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__13; +x_103 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__12; lean_inc(x_89); x_104 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_104, 0, x_89); @@ -13521,14 +15514,14 @@ lean_dec(x_81); x_124 = lean_ctor_get(x_105, 0); lean_inc(x_124); lean_dec(x_105); -x_125 = l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__14; +x_125 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__90; x_126 = l_String_intercalate(x_125, x_124); -x_127 = l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__15; +x_127 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__91; x_128 = lean_string_append(x_127, x_126); lean_dec(x_126); x_129 = l_Lean_Syntax_mkNameLit(x_128, x_111); x_130 = lean_array_push(x_113, x_129); -x_131 = l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__13; +x_131 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__89; x_132 = lean_alloc_ctor(1, 3, 0); lean_ctor_set(x_132, 0, x_111); lean_ctor_set(x_132, 1, x_131); @@ -13574,9 +15567,9 @@ lean_ctor_set(x_1, 3, x_147); lean_ctor_set(x_1, 2, x_144); lean_ctor_set(x_1, 1, x_146); lean_ctor_set(x_1, 0, x_89); -x_148 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__14; +x_148 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__13; x_149 = l_Lean_addMacroScope(x_142, x_148, x_90); -x_150 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__13; +x_150 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__12; lean_inc(x_89); x_151 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_151, 0, x_89); @@ -13633,14 +15626,14 @@ lean_dec(x_81); x_172 = lean_ctor_get(x_152, 0); lean_inc(x_172); lean_dec(x_152); -x_173 = l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__14; +x_173 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__90; x_174 = l_String_intercalate(x_173, x_172); -x_175 = l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__15; +x_175 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__91; x_176 = lean_string_append(x_175, x_174); lean_dec(x_174); x_177 = l_Lean_Syntax_mkNameLit(x_176, x_158); x_178 = lean_array_push(x_160, x_177); -x_179 = l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__13; +x_179 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__89; x_180 = lean_alloc_ctor(1, 3, 0); lean_ctor_set(x_180, 0, x_158); lean_ctor_set(x_180, 1, x_179); @@ -13739,9 +15732,9 @@ lean_ctor_set(x_211, 0, x_198); lean_ctor_set(x_211, 1, x_209); lean_ctor_set(x_211, 2, x_207); lean_ctor_set(x_211, 3, x_210); -x_212 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__14; +x_212 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__13; x_213 = l_Lean_addMacroScope(x_205, x_212, x_199); -x_214 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__13; +x_214 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__12; lean_inc(x_198); x_215 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_215, 0, x_198); @@ -13802,14 +15795,14 @@ lean_dec(x_191); x_236 = lean_ctor_get(x_216, 0); lean_inc(x_236); lean_dec(x_216); -x_237 = l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__14; +x_237 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__90; x_238 = l_String_intercalate(x_237, x_236); -x_239 = l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__15; +x_239 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__91; x_240 = lean_string_append(x_239, x_238); lean_dec(x_238); x_241 = l_Lean_Syntax_mkNameLit(x_240, x_222); x_242 = lean_array_push(x_224, x_241); -x_243 = l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__13; +x_243 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__89; x_244 = lean_alloc_ctor(1, 3, 0); lean_ctor_set(x_244, 0, x_222); lean_ctor_set(x_244, 1, x_243); @@ -17056,11 +19049,11 @@ lean_inc(x_19); x_41 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_41, 0, x_19); lean_ctor_set(x_41, 1, x_40); -x_42 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__14; +x_42 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__13; lean_inc(x_20); lean_inc(x_26); x_43 = l_Lean_addMacroScope(x_26, x_42, x_20); -x_44 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__13; +x_44 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__12; lean_inc(x_19); x_45 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_45, 0, x_19); @@ -17198,16 +19191,16 @@ lean_dec(x_11); x_149 = lean_ctor_get(x_90, 0); lean_inc(x_149); lean_dec(x_90); -x_150 = l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__14; +x_150 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__90; x_151 = l_String_intercalate(x_150, x_149); -x_152 = l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__15; +x_152 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__91; x_153 = lean_string_append(x_152, x_151); lean_dec(x_151); x_154 = lean_box(2); x_155 = l_Lean_Syntax_mkNameLit(x_153, x_154); x_156 = l___private_Init_Meta_0__Lean_quoteArray___at_Lean_Elab_Term_Quotation_ArrayStxBuilder_build___spec__1___closed__3; x_157 = lean_array_push(x_156, x_155); -x_158 = l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__13; +x_158 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__89; x_159 = lean_alloc_ctor(1, 3, 0); lean_ctor_set(x_159, 0, x_154); lean_ctor_set(x_159, 1, x_158); @@ -18387,7 +20380,7 @@ return x_98; } } } -static lean_object* _init_l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__1() { +static lean_object* _init_l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__1() { _start: { lean_object* x_1; @@ -18395,16 +20388,16 @@ x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Term_Quotation_stxQuot_expand), 8, return x_1; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227_(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383_(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { _start: { lean_object* x_10; lean_object* x_11; -x_10 = l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__1; +x_10 = l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__1; x_11 = l_Lean_Elab_Term_adaptExpander(x_10, x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); return x_11; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__1() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; @@ -18416,7 +20409,7 @@ x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); return x_5; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__2() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -18426,47 +20419,47 @@ x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__3() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__2; +x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__2; x_2 = l_Lean_Elab_Term_Quotation_commandElab__stx__quot_____closed__1; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__4() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__3; +x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__3; x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__3; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__5() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__4; +x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__4; x_2 = l_Lean_Elab_Term_Quotation_commandElab__stx__quot_____closed__2; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__6() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__5; +x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__5; x_2 = l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot____1___closed__23; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__7() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__7() { _start: { lean_object* x_1; @@ -18474,47 +20467,47 @@ x_1 = lean_mk_string_from_bytes("_@", 2); return x_1; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__8() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__6; -x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__7; +x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__6; +x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__7; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__9() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__8; +x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__8; x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__1; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__10() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__9; +x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__9; x_2 = l_Lean_Elab_Term_Quotation_commandElab__stx__quot_____closed__1; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__11() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__11() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__10; +x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__10; x_2 = l_Lean_Elab_Term_Quotation_commandElab__stx__quot_____closed__2; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__12() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__12() { _start: { lean_object* x_1; @@ -18522,27 +20515,27 @@ x_1 = lean_mk_string_from_bytes("_hyg", 4); return x_1; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__13() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__13() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__11; -x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__12; +x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__11; +x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__12; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__14() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__14() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__13; -x_2 = lean_unsigned_to_nat(7227u); +x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__13; +x_2 = lean_unsigned_to_nat(8383u); x_3 = l_Lean_Name_num___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__15() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__15() { _start: { lean_object* x_1; @@ -18550,31 +20543,31 @@ x_1 = l_Lean_Elab_Term_termElabAttribute; return x_1; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__16() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__16() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227_), 9, 0); +x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383_), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383_(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_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__15; -x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__1; -x_4 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__14; -x_5 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__16; +x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__15; +x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__1; +x_4 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__14; +x_5 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__16; 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___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227__declRange___closed__1() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383__declRange___closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(256u); +x_1 = lean_unsigned_to_nat(269u); x_2 = lean_unsigned_to_nat(0u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -18582,11 +20575,11 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227__declRange___closed__2() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383__declRange___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(256u); +x_1 = lean_unsigned_to_nat(269u); x_2 = lean_unsigned_to_nat(31u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -18594,13 +20587,13 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227__declRange___closed__3() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383__declRange___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227__declRange___closed__1; +x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383__declRange___closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227__declRange___closed__2; +x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383__declRange___closed__2; x_4 = lean_unsigned_to_nat(31u); x_5 = lean_alloc_ctor(0, 4, 0); lean_ctor_set(x_5, 0, x_1); @@ -18610,37 +20603,37 @@ lean_ctor_set(x_5, 3, x_4); return x_5; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227__declRange___closed__4() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383__declRange___closed__4() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227__declRange___closed__3; +x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383__declRange___closed__3; x_2 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_2, 0, x_1); lean_ctor_set(x_2, 1, x_1); return x_2; } } -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227__declRange(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383__declRange(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__14; -x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227__declRange___closed__4; +x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__14; +x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383__declRange___closed__4; x_4 = l_Lean_addBuiltinDeclarationRanges(x_2, x_3, x_1); return x_4; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7250_(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8406_(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { _start: { lean_object* x_10; lean_object* x_11; -x_10 = l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__1; +x_10 = l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__1; x_11 = l_Lean_Elab_Term_adaptExpander(x_10, x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); return x_11; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7250____closed__1() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8406____closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; @@ -18652,41 +20645,41 @@ x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); return x_5; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7250____closed__2() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8406____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__13; -x_2 = lean_unsigned_to_nat(7250u); +x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__13; +x_2 = lean_unsigned_to_nat(8406u); x_3 = l_Lean_Name_num___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7250____closed__3() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8406____closed__3() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7250_), 9, 0); +x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8406_), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7250_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8406_(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_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__15; -x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7250____closed__1; -x_4 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7250____closed__2; -x_5 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7250____closed__3; +x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__15; +x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8406____closed__1; +x_4 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8406____closed__2; +x_5 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8406____closed__3; 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___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7250__declRange___closed__1() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8406__declRange___closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(257u); +x_1 = lean_unsigned_to_nat(270u); x_2 = lean_unsigned_to_nat(0u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -18694,11 +20687,11 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7250__declRange___closed__2() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8406__declRange___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(257u); +x_1 = lean_unsigned_to_nat(270u); x_2 = lean_unsigned_to_nat(30u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -18706,13 +20699,13 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7250__declRange___closed__3() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8406__declRange___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7250__declRange___closed__1; +x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8406__declRange___closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7250__declRange___closed__2; +x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8406__declRange___closed__2; x_4 = lean_unsigned_to_nat(30u); x_5 = lean_alloc_ctor(0, 4, 0); lean_ctor_set(x_5, 0, x_1); @@ -18722,37 +20715,37 @@ lean_ctor_set(x_5, 3, x_4); return x_5; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7250__declRange___closed__4() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8406__declRange___closed__4() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7250__declRange___closed__3; +x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8406__declRange___closed__3; x_2 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_2, 0, x_1); lean_ctor_set(x_2, 1, x_1); return x_2; } } -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7250__declRange(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8406__declRange(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7250____closed__2; -x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7250__declRange___closed__4; +x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8406____closed__2; +x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8406__declRange___closed__4; x_4 = l_Lean_addBuiltinDeclarationRanges(x_2, x_3, x_1); return x_4; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7273_(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8429_(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { _start: { lean_object* x_10; lean_object* x_11; -x_10 = l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__1; +x_10 = l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__1; x_11 = l_Lean_Elab_Term_adaptExpander(x_10, x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); return x_11; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7273____closed__1() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8429____closed__1() { _start: { lean_object* x_1; @@ -18760,54 +20753,54 @@ x_1 = lean_mk_string_from_bytes("funBinder", 9); return x_1; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7273____closed__2() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8429____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__1; x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__2; x_3 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__3; -x_4 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7273____closed__1; +x_4 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8429____closed__1; x_5 = l_Lean_Elab_Term_Quotation_getQuotKind___closed__4; x_6 = l_Lean_Name_mkStr5(x_1, x_2, x_3, x_4, x_5); return x_6; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7273____closed__3() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8429____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__13; -x_2 = lean_unsigned_to_nat(7273u); +x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__13; +x_2 = lean_unsigned_to_nat(8429u); x_3 = l_Lean_Name_num___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7273____closed__4() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8429____closed__4() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7273_), 9, 0); +x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8429_), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7273_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8429_(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_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__15; -x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7273____closed__2; -x_4 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7273____closed__3; -x_5 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7273____closed__4; +x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__15; +x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8429____closed__2; +x_4 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8429____closed__3; +x_5 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8429____closed__4; 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___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7273__declRange___closed__1() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8429__declRange___closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(258u); +x_1 = lean_unsigned_to_nat(271u); x_2 = lean_unsigned_to_nat(0u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -18815,11 +20808,11 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7273__declRange___closed__2() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8429__declRange___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(258u); +x_1 = lean_unsigned_to_nat(271u); x_2 = lean_unsigned_to_nat(40u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -18827,13 +20820,13 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7273__declRange___closed__3() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8429__declRange___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7273__declRange___closed__1; +x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8429__declRange___closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7273__declRange___closed__2; +x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8429__declRange___closed__2; x_4 = lean_unsigned_to_nat(40u); x_5 = lean_alloc_ctor(0, 4, 0); lean_ctor_set(x_5, 0, x_1); @@ -18843,37 +20836,37 @@ lean_ctor_set(x_5, 3, x_4); return x_5; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7273__declRange___closed__4() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8429__declRange___closed__4() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7273__declRange___closed__3; +x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8429__declRange___closed__3; x_2 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_2, 0, x_1); lean_ctor_set(x_2, 1, x_1); return x_2; } } -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7273__declRange(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8429__declRange(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7273____closed__3; -x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7273__declRange___closed__4; +x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8429____closed__3; +x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8429__declRange___closed__4; x_4 = l_Lean_addBuiltinDeclarationRanges(x_2, x_3, x_1); return x_4; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7296_(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8452_(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { _start: { lean_object* x_10; lean_object* x_11; -x_10 = l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__1; +x_10 = l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__1; x_11 = l_Lean_Elab_Term_adaptExpander(x_10, x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); return x_11; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7296____closed__1() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8452____closed__1() { _start: { lean_object* x_1; @@ -18881,54 +20874,54 @@ x_1 = lean_mk_string_from_bytes("bracketedBinder", 15); return x_1; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7296____closed__2() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8452____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__1; x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__2; x_3 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__3; -x_4 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7296____closed__1; +x_4 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8452____closed__1; x_5 = l_Lean_Elab_Term_Quotation_getQuotKind___closed__4; x_6 = l_Lean_Name_mkStr5(x_1, x_2, x_3, x_4, x_5); return x_6; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7296____closed__3() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8452____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__13; -x_2 = lean_unsigned_to_nat(7296u); +x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__13; +x_2 = lean_unsigned_to_nat(8452u); x_3 = l_Lean_Name_num___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7296____closed__4() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8452____closed__4() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7296_), 9, 0); +x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8452_), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7296_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8452_(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_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__15; -x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7296____closed__2; -x_4 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7296____closed__3; -x_5 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7296____closed__4; +x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__15; +x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8452____closed__2; +x_4 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8452____closed__3; +x_5 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8452____closed__4; 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___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7296__declRange___closed__1() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8452__declRange___closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(259u); +x_1 = lean_unsigned_to_nat(272u); x_2 = lean_unsigned_to_nat(0u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -18936,11 +20929,11 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7296__declRange___closed__2() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8452__declRange___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(259u); +x_1 = lean_unsigned_to_nat(272u); x_2 = lean_unsigned_to_nat(46u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -18948,13 +20941,13 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7296__declRange___closed__3() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8452__declRange___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7296__declRange___closed__1; +x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8452__declRange___closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7296__declRange___closed__2; +x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8452__declRange___closed__2; x_4 = lean_unsigned_to_nat(46u); x_5 = lean_alloc_ctor(0, 4, 0); lean_ctor_set(x_5, 0, x_1); @@ -18964,37 +20957,37 @@ lean_ctor_set(x_5, 3, x_4); return x_5; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7296__declRange___closed__4() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8452__declRange___closed__4() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7296__declRange___closed__3; +x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8452__declRange___closed__3; x_2 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_2, 0, x_1); lean_ctor_set(x_2, 1, x_1); return x_2; } } -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7296__declRange(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8452__declRange(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7296____closed__3; -x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7296__declRange___closed__4; +x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8452____closed__3; +x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8452__declRange___closed__4; x_4 = l_Lean_addBuiltinDeclarationRanges(x_2, x_3, x_1); return x_4; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7319_(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8475_(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { _start: { lean_object* x_10; lean_object* x_11; -x_10 = l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__1; +x_10 = l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__1; x_11 = l_Lean_Elab_Term_adaptExpander(x_10, x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); return x_11; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7319____closed__1() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8475____closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; @@ -19007,41 +21000,41 @@ x_6 = l_Lean_Name_mkStr5(x_1, x_2, x_3, x_4, x_5); return x_6; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7319____closed__2() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8475____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__13; -x_2 = lean_unsigned_to_nat(7319u); +x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__13; +x_2 = lean_unsigned_to_nat(8475u); x_3 = l_Lean_Name_num___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7319____closed__3() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8475____closed__3() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7319_), 9, 0); +x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8475_), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7319_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8475_(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_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__15; -x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7319____closed__1; -x_4 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7319____closed__2; -x_5 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7319____closed__3; +x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__15; +x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8475____closed__1; +x_4 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8475____closed__2; +x_5 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8475____closed__3; 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___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7319__declRange___closed__1() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8475__declRange___closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(260u); +x_1 = lean_unsigned_to_nat(273u); x_2 = lean_unsigned_to_nat(0u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -19049,11 +21042,11 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7319__declRange___closed__2() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8475__declRange___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(260u); +x_1 = lean_unsigned_to_nat(273u); x_2 = lean_unsigned_to_nat(41u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -19061,13 +21054,13 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7319__declRange___closed__3() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8475__declRange___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7319__declRange___closed__1; +x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8475__declRange___closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7319__declRange___closed__2; +x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8475__declRange___closed__2; x_4 = lean_unsigned_to_nat(41u); x_5 = lean_alloc_ctor(0, 4, 0); lean_ctor_set(x_5, 0, x_1); @@ -19077,37 +21070,37 @@ lean_ctor_set(x_5, 3, x_4); return x_5; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7319__declRange___closed__4() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8475__declRange___closed__4() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7319__declRange___closed__3; +x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8475__declRange___closed__3; x_2 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_2, 0, x_1); lean_ctor_set(x_2, 1, x_1); return x_2; } } -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7319__declRange(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8475__declRange(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7319____closed__2; -x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7319__declRange___closed__4; +x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8475____closed__2; +x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8475__declRange___closed__4; x_4 = l_Lean_addBuiltinDeclarationRanges(x_2, x_3, x_1); return x_4; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7342_(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8498_(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { _start: { lean_object* x_10; lean_object* x_11; -x_10 = l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__1; +x_10 = l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__1; x_11 = l_Lean_Elab_Term_adaptExpander(x_10, x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); return x_11; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7342____closed__1() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8498____closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; @@ -19119,41 +21112,41 @@ x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); return x_5; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7342____closed__2() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8498____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__13; -x_2 = lean_unsigned_to_nat(7342u); +x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__13; +x_2 = lean_unsigned_to_nat(8498u); x_3 = l_Lean_Name_num___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7342____closed__3() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8498____closed__3() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7342_), 9, 0); +x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8498_), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7342_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8498_(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_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__15; -x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7342____closed__1; -x_4 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7342____closed__2; -x_5 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7342____closed__3; +x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__15; +x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8498____closed__1; +x_4 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8498____closed__2; +x_5 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8498____closed__3; 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___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7342__declRange___closed__1() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8498__declRange___closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(261u); +x_1 = lean_unsigned_to_nat(274u); x_2 = lean_unsigned_to_nat(0u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -19161,11 +21154,11 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7342__declRange___closed__2() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8498__declRange___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(261u); +x_1 = lean_unsigned_to_nat(274u); x_2 = lean_unsigned_to_nat(32u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -19173,13 +21166,13 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7342__declRange___closed__3() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8498__declRange___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7342__declRange___closed__1; +x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8498__declRange___closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7342__declRange___closed__2; +x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8498__declRange___closed__2; x_4 = lean_unsigned_to_nat(32u); x_5 = lean_alloc_ctor(0, 4, 0); lean_ctor_set(x_5, 0, x_1); @@ -19189,37 +21182,37 @@ lean_ctor_set(x_5, 3, x_4); return x_5; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7342__declRange___closed__4() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8498__declRange___closed__4() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7342__declRange___closed__3; +x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8498__declRange___closed__3; x_2 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_2, 0, x_1); lean_ctor_set(x_2, 1, x_1); return x_2; } } -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7342__declRange(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8498__declRange(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7342____closed__2; -x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7342__declRange___closed__4; +x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8498____closed__2; +x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8498__declRange___closed__4; x_4 = l_Lean_addBuiltinDeclarationRanges(x_2, x_3, x_1); return x_4; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7365_(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8521_(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { _start: { lean_object* x_10; lean_object* x_11; -x_10 = l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__1; +x_10 = l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__1; x_11 = l_Lean_Elab_Term_adaptExpander(x_10, x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); return x_11; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7365____closed__1() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8521____closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; @@ -19231,41 +21224,41 @@ x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); return x_5; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7365____closed__2() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8521____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__13; -x_2 = lean_unsigned_to_nat(7365u); +x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__13; +x_2 = lean_unsigned_to_nat(8521u); x_3 = l_Lean_Name_num___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7365____closed__3() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8521____closed__3() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7365_), 9, 0); +x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8521_), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7365_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8521_(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_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__15; -x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7365____closed__1; -x_4 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7365____closed__2; -x_5 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7365____closed__3; +x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__15; +x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8521____closed__1; +x_4 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8521____closed__2; +x_5 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8521____closed__3; 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___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7365__declRange___closed__1() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8521__declRange___closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(262u); +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); @@ -19273,11 +21266,11 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7365__declRange___closed__2() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8521__declRange___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(262u); +x_1 = lean_unsigned_to_nat(275u); x_2 = lean_unsigned_to_nat(35u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -19285,13 +21278,13 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7365__declRange___closed__3() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8521__declRange___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7365__declRange___closed__1; +x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8521__declRange___closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7365__declRange___closed__2; +x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8521__declRange___closed__2; x_4 = lean_unsigned_to_nat(35u); x_5 = lean_alloc_ctor(0, 4, 0); lean_ctor_set(x_5, 0, x_1); @@ -19301,37 +21294,37 @@ lean_ctor_set(x_5, 3, x_4); return x_5; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7365__declRange___closed__4() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8521__declRange___closed__4() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7365__declRange___closed__3; +x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8521__declRange___closed__3; x_2 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_2, 0, x_1); lean_ctor_set(x_2, 1, x_1); return x_2; } } -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7365__declRange(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8521__declRange(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7365____closed__2; -x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7365__declRange___closed__4; +x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8521____closed__2; +x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8521__declRange___closed__4; x_4 = l_Lean_addBuiltinDeclarationRanges(x_2, x_3, x_1); return x_4; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7388_(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8544_(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { _start: { lean_object* x_10; lean_object* x_11; -x_10 = l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__1; +x_10 = l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__1; x_11 = l_Lean_Elab_Term_adaptExpander(x_10, x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); return x_11; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7388____closed__1() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8544____closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; @@ -19344,41 +21337,41 @@ x_6 = l_Lean_Name_mkStr5(x_1, x_2, x_3, x_4, x_5); return x_6; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7388____closed__2() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8544____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__13; -x_2 = lean_unsigned_to_nat(7388u); +x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__13; +x_2 = lean_unsigned_to_nat(8544u); x_3 = l_Lean_Name_num___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7388____closed__3() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8544____closed__3() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7388_), 9, 0); +x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8544_), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7388_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8544_(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_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__15; -x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7388____closed__1; -x_4 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7388____closed__2; -x_5 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7388____closed__3; +x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__15; +x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8544____closed__1; +x_4 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8544____closed__2; +x_5 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8544____closed__3; 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___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7388__declRange___closed__1() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8544__declRange___closed__1() { _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(276u); x_2 = lean_unsigned_to_nat(0u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -19386,11 +21379,11 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7388__declRange___closed__2() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8544__declRange___closed__2() { _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(276u); x_2 = lean_unsigned_to_nat(34u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -19398,13 +21391,13 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7388__declRange___closed__3() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8544__declRange___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7388__declRange___closed__1; +x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8544__declRange___closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7388__declRange___closed__2; +x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8544__declRange___closed__2; x_4 = lean_unsigned_to_nat(34u); x_5 = lean_alloc_ctor(0, 4, 0); lean_ctor_set(x_5, 0, x_1); @@ -19414,37 +21407,37 @@ lean_ctor_set(x_5, 3, x_4); return x_5; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7388__declRange___closed__4() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8544__declRange___closed__4() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7388__declRange___closed__3; +x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8544__declRange___closed__3; x_2 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_2, 0, x_1); lean_ctor_set(x_2, 1, x_1); return x_2; } } -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7388__declRange(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8544__declRange(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7388____closed__2; -x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7388__declRange___closed__4; +x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8544____closed__2; +x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8544__declRange___closed__4; x_4 = l_Lean_addBuiltinDeclarationRanges(x_2, x_3, x_1); return x_4; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7411_(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8567_(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { _start: { lean_object* x_10; lean_object* x_11; -x_10 = l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__1; +x_10 = l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__1; x_11 = l_Lean_Elab_Term_adaptExpander(x_10, x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); return x_11; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7411____closed__1() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8567____closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; @@ -19457,41 +21450,41 @@ x_6 = l_Lean_Name_mkStr5(x_1, x_2, x_3, x_4, x_5); return x_6; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7411____closed__2() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8567____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__13; -x_2 = lean_unsigned_to_nat(7411u); +x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__13; +x_2 = lean_unsigned_to_nat(8567u); x_3 = l_Lean_Name_num___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7411____closed__3() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8567____closed__3() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7411_), 9, 0); +x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8567_), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7411_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8567_(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_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__15; -x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7411____closed__1; -x_4 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7411____closed__2; -x_5 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7411____closed__3; +x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__15; +x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8567____closed__1; +x_4 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8567____closed__2; +x_5 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8567____closed__3; 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___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7411__declRange___closed__1() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8567__declRange___closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(264u); +x_1 = lean_unsigned_to_nat(277u); x_2 = lean_unsigned_to_nat(0u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -19499,11 +21492,11 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7411__declRange___closed__2() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8567__declRange___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(264u); +x_1 = lean_unsigned_to_nat(277u); x_2 = lean_unsigned_to_nat(35u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -19511,13 +21504,13 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7411__declRange___closed__3() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8567__declRange___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7411__declRange___closed__1; +x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8567__declRange___closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7411__declRange___closed__2; +x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8567__declRange___closed__2; x_4 = lean_unsigned_to_nat(35u); x_5 = lean_alloc_ctor(0, 4, 0); lean_ctor_set(x_5, 0, x_1); @@ -19527,37 +21520,37 @@ lean_ctor_set(x_5, 3, x_4); return x_5; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7411__declRange___closed__4() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8567__declRange___closed__4() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7411__declRange___closed__3; +x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8567__declRange___closed__3; x_2 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_2, 0, x_1); lean_ctor_set(x_2, 1, x_1); return x_2; } } -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7411__declRange(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8567__declRange(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7411____closed__2; -x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7411__declRange___closed__4; +x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8567____closed__2; +x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8567__declRange___closed__4; x_4 = l_Lean_addBuiltinDeclarationRanges(x_2, x_3, x_1); return x_4; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7434_(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8590_(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { _start: { lean_object* x_10; lean_object* x_11; -x_10 = l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__1; +x_10 = l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__1; x_11 = l_Lean_Elab_Term_adaptExpander(x_10, x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); return x_11; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7434____closed__1() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8590____closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; @@ -19570,41 +21563,41 @@ x_6 = l_Lean_Name_mkStr5(x_1, x_2, x_3, x_4, x_5); return x_6; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7434____closed__2() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8590____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__13; -x_2 = lean_unsigned_to_nat(7434u); +x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__13; +x_2 = lean_unsigned_to_nat(8590u); x_3 = l_Lean_Name_num___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7434____closed__3() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8590____closed__3() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7434_), 9, 0); +x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8590_), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7434_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8590_(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_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__15; -x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7434____closed__1; -x_4 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7434____closed__2; -x_5 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7434____closed__3; +x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__15; +x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8590____closed__1; +x_4 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8590____closed__2; +x_5 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8590____closed__3; 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___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7434__declRange___closed__1() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8590__declRange___closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(265u); +x_1 = lean_unsigned_to_nat(278u); x_2 = lean_unsigned_to_nat(0u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -19612,11 +21605,11 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7434__declRange___closed__2() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8590__declRange___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(265u); +x_1 = lean_unsigned_to_nat(278u); x_2 = lean_unsigned_to_nat(35u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -19624,13 +21617,13 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7434__declRange___closed__3() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8590__declRange___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7434__declRange___closed__1; +x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8590__declRange___closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7434__declRange___closed__2; +x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8590__declRange___closed__2; x_4 = lean_unsigned_to_nat(35u); x_5 = lean_alloc_ctor(0, 4, 0); lean_ctor_set(x_5, 0, x_1); @@ -19640,37 +21633,37 @@ lean_ctor_set(x_5, 3, x_4); return x_5; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7434__declRange___closed__4() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8590__declRange___closed__4() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7434__declRange___closed__3; +x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8590__declRange___closed__3; x_2 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_2, 0, x_1); lean_ctor_set(x_2, 1, x_1); return x_2; } } -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7434__declRange(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8590__declRange(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7434____closed__2; -x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7434__declRange___closed__4; +x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8590____closed__2; +x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8590__declRange___closed__4; x_4 = l_Lean_addBuiltinDeclarationRanges(x_2, x_3, x_1); return x_4; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7457_(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8613_(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { _start: { lean_object* x_10; lean_object* x_11; -x_10 = l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__1; +x_10 = l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__1; x_11 = l_Lean_Elab_Term_adaptExpander(x_10, x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); return x_11; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7457____closed__1() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8613____closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; @@ -19683,41 +21676,41 @@ x_6 = l_Lean_Name_mkStr5(x_1, x_2, x_3, x_4, x_5); return x_6; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7457____closed__2() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8613____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__13; -x_2 = lean_unsigned_to_nat(7457u); +x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__13; +x_2 = lean_unsigned_to_nat(8613u); x_3 = l_Lean_Name_num___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7457____closed__3() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8613____closed__3() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7457_), 9, 0); +x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8613_), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7457_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8613_(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_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__15; -x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7457____closed__1; -x_4 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7457____closed__2; -x_5 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7457____closed__3; +x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__15; +x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8613____closed__1; +x_4 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8613____closed__2; +x_5 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8613____closed__3; 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___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7457__declRange___closed__1() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8613__declRange___closed__1() { _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(279u); x_2 = lean_unsigned_to_nat(0u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -19725,11 +21718,11 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7457__declRange___closed__2() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8613__declRange___closed__2() { _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(279u); x_2 = lean_unsigned_to_nat(35u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -19737,13 +21730,13 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7457__declRange___closed__3() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8613__declRange___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7457__declRange___closed__1; +x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8613__declRange___closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7457__declRange___closed__2; +x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8613__declRange___closed__2; x_4 = lean_unsigned_to_nat(35u); x_5 = lean_alloc_ctor(0, 4, 0); lean_ctor_set(x_5, 0, x_1); @@ -19753,37 +21746,37 @@ lean_ctor_set(x_5, 3, x_4); return x_5; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7457__declRange___closed__4() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8613__declRange___closed__4() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7457__declRange___closed__3; +x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8613__declRange___closed__3; x_2 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_2, 0, x_1); lean_ctor_set(x_2, 1, x_1); return x_2; } } -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7457__declRange(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8613__declRange(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7457____closed__2; -x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7457__declRange___closed__4; +x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8613____closed__2; +x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8613__declRange___closed__4; x_4 = l_Lean_addBuiltinDeclarationRanges(x_2, x_3, x_1); return x_4; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7480_(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8636_(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { _start: { lean_object* x_10; lean_object* x_11; -x_10 = l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__1; +x_10 = l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__1; x_11 = l_Lean_Elab_Term_adaptExpander(x_10, x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); return x_11; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7480____closed__1() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8636____closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; @@ -19796,41 +21789,41 @@ x_6 = l_Lean_Name_mkStr5(x_1, x_2, x_3, x_4, x_5); return x_6; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7480____closed__2() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8636____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__13; -x_2 = lean_unsigned_to_nat(7480u); +x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__13; +x_2 = lean_unsigned_to_nat(8636u); x_3 = l_Lean_Name_num___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7480____closed__3() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8636____closed__3() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7480_), 9, 0); +x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8636_), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7480_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8636_(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_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__15; -x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7480____closed__1; -x_4 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7480____closed__2; -x_5 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7480____closed__3; +x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__15; +x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8636____closed__1; +x_4 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8636____closed__2; +x_5 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8636____closed__3; 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___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7480__declRange___closed__1() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8636__declRange___closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(267u); +x_1 = lean_unsigned_to_nat(280u); x_2 = lean_unsigned_to_nat(0u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -19838,11 +21831,11 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7480__declRange___closed__2() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8636__declRange___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(267u); +x_1 = lean_unsigned_to_nat(280u); x_2 = lean_unsigned_to_nat(37u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -19850,13 +21843,13 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7480__declRange___closed__3() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8636__declRange___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7480__declRange___closed__1; +x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8636__declRange___closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7480__declRange___closed__2; +x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8636__declRange___closed__2; x_4 = lean_unsigned_to_nat(37u); x_5 = lean_alloc_ctor(0, 4, 0); lean_ctor_set(x_5, 0, x_1); @@ -19866,37 +21859,37 @@ lean_ctor_set(x_5, 3, x_4); return x_5; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7480__declRange___closed__4() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8636__declRange___closed__4() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7480__declRange___closed__3; +x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8636__declRange___closed__3; x_2 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_2, 0, x_1); lean_ctor_set(x_2, 1, x_1); return x_2; } } -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7480__declRange(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8636__declRange(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7480____closed__2; -x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7480__declRange___closed__4; +x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8636____closed__2; +x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8636__declRange___closed__4; x_4 = l_Lean_addBuiltinDeclarationRanges(x_2, x_3, x_1); return x_4; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7503_(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8659_(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { _start: { lean_object* x_10; lean_object* x_11; -x_10 = l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__1; +x_10 = l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__1; x_11 = l_Lean_Elab_Term_adaptExpander(x_10, x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); return x_11; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7503____closed__1() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8659____closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; @@ -19908,41 +21901,41 @@ x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); return x_5; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7503____closed__2() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8659____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__13; -x_2 = lean_unsigned_to_nat(7503u); +x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__13; +x_2 = lean_unsigned_to_nat(8659u); x_3 = l_Lean_Name_num___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7503____closed__3() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8659____closed__3() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7503_), 9, 0); +x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8659_), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7503_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8659_(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_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__15; -x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7503____closed__1; -x_4 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7503____closed__2; -x_5 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7503____closed__3; +x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__15; +x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8659____closed__1; +x_4 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8659____closed__2; +x_5 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8659____closed__3; 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___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7503__declRange___closed__1() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8659__declRange___closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(268u); +x_1 = lean_unsigned_to_nat(281u); x_2 = lean_unsigned_to_nat(0u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -19950,11 +21943,11 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7503__declRange___closed__2() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8659__declRange___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(268u); +x_1 = lean_unsigned_to_nat(281u); x_2 = lean_unsigned_to_nat(37u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -19962,13 +21955,13 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7503__declRange___closed__3() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8659__declRange___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7503__declRange___closed__1; +x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8659__declRange___closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7503__declRange___closed__2; +x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8659__declRange___closed__2; x_4 = lean_unsigned_to_nat(37u); x_5 = lean_alloc_ctor(0, 4, 0); lean_ctor_set(x_5, 0, x_1); @@ -19978,37 +21971,37 @@ lean_ctor_set(x_5, 3, x_4); return x_5; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7503__declRange___closed__4() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8659__declRange___closed__4() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7503__declRange___closed__3; +x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8659__declRange___closed__3; x_2 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_2, 0, x_1); lean_ctor_set(x_2, 1, x_1); return x_2; } } -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7503__declRange(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8659__declRange(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7503____closed__2; -x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7503__declRange___closed__4; +x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8659____closed__2; +x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8659__declRange___closed__4; x_4 = l_Lean_addBuiltinDeclarationRanges(x_2, x_3, x_1); return x_4; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7526_(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8682_(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { _start: { lean_object* x_10; lean_object* x_11; -x_10 = l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__1; +x_10 = l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__1; x_11 = l_Lean_Elab_Term_adaptExpander(x_10, x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); return x_11; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7526____closed__1() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8682____closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; @@ -20020,41 +22013,41 @@ x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); return x_5; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7526____closed__2() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8682____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__13; -x_2 = lean_unsigned_to_nat(7526u); +x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__13; +x_2 = lean_unsigned_to_nat(8682u); x_3 = l_Lean_Name_num___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7526____closed__3() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8682____closed__3() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7526_), 9, 0); +x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8682_), 9, 0); return x_1; } } -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7526_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8682_(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_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__15; -x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7526____closed__1; -x_4 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7526____closed__2; -x_5 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7526____closed__3; +x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__15; +x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8682____closed__1; +x_4 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8682____closed__2; +x_5 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8682____closed__3; 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___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7526__declRange___closed__1() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8682__declRange___closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(269u); +x_1 = lean_unsigned_to_nat(282u); x_2 = lean_unsigned_to_nat(0u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -20062,11 +22055,11 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7526__declRange___closed__2() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8682__declRange___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(269u); +x_1 = lean_unsigned_to_nat(282u); x_2 = lean_unsigned_to_nat(33u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -20074,13 +22067,13 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7526__declRange___closed__3() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8682__declRange___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7526__declRange___closed__1; +x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8682__declRange___closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7526__declRange___closed__2; +x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8682__declRange___closed__2; x_4 = lean_unsigned_to_nat(33u); x_5 = lean_alloc_ctor(0, 4, 0); lean_ctor_set(x_5, 0, x_1); @@ -20090,23 +22083,23 @@ lean_ctor_set(x_5, 3, x_4); return x_5; } } -static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7526__declRange___closed__4() { +static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8682__declRange___closed__4() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7526__declRange___closed__3; +x_1 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8682__declRange___closed__3; x_2 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_2, 0, x_1); lean_ctor_set(x_2, 1, x_1); return x_2; } } -LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7526__declRange(lean_object* x_1) { +LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8682__declRange(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7526____closed__2; -x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7526__declRange___closed__4; +x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8682____closed__2; +x_3 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8682__declRange___closed__4; x_4 = l_Lean_addBuiltinDeclarationRanges(x_2, x_3, x_1); return x_4; } @@ -20549,7 +22542,7 @@ x_9 = l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Ter x_10 = l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__3___closed__3; x_11 = l_Array_mkArray3___rarg(x_9, x_6, x_10); x_12 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___closed__2; -x_13 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7250____closed__1; +x_13 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8406____closed__1; x_14 = lean_alloc_ctor(1, 3, 0); lean_ctor_set(x_14, 0, x_12); lean_ctor_set(x_14, 1, x_13); @@ -20592,7 +22585,7 @@ static lean_object* _init_l_List_mapM_loop___at___private_Lean_Elab_Quotation_0_ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__3; +x_1 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__3; x_2 = l_List_mapM_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__4___closed__3; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; @@ -20603,7 +22596,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__1; -x_2 = l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__3; +x_2 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__3; x_3 = l_List_mapM_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__4___closed__3; x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); return x_4; @@ -20916,7 +22909,7 @@ x_16 = l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Te x_17 = l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__3___closed__3; x_18 = l_Array_mkArray3___rarg(x_16, x_13, x_17); x_19 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___closed__2; -x_20 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7250____closed__1; +x_20 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8406____closed__1; x_21 = lean_alloc_ctor(1, 3, 0); lean_ctor_set(x_21, 0, x_19); lean_ctor_set(x_21, 1, x_20); @@ -20943,7 +22936,7 @@ x_29 = l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Te x_30 = l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__3___closed__3; x_31 = l_Array_mkArray3___rarg(x_29, x_28, x_30); x_32 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepStxFromSplice___closed__2; -x_33 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7250____closed__1; +x_33 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8406____closed__1; x_34 = lean_alloc_ctor(1, 3, 0); lean_ctor_set(x_34, 0, x_32); lean_ctor_set(x_34, 1, x_33); @@ -22787,7 +24780,7 @@ static lean_object* _init_l_List_foldlM___at___private_Lean_Elab_Quotation_0__Le _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__3; +x_1 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__3; x_2 = l_List_foldlM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__17___closed__7; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; @@ -22798,7 +24791,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__1; -x_2 = l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__3; +x_2 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__3; x_3 = l_List_foldlM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__17___closed__7; x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); return x_4; @@ -22982,16 +24975,16 @@ lean_dec(x_15); x_70 = lean_ctor_get(x_48, 0); lean_inc(x_70); lean_dec(x_48); -x_71 = l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__14; +x_71 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__90; x_72 = l_String_intercalate(x_71, x_70); -x_73 = l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__15; +x_73 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__91; x_74 = lean_string_append(x_73, x_72); lean_dec(x_72); x_75 = lean_box(2); x_76 = l_Lean_Syntax_mkNameLit(x_74, x_75); x_77 = l___private_Init_Meta_0__Lean_quoteArray___at_Lean_Elab_Term_Quotation_ArrayStxBuilder_build___spec__1___closed__3; x_78 = lean_array_push(x_77, x_76); -x_79 = l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__13; +x_79 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__89; x_80 = lean_alloc_ctor(1, 3, 0); lean_ctor_set(x_80, 0, x_75); lean_ctor_set(x_80, 1, x_79); @@ -23193,16 +25186,16 @@ lean_dec(x_96); x_152 = lean_ctor_get(x_130, 0); lean_inc(x_152); lean_dec(x_130); -x_153 = l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__14; +x_153 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__90; x_154 = l_String_intercalate(x_153, x_152); -x_155 = l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__15; +x_155 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__91; x_156 = lean_string_append(x_155, x_154); lean_dec(x_154); x_157 = lean_box(2); x_158 = l_Lean_Syntax_mkNameLit(x_156, x_157); x_159 = l___private_Init_Meta_0__Lean_quoteArray___at_Lean_Elab_Term_Quotation_ArrayStxBuilder_build___spec__1___closed__3; x_160 = lean_array_push(x_159, x_158); -x_161 = l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__13; +x_161 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__89; x_162 = lean_alloc_ctor(1, 3, 0); lean_ctor_set(x_162, 0, x_157); lean_ctor_set(x_162, 1, x_161); @@ -23796,9 +25789,9 @@ lean_ctor_set(x_46, 0, x_22); lean_ctor_set(x_46, 1, x_45); lean_ctor_set(x_46, 2, x_40); lean_ctor_set(x_46, 3, x_44); -x_47 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__47; +x_47 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__35; x_48 = l_Lean_addMacroScope(x_28, x_47, x_23); -x_49 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__49; +x_49 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__37; lean_inc(x_3); x_50 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_50, 0, x_49); @@ -23806,7 +25799,7 @@ lean_ctor_set(x_50, 1, x_3); x_51 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_51, 0, x_50); lean_ctor_set(x_51, 1, x_3); -x_52 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__46; +x_52 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__34; lean_inc(x_22); x_53 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_53, 0, x_22); @@ -23928,9 +25921,9 @@ lean_ctor_set(x_94, 0, x_22); lean_ctor_set(x_94, 1, x_93); lean_ctor_set(x_94, 2, x_88); lean_ctor_set(x_94, 3, x_92); -x_95 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__47; +x_95 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__35; x_96 = l_Lean_addMacroScope(x_76, x_95, x_23); -x_97 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__49; +x_97 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__37; lean_inc(x_3); x_98 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_98, 0, x_97); @@ -23938,7 +25931,7 @@ lean_ctor_set(x_98, 1, x_3); x_99 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_99, 0, x_98); lean_ctor_set(x_99, 1, x_3); -x_100 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__46; +x_100 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__34; lean_inc(x_22); x_101 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_101, 0, x_22); @@ -24110,7 +26103,7 @@ static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quot _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__3; +x_1 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__3; x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__10___closed__3; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; @@ -24121,7 +26114,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__1; -x_2 = l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__3; +x_2 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__3; x_3 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__10___closed__3; x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); return x_4; @@ -24166,7 +26159,7 @@ static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quot _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__3; +x_1 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__3; x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__10___closed__9; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; @@ -24177,7 +26170,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__1; -x_2 = l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__3; +x_2 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__3; x_3 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__10___closed__9; x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); return x_4; @@ -24222,7 +26215,7 @@ static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quot _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__3; +x_1 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__3; x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__10___closed__15; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; @@ -24233,7 +26226,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__1; -x_2 = l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__3; +x_2 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__3; x_3 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__10___closed__15; x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); return x_4; @@ -24401,16 +26394,16 @@ lean_dec(x_5); x_54 = lean_ctor_get(x_45, 0); lean_inc(x_54); lean_dec(x_45); -x_55 = l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__14; +x_55 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__90; x_56 = l_String_intercalate(x_55, x_54); -x_57 = l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__15; +x_57 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__91; x_58 = lean_string_append(x_57, x_56); lean_dec(x_56); x_59 = lean_box(2); x_60 = l_Lean_Syntax_mkNameLit(x_58, x_59); x_61 = l___private_Init_Meta_0__Lean_quoteArray___at_Lean_Elab_Term_Quotation_ArrayStxBuilder_build___spec__1___closed__3; x_62 = lean_array_push(x_61, x_60); -x_63 = l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__13; +x_63 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__89; x_64 = lean_alloc_ctor(1, 3, 0); lean_ctor_set(x_64, 0, x_59); lean_ctor_set(x_64, 1, x_63); @@ -24522,16 +26515,16 @@ lean_dec(x_94); x_104 = lean_ctor_get(x_95, 0); lean_inc(x_104); lean_dec(x_95); -x_105 = l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__14; +x_105 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__90; x_106 = l_String_intercalate(x_105, x_104); -x_107 = l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__15; +x_107 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__91; x_108 = lean_string_append(x_107, x_106); lean_dec(x_106); x_109 = lean_box(2); x_110 = l_Lean_Syntax_mkNameLit(x_108, x_109); x_111 = l___private_Init_Meta_0__Lean_quoteArray___at_Lean_Elab_Term_Quotation_ArrayStxBuilder_build___spec__1___closed__3; x_112 = lean_array_push(x_111, x_110); -x_113 = l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__13; +x_113 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__89; x_114 = lean_alloc_ctor(1, 3, 0); lean_ctor_set(x_114, 0, x_109); lean_ctor_set(x_114, 1, x_113); @@ -24722,16 +26715,16 @@ lean_dec(x_5); x_186 = lean_ctor_get(x_177, 0); lean_inc(x_186); lean_dec(x_177); -x_187 = l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__14; +x_187 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__90; x_188 = l_String_intercalate(x_187, x_186); -x_189 = l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__15; +x_189 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__91; x_190 = lean_string_append(x_189, x_188); lean_dec(x_188); x_191 = lean_box(2); x_192 = l_Lean_Syntax_mkNameLit(x_190, x_191); x_193 = l___private_Init_Meta_0__Lean_quoteArray___at_Lean_Elab_Term_Quotation_ArrayStxBuilder_build___spec__1___closed__3; x_194 = lean_array_push(x_193, x_192); -x_195 = l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__13; +x_195 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__89; x_196 = lean_alloc_ctor(1, 3, 0); lean_ctor_set(x_196, 0, x_191); lean_ctor_set(x_196, 1, x_195); @@ -24842,16 +26835,16 @@ lean_dec(x_5); x_235 = lean_ctor_get(x_226, 0); lean_inc(x_235); lean_dec(x_226); -x_236 = l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__14; +x_236 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__90; x_237 = l_String_intercalate(x_236, x_235); -x_238 = l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__15; +x_238 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__91; x_239 = lean_string_append(x_238, x_237); lean_dec(x_237); x_240 = lean_box(2); x_241 = l_Lean_Syntax_mkNameLit(x_239, x_240); x_242 = l___private_Init_Meta_0__Lean_quoteArray___at_Lean_Elab_Term_Quotation_ArrayStxBuilder_build___spec__1___closed__3; x_243 = lean_array_push(x_242, x_241); -x_244 = l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__13; +x_244 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__89; x_245 = lean_alloc_ctor(1, 3, 0); lean_ctor_set(x_245, 0, x_240); lean_ctor_set(x_245, 1, x_244); @@ -25005,16 +26998,16 @@ lean_dec(x_5); x_301 = lean_ctor_get(x_275, 0); lean_inc(x_301); lean_dec(x_275); -x_302 = l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__14; +x_302 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__90; x_303 = l_String_intercalate(x_302, x_301); -x_304 = l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__15; +x_304 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__91; x_305 = lean_string_append(x_304, x_303); lean_dec(x_303); x_306 = lean_box(2); x_307 = l_Lean_Syntax_mkNameLit(x_305, x_306); x_308 = l___private_Init_Meta_0__Lean_quoteArray___at_Lean_Elab_Term_Quotation_ArrayStxBuilder_build___spec__1___closed__3; x_309 = lean_array_push(x_308, x_307); -x_310 = l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__13; +x_310 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__89; x_311 = lean_alloc_ctor(1, 3, 0); lean_ctor_set(x_311, 0, x_306); lean_ctor_set(x_311, 1, x_310); @@ -26122,7 +28115,7 @@ lean_inc(x_22); x_35 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_35, 0, x_22); lean_ctor_set(x_35, 1, x_34); -x_36 = l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__14; +x_36 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__90; lean_inc(x_22); x_37 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_37, 0, x_22); @@ -26168,7 +28161,7 @@ lean_ctor_set(x_52, 0, x_22); lean_ctor_set(x_52, 1, x_51); lean_inc(x_52); x_53 = l_Array_mkArray3___rarg(x_50, x_25, x_52); -x_54 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7250____closed__1; +x_54 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8406____closed__1; lean_inc(x_22); x_55 = lean_alloc_ctor(1, 3, 0); lean_ctor_set(x_55, 0, x_22); @@ -26484,7 +28477,7 @@ lean_inc(x_22); x_157 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_157, 0, x_22); lean_ctor_set(x_157, 1, x_156); -x_158 = l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__14; +x_158 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__90; lean_inc(x_22); x_159 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_159, 0, x_22); @@ -26530,7 +28523,7 @@ lean_ctor_set(x_174, 0, x_22); lean_ctor_set(x_174, 1, x_173); lean_inc(x_174); x_175 = l_Array_mkArray3___rarg(x_172, x_25, x_174); -x_176 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7250____closed__1; +x_176 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8406____closed__1; lean_inc(x_22); x_177 = lean_alloc_ctor(1, 3, 0); lean_ctor_set(x_177, 0, x_22); @@ -27378,7 +29371,7 @@ static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quot _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__3; +x_1 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__3; x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__14___closed__3; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; @@ -27389,7 +29382,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__1; -x_2 = l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__3; +x_2 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__3; x_3 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__14___closed__3; x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); return x_4; @@ -28295,7 +30288,7 @@ lean_ctor_set(x_281, 1, x_222); lean_ctor_set(x_281, 2, x_14); lean_inc(x_247); x_282 = l_Array_mkArray3___rarg(x_279, x_281, x_247); -x_283 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7250____closed__1; +x_283 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8406____closed__1; lean_inc(x_188); x_284 = lean_alloc_ctor(1, 3, 0); lean_ctor_set(x_284, 0, x_188); @@ -28608,7 +30601,7 @@ lean_ctor_set(x_398, 1, x_339); lean_ctor_set(x_398, 2, x_14); lean_inc(x_364); x_399 = l_Array_mkArray3___rarg(x_396, x_398, x_364); -x_400 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7250____closed__1; +x_400 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8406____closed__1; lean_inc(x_188); x_401 = lean_alloc_ctor(1, 3, 0); lean_ctor_set(x_401, 0, x_188); @@ -29274,7 +31267,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__1; -x_2 = l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__3; +x_2 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__3; x_3 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__24___closed__24; x_4 = l_Lean_Elab_Term_Quotation_mkTuple___closed__4; x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); @@ -29358,7 +31351,7 @@ static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quot _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__3; +x_1 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__3; x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__24___closed__12; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; @@ -29369,7 +31362,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___closed__1; -x_2 = l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__3; +x_2 = l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__3; x_3 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__24___closed__12; x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); return x_4; @@ -30879,7 +32872,7 @@ static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quot _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__48; +x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__36; x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__26___closed__1; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; @@ -31672,7 +33665,7 @@ lean_object* x_88; lean_object* x_89; lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); -x_88 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__18; +x_88 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__6; x_89 = l_Lean_throwErrorAt___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__1(x_1, x_88, x_6, x_7, x_8, x_9, x_10, x_11, x_12); return x_89; } @@ -31683,7 +33676,7 @@ lean_object* x_90; lean_object* x_91; lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); -x_90 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__18; +x_90 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__6; x_91 = l_Lean_throwErrorAt___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__1(x_1, x_90, x_6, x_7, x_8, x_9, x_10, x_11, x_12); return x_91; } @@ -31858,7 +33851,7 @@ lean_object* x_132; lean_object* x_133; lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); -x_132 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__18; +x_132 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__6; x_133 = l_Lean_throwErrorAt___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__1(x_1, x_132, x_6, x_7, x_8, x_9, x_10, x_11, x_12); return x_133; } @@ -31869,7 +33862,7 @@ lean_object* x_134; lean_object* x_135; lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); -x_134 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__18; +x_134 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__6; x_135 = l_Lean_throwErrorAt___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__1(x_1, x_134, x_6, x_7, x_8, x_9, x_10, x_11, x_12); return x_135; } @@ -37366,7 +39359,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepFromSplice___closed__1; x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__5___closed__4; -x_3 = lean_unsigned_to_nat(583u); +x_3 = lean_unsigned_to_nat(596u); x_4 = lean_unsigned_to_nat(12u); x_5 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepFromSplice___closed__3; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -42135,7 +44128,7 @@ LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax _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_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__15; +x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__15; x_3 = l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__24___lambda__3___closed__20; x_4 = l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__2; x_5 = l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__3; @@ -42147,7 +44140,7 @@ static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSynta _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(667u); +x_1 = lean_unsigned_to_nat(680u); x_2 = lean_unsigned_to_nat(27u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -42159,7 +44152,7 @@ static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSynta _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(668u); +x_1 = lean_unsigned_to_nat(681u); x_2 = lean_unsigned_to_nat(35u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -42187,7 +44180,7 @@ static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSynta _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(667u); +x_1 = lean_unsigned_to_nat(680u); x_2 = lean_unsigned_to_nat(31u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -42199,7 +44192,7 @@ static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSynta _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(667u); +x_1 = lean_unsigned_to_nat(680u); x_2 = lean_unsigned_to_nat(46u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -42344,7 +44337,7 @@ LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabNoErrorIfUn _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_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__15; +x_2 = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__15; x_3 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__16___closed__7; x_4 = l___regBuiltin_Lean_Elab_Term_Quotation_elabNoErrorIfUnused___closed__2; x_5 = l___regBuiltin_Lean_Elab_Term_Quotation_elabNoErrorIfUnused___closed__3; @@ -42356,7 +44349,7 @@ static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabNoErrorIfU _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(670u); +x_1 = lean_unsigned_to_nat(683u); x_2 = lean_unsigned_to_nat(35u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -42368,7 +44361,7 @@ static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabNoErrorIfU _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(673u); +x_1 = lean_unsigned_to_nat(686u); x_2 = lean_unsigned_to_nat(31u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -42396,7 +44389,7 @@ static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabNoErrorIfU _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(670u); +x_1 = lean_unsigned_to_nat(683u); x_2 = lean_unsigned_to_nat(39u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -42408,7 +44401,7 @@ static lean_object* _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabNoErrorIfU _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(670u); +x_1 = lean_unsigned_to_nat(683u); x_2 = lean_unsigned_to_nat(58u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -42454,7 +44447,7 @@ x_4 = l_Lean_addBuiltinDeclarationRanges(x_2, x_3, x_1); return x_4; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_initFn____x40_Lean_Elab_Quotation___hyg_19421_(lean_object* x_1) { +LEAN_EXPORT lean_object* l_Lean_Elab_Term_Quotation_initFn____x40_Lean_Elab_Quotation___hyg_20577_(lean_object* x_1) { _start: { lean_object* x_2; uint8_t x_3; lean_object* x_4; @@ -42694,6 +44687,188 @@ l_Lean_Elab_Term_Quotation_ArrayStxBuilder_push___closed__1 = _init_l_Lean_Elab_ lean_mark_persistent(l_Lean_Elab_Term_Quotation_ArrayStxBuilder_push___closed__1); l_Lean_Elab_Term_Quotation_ArrayStxBuilder_push___closed__2 = _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_push___closed__2(); lean_mark_persistent(l_Lean_Elab_Term_Quotation_ArrayStxBuilder_push___closed__2); +l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__1 = _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__1(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__1); +l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__2 = _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__2(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__2); +l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__3 = _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__3(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__3); +l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__4 = _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__4(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__4); +l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__5 = _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__5(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__5); +l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__6 = _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__6(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__6); +l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__7 = _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__7(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__7); +l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__8 = _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__8(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__8); +l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__9 = _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__9(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__9); +l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__10 = _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__10(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__10); +l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__11 = _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__11(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__11); +l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__12 = _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__12(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__12); +l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__13 = _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__13(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__13); +l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__14 = _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__14(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__14); +l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__15 = _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__15(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__15); +l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__16 = _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__16(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__16); +l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__17 = _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__17(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__17); +l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__18 = _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__18(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__18); +l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__19 = _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__19(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__19); +l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__20 = _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__20(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__20); +l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__21 = _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__21(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__21); +l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__22 = _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__22(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__22); +l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__23 = _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__23(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__23); +l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__24 = _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__24(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__24); +l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__25 = _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__25(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__25); +l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__26 = _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__26(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__26); +l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__27 = _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__27(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__27); +l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__28 = _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__28(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__28); +l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__29 = _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__29(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__29); +l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__30 = _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__30(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__30); +l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__31 = _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__31(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__31); +l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__32 = _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__32(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__32); +l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__33 = _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__33(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__33); +l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__34 = _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__34(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__34); +l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__35 = _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__35(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__35); +l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__36 = _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__36(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__36); +l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__37 = _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__37(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__37); +l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__38 = _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__38(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__38); +l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__39 = _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__39(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__39); +l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__40 = _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__40(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__40); +l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__41 = _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__41(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__41); +l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__42 = _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__42(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__42); +l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__43 = _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__43(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__43); +l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__44 = _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__44(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__44); +l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__45 = _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__45(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__45); +l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__46 = _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__46(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__46); +l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__47 = _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__47(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__47); +l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__48 = _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__48(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__48); +l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__49 = _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__49(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__49); +l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__50 = _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__50(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__50); +l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__51 = _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__51(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__51); +l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__52 = _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__52(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__52); +l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__53 = _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__53(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__53); +l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__54 = _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__54(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__54); +l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__55 = _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__55(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__55); +l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__56 = _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__56(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__56); +l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__57 = _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__57(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__57); +l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__58 = _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__58(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__58); +l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__59 = _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__59(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__59); +l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__60 = _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__60(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__60); +l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__61 = _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__61(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__61); +l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__62 = _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__62(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__62); +l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__63 = _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__63(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__63); +l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__64 = _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__64(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__64); +l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__65 = _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__65(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__65); +l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__66 = _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__66(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__66); +l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__67 = _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__67(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__67); +l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__68 = _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__68(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__68); +l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__69 = _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__69(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__69); +l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__70 = _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__70(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__70); +l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__71 = _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__71(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__71); +l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__72 = _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__72(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__72); +l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__73 = _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__73(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__73); +l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__74 = _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__74(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__74); +l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__75 = _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__75(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__75); +l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__76 = _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__76(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__76); +l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__77 = _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__77(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__77); +l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__78 = _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__78(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__78); +l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__79 = _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__79(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__79); +l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__80 = _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__80(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__80); +l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__81 = _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__81(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__81); +l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__82 = _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__82(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__82); +l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__83 = _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__83(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__83); +l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__84 = _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__84(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__84); +l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__85 = _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__85(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__85); +l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__86 = _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__86(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__86); +l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__87 = _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__87(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__87); +l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__88 = _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__88(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__88); +l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__89 = _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__89(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__89); +l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__90 = _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__90(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__90); +l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__91 = _init_l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__91(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation_ArrayStxBuilder_mkNode___closed__91); l_Lean_Elab_Term_Quotation_tryAddSyntaxNodeKindInfo___closed__1 = _init_l_Lean_Elab_Term_Quotation_tryAddSyntaxNodeKindInfo___closed__1(); lean_mark_persistent(l_Lean_Elab_Term_Quotation_tryAddSyntaxNodeKindInfo___closed__1); l_Lean_Elab_Term_Quotation_tryAddSyntaxNodeKindInfo___closed__2 = _init_l_Lean_Elab_Term_Quotation_tryAddSyntaxNodeKindInfo___closed__2(); @@ -42736,16 +44911,6 @@ l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__18 = _init_l_Lea lean_mark_persistent(l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__18); l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__19 = _init_l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__19(); lean_mark_persistent(l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__19); -l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__20 = _init_l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__20(); -lean_mark_persistent(l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__20); -l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__21 = _init_l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__21(); -lean_mark_persistent(l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__21); -l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__22 = _init_l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__22(); -lean_mark_persistent(l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__22); -l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__23 = _init_l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__23(); -lean_mark_persistent(l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__23); -l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__24 = _init_l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__24(); -lean_mark_persistent(l_Lean_Elab_Term_Quotation_instQuotePreresolvedMkStr1___closed__24); l_Lean_Elab_throwUnsupportedSyntax___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__1___rarg___closed__1 = _init_l_Lean_Elab_throwUnsupportedSyntax___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__1___rarg___closed__1(); lean_mark_persistent(l_Lean_Elab_throwUnsupportedSyntax___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__1___rarg___closed__1); l_Lean_Elab_throwUnsupportedSyntax___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__1___rarg___closed__2 = _init_l_Lean_Elab_throwUnsupportedSyntax___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__1___rarg___closed__2(); @@ -43102,30 +45267,6 @@ l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__38); l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__39 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__39(); lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__39); -l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__40 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__40(); -lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__40); -l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__41 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__41(); -lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__41); -l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__42 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__42(); -lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__42); -l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__43 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__43(); -lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__43); -l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__44 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__44(); -lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__44); -l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__45 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__45(); -lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__45); -l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__46 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__46(); -lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__46); -l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__47 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__47(); -lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__47); -l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__48 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__48(); -lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__48); -l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__49 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__49(); -lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__49); -l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__50 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__50(); -lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__50); -l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__51 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__51(); -lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__1___closed__51); l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__2___closed__1 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__2___closed__1(); lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__2___closed__1); l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__2___closed__2 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___lambda__2___closed__2(); @@ -43484,316 +45625,316 @@ l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__E lean_mark_persistent(l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot____1___closed__55); l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot____1___closed__56 = _init_l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot____1___closed__56(); lean_mark_persistent(l_Lean_Elab_Term_Quotation___aux__Lean__Elab__Quotation______macroRules__Lean__Elab__Term__Quotation__commandElab__stx__quot____1___closed__56); -l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__1 = _init_l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__1(); -lean_mark_persistent(l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__1); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__1); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__2 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__2(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__2); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__3 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__3(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__3); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__4 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__4(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__4); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__5 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__5(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__5); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__6 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__6(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__6); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__7 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__7(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__7); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__8 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__8(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__8); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__9 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__9(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__9); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__10 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__10(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__10); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__11 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__11(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__11); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__12 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__12(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__12); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__13 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__13(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__13); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__14 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__14(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__14); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__15 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__15(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__15); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__16 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__16(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227____closed__16); -res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227_(lean_io_mk_world()); +l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__1 = _init_l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__1(); +lean_mark_persistent(l_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__1); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__1); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__2 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__2(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__2); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__3 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__3(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__3); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__4 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__4(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__4); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__5 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__5(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__5); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__6 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__6(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__6); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__7 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__7(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__7); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__8 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__8(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__8); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__9 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__9(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__9); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__10 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__10(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__10); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__11 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__11(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__11); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__12 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__12(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__12); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__13 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__13(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__13); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__14 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__14(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__14); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__15 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__15(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__15); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__16 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__16(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383____closed__16); +res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227__declRange___closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227__declRange___closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227__declRange___closed__1); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227__declRange___closed__2 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227__declRange___closed__2(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227__declRange___closed__2); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227__declRange___closed__3 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227__declRange___closed__3(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227__declRange___closed__3); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227__declRange___closed__4 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227__declRange___closed__4(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227__declRange___closed__4); -res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7227__declRange(lean_io_mk_world()); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383__declRange___closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383__declRange___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383__declRange___closed__1); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383__declRange___closed__2 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383__declRange___closed__2(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383__declRange___closed__2); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383__declRange___closed__3 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383__declRange___closed__3(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383__declRange___closed__3); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383__declRange___closed__4 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383__declRange___closed__4(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383__declRange___closed__4); +res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8383__declRange(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7250____closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7250____closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7250____closed__1); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7250____closed__2 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7250____closed__2(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7250____closed__2); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7250____closed__3 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7250____closed__3(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7250____closed__3); -res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7250_(lean_io_mk_world()); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8406____closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8406____closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8406____closed__1); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8406____closed__2 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8406____closed__2(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8406____closed__2); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8406____closed__3 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8406____closed__3(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8406____closed__3); +res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8406_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7250__declRange___closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7250__declRange___closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7250__declRange___closed__1); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7250__declRange___closed__2 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7250__declRange___closed__2(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7250__declRange___closed__2); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7250__declRange___closed__3 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7250__declRange___closed__3(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7250__declRange___closed__3); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7250__declRange___closed__4 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7250__declRange___closed__4(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7250__declRange___closed__4); -res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7250__declRange(lean_io_mk_world()); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8406__declRange___closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8406__declRange___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8406__declRange___closed__1); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8406__declRange___closed__2 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8406__declRange___closed__2(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8406__declRange___closed__2); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8406__declRange___closed__3 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8406__declRange___closed__3(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8406__declRange___closed__3); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8406__declRange___closed__4 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8406__declRange___closed__4(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8406__declRange___closed__4); +res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8406__declRange(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7273____closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7273____closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7273____closed__1); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7273____closed__2 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7273____closed__2(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7273____closed__2); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7273____closed__3 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7273____closed__3(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7273____closed__3); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7273____closed__4 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7273____closed__4(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7273____closed__4); -res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7273_(lean_io_mk_world()); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8429____closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8429____closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8429____closed__1); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8429____closed__2 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8429____closed__2(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8429____closed__2); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8429____closed__3 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8429____closed__3(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8429____closed__3); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8429____closed__4 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8429____closed__4(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8429____closed__4); +res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8429_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7273__declRange___closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7273__declRange___closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7273__declRange___closed__1); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7273__declRange___closed__2 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7273__declRange___closed__2(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7273__declRange___closed__2); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7273__declRange___closed__3 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7273__declRange___closed__3(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7273__declRange___closed__3); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7273__declRange___closed__4 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7273__declRange___closed__4(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7273__declRange___closed__4); -res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7273__declRange(lean_io_mk_world()); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8429__declRange___closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8429__declRange___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8429__declRange___closed__1); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8429__declRange___closed__2 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8429__declRange___closed__2(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8429__declRange___closed__2); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8429__declRange___closed__3 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8429__declRange___closed__3(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8429__declRange___closed__3); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8429__declRange___closed__4 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8429__declRange___closed__4(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8429__declRange___closed__4); +res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8429__declRange(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7296____closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7296____closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7296____closed__1); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7296____closed__2 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7296____closed__2(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7296____closed__2); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7296____closed__3 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7296____closed__3(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7296____closed__3); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7296____closed__4 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7296____closed__4(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7296____closed__4); -res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7296_(lean_io_mk_world()); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8452____closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8452____closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8452____closed__1); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8452____closed__2 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8452____closed__2(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8452____closed__2); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8452____closed__3 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8452____closed__3(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8452____closed__3); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8452____closed__4 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8452____closed__4(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8452____closed__4); +res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8452_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7296__declRange___closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7296__declRange___closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7296__declRange___closed__1); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7296__declRange___closed__2 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7296__declRange___closed__2(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7296__declRange___closed__2); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7296__declRange___closed__3 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7296__declRange___closed__3(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7296__declRange___closed__3); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7296__declRange___closed__4 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7296__declRange___closed__4(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7296__declRange___closed__4); -res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7296__declRange(lean_io_mk_world()); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8452__declRange___closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8452__declRange___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8452__declRange___closed__1); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8452__declRange___closed__2 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8452__declRange___closed__2(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8452__declRange___closed__2); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8452__declRange___closed__3 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8452__declRange___closed__3(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8452__declRange___closed__3); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8452__declRange___closed__4 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8452__declRange___closed__4(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8452__declRange___closed__4); +res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8452__declRange(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7319____closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7319____closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7319____closed__1); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7319____closed__2 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7319____closed__2(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7319____closed__2); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7319____closed__3 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7319____closed__3(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7319____closed__3); -res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7319_(lean_io_mk_world()); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8475____closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8475____closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8475____closed__1); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8475____closed__2 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8475____closed__2(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8475____closed__2); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8475____closed__3 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8475____closed__3(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8475____closed__3); +res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8475_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7319__declRange___closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7319__declRange___closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7319__declRange___closed__1); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7319__declRange___closed__2 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7319__declRange___closed__2(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7319__declRange___closed__2); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7319__declRange___closed__3 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7319__declRange___closed__3(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7319__declRange___closed__3); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7319__declRange___closed__4 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7319__declRange___closed__4(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7319__declRange___closed__4); -res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7319__declRange(lean_io_mk_world()); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8475__declRange___closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8475__declRange___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8475__declRange___closed__1); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8475__declRange___closed__2 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8475__declRange___closed__2(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8475__declRange___closed__2); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8475__declRange___closed__3 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8475__declRange___closed__3(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8475__declRange___closed__3); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8475__declRange___closed__4 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8475__declRange___closed__4(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8475__declRange___closed__4); +res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8475__declRange(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7342____closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7342____closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7342____closed__1); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7342____closed__2 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7342____closed__2(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7342____closed__2); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7342____closed__3 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7342____closed__3(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7342____closed__3); -res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7342_(lean_io_mk_world()); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8498____closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8498____closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8498____closed__1); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8498____closed__2 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8498____closed__2(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8498____closed__2); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8498____closed__3 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8498____closed__3(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8498____closed__3); +res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8498_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7342__declRange___closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7342__declRange___closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7342__declRange___closed__1); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7342__declRange___closed__2 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7342__declRange___closed__2(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7342__declRange___closed__2); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7342__declRange___closed__3 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7342__declRange___closed__3(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7342__declRange___closed__3); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7342__declRange___closed__4 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7342__declRange___closed__4(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7342__declRange___closed__4); -res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7342__declRange(lean_io_mk_world()); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8498__declRange___closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8498__declRange___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8498__declRange___closed__1); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8498__declRange___closed__2 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8498__declRange___closed__2(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8498__declRange___closed__2); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8498__declRange___closed__3 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8498__declRange___closed__3(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8498__declRange___closed__3); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8498__declRange___closed__4 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8498__declRange___closed__4(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8498__declRange___closed__4); +res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8498__declRange(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7365____closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7365____closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7365____closed__1); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7365____closed__2 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7365____closed__2(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7365____closed__2); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7365____closed__3 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7365____closed__3(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7365____closed__3); -res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7365_(lean_io_mk_world()); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8521____closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8521____closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8521____closed__1); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8521____closed__2 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8521____closed__2(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8521____closed__2); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8521____closed__3 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8521____closed__3(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8521____closed__3); +res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8521_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7365__declRange___closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7365__declRange___closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7365__declRange___closed__1); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7365__declRange___closed__2 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7365__declRange___closed__2(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7365__declRange___closed__2); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7365__declRange___closed__3 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7365__declRange___closed__3(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7365__declRange___closed__3); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7365__declRange___closed__4 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7365__declRange___closed__4(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7365__declRange___closed__4); -res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7365__declRange(lean_io_mk_world()); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8521__declRange___closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8521__declRange___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8521__declRange___closed__1); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8521__declRange___closed__2 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8521__declRange___closed__2(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8521__declRange___closed__2); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8521__declRange___closed__3 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8521__declRange___closed__3(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8521__declRange___closed__3); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8521__declRange___closed__4 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8521__declRange___closed__4(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8521__declRange___closed__4); +res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8521__declRange(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7388____closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7388____closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7388____closed__1); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7388____closed__2 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7388____closed__2(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7388____closed__2); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7388____closed__3 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7388____closed__3(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7388____closed__3); -res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7388_(lean_io_mk_world()); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8544____closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8544____closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8544____closed__1); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8544____closed__2 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8544____closed__2(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8544____closed__2); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8544____closed__3 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8544____closed__3(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8544____closed__3); +res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8544_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7388__declRange___closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7388__declRange___closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7388__declRange___closed__1); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7388__declRange___closed__2 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7388__declRange___closed__2(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7388__declRange___closed__2); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7388__declRange___closed__3 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7388__declRange___closed__3(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7388__declRange___closed__3); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7388__declRange___closed__4 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7388__declRange___closed__4(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7388__declRange___closed__4); -res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7388__declRange(lean_io_mk_world()); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8544__declRange___closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8544__declRange___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8544__declRange___closed__1); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8544__declRange___closed__2 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8544__declRange___closed__2(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8544__declRange___closed__2); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8544__declRange___closed__3 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8544__declRange___closed__3(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8544__declRange___closed__3); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8544__declRange___closed__4 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8544__declRange___closed__4(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8544__declRange___closed__4); +res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8544__declRange(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7411____closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7411____closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7411____closed__1); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7411____closed__2 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7411____closed__2(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7411____closed__2); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7411____closed__3 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7411____closed__3(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7411____closed__3); -res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7411_(lean_io_mk_world()); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8567____closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8567____closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8567____closed__1); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8567____closed__2 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8567____closed__2(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8567____closed__2); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8567____closed__3 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8567____closed__3(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8567____closed__3); +res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8567_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7411__declRange___closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7411__declRange___closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7411__declRange___closed__1); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7411__declRange___closed__2 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7411__declRange___closed__2(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7411__declRange___closed__2); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7411__declRange___closed__3 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7411__declRange___closed__3(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7411__declRange___closed__3); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7411__declRange___closed__4 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7411__declRange___closed__4(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7411__declRange___closed__4); -res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7411__declRange(lean_io_mk_world()); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8567__declRange___closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8567__declRange___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8567__declRange___closed__1); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8567__declRange___closed__2 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8567__declRange___closed__2(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8567__declRange___closed__2); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8567__declRange___closed__3 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8567__declRange___closed__3(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8567__declRange___closed__3); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8567__declRange___closed__4 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8567__declRange___closed__4(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8567__declRange___closed__4); +res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8567__declRange(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7434____closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7434____closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7434____closed__1); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7434____closed__2 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7434____closed__2(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7434____closed__2); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7434____closed__3 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7434____closed__3(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7434____closed__3); -res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7434_(lean_io_mk_world()); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8590____closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8590____closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8590____closed__1); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8590____closed__2 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8590____closed__2(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8590____closed__2); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8590____closed__3 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8590____closed__3(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8590____closed__3); +res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8590_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7434__declRange___closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7434__declRange___closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7434__declRange___closed__1); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7434__declRange___closed__2 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7434__declRange___closed__2(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7434__declRange___closed__2); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7434__declRange___closed__3 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7434__declRange___closed__3(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7434__declRange___closed__3); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7434__declRange___closed__4 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7434__declRange___closed__4(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7434__declRange___closed__4); -res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7434__declRange(lean_io_mk_world()); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8590__declRange___closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8590__declRange___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8590__declRange___closed__1); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8590__declRange___closed__2 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8590__declRange___closed__2(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8590__declRange___closed__2); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8590__declRange___closed__3 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8590__declRange___closed__3(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8590__declRange___closed__3); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8590__declRange___closed__4 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8590__declRange___closed__4(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8590__declRange___closed__4); +res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8590__declRange(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7457____closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7457____closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7457____closed__1); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7457____closed__2 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7457____closed__2(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7457____closed__2); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7457____closed__3 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7457____closed__3(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7457____closed__3); -res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7457_(lean_io_mk_world()); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8613____closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8613____closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8613____closed__1); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8613____closed__2 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8613____closed__2(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8613____closed__2); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8613____closed__3 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8613____closed__3(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8613____closed__3); +res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8613_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7457__declRange___closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7457__declRange___closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7457__declRange___closed__1); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7457__declRange___closed__2 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7457__declRange___closed__2(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7457__declRange___closed__2); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7457__declRange___closed__3 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7457__declRange___closed__3(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7457__declRange___closed__3); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7457__declRange___closed__4 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7457__declRange___closed__4(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7457__declRange___closed__4); -res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7457__declRange(lean_io_mk_world()); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8613__declRange___closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8613__declRange___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8613__declRange___closed__1); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8613__declRange___closed__2 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8613__declRange___closed__2(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8613__declRange___closed__2); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8613__declRange___closed__3 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8613__declRange___closed__3(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8613__declRange___closed__3); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8613__declRange___closed__4 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8613__declRange___closed__4(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8613__declRange___closed__4); +res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8613__declRange(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7480____closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7480____closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7480____closed__1); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7480____closed__2 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7480____closed__2(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7480____closed__2); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7480____closed__3 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7480____closed__3(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7480____closed__3); -res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7480_(lean_io_mk_world()); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8636____closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8636____closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8636____closed__1); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8636____closed__2 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8636____closed__2(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8636____closed__2); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8636____closed__3 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8636____closed__3(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8636____closed__3); +res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8636_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7480__declRange___closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7480__declRange___closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7480__declRange___closed__1); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7480__declRange___closed__2 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7480__declRange___closed__2(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7480__declRange___closed__2); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7480__declRange___closed__3 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7480__declRange___closed__3(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7480__declRange___closed__3); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7480__declRange___closed__4 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7480__declRange___closed__4(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7480__declRange___closed__4); -res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7480__declRange(lean_io_mk_world()); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8636__declRange___closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8636__declRange___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8636__declRange___closed__1); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8636__declRange___closed__2 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8636__declRange___closed__2(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8636__declRange___closed__2); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8636__declRange___closed__3 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8636__declRange___closed__3(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8636__declRange___closed__3); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8636__declRange___closed__4 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8636__declRange___closed__4(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8636__declRange___closed__4); +res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8636__declRange(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7503____closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7503____closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7503____closed__1); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7503____closed__2 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7503____closed__2(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7503____closed__2); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7503____closed__3 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7503____closed__3(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7503____closed__3); -res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7503_(lean_io_mk_world()); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8659____closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8659____closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8659____closed__1); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8659____closed__2 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8659____closed__2(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8659____closed__2); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8659____closed__3 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8659____closed__3(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8659____closed__3); +res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8659_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7503__declRange___closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7503__declRange___closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7503__declRange___closed__1); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7503__declRange___closed__2 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7503__declRange___closed__2(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7503__declRange___closed__2); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7503__declRange___closed__3 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7503__declRange___closed__3(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7503__declRange___closed__3); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7503__declRange___closed__4 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7503__declRange___closed__4(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7503__declRange___closed__4); -res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7503__declRange(lean_io_mk_world()); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8659__declRange___closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8659__declRange___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8659__declRange___closed__1); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8659__declRange___closed__2 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8659__declRange___closed__2(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8659__declRange___closed__2); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8659__declRange___closed__3 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8659__declRange___closed__3(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8659__declRange___closed__3); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8659__declRange___closed__4 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8659__declRange___closed__4(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8659__declRange___closed__4); +res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8659__declRange(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7526____closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7526____closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7526____closed__1); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7526____closed__2 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7526____closed__2(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7526____closed__2); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7526____closed__3 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7526____closed__3(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7526____closed__3); -res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7526_(lean_io_mk_world()); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8682____closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8682____closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8682____closed__1); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8682____closed__2 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8682____closed__2(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8682____closed__2); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8682____closed__3 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8682____closed__3(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8682____closed__3); +res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8682_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7526__declRange___closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7526__declRange___closed__1(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7526__declRange___closed__1); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7526__declRange___closed__2 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7526__declRange___closed__2(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7526__declRange___closed__2); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7526__declRange___closed__3 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7526__declRange___closed__3(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7526__declRange___closed__3); -l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7526__declRange___closed__4 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7526__declRange___closed__4(); -lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7526__declRange___closed__4); -res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_7526__declRange(lean_io_mk_world()); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8682__declRange___closed__1 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8682__declRange___closed__1(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8682__declRange___closed__1); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8682__declRange___closed__2 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8682__declRange___closed__2(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8682__declRange___closed__2); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8682__declRange___closed__3 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8682__declRange___closed__3(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8682__declRange___closed__3); +l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8682__declRange___closed__4 = _init_l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8682__declRange___closed__4(); +lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8682__declRange___closed__4); +res = l___regBuiltin_Lean_Elab_Term_Quotation_elabQuot____x40_Lean_Elab_Quotation___hyg_8682__declRange(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_noOpMatchAdaptPats___closed__1 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_noOpMatchAdaptPats___closed__1(); @@ -44254,7 +46395,7 @@ lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabNoErrorIfUnused res = l___regBuiltin_Lean_Elab_Term_Quotation_elabNoErrorIfUnused_declRange(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = l_Lean_Elab_Term_Quotation_initFn____x40_Lean_Elab_Quotation___hyg_19421_(lean_io_mk_world()); +res = l_Lean_Elab_Term_Quotation_initFn____x40_Lean_Elab_Quotation___hyg_20577_(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/StructInst.c b/stage0/stdlib/Lean/Elab/StructInst.c index 0523e02646..8462efd8ef 100644 --- a/stage0/stdlib/Lean/Elab/StructInst.c +++ b/stage0/stdlib/Lean/Elab/StructInst.c @@ -136,7 +136,7 @@ LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Term_StructInst_e LEAN_EXPORT lean_object* l_List_mapTRAux___at___private_Lean_Elab_StructInst_0__Lean_Elab_Term_StructInst_groupFields___spec__1(lean_object*, lean_object*); lean_object* l_Lean_MVarId_assign___at_Lean_Elab_Term_exprToSyntax___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_StructInst_DefaultFields_mkDefaultValueAux_x3f___closed__1; -LEAN_EXPORT lean_object* l_Lean_Elab_Term_StructInst_initFn____x40_Lean_Elab_StructInst___hyg_15090_(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Term_StructInst_initFn____x40_Lean_Elab_StructInst___hyg_15036_(lean_object*); static lean_object* l___regBuiltin_Lean_Elab_Term_StructInst_expandStructInstExpectedType___closed__2; LEAN_EXPORT lean_object* l_Lean_Elab_Term_StructInst_DefaultFields_mkDefaultValueAux_x3f___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_mdata___override(lean_object*, lean_object*); @@ -28498,7 +28498,7 @@ x_4 = l_Lean_addBuiltinDeclarationRanges(x_2, x_3, x_1); return x_4; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Term_StructInst_initFn____x40_Lean_Elab_StructInst___hyg_15090_(lean_object* x_1) { +LEAN_EXPORT lean_object* l_Lean_Elab_Term_StructInst_initFn____x40_Lean_Elab_StructInst___hyg_15036_(lean_object* x_1) { _start: { lean_object* x_2; uint8_t x_3; lean_object* x_4; @@ -29119,7 +29119,7 @@ lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_StructInst_elabStructInst_dec res = l___regBuiltin_Lean_Elab_Term_StructInst_elabStructInst_declRange(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = l_Lean_Elab_Term_StructInst_initFn____x40_Lean_Elab_StructInst___hyg_15090_(lean_io_mk_world()); +res = l_Lean_Elab_Term_StructInst_initFn____x40_Lean_Elab_StructInst___hyg_15036_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); return lean_io_result_mk_ok(lean_box(0)); diff --git a/stage0/stdlib/Lean/Elab/Structure.c b/stage0/stdlib/Lean/Elab/Structure.c index ea94022647..4a03e11446 100644 --- a/stage0/stdlib/Lean/Elab/Structure.c +++ b/stage0/stdlib/Lean/Elab/Structure.c @@ -65,7 +65,6 @@ LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_ge lean_object* l_Lean_LocalDecl_userName(lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_collectUniversesFromFields_go(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__5___lambda__6___closed__7; -static lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_Structure___hyg_4704____closed__4; lean_object* l_Lean_NameSet_contains___boxed(lean_object*, lean_object*); static lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__5___lambda__3___closed__13; LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_levelMVarToParam_levelMVarToParamFVars(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -555,6 +554,7 @@ static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_reprStr static lean_object* l_Lean_Elab_elabAttr___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandCtor___spec__4___lambda__3___closed__7; static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_getFieldType___lambda__4___closed__1; static lean_object* l_Lean_Elab_Command_elabStructure___closed__3; +static lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_Structure___hyg_4637____closed__2; LEAN_EXPORT lean_object* l_Lean_throwMaxRecDepthAt___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandCtor___spec__8(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_sortDeclLevelParams(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_bvar___override(lean_object*); @@ -641,10 +641,10 @@ static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_getResu LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_toVisibility___boxed(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_elabStructureView___lambda__4___closed__1; static lean_object* l_Lean_Elab_Command_checkValidInductiveModifier___at_Lean_Elab_Command_elabStructure___spec__1___closed__1; -static lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_Structure___hyg_4704____closed__3; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_mkCoercionToCopiedParent_copyFields___spec__2___closed__4; static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_copyDefaultValue_x3f_failed___closed__3; lean_object* l_Lean_Expr_const___override(lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_Structure___hyg_4637____closed__1; LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_addDefaults___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_getSepArgs(lean_object*); static lean_object* l_Lean_Elab_Command_elabStructure___closed__6; @@ -678,6 +678,7 @@ lean_object* l_Lean_getDefaultFnForField_x3f(lean_object*, lean_object*, lean_ob LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_withParents_go___rarg___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_elabStructureView___spec__5(lean_object*, size_t, size_t, lean_object*); lean_object* l_Lean_Syntax_getArgs(lean_object*); +static lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_Structure___hyg_4637____closed__4; lean_object* l_Lean_Name_append(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Command_elabStructure___spec__3(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_elabStructureView___lambda__4___closed__4; @@ -804,8 +805,8 @@ static lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_elabFieldTypeValue___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_copyDefaultValue_x3f_go_x3f___closed__2; LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_copyNewFieldsFrom_copyFields_copy___rarg___lambda__5___boxed(lean_object**); -LEAN_EXPORT lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_Structure___hyg_16339_(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_Structure___hyg_4704_(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_Structure___hyg_16215_(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_Structure___hyg_4637_(lean_object*); uint8_t l_Lean_TagDeclarationExtension_isTagged(lean_object*, lean_object*, lean_object*); lean_object* lean_mk_array(lean_object*, lean_object*); uint8_t l___private_Lean_Expr_0__Lean_beqBinderInfo____x40_Lean_Expr___hyg_477_(uint8_t, uint8_t); @@ -854,7 +855,6 @@ uint8_t l_Lean_Elab_Modifiers_isPrivate(lean_object*); lean_object* l_Lean_Option_register___at_Lean_Elab_initFn____x40_Lean_Elab_AutoBound___hyg_7____spec__1(lean_object*, lean_object*, lean_object*); uint8_t l_Lean_NameSet_contains(lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_withFields_go___rarg___lambda__4___closed__5; -static lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_Structure___hyg_4704____closed__2; lean_object* l_Lean_Elab_Term_addAutoBoundImplicits(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_whnfD(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_addDeclarationRanges___at_Lean_Elab_Command_elabStructure___spec__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -982,13 +982,13 @@ lean_object* l_Lean_Meta_instInhabitedMetaM___boxed(lean_object*, lean_object*, LEAN_EXPORT uint8_t l___private_Lean_Elab_Structure_0__Lean_Elab_Command_elabFieldTypeValue___lambda__1(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Command_elabStructure___lambda__3___boxed(lean_object**); LEAN_EXPORT lean_object* l_Lean_Elab_elabModifiers___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandCtor___spec__1___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_Structure___hyg_4637____closed__3; LEAN_EXPORT lean_object* l_Lean_Elab_elabAttrs___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandCtor___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_elabAttrs___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandCtor___spec__3___closed__1; static lean_object* l_Lean_addDeclarationRanges___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandCtor___spec__20___closed__4; LEAN_EXPORT lean_object* l_Lean_Elab_Command_elabStructure___lambda__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_reprStructFieldKind____x40_Lean_Elab_Structure___hyg_347____closed__19; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_updateFieldInfoVal___spec__1(lean_object*, lean_object*, size_t, size_t, lean_object*); -static lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_Structure___hyg_4704____closed__1; lean_object* l_Lean_Elab_getBetterRef(lean_object*, lean_object*); uint8_t lean_string_dec_eq(lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_processSubfields_go___rarg___closed__3; @@ -9332,7 +9332,7 @@ lean_dec(x_1); return x_8; } } -static lean_object* _init_l_Lean_Elab_Command_initFn____x40_Lean_Elab_Structure___hyg_4704____closed__1() { +static lean_object* _init_l_Lean_Elab_Command_initFn____x40_Lean_Elab_Structure___hyg_4637____closed__1() { _start: { lean_object* x_1; @@ -9340,17 +9340,17 @@ x_1 = lean_mk_string_from_bytes("structureDiamondWarning", 23); return x_1; } } -static lean_object* _init_l_Lean_Elab_Command_initFn____x40_Lean_Elab_Structure___hyg_4704____closed__2() { +static lean_object* _init_l_Lean_Elab_Command_initFn____x40_Lean_Elab_Structure___hyg_4637____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_Structure___hyg_4704____closed__1; +x_2 = l_Lean_Elab_Command_initFn____x40_Lean_Elab_Structure___hyg_4637____closed__1; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Command_initFn____x40_Lean_Elab_Structure___hyg_4704____closed__3() { +static lean_object* _init_l_Lean_Elab_Command_initFn____x40_Lean_Elab_Structure___hyg_4637____closed__3() { _start: { lean_object* x_1; @@ -9358,13 +9358,13 @@ x_1 = lean_mk_string_from_bytes("enable/disable warning messages for structure d return x_1; } } -static lean_object* _init_l_Lean_Elab_Command_initFn____x40_Lean_Elab_Structure___hyg_4704____closed__4() { +static lean_object* _init_l_Lean_Elab_Command_initFn____x40_Lean_Elab_Structure___hyg_4637____closed__4() { _start: { uint8_t x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_1 = 0; x_2 = l_Lean_getDocStringText___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandCtor___spec__14___closed__3; -x_3 = l_Lean_Elab_Command_initFn____x40_Lean_Elab_Structure___hyg_4704____closed__3; +x_3 = l_Lean_Elab_Command_initFn____x40_Lean_Elab_Structure___hyg_4637____closed__3; x_4 = lean_box(x_1); x_5 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_5, 0, x_4); @@ -9373,12 +9373,12 @@ lean_ctor_set(x_5, 2, x_3); return x_5; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_Structure___hyg_4704_(lean_object* x_1) { +LEAN_EXPORT lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_Structure___hyg_4637_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_2 = l_Lean_Elab_Command_initFn____x40_Lean_Elab_Structure___hyg_4704____closed__2; -x_3 = l_Lean_Elab_Command_initFn____x40_Lean_Elab_Structure___hyg_4704____closed__4; +x_2 = l_Lean_Elab_Command_initFn____x40_Lean_Elab_Structure___hyg_4637____closed__2; +x_3 = l_Lean_Elab_Command_initFn____x40_Lean_Elab_Structure___hyg_4637____closed__4; x_4 = l_Lean_Option_register___at_Lean_Elab_initFn____x40_Lean_Elab_AutoBound___hyg_7____spec__1(x_2, x_3, x_1); return x_4; } @@ -30353,7 +30353,7 @@ lean_dec(x_8); return x_15; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_Structure___hyg_16339_(lean_object* x_1) { +LEAN_EXPORT lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_Structure___hyg_16215_(lean_object* x_1) { _start: { lean_object* x_2; uint8_t x_3; lean_object* x_4; @@ -30768,15 +30768,15 @@ l___private_Lean_Elab_Structure_0__Lean_Elab_Command_findFieldInfo_x3f___closed_ lean_mark_persistent(l___private_Lean_Elab_Structure_0__Lean_Elab_Command_findFieldInfo_x3f___closed__2); l___private_Lean_Elab_Structure_0__Lean_Elab_Command_findFieldInfo_x3f___closed__3 = _init_l___private_Lean_Elab_Structure_0__Lean_Elab_Command_findFieldInfo_x3f___closed__3(); lean_mark_persistent(l___private_Lean_Elab_Structure_0__Lean_Elab_Command_findFieldInfo_x3f___closed__3); -l_Lean_Elab_Command_initFn____x40_Lean_Elab_Structure___hyg_4704____closed__1 = _init_l_Lean_Elab_Command_initFn____x40_Lean_Elab_Structure___hyg_4704____closed__1(); -lean_mark_persistent(l_Lean_Elab_Command_initFn____x40_Lean_Elab_Structure___hyg_4704____closed__1); -l_Lean_Elab_Command_initFn____x40_Lean_Elab_Structure___hyg_4704____closed__2 = _init_l_Lean_Elab_Command_initFn____x40_Lean_Elab_Structure___hyg_4704____closed__2(); -lean_mark_persistent(l_Lean_Elab_Command_initFn____x40_Lean_Elab_Structure___hyg_4704____closed__2); -l_Lean_Elab_Command_initFn____x40_Lean_Elab_Structure___hyg_4704____closed__3 = _init_l_Lean_Elab_Command_initFn____x40_Lean_Elab_Structure___hyg_4704____closed__3(); -lean_mark_persistent(l_Lean_Elab_Command_initFn____x40_Lean_Elab_Structure___hyg_4704____closed__3); -l_Lean_Elab_Command_initFn____x40_Lean_Elab_Structure___hyg_4704____closed__4 = _init_l_Lean_Elab_Command_initFn____x40_Lean_Elab_Structure___hyg_4704____closed__4(); -lean_mark_persistent(l_Lean_Elab_Command_initFn____x40_Lean_Elab_Structure___hyg_4704____closed__4); -if (builtin) {res = l_Lean_Elab_Command_initFn____x40_Lean_Elab_Structure___hyg_4704_(lean_io_mk_world()); +l_Lean_Elab_Command_initFn____x40_Lean_Elab_Structure___hyg_4637____closed__1 = _init_l_Lean_Elab_Command_initFn____x40_Lean_Elab_Structure___hyg_4637____closed__1(); +lean_mark_persistent(l_Lean_Elab_Command_initFn____x40_Lean_Elab_Structure___hyg_4637____closed__1); +l_Lean_Elab_Command_initFn____x40_Lean_Elab_Structure___hyg_4637____closed__2 = _init_l_Lean_Elab_Command_initFn____x40_Lean_Elab_Structure___hyg_4637____closed__2(); +lean_mark_persistent(l_Lean_Elab_Command_initFn____x40_Lean_Elab_Structure___hyg_4637____closed__2); +l_Lean_Elab_Command_initFn____x40_Lean_Elab_Structure___hyg_4637____closed__3 = _init_l_Lean_Elab_Command_initFn____x40_Lean_Elab_Structure___hyg_4637____closed__3(); +lean_mark_persistent(l_Lean_Elab_Command_initFn____x40_Lean_Elab_Structure___hyg_4637____closed__3); +l_Lean_Elab_Command_initFn____x40_Lean_Elab_Structure___hyg_4637____closed__4 = _init_l_Lean_Elab_Command_initFn____x40_Lean_Elab_Structure___hyg_4637____closed__4(); +lean_mark_persistent(l_Lean_Elab_Command_initFn____x40_Lean_Elab_Structure___hyg_4637____closed__4); +if (builtin) {res = l_Lean_Elab_Command_initFn____x40_Lean_Elab_Structure___hyg_4637_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; l_Lean_Elab_Command_structureDiamondWarning = lean_io_result_get_value(res); lean_mark_persistent(l_Lean_Elab_Command_structureDiamondWarning); @@ -31059,7 +31059,7 @@ l_Lean_Elab_Command_elabStructure___closed__11 = _init_l_Lean_Elab_Command_elabS lean_mark_persistent(l_Lean_Elab_Command_elabStructure___closed__11); l_Lean_Elab_Command_elabStructure___closed__12 = _init_l_Lean_Elab_Command_elabStructure___closed__12(); lean_mark_persistent(l_Lean_Elab_Command_elabStructure___closed__12); -res = l_Lean_Elab_Command_initFn____x40_Lean_Elab_Structure___hyg_16339_(lean_io_mk_world()); +res = l_Lean_Elab_Command_initFn____x40_Lean_Elab_Structure___hyg_16215_(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/Syntax.c b/stage0/stdlib/Lean/Elab/Syntax.c index a0ff027db2..c64cbcaf88 100644 --- a/stage0/stdlib/Lean/Elab/Syntax.c +++ b/stage0/stdlib/Lean/Elab/Syntax.c @@ -337,7 +337,7 @@ lean_object* l_Lean_ResolveName_resolveNamespace(lean_object*, lean_object*, lea static lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__2; lean_object* l_String_capitalize(lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Term_ensureUnaryOutput(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_12831_(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_12723_(lean_object*); static lean_object* l_Lean_Elab_Term_toParserDescr_process___closed__13; static lean_object* l_Lean_Elab_Term_toParserDescr_processNonReserved___closed__7; static lean_object* l_Lean_Elab_Command_elabSyntaxAbbrev___lambda__2___closed__2; @@ -400,6 +400,7 @@ uint8_t l_Lean_Environment_contains(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_toParserDescr_processSepBy___lambda__1___closed__5; static lean_object* l_Lean_Elab_Term_toParserDescr_process___closed__6; static lean_object* l_Lean_Elab_Term_toParserDescr_processSepBy___lambda__1___closed__3; +static lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_12723____closed__1; LEAN_EXPORT lean_object* l_Lean_Elab_throwUnsupportedSyntax___at___private_Lean_Elab_Syntax_0__Lean_Elab_Term_mkParserSeq___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_toParserDescr_processParserCategory___lambda__1___closed__7; uint32_t lean_string_utf8_get(lean_object*, lean_object*); @@ -789,7 +790,6 @@ uint8_t lean_nat_dec_lt(lean_object*, lean_object*); static lean_object* l_Subarray_forInUnsafe_loop___at___private_Lean_Elab_Syntax_0__Lean_Elab_Term_mkParserSeq___spec__1___closed__21; LEAN_EXPORT lean_object* l_Lean_Elab_Term_addCategoryInfo(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Elab_Command_expandNoKindMacroRulesAux___spec__4(lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_12831____closed__1; static lean_object* l_Subarray_forInUnsafe_loop___at___private_Lean_Elab_Syntax_0__Lean_Elab_Term_mkParserSeq___spec__1___closed__4; LEAN_EXPORT lean_object* l_Lean_Elab_Term_expandOptPrecedence(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: @@ -21126,7 +21126,7 @@ lean_dec(x_2); return x_4; } } -static lean_object* _init_l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_12831____closed__1() { +static lean_object* _init_l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_12723____closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -21136,11 +21136,11 @@ x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_12831_(lean_object* x_1) { +LEAN_EXPORT lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_12723_(lean_object* x_1) { _start: { lean_object* x_2; uint8_t x_3; lean_object* x_4; -x_2 = l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_12831____closed__1; +x_2 = l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_12723____closed__1; x_3 = 0; x_4 = l_Lean_registerTraceClass(x_2, x_3, x_1); return x_4; @@ -21939,9 +21939,9 @@ l_Lean_Elab_Command_expandNoKindMacroRulesAux___lambda__1___closed__5 = _init_l_ lean_mark_persistent(l_Lean_Elab_Command_expandNoKindMacroRulesAux___lambda__1___closed__5); l_Lean_Elab_Command_expandNoKindMacroRulesAux___lambda__1___closed__6 = _init_l_Lean_Elab_Command_expandNoKindMacroRulesAux___lambda__1___closed__6(); lean_mark_persistent(l_Lean_Elab_Command_expandNoKindMacroRulesAux___lambda__1___closed__6); -l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_12831____closed__1 = _init_l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_12831____closed__1(); -lean_mark_persistent(l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_12831____closed__1); -res = l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_12831_(lean_io_mk_world()); +l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_12723____closed__1 = _init_l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_12723____closed__1(); +lean_mark_persistent(l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_12723____closed__1); +res = l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_12723_(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/SyntheticMVars.c b/stage0/stdlib/Lean/Elab/SyntheticMVars.c index 412ade30b2..b11428b3e4 100644 --- a/stage0/stdlib/Lean/Elab/SyntheticMVars.c +++ b/stage0/stdlib/Lean/Elab/SyntheticMVars.c @@ -116,7 +116,6 @@ LEAN_EXPORT lean_object* l_Lean_Elab_Term_reportStuckSyntheticMVar___boxed(lean_ LEAN_EXPORT lean_object* l_Lean_commitWhen___at___private_Lean_Elab_SyntheticMVars_0__Lean_Elab_Term_synthesizeUsingDefaultPrio_synthesizePendingInstMVar_x27___spec__1___at___private_Lean_Elab_SyntheticMVars_0__Lean_Elab_Term_synthesizeUsingDefaultPrio_synthesizePendingInstMVar_x27___spec__2___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_occursCheck_visitMVar___at___private_Lean_Elab_SyntheticMVars_0__Lean_Elab_Term_resumePostponed___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_reportStuckSyntheticMVar___lambda__1___closed__2; -static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_SyntheticMVars___hyg_7611____closed__2; LEAN_EXPORT lean_object* l___private_Lean_Elab_SyntheticMVars_0__Lean_Elab_Term_synthesizeUsingDefaultPrio_synthesizeSomeUsingDefault_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_reportStuckSyntheticMVar___closed__2; lean_object* l_Lean_throwError___at_Lean_Elab_Term_throwErrorIfErrors___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -133,7 +132,6 @@ static lean_object* l_Lean_instantiateLCtxMVars___at_Lean_Elab_Term_runTactic___ LEAN_EXPORT lean_object* l___private_Lean_Elab_SyntheticMVars_0__Lean_Elab_Term_synthesizeUsingDefaultPrio_synthesizeUsingDefaultInstance___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_List_filterAuxM___at___private_Lean_Elab_SyntheticMVars_0__Lean_Elab_Term_synthesizeSyntheticMVarsStep___spec__1___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_SyntheticMVars_0__Lean_Elab_Term_synthesizeUsingDefaultPrio___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_SyntheticMVars___hyg_7611____closed__1; static lean_object* l___private_Lean_Elab_SyntheticMVars_0__Lean_Elab_Term_synthesizeUsingDefaultPrio_synthesizeUsingDefaultInstance___lambda__3___closed__5; LEAN_EXPORT lean_object* l___private_Lean_Elab_SyntheticMVars_0__Lean_Elab_Term_throwStuckAtUniverseCnstr(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwErrorAt___at___private_Lean_Elab_SyntheticMVars_0__Lean_Elab_Term_throwStuckAtUniverseCnstr___spec__16(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -158,7 +156,7 @@ LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Synth lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_forallMetaTelescopeReducingAux(lean_object*, uint8_t, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_st_ref_take(lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_SyntheticMVars_0__Lean_Elab_Term_synthesizeUsingDefaultPrio_synthesizeUsingDefaultInstance___lambda__3___closed__1; -LEAN_EXPORT lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_SyntheticMVars___hyg_7611_(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_SyntheticMVars___hyg_7542_(lean_object*); lean_object* l_Lean_Elab_Term_getSyntheticMVarDecl_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MVarId_admit(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PersistentArray_get_x21___rarg(lean_object*, lean_object*, lean_object*); @@ -386,6 +384,7 @@ static lean_object* l___private_Lean_Elab_SyntheticMVars_0__Lean_Elab_Term_synth lean_object* l_Lean_RBNode_balLeft___rarg(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_SyntheticMVars_0__Lean_Elab_Term_synthesizeSyntheticMVarsStep___lambda__1___closed__18; LEAN_EXPORT lean_object* l___private_Lean_Elab_SyntheticMVars_0__Lean_Elab_Term_synthesizeUsingDefaultPrio_synthesizeUsingDefault___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_SyntheticMVars___hyg_7542____closed__2; uint8_t l_List_isEmpty___rarg(lean_object*); LEAN_EXPORT lean_object* l_Lean_HashSetImp_contains___at___private_Lean_Elab_SyntheticMVars_0__Lean_Elab_Term_throwStuckAtUniverseCnstr___spec__2___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentArray_forIn___at___private_Lean_Elab_SyntheticMVars_0__Lean_Elab_Term_throwStuckAtUniverseCnstr___spec__10(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -396,6 +395,7 @@ uint8_t l_Lean_HashSetImp_contains___at_Lean_CollectMVars_visit___spec__1(lean_o LEAN_EXPORT lean_object* l___private_Lean_Elab_SyntheticMVars_0__Lean_Elab_Term_synthesizeUsingDefaultPrio_synthesizeUsingInstancesStep(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_HashSetImp_expand___at___private_Lean_Elab_SyntheticMVars_0__Lean_Elab_Term_throwStuckAtUniverseCnstr___spec__5(lean_object*, lean_object*); lean_object* l_Lean_indentExpr(lean_object*); +static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_SyntheticMVars___hyg_7542____closed__1; lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_mkLeveErrorMessageCore(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_SyntheticMVars_0__Lean_Elab_Term_synthesizeSyntheticMVarsStep___lambda__1___closed__5; extern lean_object* l_Lean_Meta_defaultInstanceExtension; @@ -19574,7 +19574,7 @@ lean_dec(x_1); return x_14; } } -static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_SyntheticMVars___hyg_7611____closed__1() { +static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_SyntheticMVars___hyg_7542____closed__1() { _start: { lean_object* x_1; @@ -19582,21 +19582,21 @@ x_1 = lean_mk_string_from_bytes("resume", 6); return x_1; } } -static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_SyntheticMVars___hyg_7611____closed__2() { +static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_SyntheticMVars___hyg_7542____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l___private_Lean_Elab_SyntheticMVars_0__Lean_Elab_Term_synthesizeUsingDefaultPrio_synthesizeUsingDefaultInstance___lambda__3___closed__1; -x_2 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_SyntheticMVars___hyg_7611____closed__1; +x_2 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_SyntheticMVars___hyg_7542____closed__1; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_SyntheticMVars___hyg_7611_(lean_object* x_1) { +LEAN_EXPORT lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_SyntheticMVars___hyg_7542_(lean_object* x_1) { _start: { lean_object* x_2; uint8_t x_3; lean_object* x_4; -x_2 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_SyntheticMVars___hyg_7611____closed__2; +x_2 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_SyntheticMVars___hyg_7542____closed__2; x_3 = 0; x_4 = l_Lean_registerTraceClass(x_2, x_3, x_1); return x_4; @@ -19799,11 +19799,11 @@ l_Lean_Elab_Term_withSynthesizeLight___rarg___closed__1 = _init_l_Lean_Elab_Term lean_mark_persistent(l_Lean_Elab_Term_withSynthesizeLight___rarg___closed__1); l_Array_forInUnsafe_loop___at_Lean_Elab_Term_runPendingTacticsAt___spec__1___closed__1 = _init_l_Array_forInUnsafe_loop___at_Lean_Elab_Term_runPendingTacticsAt___spec__1___closed__1(); lean_mark_persistent(l_Array_forInUnsafe_loop___at_Lean_Elab_Term_runPendingTacticsAt___spec__1___closed__1); -l_Lean_Elab_Term_initFn____x40_Lean_Elab_SyntheticMVars___hyg_7611____closed__1 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_SyntheticMVars___hyg_7611____closed__1(); -lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_SyntheticMVars___hyg_7611____closed__1); -l_Lean_Elab_Term_initFn____x40_Lean_Elab_SyntheticMVars___hyg_7611____closed__2 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_SyntheticMVars___hyg_7611____closed__2(); -lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_SyntheticMVars___hyg_7611____closed__2); -res = l_Lean_Elab_Term_initFn____x40_Lean_Elab_SyntheticMVars___hyg_7611_(lean_io_mk_world()); +l_Lean_Elab_Term_initFn____x40_Lean_Elab_SyntheticMVars___hyg_7542____closed__1 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_SyntheticMVars___hyg_7542____closed__1(); +lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_SyntheticMVars___hyg_7542____closed__1); +l_Lean_Elab_Term_initFn____x40_Lean_Elab_SyntheticMVars___hyg_7542____closed__2 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_SyntheticMVars___hyg_7542____closed__2(); +lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_SyntheticMVars___hyg_7542____closed__2); +res = l_Lean_Elab_Term_initFn____x40_Lean_Elab_SyntheticMVars___hyg_7542_(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/Tactic/Basic.c b/stage0/stdlib/Lean/Elab/Tactic/Basic.c index 4b4815e1fd..a603e77617 100644 --- a/stage0/stdlib/Lean/Elab/Tactic/Basic.c +++ b/stage0/stdlib/Lean/Elab/Tactic/Basic.c @@ -68,7 +68,6 @@ LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_focusAndDone(lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_evalTactic___spec__3(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_withMacroExpansionInfo___at_Lean_Elab_Tactic_adaptExpander___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_mkTacticAttribute___closed__6; -static lean_object* l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Basic___hyg_10111____closed__1; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_done(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_addTrace___at_Lean_Elab_Tactic_evalTactic_handleEx___spec__2___closed__1; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_evalTactic_handleEx___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -189,6 +188,7 @@ lean_object* l_Lean_Core_getMessageLog___rarg(lean_object*, lean_object*); lean_object* lean_st_mk_ref(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_evalTactic___lambda__3___closed__5; static lean_object* l_Lean_throwMaxRecDepthAt___at_Lean_Elab_Tactic_evalTactic_expandEval___spec__5___closed__2; +static lean_object* l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Basic___hyg_10048____closed__1; LEAN_EXPORT lean_object* l_Lean_Elab_withInfoTreeContext___at_Lean_Elab_Tactic_withMacroExpansion___spec__2___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_getId(lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_evalTactic_eval___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -328,8 +328,8 @@ LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_adaptExpander(lean_object*, lean_obj LEAN_EXPORT lean_object* l_Lean_MVarId_isAssigned___at_Lean_Elab_Tactic_pruneSolvedGoals___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_closeMainGoal(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_tryTactic___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Basic___hyg_10111_(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Basic___hyg_10126_(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Basic___hyg_10048_(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Basic___hyg_10063_(lean_object*); LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Elab_Tactic_throwNoGoalsToBeSolved___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_List_forIn_loop___at_Lean_Elab_Tactic_evalTactic_handleEx___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_withMacroExpansion___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -13245,7 +13245,7 @@ lean_dec(x_1); return x_5; } } -static lean_object* _init_l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Basic___hyg_10111____closed__1() { +static lean_object* _init_l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Basic___hyg_10048____closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -13255,17 +13255,17 @@ x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Basic___hyg_10111_(lean_object* x_1) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Basic___hyg_10048_(lean_object* x_1) { _start: { lean_object* x_2; uint8_t x_3; lean_object* x_4; -x_2 = l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Basic___hyg_10111____closed__1; +x_2 = l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Basic___hyg_10048____closed__1; x_3 = 0; x_4 = l_Lean_registerTraceClass(x_2, x_3, x_1); return x_4; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Basic___hyg_10126_(lean_object* x_1) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Basic___hyg_10063_(lean_object* x_1) { _start: { lean_object* x_2; uint8_t x_3; lean_object* x_4; @@ -13460,12 +13460,12 @@ l_Lean_Elab_Tactic_getNameOfIdent_x27___closed__2 = _init_l_Lean_Elab_Tactic_get lean_mark_persistent(l_Lean_Elab_Tactic_getNameOfIdent_x27___closed__2); l_Lean_Elab_Tactic_withCaseRef___rarg___closed__1 = _init_l_Lean_Elab_Tactic_withCaseRef___rarg___closed__1(); lean_mark_persistent(l_Lean_Elab_Tactic_withCaseRef___rarg___closed__1); -l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Basic___hyg_10111____closed__1 = _init_l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Basic___hyg_10111____closed__1(); -lean_mark_persistent(l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Basic___hyg_10111____closed__1); -res = l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Basic___hyg_10111_(lean_io_mk_world()); +l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Basic___hyg_10048____closed__1 = _init_l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Basic___hyg_10048____closed__1(); +lean_mark_persistent(l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Basic___hyg_10048____closed__1); +res = l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Basic___hyg_10048_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Basic___hyg_10126_(lean_io_mk_world()); +res = l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Basic___hyg_10063_(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/Tactic/Induction.c b/stage0/stdlib/Lean/Elab/Tactic/Induction.c index 235cef26d9..3b4ed5c9cd 100644 --- a/stage0/stdlib/Lean/Elab/Tactic/Induction.c +++ b/stage0/stdlib/Lean/Elab/Tactic/Induction.c @@ -39,7 +39,7 @@ LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_evalInduct LEAN_EXPORT lean_object* l_Std_Range_forIn_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__2___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_getAltName___closed__5; static lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_evalInduction_checkTargets___spec__1___closed__1; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11876_(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11787_(lean_object*); lean_object* l_Lean_stringToMessageData(lean_object*); LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_evalInduction_checkTargets___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalCases_declRange___closed__6; @@ -123,6 +123,7 @@ LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_elabCas static lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_ElimApp_evalAlts_go___spec__7___lambda__4___closed__7; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_ElimApp_setMotiveArg___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_ElimApp_setMotiveArg___closed__6; +static lean_object* l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11787____closed__1; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_generalizeVars___spec__1___closed__1; LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_expandInductionAlts_x3f___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_ElimApp_evalAlts_go___lambda__2___closed__3; @@ -349,7 +350,6 @@ LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tac LEAN_EXPORT lean_object* l_Lean_Elab_addConstInfo___at_Lean_Elab_Tactic_ElimApp_evalAlts_go___spec__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_generalizeVars___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_getResetInfoTrees___at_Lean_Elab_Term_withoutModifyingElabMetaStateWithInfo___spec__2___rarg(lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11876____closed__1; lean_object* l_Lean_ResolveName_resolveGlobalName(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT uint8_t l_Array_anyMUnsafe_any___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_expandInductionAlts_x3f___spec__1(lean_object*, size_t, size_t); static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_checkAltsOfOptInductionAlts___spec__1___closed__1; @@ -21243,7 +21243,7 @@ x_4 = l_Lean_addBuiltinDeclarationRanges(x_2, x_3, x_1); return x_4; } } -static lean_object* _init_l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11876____closed__1() { +static lean_object* _init_l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11787____closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -21253,11 +21253,11 @@ x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11876_(lean_object* x_1) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11787_(lean_object* x_1) { _start: { lean_object* x_2; uint8_t x_3; lean_object* x_4; -x_2 = l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11876____closed__1; +x_2 = l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11787____closed__1; x_3 = 0; x_4 = l_Lean_registerTraceClass(x_2, x_3, x_1); if (lean_obj_tag(x_4) == 0) @@ -21633,9 +21633,9 @@ lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_evalCases_declRange___close res = l___regBuiltin_Lean_Elab_Tactic_evalCases_declRange(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11876____closed__1 = _init_l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11876____closed__1(); -lean_mark_persistent(l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11876____closed__1); -res = l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11876_(lean_io_mk_world()); +l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11787____closed__1 = _init_l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11787____closed__1(); +lean_mark_persistent(l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11787____closed__1); +res = l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11787_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); return lean_io_result_mk_ok(lean_box(0)); diff --git a/stage0/stdlib/Lean/Elab/Term.c b/stage0/stdlib/Lean/Elab/Term.c index 5f8c2fa857..e8d3baac78 100644 --- a/stage0/stdlib/Lean/Elab/Term.c +++ b/stage0/stdlib/Lean/Elab/Term.c @@ -216,7 +216,6 @@ LEAN_EXPORT lean_object* l_Lean_MVarId_assign___at_Lean_Elab_Term_exprToSyntax__ static lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_elabTermAux___lambda__1___closed__6; LEAN_EXPORT lean_object* l___private_Lean_MetavarContext_0__Lean_DependsOn_dep_visitMain___at_Lean_Elab_Term_addAutoBoundImplicits_go___spec__19___boxed(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_resolveName___closed__3; -static lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Term___hyg_20900____closed__1; LEAN_EXPORT lean_object* l_Lean_Elab_Term_registerMVarErrorHoleInfo(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_RBNode_find___at_Lean_Elab_Term_getMVarErrorInfo_x3f___spec__1(lean_object*, lean_object*); LEAN_EXPORT uint8_t l_Lean_PersistentArray_anyMAux___at_Lean_Elab_Term_addAutoBoundImplicits_go___spec__46(lean_object*, lean_object*); @@ -436,7 +435,6 @@ LEAN_EXPORT lean_object* l___private_Lean_MetavarContext_0__Lean_DependsOn_dep_v LEAN_EXPORT lean_object* l_Lean_throwError___at___private_Lean_Elab_Term_0__Lean_Elab_Term_applyAttributesCore___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at_Lean_Elab_Term_addAutoBoundImplicits_go___spec__31___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_MetavarContext_0__Lean_DependsOn_dep_visitMain___at_Lean_Elab_Term_addAutoBoundImplicits_go___spec__3___boxed(lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Term___hyg_20900____closed__2; lean_object* l_Lean_Core_withFreshMacroScope___rarg(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_elabTermAux___lambda__1___closed__5; LEAN_EXPORT lean_object* l_Lean_Elab_expandDeclId___at_Lean_Elab_Term_expandDeclId___spec__1___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -448,7 +446,6 @@ LEAN_EXPORT lean_object* l___private_Lean_Util_Trace_0__Lean_getResetTraces___at LEAN_EXPORT lean_object* l_Lean_Elab_Term_instMonadTermElabM___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_elabTermAux___lambda__4(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_throwUnsupportedSyntax___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabTermAux___spec__12___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_16860____closed__1; static lean_object* l_Lean_Elab_Term_instInhabitedSavedState___closed__2; lean_object* l_Lean_ConstantInfo_levelParams(lean_object*); static lean_object* l_Lean_Elab_Term_synthesizeInstMVarCore___lambda__3___closed__4; @@ -667,7 +664,7 @@ lean_object* l_Lean_Core_getMessageLog___rarg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_MetavarContext_0__Lean_DependsOn_dep_visitApp___at_Lean_Elab_Term_addAutoBoundImplicits_go___spec__28(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Term_commitIfDidNotPostpone(lean_object*); lean_object* lean_st_mk_ref(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_16860_(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_16832_(lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_3518_(lean_object*); LEAN_EXPORT lean_object* l_Lean_mkAuxName___at_Lean_Elab_Term_mkAuxName___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_setElabConfig(lean_object*); @@ -741,6 +738,7 @@ static lean_object* l_Lean_Elab_Term_Context_autoBoundImplicits___default___clos static lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_isHole___closed__4; LEAN_EXPORT lean_object* l_Lean_Elab_Term_resolveId_x3f(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_mkDeclName___at_Lean_Elab_Term_expandDeclId___spec__2___closed__1; +static lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Term___hyg_20863____closed__2; LEAN_EXPORT lean_object* l_Lean_AssocList_find_x3f___at_Lean_Elab_Term_ContainsPendingMVar_visit___spec__2___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_withTraceNode___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabTermAux___spec__13(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at_Lean_Elab_Term_logUnassignedUsingErrorInfos___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*); @@ -924,7 +922,6 @@ LEAN_EXPORT lean_object* l_Lean_Elab_Term_isLetRecAuxMVar___lambda__1(lean_objec static lean_object* l_Lean_Elab_Tactic_instInhabitedSnapshot___closed__3; LEAN_EXPORT uint8_t l_Lean_PersistentArray_anyM___at_Lean_Elab_Term_addAutoBoundImplicits_go___spec__45(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_ensureType___lambda__1___closed__2; -static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_16860____closed__2; lean_object* l___private_Lean_Data_HashMap_0__Lean_numBucketsForCapacity(lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_withInfoContext_x27___at_Lean_Elab_Term_addTermInfo___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_isAutoBoundImplicitLocalException_x3f(lean_object*); @@ -945,6 +942,7 @@ static lean_object* l_Lean_Elab_Term_instMetaEvalTermElabM___rarg___closed__11; LEAN_EXPORT lean_object* l_Lean_Elab_Term_addAutoBoundImplicits___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_getExprMVarAssignment_x3f___at___private_Lean_MetavarContext_0__Lean_DependsOn_dep_visitMain___spec__1(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Term_0__Lean_Elab_Term_withoutModifyingStateWithInfoAndMessagesImpl___spec__11___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_16832____closed__1; static lean_object* l_Lean_Elab_Term_logUnassignedUsingErrorInfos___closed__2; static lean_object* l_Lean_Elab_Tactic_instInhabitedSnapshot___closed__18; LEAN_EXPORT lean_object* l_Lean_Elab_Term_instToStringSyntheticMVarKind___boxed(lean_object*); @@ -1029,6 +1027,7 @@ LEAN_EXPORT lean_object* l_Lean_addDocString___at_Lean_Elab_Term_expandDeclId___ static lean_object* l_Array_anyMUnsafe_any___at___private_Lean_Elab_Term_0__Lean_Elab_Term_isLambdaWithImplicit___spec__1___closed__2; LEAN_EXPORT lean_object* l_Lean_Elab_Term_synthesizeInstMVarCore(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_AssocList_foldlM___at_Lean_Elab_Term_ContainsPendingMVar_visit___spec__7(lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_16832____closed__2; uint8_t l_Lean_RBNode_isRed___rarg(lean_object*); static lean_object* l_Lean_Elab_Term_resolveName_x27___closed__2; LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Term_addAutoBoundImplicits_go___spec__51(lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1256,7 +1255,7 @@ static lean_object* l_Lean_Elab_Tactic_instInhabitedSnapshot___closed__17; LEAN_EXPORT lean_object* l_ReaderT_pure___at_Lean_Elab_Term_addTermInfo___spec__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Term_throwErrorIfErrors(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_getDelayedMVarAssignment_x3f___at_Lean_Elab_Term_isLetRecAuxMVar___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Term___hyg_20900_(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Term___hyg_20863_(lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Term_addAutoBoundImplicits(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at_Lean_Elab_Term_addAutoBoundImplicits_go___spec__9___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Term_exprToSyntax(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1341,6 +1340,7 @@ static lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_isLambdaWithImp static lean_object* l_Lean_Elab_Term_MVarErrorInfo_logError___closed__4; LEAN_EXPORT uint8_t l_Array_anyMUnsafe_any___at_Lean_Elab_Term_addAutoBoundImplicits_go___spec__16(lean_object*, lean_object*, size_t, size_t); LEAN_EXPORT lean_object* l_Lean_PersistentArray_mapMAux___at_Lean_Elab_Term_withoutModifyingElabMetaStateWithInfo___spec__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Term___hyg_20863____closed__1; static lean_object* l_Lean_Elab_Term_mkTermElabAttributeUnsafe___closed__12; LEAN_EXPORT lean_object* l_Lean_Elab_Term_registerMVarErrorCustomInfo___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_elabTermAux___lambda__3___closed__3; @@ -47424,7 +47424,7 @@ lean_dec(x_3); return x_10; } } -static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_16860____closed__1() { +static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_16832____closed__1() { _start: { lean_object* x_1; @@ -47432,21 +47432,21 @@ x_1 = lean_mk_string_from_bytes("letrec", 6); return x_1; } } -static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_16860____closed__2() { +static lean_object* _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_16832____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Elab_Term_mkTermElabAttributeUnsafe___closed__9; -x_2 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_16860____closed__1; +x_2 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_16832____closed__1; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_16860_(lean_object* x_1) { +LEAN_EXPORT lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_16832_(lean_object* x_1) { _start: { lean_object* x_2; uint8_t x_3; lean_object* x_4; -x_2 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_16860____closed__2; +x_2 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_16832____closed__2; x_3 = 0; x_4 = l_Lean_registerTraceClass(x_2, x_3, x_1); return x_4; @@ -47804,7 +47804,7 @@ LEAN_EXPORT lean_object* l_Lean_Elab_Term_isLetRecAuxMVar(lean_object* x_1, lean _start: { lean_object* x_9; lean_object* x_10; lean_object* x_11; uint8_t x_12; -x_9 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_16860____closed__2; +x_9 = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_16832____closed__2; x_10 = l_Lean_isTracingEnabledFor___at_Lean_Elab_Term_traceAtCmdPos___spec__1(x_9, x_2, x_3, x_4, x_5, x_6, x_7, x_8); x_11 = lean_ctor_get(x_10, 0); lean_inc(x_11); @@ -59737,7 +59737,7 @@ x_3 = lean_alloc_closure((void*)(l_Lean_Elab_withoutModifyingStateWithInfoAndMes return x_3; } } -static lean_object* _init_l_Lean_Elab_initFn____x40_Lean_Elab_Term___hyg_20900____closed__1() { +static lean_object* _init_l_Lean_Elab_initFn____x40_Lean_Elab_Term___hyg_20863____closed__1() { _start: { lean_object* x_1; @@ -59745,17 +59745,17 @@ x_1 = lean_mk_string_from_bytes("debug", 5); return x_1; } } -static lean_object* _init_l_Lean_Elab_initFn____x40_Lean_Elab_Term___hyg_20900____closed__2() { +static lean_object* _init_l_Lean_Elab_initFn____x40_Lean_Elab_Term___hyg_20863____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Elab_Term_mkTermElabAttributeUnsafe___closed__9; -x_2 = l_Lean_Elab_initFn____x40_Lean_Elab_Term___hyg_20900____closed__1; +x_2 = l_Lean_Elab_initFn____x40_Lean_Elab_Term___hyg_20863____closed__1; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -LEAN_EXPORT lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Term___hyg_20900_(lean_object* x_1) { +LEAN_EXPORT lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Term___hyg_20863_(lean_object* x_1) { _start: { lean_object* x_2; uint8_t x_3; lean_object* x_4; @@ -59776,7 +59776,7 @@ lean_object* x_8; lean_object* x_9; lean_object* x_10; x_8 = lean_ctor_get(x_7, 1); lean_inc(x_8); lean_dec(x_7); -x_9 = l_Lean_Elab_initFn____x40_Lean_Elab_Term___hyg_20900____closed__2; +x_9 = l_Lean_Elab_initFn____x40_Lean_Elab_Term___hyg_20863____closed__2; x_10 = l_Lean_registerTraceClass(x_9, x_3, x_8); return x_10; } @@ -60473,11 +60473,11 @@ l_Lean_Elab_Term_mkAuxName___closed__1 = _init_l_Lean_Elab_Term_mkAuxName___clos lean_mark_persistent(l_Lean_Elab_Term_mkAuxName___closed__1); l_Lean_Elab_Term_mkAuxName___closed__2 = _init_l_Lean_Elab_Term_mkAuxName___closed__2(); lean_mark_persistent(l_Lean_Elab_Term_mkAuxName___closed__2); -l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_16860____closed__1 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_16860____closed__1(); -lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_16860____closed__1); -l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_16860____closed__2 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_16860____closed__2(); -lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_16860____closed__2); -res = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_16860_(lean_io_mk_world()); +l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_16832____closed__1 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_16832____closed__1(); +lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_16832____closed__1); +l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_16832____closed__2 = _init_l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_16832____closed__2(); +lean_mark_persistent(l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_16832____closed__2); +res = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_16832_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_Lean_Elab_Term_isLetRecAuxMVar___lambda__2___closed__1 = _init_l_Lean_Elab_Term_isLetRecAuxMVar___lambda__2___closed__1(); @@ -60650,11 +60650,11 @@ l_Lean_Elab_Term_exprToSyntax___lambda__1___closed__3 = _init_l_Lean_Elab_Term_e lean_mark_persistent(l_Lean_Elab_Term_exprToSyntax___lambda__1___closed__3); l_Lean_Elab_Term_exprToSyntax___lambda__1___closed__4 = _init_l_Lean_Elab_Term_exprToSyntax___lambda__1___closed__4(); lean_mark_persistent(l_Lean_Elab_Term_exprToSyntax___lambda__1___closed__4); -l_Lean_Elab_initFn____x40_Lean_Elab_Term___hyg_20900____closed__1 = _init_l_Lean_Elab_initFn____x40_Lean_Elab_Term___hyg_20900____closed__1(); -lean_mark_persistent(l_Lean_Elab_initFn____x40_Lean_Elab_Term___hyg_20900____closed__1); -l_Lean_Elab_initFn____x40_Lean_Elab_Term___hyg_20900____closed__2 = _init_l_Lean_Elab_initFn____x40_Lean_Elab_Term___hyg_20900____closed__2(); -lean_mark_persistent(l_Lean_Elab_initFn____x40_Lean_Elab_Term___hyg_20900____closed__2); -res = l_Lean_Elab_initFn____x40_Lean_Elab_Term___hyg_20900_(lean_io_mk_world()); +l_Lean_Elab_initFn____x40_Lean_Elab_Term___hyg_20863____closed__1 = _init_l_Lean_Elab_initFn____x40_Lean_Elab_Term___hyg_20863____closed__1(); +lean_mark_persistent(l_Lean_Elab_initFn____x40_Lean_Elab_Term___hyg_20863____closed__1); +l_Lean_Elab_initFn____x40_Lean_Elab_Term___hyg_20863____closed__2 = _init_l_Lean_Elab_initFn____x40_Lean_Elab_Term___hyg_20863____closed__2(); +lean_mark_persistent(l_Lean_Elab_initFn____x40_Lean_Elab_Term___hyg_20863____closed__2); +res = l_Lean_Elab_initFn____x40_Lean_Elab_Term___hyg_20863_(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/Meta/Basic.c b/stage0/stdlib/Lean/Meta/Basic.c index 3f01de3259..43bfeec428 100644 --- a/stage0/stdlib/Lean/Meta/Basic.c +++ b/stage0/stdlib/Lean/Meta/Basic.c @@ -238,7 +238,7 @@ LEAN_EXPORT lean_object* l_Lean_addTrace___at_Lean_Meta_processPostponed_loop___ LEAN_EXPORT lean_object* l_Lean_Meta_instMonadEnvMetaM___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_forallTelescopeReducingAuxAux_process___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_isClassExpensive_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -uint8_t l___private_Init_Meta_0__Lean_Meta_beqTransparencyMode____x40_Init_Meta___hyg_12380_(uint8_t, uint8_t); +uint8_t l___private_Init_Meta_0__Lean_Meta_beqTransparencyMode____x40_Init_Meta___hyg_12371_(uint8_t, uint8_t); static lean_object* l_Lean_Meta_instAlternativeMetaM___closed__2; LEAN_EXPORT lean_object* l_Lean_Meta_setInlineAttribute___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentArray_forIn___at___private_Lean_Meta_Basic_0__Lean_Meta_processPostponedStep___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -782,7 +782,7 @@ static lean_object* l_Lean_Meta_processPostponed_loop___closed__4; uint8_t lean_nat_dec_eq(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_approxDefEqImp(lean_object*); LEAN_EXPORT uint8_t l_Lean_Meta_ParamInfo_dependsOnHigherOrderOutParam___default; -LEAN_EXPORT lean_object* l_Lean_initFn____x40_Lean_Meta_Basic___hyg_19207_(lean_object*); +LEAN_EXPORT lean_object* l_Lean_initFn____x40_Lean_Meta_Basic___hyg_19179_(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_instMonadMCtxMetaM___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_addMessageContextFull___at_Lean_Meta_instAddMessageContextMetaM___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_resettingSynthInstanceCacheWhen(lean_object*); @@ -1423,7 +1423,7 @@ x_5 = lean_ctor_get(x_1, 1); x_6 = lean_ctor_get_uint8(x_2, sizeof(void*)*2); x_7 = lean_ctor_get(x_2, 0); x_8 = lean_ctor_get(x_2, 1); -x_9 = l___private_Init_Meta_0__Lean_Meta_beqTransparencyMode____x40_Init_Meta___hyg_12380_(x_3, x_6); +x_9 = l___private_Init_Meta_0__Lean_Meta_beqTransparencyMode____x40_Init_Meta___hyg_12371_(x_3, x_6); if (x_9 == 0) { uint8_t x_10; @@ -7262,7 +7262,7 @@ x_8 = lean_ctor_get(x_6, 0); x_9 = 0; x_10 = lean_unbox(x_8); lean_dec(x_8); -x_11 = l___private_Init_Meta_0__Lean_Meta_beqTransparencyMode____x40_Init_Meta___hyg_12380_(x_10, x_9); +x_11 = l___private_Init_Meta_0__Lean_Meta_beqTransparencyMode____x40_Init_Meta___hyg_12371_(x_10, x_9); x_12 = lean_box(x_11); lean_ctor_set(x_6, 0, x_12); return x_6; @@ -7278,7 +7278,7 @@ lean_dec(x_6); x_15 = 0; x_16 = lean_unbox(x_13); lean_dec(x_13); -x_17 = l___private_Init_Meta_0__Lean_Meta_beqTransparencyMode____x40_Init_Meta___hyg_12380_(x_16, x_15); +x_17 = l___private_Init_Meta_0__Lean_Meta_beqTransparencyMode____x40_Init_Meta___hyg_12371_(x_16, x_15); x_18 = lean_box(x_17); x_19 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_19, 0, x_18); @@ -7312,7 +7312,7 @@ x_8 = lean_ctor_get(x_6, 0); x_9 = 2; x_10 = lean_unbox(x_8); lean_dec(x_8); -x_11 = l___private_Init_Meta_0__Lean_Meta_beqTransparencyMode____x40_Init_Meta___hyg_12380_(x_10, x_9); +x_11 = l___private_Init_Meta_0__Lean_Meta_beqTransparencyMode____x40_Init_Meta___hyg_12371_(x_10, x_9); x_12 = lean_box(x_11); lean_ctor_set(x_6, 0, x_12); return x_6; @@ -7328,7 +7328,7 @@ lean_dec(x_6); x_15 = 2; x_16 = lean_unbox(x_13); lean_dec(x_13); -x_17 = l___private_Init_Meta_0__Lean_Meta_beqTransparencyMode____x40_Init_Meta___hyg_12380_(x_16, x_15); +x_17 = l___private_Init_Meta_0__Lean_Meta_beqTransparencyMode____x40_Init_Meta___hyg_12371_(x_16, x_15); x_18 = lean_box(x_17); x_19 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_19, 0, x_18); @@ -36034,7 +36034,7 @@ lean_dec(x_3); return x_9; } } -LEAN_EXPORT lean_object* l_Lean_initFn____x40_Lean_Meta_Basic___hyg_19207_(lean_object* x_1) { +LEAN_EXPORT lean_object* l_Lean_initFn____x40_Lean_Meta_Basic___hyg_19179_(lean_object* x_1) { _start: { lean_object* x_2; uint8_t x_3; lean_object* x_4; @@ -36457,7 +36457,7 @@ l_Lean_Meta_processPostponed___lambda__1___closed__3 = _init_l_Lean_Meta_process lean_mark_persistent(l_Lean_Meta_processPostponed___lambda__1___closed__3); l_Lean_Meta_processPostponed___lambda__1___closed__4 = _init_l_Lean_Meta_processPostponed___lambda__1___closed__4(); lean_mark_persistent(l_Lean_Meta_processPostponed___lambda__1___closed__4); -res = l_Lean_initFn____x40_Lean_Meta_Basic___hyg_19207_(lean_io_mk_world()); +res = l_Lean_initFn____x40_Lean_Meta_Basic___hyg_19179_(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/Meta/Check.c b/stage0/stdlib/Lean/Meta/Check.c index 47b24c028d..f386b8e9d1 100644 --- a/stage0/stdlib/Lean/Meta/Check.c +++ b/stage0/stdlib/Lean/Meta/Check.c @@ -193,7 +193,7 @@ static lean_object* l_Lean_Meta_throwAppTypeMismatch___rarg___lambda__1___closed static lean_object* l_Lean_Meta_check___lambda__1___closed__6; static lean_object* l_Lean_Meta_throwLetTypeMismatchMessage___rarg___closed__9; lean_object* l_Lean_indentExpr(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_3278_(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_3243_(lean_object*); static lean_object* l_Lean_Meta_throwLetTypeMismatchMessage___rarg___closed__4; LEAN_EXPORT lean_object* l_Lean_Meta_throwAppTypeMismatch___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_addPPExplicitToExposeDiff_hasExplicitDiff_x3f___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -7952,7 +7952,7 @@ return x_23; } } } -LEAN_EXPORT lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_3278_(lean_object* x_1) { +LEAN_EXPORT lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_3243_(lean_object* x_1) { _start: { lean_object* x_2; uint8_t x_3; lean_object* x_4; @@ -8061,7 +8061,7 @@ l_Lean_Meta_check___closed__2 = _init_l_Lean_Meta_check___closed__2(); lean_mark_persistent(l_Lean_Meta_check___closed__2); l_Lean_Meta_check___closed__3 = _init_l_Lean_Meta_check___closed__3(); lean_mark_persistent(l_Lean_Meta_check___closed__3); -res = l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_3278_(lean_io_mk_world()); +res = l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_3243_(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/Meta/ExprDefEq.c b/stage0/stdlib/Lean/Meta/ExprDefEq.c index 7dd6ff5585..fee176b3cf 100644 --- a/stage0/stdlib/Lean/Meta/ExprDefEq.c +++ b/stage0/stdlib/Lean/Meta/ExprDefEq.c @@ -60,7 +60,6 @@ LEAN_EXPORT lean_object* l___private_Lean_MetavarContext_0__Lean_DependsOn_dep_v LEAN_EXPORT uint8_t l_Lean_PersistentArray_anyM___at_Lean_Meta_CheckAssignment_checkMVar___spec__14(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_simpAssignmentArgAux___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_mk_empty_array_with_capacity(lean_object*); -static lean_object* l_Lean_Meta_CheckAssignment_check___closed__10; LEAN_EXPORT lean_object* l___private_Lean_MetavarContext_0__Lean_DependsOn_dep_visitApp___at_Lean_Meta_CheckAssignment_checkMVar___spec__45___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Name_str___override(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at_Lean_Meta_CheckAssignment_checkFVar___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*); @@ -70,10 +69,9 @@ static lean_object* l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_isDefEqEtaStruc LEAN_EXPORT lean_object* l_Lean_Meta_CheckAssignment_checkAssignmentAux___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_isExprDefEqAuxImpl___lambda__3___closed__2; LEAN_EXPORT lean_object* l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_mkCacheKey(lean_object*, lean_object*); -static lean_object* l_Lean_Meta_CheckAssignment_check___closed__12; LEAN_EXPORT lean_object* l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_unfoldBothDefEq(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_CheckAssignment_initFn____x40_Lean_Meta_ExprDefEq___hyg_6043_(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_CheckAssignment_initFn____x40_Lean_Meta_ExprDefEq___hyg_6023_(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_CheckAssignment_initFn____x40_Lean_Meta_ExprDefEq___hyg_6002_(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_CheckAssignment_initFn____x40_Lean_Meta_ExprDefEq___hyg_6022_(lean_object*); LEAN_EXPORT lean_object* l_Std_Range_forIn_loop___at___private_Lean_Meta_ExprDefEq_0__Lean_Meta_isDefEqEtaStruct_go___spec__1___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_find_x3f___at___private_Lean_Meta_ExprDefEq_0__Lean_Meta_getCachedResult___spec__1(lean_object*, lean_object*); uint8_t lean_usize_dec_eq(size_t, size_t); @@ -166,7 +164,6 @@ lean_object* l_Lean_Name_mkStr2(lean_object*, lean_object*); lean_object* l_Lean_withTraceNode___at_Lean_Meta_processPostponed___spec__1(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Std_Range_forIn_loop___at___private_Lean_Meta_ExprDefEq_0__Lean_Meta_isDefEqEtaStruct_go___spec__1___lambda__2___closed__9; LEAN_EXPORT lean_object* l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_unstuckMVar___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Meta_CheckAssignment_check___closed__5; LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAtCollisionNodeAux___at___private_Lean_Meta_ExprDefEq_0__Lean_Meta_cacheResult___spec__4(lean_object*, lean_object*, lean_object*, uint8_t); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Meta_CheckAssignment_checkMVar___spec__55(lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT uint8_t l_Lean_PersistentArray_anyMAux___at_Lean_Meta_CheckAssignment_checkMVar___spec__7(lean_object*, lean_object*); @@ -177,7 +174,6 @@ LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at_Lean_Meta_CheckAssignment_c lean_object* lean_array_get_size(lean_object*); static lean_object* l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_checkTypesAndAssign___lambda__1___closed__4; static lean_object* l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_processAssignmentFOApprox_loop___closed__1; -static lean_object* l_Lean_Meta_CheckAssignment_check___closed__15; static lean_object* l_Std_Range_forIn_loop___at___private_Lean_Meta_ExprDefEq_0__Lean_Meta_mkLambdaFVarsWithLetDeps_hasLetDeclsInBetween___spec__1___closed__1; static lean_object* l_Std_Range_forIn_loop___at___private_Lean_Meta_ExprDefEq_0__Lean_Meta_isDefEqEtaStruct_go___spec__1___lambda__2___closed__6; LEAN_EXPORT lean_object* l_Lean_PersistentArray_anyMAux___at_Lean_Meta_CheckAssignment_checkMVar___spec__23___boxed(lean_object*, lean_object*); @@ -217,7 +213,7 @@ LEAN_EXPORT lean_object* l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_processAss LEAN_EXPORT lean_object* l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_processConstApprox_defaultCase___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_addTrace___at_Lean_Meta_processPostponed_loop___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_processAssignment_process___closed__2; -uint8_t l___private_Init_Meta_0__Lean_Meta_beqTransparencyMode____x40_Init_Meta___hyg_12380_(uint8_t, uint8_t); +uint8_t l___private_Init_Meta_0__Lean_Meta_beqTransparencyMode____x40_Init_Meta___hyg_12371_(uint8_t, uint8_t); static lean_object* l_Std_Range_forIn_loop___at___private_Lean_Meta_ExprDefEq_0__Lean_Meta_isDefEqEtaStruct_go___spec__1___closed__1; LEAN_EXPORT lean_object* l_Lean_AssocList_contains___at___private_Lean_Meta_ExprDefEq_0__Lean_Meta_mkLambdaFVarsWithLetDeps_collectLetDeclsFrom_visit___spec__4___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_isDefEqArgsFirstPass(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -257,7 +253,6 @@ LEAN_EXPORT lean_object* l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_tryHeurist LEAN_EXPORT lean_object* l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_expandDelayedAssigned_x3f___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_unfold___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Meta_CheckAssignment_checkMVar___spec__62___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Meta_CheckAssignment_check___closed__7; LEAN_EXPORT lean_object* l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_processAssignment_process___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MVarId_getDecl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_occursCheck___at_Lean_Meta_checkAssignment___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -302,7 +297,6 @@ LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at_Lean_Meta_CheckAssignment_c LEAN_EXPORT lean_object* l_Lean_Meta_checkpointDefEq___at___private_Lean_Meta_ExprDefEq_0__Lean_Meta_isDefEqQuickMVarMVar___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_inheritedTraceOptions; LEAN_EXPORT lean_object* l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_expandDelayedAssigned_x3f___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Meta_CheckAssignment_check___closed__14; LEAN_EXPORT lean_object* l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_expandDelayedAssigned_x3f___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_isDefEqBindingDomain_loop(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_trySynthPending(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -344,7 +338,6 @@ LEAN_EXPORT lean_object* l_Lean_AssocList_replace___at___private_Lean_Meta_ExprD LEAN_EXPORT lean_object* l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_isExprDefEqExpensive___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_MetavarContext_0__Lean_DependsOn_dep_visitApp___at_Lean_Meta_CheckAssignment_checkMVar___spec__37___boxed(lean_object*, lean_object*, lean_object*); static lean_object* l_Std_Range_forIn_loop___at___private_Lean_Meta_ExprDefEq_0__Lean_Meta_isDefEqArgsFirstPass___spec__1___closed__2; -static lean_object* l_Lean_Meta_CheckAssignment_check___closed__3; lean_object* l_Lean_addTrace___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_nat_sub(lean_object*, lean_object*); lean_object* l_Lean_HashSetImp_insert___at___private_Lean_MetavarContext_0__Lean_DependsOn_shouldVisit___spec__3(lean_object*, lean_object*); @@ -407,12 +400,10 @@ LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Meta_CheckAssignmen lean_object* l_Lean_Meta_throwIsDefEqStuck___rarg(lean_object*); static lean_object* l_Lean_Meta_CheckAssignment_checkMVar___closed__6; static lean_object* l_Lean_Meta_checkpointDefEq___at___private_Lean_Meta_ExprDefEq_0__Lean_Meta_isDefEqEtaStruct_go___spec__2___closed__1; -static lean_object* l_Lean_Meta_CheckAssignment_check___closed__2; LEAN_EXPORT lean_object* l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_isListLevelDefEq(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_MetavarContext_0__Lean_DependsOn_dep_visitMain___at_Lean_Meta_CheckAssignment_checkMVar___spec__36___boxed(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_CheckAssignment_run___closed__2; LEAN_EXPORT lean_object* l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_mkLambdaFVarsWithLetDeps_collectLetDeclsFrom_visit___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_panic___at_Lean_Expr_getRevArg_x21___spec__1(lean_object*); LEAN_EXPORT lean_object* l___private_Lean_MetavarContext_0__Lean_DependsOn_dep_visit___at_Lean_Meta_CheckAssignment_checkMVar___spec__35(lean_object*, lean_object*, lean_object*); uint8_t l_Lean_ReducibilityHints_isRegular(lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_isDefEqOnFailure(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -454,7 +445,6 @@ static lean_object* l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_CheckAssignment lean_object* l_Lean_isTracingEnabledFor___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_LocalContext_getFVar_x21(lean_object*, lean_object*); lean_object* l_Lean_Expr_sort___override(lean_object*); -static lean_object* l_Lean_Meta_CheckAssignment_check___closed__16; static lean_object* l_Lean_PersistentHashMap_insertAux___at___private_Lean_Meta_ExprDefEq_0__Lean_Meta_cacheResult___spec__2___closed__1; LEAN_EXPORT lean_object* l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_mkLambdaFVarsWithLetDeps_collectLetDeps___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_back___rarg(lean_object*, lean_object*); @@ -504,16 +494,15 @@ static lean_object* l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_isDefEqArgsFirs LEAN_EXPORT lean_object* l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_processAssignmentFOApprox_loop(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_isDefEqProjInst___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l___private_Lean_Expr_0__Lean_beqLiteral____x40_Lean_Expr___hyg_32_(lean_object*, lean_object*); -lean_object* l___private_Init_Util_0__mkPanicMessageWithDecl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_isDefEqQuickOther___lambda__2___closed__1; lean_object* l_Lean_HashMap_insert___at_Lean_instantiateExprMVars___spec__3(lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Meta_CheckAssignment_check___closed__6; static lean_object* l_Lean_Meta_CheckAssignment_checkMVar___closed__2; uint8_t l_Lean_Expr_isConst(lean_object*); uint8_t l_Array_isEmpty___rarg(lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAtCollisionNodeAux___at___private_Lean_Meta_ExprDefEq_0__Lean_Meta_cacheResult___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_LocalDecl_toExpr(lean_object*); uint8_t l_Lean_Expr_isConstOf(lean_object*, lean_object*); +static lean_object* l_Lean_Meta_CheckAssignment_initFn____x40_Lean_Meta_ExprDefEq___hyg_6002____closed__2; LEAN_EXPORT lean_object* l_Lean_Meta_isEtaUnassignedMVar(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MetavarContext_getExprAssignmentCore_x3f(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at_Lean_Meta_CheckAssignment_checkMVar___spec__25___boxed(lean_object*, lean_object*, lean_object*, lean_object*); @@ -564,7 +553,6 @@ LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux_traverse___at___priv static lean_object* l_Lean_Meta_checkpointDefEq___at___private_Lean_Meta_ExprDefEq_0__Lean_Meta_isDefEqEta___spec__1___closed__1; LEAN_EXPORT lean_object* l_Lean_Meta_isExprDefEqAuxImpl___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT uint8_t l_Array_anyMUnsafe_any___at_Lean_Meta_CheckAssignment_checkMVar___spec__9(lean_object*, lean_object*, size_t, size_t); -static lean_object* l_Lean_Meta_CheckAssignment_check___closed__8; lean_object* l_Lean_Expr_toCtorIfLit(lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_isDefEqBindingAux___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_processConstApprox_go(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -581,6 +569,7 @@ static lean_object* l_Lean_Meta_isExprDefEqAuxImpl___lambda__3___closed__16; lean_object* l_Lean_registerInternalExceptionId(lean_object*, lean_object*); static lean_object* l_Lean_Meta_checkpointDefEq___at___private_Lean_Meta_ExprDefEq_0__Lean_Meta_isDefEqEtaStruct_go___spec__2___closed__5; LEAN_EXPORT uint8_t l_Array_anyMUnsafe_any___at_Lean_Meta_CheckAssignment_checkFVar___spec__2(lean_object*, lean_object*, size_t, size_t); +static lean_object* l_Lean_Meta_CheckAssignment_initFn____x40_Lean_Meta_ExprDefEq___hyg_6022____closed__1; lean_object* l_Lean_PersistentHashMap_mkEmptyEntriesArray(lean_object*, lean_object*); lean_object* l_Lean_PersistentArray_push___rarg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAtAux___at___private_Lean_Meta_ExprDefEq_0__Lean_Meta_getCachedResult___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -588,11 +577,9 @@ static lean_object* l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_isDefEqEtaStruc LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Meta_CheckAssignment_checkMVar___spec__66(lean_object*, lean_object*, size_t, size_t, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_checkpointDefEq___at___private_Lean_Meta_ExprDefEq_0__Lean_Meta_isDefEqEta___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_isDefEqRight(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Meta_CheckAssignment_initFn____x40_Lean_Meta_ExprDefEq___hyg_6023____closed__1; lean_object* l_Lean_Meta_mkFreshExprMVarAt(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_unstuckMVar___closed__8; lean_object* l_Lean_LocalDecl_type(lean_object*); -static lean_object* l_Lean_Meta_CheckAssignment_check___closed__1; lean_object* l_Lean_LocalDecl_value_x3f(lean_object*); lean_object* l_Lean_LocalContext_mkLocalDecl(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t); static lean_object* l_Std_Range_forIn_loop___at___private_Lean_Meta_ExprDefEq_0__Lean_Meta_isDefEqEtaStruct_go___spec__1___lambda__1___closed__3; @@ -637,7 +624,6 @@ static lean_object* l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_isDefEqQuickOth static lean_object* l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_isDefEqOnFailure___closed__2; uint8_t lean_expr_eqv(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAtAux___at___private_Lean_Meta_ExprDefEq_0__Lean_Meta_getCachedResult___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Meta_CheckAssignment_initFn____x40_Lean_Meta_ExprDefEq___hyg_6043____closed__1; static lean_object* l_Lean_Meta_CheckAssignment_checkMVar___closed__7; static lean_object* l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_checkTypesAndAssign___lambda__1___closed__1; uint8_t l_Lean_Expr_isMVar(lean_object*); @@ -694,7 +680,6 @@ LEAN_EXPORT lean_object* l_Lean_Meta_CheckAssignment_throwCheckAssignmentFailure LEAN_EXPORT lean_object* l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_isAssignable(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_withProofIrrelTransparency(lean_object*); static lean_object* l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_unstuckMVar___closed__14; -static lean_object* l_Lean_Meta_CheckAssignment_check___closed__13; static lean_object* l_Lean_Meta_CheckAssignment_instMonadCacheExprCheckAssignmentM___closed__1; LEAN_EXPORT lean_object* l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_isDefEqProjInst___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_MetavarContext_0__Lean_DependsOn_dep_visit___at_Lean_Meta_CheckAssignment_checkMVar___spec__27(lean_object*, lean_object*, lean_object*); @@ -729,7 +714,7 @@ static lean_object* l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_tryHeuristic___ lean_object* l_Lean_addMessageContextFull___at_Lean_Meta_instAddMessageContextMetaM___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_MetavarContext_0__Lean_DependsOn_dep_visitMain___at_Lean_Meta_CheckAssignment_checkMVar___spec__4(lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_isDefEqArgsFirstPass___closed__3; -LEAN_EXPORT lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_ExprDefEq___hyg_19721_(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_ExprDefEq___hyg_19551_(lean_object*); static lean_object* l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_unstuckMVar___closed__20; lean_object* l_Lean_PersistentHashMap_mkEmptyEntries(lean_object*, lean_object*); lean_object* l_Lean_Expr_app___override(lean_object*, lean_object*); @@ -764,7 +749,6 @@ lean_object* l_instHashableProd___rarg___boxed(lean_object*, lean_object*, lean_ LEAN_EXPORT lean_object* l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_cacheResult(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_getTransparency(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Expr_isStringLit(lean_object*); -static lean_object* l_Lean_Meta_CheckAssignment_check___closed__4; lean_object* lean_array_pop(lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_isDefEqArgs___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_MetavarContext_0__Lean_DependsOn_dep_visitMain___at_Lean_Meta_CheckAssignment_checkMVar___spec__12___boxed(lean_object*, lean_object*, lean_object*); @@ -778,14 +762,12 @@ LEAN_EXPORT lean_object* l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_isDefEqLef static lean_object* l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_CheckAssignment_addAssignmentInfo___closed__6; LEAN_EXPORT uint8_t l_Array_anyMUnsafe_any___at_Lean_Meta_CheckAssignmentQuick_check_visit___spec__2(lean_object*, lean_object*, size_t, size_t); uint64_t lean_uint64_mix_hash(uint64_t, uint64_t); -static lean_object* l_Lean_Meta_CheckAssignment_check___closed__11; LEAN_EXPORT lean_object* l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_isDefEqEtaStruct(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Expr_instBEqExpr; static lean_object* l_Lean_Meta_isExprDefEqAuxImpl___lambda__3___closed__6; LEAN_EXPORT lean_object* l_Std_Range_forIn_loop___at___private_Lean_Meta_ExprDefEq_0__Lean_Meta_isDefEqEtaStruct_go___spec__1___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_consumeLet(lean_object*); LEAN_EXPORT lean_object* l___private_Lean_MetavarContext_0__Lean_DependsOn_dep_visitMain___at_Lean_Meta_CheckAssignment_checkMVar___spec__28(lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Meta_CheckAssignment_initFn____x40_Lean_Meta_ExprDefEq___hyg_6043____closed__2; LEAN_EXPORT lean_object* l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_isDefEqLeft___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_processAssignmentFOApproxAux___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_isAssignable___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -842,10 +824,10 @@ LEAN_EXPORT uint8_t l_Array_anyMUnsafe_any___at_Lean_Meta_CheckAssignment_checkA LEAN_EXPORT lean_object* l___private_Lean_MetavarContext_0__Lean_DependsOn_dep_visitApp___at_Lean_Meta_CheckAssignment_checkMVar___spec__45(lean_object*, lean_object*, lean_object*); lean_object* lean_local_ctx_find(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_Range_forIn_loop___at___private_Lean_Meta_ExprDefEq_0__Lean_Meta_isDefEqArgs___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_CheckAssignment_initFn____x40_Lean_Meta_ExprDefEq___hyg_6022____closed__2; lean_object* l_Lean_Meta_whnfEasyCases___at_Lean_Meta_whnfCore_go___spec__3(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Name_mkStr4(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_usize_to_nat(size_t); -static lean_object* l_Lean_Meta_CheckAssignment_initFn____x40_Lean_Meta_ExprDefEq___hyg_6023____closed__2; LEAN_EXPORT lean_object* l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_isExprDefEqExpensive___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_withProofIrrelTransparency___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_MetavarContext_0__Lean_DependsOn_dep_visit___at_Lean_Meta_CheckAssignment_checkMVar___spec__43___boxed(lean_object*, lean_object*, lean_object*); @@ -856,7 +838,6 @@ uint8_t l_Lean_isStructureLike(lean_object*, lean_object*); LEAN_EXPORT uint8_t l_Lean_HashSetImp_contains___at___private_Lean_Meta_ExprDefEq_0__Lean_Meta_mkLambdaFVarsWithLetDeps_collectLetDepsAux___spec__1(lean_object*, lean_object*); lean_object* l_Lean_Meta_isProp(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_MetavarContext_0__Lean_DependsOn_dep_visit___at_Lean_Meta_CheckAssignment_checkMVar___spec__35___boxed(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_CheckAssignment_visit(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at___private_Lean_Meta_ExprDefEq_0__Lean_Meta_processAssignment_process___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_isExprDefEqAuxImpl___lambda__3___closed__5; LEAN_EXPORT lean_object* l_Std_Range_forIn_loop___at___private_Lean_Meta_ExprDefEq_0__Lean_Meta_isDefEqArgsFirstPass___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -881,7 +862,6 @@ lean_object* l_Lean_PersistentHashMap_mkCollisionNode___rarg(lean_object*, lean_ lean_object* l_Lean_Meta_processPostponed(uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_Range_forIn_loop___at___private_Lean_Meta_ExprDefEq_0__Lean_Meta_isDefEqArgsFirstPass___spec__1___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_isExprDefEqExpensive___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Meta_CheckAssignment_check___closed__9; static lean_object* l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_isDefEqQuickOther___lambda__2___closed__2; LEAN_EXPORT lean_object* l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_CheckAssignment_addAssignmentInfo(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_isDefEqMVarSelf(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -891,6 +871,7 @@ LEAN_EXPORT lean_object* l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_CheckAssig LEAN_EXPORT lean_object* l_Lean_PersistentArray_anyM___at_Lean_Meta_CheckAssignment_checkMVar___spec__38___boxed(lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_CheckAssignment_addAssignmentInfo___closed__5; LEAN_EXPORT lean_object* l_Lean_HashSetImp_insert___at___private_Lean_Meta_ExprDefEq_0__Lean_Meta_mkLambdaFVarsWithLetDeps_collectLetDeclsFrom_visit___spec__9(lean_object*, lean_object*); +static lean_object* l_Lean_Meta_CheckAssignment_initFn____x40_Lean_Meta_ExprDefEq___hyg_6002____closed__1; uint8_t l_Lean_LocalContext_isSubPrefixOf(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_unstuckMVar___at___private_Lean_Meta_ExprDefEq_0__Lean_Meta_isDefEqOnFailure___spec__1___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_unstuckMVar___closed__19; @@ -15097,7 +15078,7 @@ lean_dec(x_5); return x_10; } } -static lean_object* _init_l_Lean_Meta_CheckAssignment_initFn____x40_Lean_Meta_ExprDefEq___hyg_6023____closed__1() { +static lean_object* _init_l_Lean_Meta_CheckAssignment_initFn____x40_Lean_Meta_ExprDefEq___hyg_6002____closed__1() { _start: { lean_object* x_1; @@ -15105,26 +15086,26 @@ x_1 = lean_mk_string_from_bytes("checkAssignment", 15); return x_1; } } -static lean_object* _init_l_Lean_Meta_CheckAssignment_initFn____x40_Lean_Meta_ExprDefEq___hyg_6023____closed__2() { +static lean_object* _init_l_Lean_Meta_CheckAssignment_initFn____x40_Lean_Meta_ExprDefEq___hyg_6002____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Meta_CheckAssignment_initFn____x40_Lean_Meta_ExprDefEq___hyg_6023____closed__1; +x_2 = l_Lean_Meta_CheckAssignment_initFn____x40_Lean_Meta_ExprDefEq___hyg_6002____closed__1; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -LEAN_EXPORT lean_object* l_Lean_Meta_CheckAssignment_initFn____x40_Lean_Meta_ExprDefEq___hyg_6023_(lean_object* x_1) { +LEAN_EXPORT lean_object* l_Lean_Meta_CheckAssignment_initFn____x40_Lean_Meta_ExprDefEq___hyg_6002_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; -x_2 = l_Lean_Meta_CheckAssignment_initFn____x40_Lean_Meta_ExprDefEq___hyg_6023____closed__2; +x_2 = l_Lean_Meta_CheckAssignment_initFn____x40_Lean_Meta_ExprDefEq___hyg_6002____closed__2; x_3 = l_Lean_registerInternalExceptionId(x_2, x_1); return x_3; } } -static lean_object* _init_l_Lean_Meta_CheckAssignment_initFn____x40_Lean_Meta_ExprDefEq___hyg_6043____closed__1() { +static lean_object* _init_l_Lean_Meta_CheckAssignment_initFn____x40_Lean_Meta_ExprDefEq___hyg_6022____closed__1() { _start: { lean_object* x_1; @@ -15132,21 +15113,21 @@ x_1 = lean_mk_string_from_bytes("outOfScope", 10); return x_1; } } -static lean_object* _init_l_Lean_Meta_CheckAssignment_initFn____x40_Lean_Meta_ExprDefEq___hyg_6043____closed__2() { +static lean_object* _init_l_Lean_Meta_CheckAssignment_initFn____x40_Lean_Meta_ExprDefEq___hyg_6022____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Meta_CheckAssignment_initFn____x40_Lean_Meta_ExprDefEq___hyg_6043____closed__1; +x_2 = l_Lean_Meta_CheckAssignment_initFn____x40_Lean_Meta_ExprDefEq___hyg_6022____closed__1; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -LEAN_EXPORT lean_object* l_Lean_Meta_CheckAssignment_initFn____x40_Lean_Meta_ExprDefEq___hyg_6043_(lean_object* x_1) { +LEAN_EXPORT lean_object* l_Lean_Meta_CheckAssignment_initFn____x40_Lean_Meta_ExprDefEq___hyg_6022_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; -x_2 = l_Lean_Meta_CheckAssignment_initFn____x40_Lean_Meta_ExprDefEq___hyg_6043____closed__2; +x_2 = l_Lean_Meta_CheckAssignment_initFn____x40_Lean_Meta_ExprDefEq___hyg_6022____closed__2; x_3 = l_Lean_registerInternalExceptionId(x_2, x_1); return x_3; } @@ -15412,175 +15393,6 @@ x_1 = l_Lean_Meta_CheckAssignment_instMonadCacheExprCheckAssignmentM___closed__3 return x_1; } } -LEAN_EXPORT lean_object* l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_CheckAssignment_visit(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { -_start: -{ -lean_object* x_10; uint8_t x_33; -x_33 = l_Lean_Expr_hasExprMVar(x_2); -if (x_33 == 0) -{ -uint8_t x_34; -x_34 = l_Lean_Expr_hasFVar(x_2); -if (x_34 == 0) -{ -lean_object* x_35; -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_1); -x_35 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_35, 0, x_2); -lean_ctor_set(x_35, 1, x_9); -return x_35; -} -else -{ -lean_object* x_36; -x_36 = lean_box(0); -x_10 = x_36; -goto block_32; -} -} -else -{ -lean_object* x_37; -x_37 = lean_box(0); -x_10 = x_37; -goto block_32; -} -block_32: -{ -lean_object* x_11; lean_object* x_12; -lean_dec(x_10); -lean_inc(x_2); -x_11 = l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_CheckAssignment_findCached_x3f(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); -x_12 = lean_ctor_get(x_11, 0); -lean_inc(x_12); -if (lean_obj_tag(x_12) == 0) -{ -lean_object* x_13; lean_object* x_14; -x_13 = lean_ctor_get(x_11, 1); -lean_inc(x_13); -lean_dec(x_11); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_3); -lean_inc(x_2); -x_14 = lean_apply_8(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_13); -if (lean_obj_tag(x_14) == 0) -{ -lean_object* x_15; lean_object* x_16; lean_object* x_17; uint8_t x_18; -x_15 = lean_ctor_get(x_14, 0); -lean_inc(x_15); -x_16 = lean_ctor_get(x_14, 1); -lean_inc(x_16); -lean_dec(x_14); -lean_inc(x_15); -x_17 = l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_CheckAssignment_cache(x_2, x_15, x_3, x_4, x_5, x_6, x_7, x_8, x_16); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -x_18 = !lean_is_exclusive(x_17); -if (x_18 == 0) -{ -lean_object* x_19; -x_19 = lean_ctor_get(x_17, 0); -lean_dec(x_19); -lean_ctor_set(x_17, 0, x_15); -return x_17; -} -else -{ -lean_object* x_20; lean_object* x_21; -x_20 = lean_ctor_get(x_17, 1); -lean_inc(x_20); -lean_dec(x_17); -x_21 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_21, 0, x_15); -lean_ctor_set(x_21, 1, x_20); -return x_21; -} -} -else -{ -uint8_t x_22; -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -x_22 = !lean_is_exclusive(x_14); -if (x_22 == 0) -{ -return x_14; -} -else -{ -lean_object* x_23; lean_object* x_24; lean_object* x_25; -x_23 = lean_ctor_get(x_14, 0); -x_24 = lean_ctor_get(x_14, 1); -lean_inc(x_24); -lean_inc(x_23); -lean_dec(x_14); -x_25 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_25, 0, x_23); -lean_ctor_set(x_25, 1, x_24); -return x_25; -} -} -} -else -{ -uint8_t x_26; -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -lean_dec(x_1); -x_26 = !lean_is_exclusive(x_11); -if (x_26 == 0) -{ -lean_object* x_27; lean_object* x_28; -x_27 = lean_ctor_get(x_11, 0); -lean_dec(x_27); -x_28 = lean_ctor_get(x_12, 0); -lean_inc(x_28); -lean_dec(x_12); -lean_ctor_set(x_11, 0, x_28); -return x_11; -} -else -{ -lean_object* x_29; lean_object* x_30; lean_object* x_31; -x_29 = lean_ctor_get(x_11, 1); -lean_inc(x_29); -lean_dec(x_11); -x_30 = lean_ctor_get(x_12, 0); -lean_inc(x_30); -lean_dec(x_12); -x_31 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_31, 0, x_30); -lean_ctor_set(x_31, 1, x_29); -return x_31; -} -} -} -} -} static lean_object* _init_l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_CheckAssignment_addAssignmentInfo___closed__1() { _start: { @@ -16380,400 +16192,87 @@ return x_48; } else { -lean_object* x_49; lean_object* x_50; uint8_t x_73; +lean_object* x_49; lean_object* x_50; lean_dec(x_1); x_49 = lean_ctor_get(x_31, 4); lean_inc(x_49); lean_dec(x_31); -x_73 = l_Lean_Expr_hasExprMVar(x_49); -if (x_73 == 0) +x_50 = l_Lean_Meta_CheckAssignment_check(x_49, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +return x_50; +} +} +} +else { -uint8_t x_74; -x_74 = l_Lean_Expr_hasFVar(x_49); -if (x_74 == 0) -{ -lean_object* x_75; +lean_object* x_51; lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); -x_75 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_75, 0, x_49); -lean_ctor_set(x_75, 1, x_8); -return x_75; -} -else -{ -lean_object* x_76; -x_76 = lean_box(0); -x_50 = x_76; -goto block_72; -} -} -else -{ -lean_object* x_77; -x_77 = lean_box(0); -x_50 = x_77; -goto block_72; -} -block_72: -{ -lean_object* x_51; lean_object* x_52; -lean_dec(x_50); -lean_inc(x_49); -x_51 = l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_CheckAssignment_findCached_x3f(x_49, x_2, x_3, x_4, x_5, x_6, x_7, x_8); -x_52 = lean_ctor_get(x_51, 0); -lean_inc(x_52); -if (lean_obj_tag(x_52) == 0) -{ -lean_object* x_53; lean_object* x_54; -x_53 = lean_ctor_get(x_51, 1); -lean_inc(x_53); -lean_dec(x_51); -lean_inc(x_7); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_3); -lean_inc(x_2); -lean_inc(x_49); -x_54 = l_Lean_Meta_CheckAssignment_check(x_49, x_2, x_3, x_4, x_5, x_6, x_7, x_53); -if (lean_obj_tag(x_54) == 0) -{ -lean_object* x_55; lean_object* x_56; lean_object* x_57; uint8_t x_58; -x_55 = lean_ctor_get(x_54, 0); -lean_inc(x_55); -x_56 = lean_ctor_get(x_54, 1); -lean_inc(x_56); -lean_dec(x_54); -lean_inc(x_55); -x_57 = l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_CheckAssignment_cache(x_49, x_55, x_2, x_3, x_4, x_5, x_6, x_7, x_56); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -x_58 = !lean_is_exclusive(x_57); -if (x_58 == 0) -{ -lean_object* x_59; -x_59 = lean_ctor_get(x_57, 0); -lean_dec(x_59); -lean_ctor_set(x_57, 0, x_55); -return x_57; -} -else -{ -lean_object* x_60; lean_object* x_61; -x_60 = lean_ctor_get(x_57, 1); -lean_inc(x_60); -lean_dec(x_57); -x_61 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_61, 0, x_55); -lean_ctor_set(x_61, 1, x_60); -return x_61; -} -} -else -{ -uint8_t x_62; -lean_dec(x_49); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -x_62 = !lean_is_exclusive(x_54); -if (x_62 == 0) -{ -return x_54; -} -else -{ -lean_object* x_63; lean_object* x_64; lean_object* x_65; -x_63 = lean_ctor_get(x_54, 0); -x_64 = lean_ctor_get(x_54, 1); -lean_inc(x_64); -lean_inc(x_63); -lean_dec(x_54); -x_65 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_65, 0, x_63); -lean_ctor_set(x_65, 1, x_64); -return x_65; -} -} -} -else -{ -uint8_t x_66; -lean_dec(x_49); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -x_66 = !lean_is_exclusive(x_51); -if (x_66 == 0) -{ -lean_object* x_67; lean_object* x_68; -x_67 = lean_ctor_get(x_51, 0); -lean_dec(x_67); -x_68 = lean_ctor_get(x_52, 0); -lean_inc(x_68); -lean_dec(x_52); -lean_ctor_set(x_51, 0, x_68); +x_51 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_51, 0, x_1); +lean_ctor_set(x_51, 1, x_8); return x_51; } -else -{ -lean_object* x_69; lean_object* x_70; lean_object* x_71; -x_69 = lean_ctor_get(x_51, 1); -lean_inc(x_69); -lean_dec(x_51); -x_70 = lean_ctor_get(x_52, 0); -lean_inc(x_70); -lean_dec(x_52); -x_71 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_71, 0, x_70); -lean_ctor_set(x_71, 1, x_69); -return x_71; -} -} -} -} -} -} -else -{ -lean_object* x_78; -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -x_78 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_78, 0, x_1); -lean_ctor_set(x_78, 1, x_8); -return x_78; -} -} -} -static lean_object* _init_l_Lean_Meta_CheckAssignment_check___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("Lean.Expr", 9); -return x_1; -} -} -static lean_object* _init_l_Lean_Meta_CheckAssignment_check___closed__2() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("_private.Lean.Expr.0.Lean.Expr.updateMData!Impl", 47); -return x_1; -} -} -static lean_object* _init_l_Lean_Meta_CheckAssignment_check___closed__3() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("mdata expected", 14); -return x_1; -} -} -static lean_object* _init_l_Lean_Meta_CheckAssignment_check___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; -x_1 = l_Lean_Meta_CheckAssignment_check___closed__1; -x_2 = l_Lean_Meta_CheckAssignment_check___closed__2; -x_3 = lean_unsigned_to_nat(1486u); -x_4 = lean_unsigned_to_nat(17u); -x_5 = l_Lean_Meta_CheckAssignment_check___closed__3; -x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); -return x_6; -} -} -static lean_object* _init_l_Lean_Meta_CheckAssignment_check___closed__5() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("_private.Lean.Expr.0.Lean.Expr.updateProj!Impl", 46); -return x_1; -} -} -static lean_object* _init_l_Lean_Meta_CheckAssignment_check___closed__6() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("proj expected", 13); -return x_1; -} -} -static lean_object* _init_l_Lean_Meta_CheckAssignment_check___closed__7() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; -x_1 = l_Lean_Meta_CheckAssignment_check___closed__1; -x_2 = l_Lean_Meta_CheckAssignment_check___closed__5; -x_3 = lean_unsigned_to_nat(1497u); -x_4 = lean_unsigned_to_nat(18u); -x_5 = l_Lean_Meta_CheckAssignment_check___closed__6; -x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); -return x_6; -} -} -static lean_object* _init_l_Lean_Meta_CheckAssignment_check___closed__8() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("Lean.Expr.updateLambdaE!", 24); -return x_1; -} -} -static lean_object* _init_l_Lean_Meta_CheckAssignment_check___closed__9() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("lambda expected", 15); -return x_1; -} -} -static lean_object* _init_l_Lean_Meta_CheckAssignment_check___closed__10() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; -x_1 = l_Lean_Meta_CheckAssignment_check___closed__1; -x_2 = l_Lean_Meta_CheckAssignment_check___closed__8; -x_3 = lean_unsigned_to_nat(1543u); -x_4 = lean_unsigned_to_nat(20u); -x_5 = l_Lean_Meta_CheckAssignment_check___closed__9; -x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); -return x_6; -} -} -static lean_object* _init_l_Lean_Meta_CheckAssignment_check___closed__11() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("Lean.Expr.updateForallE!", 24); -return x_1; -} -} -static lean_object* _init_l_Lean_Meta_CheckAssignment_check___closed__12() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("forall expected", 15); -return x_1; -} -} -static lean_object* _init_l_Lean_Meta_CheckAssignment_check___closed__13() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; -x_1 = l_Lean_Meta_CheckAssignment_check___closed__1; -x_2 = l_Lean_Meta_CheckAssignment_check___closed__11; -x_3 = lean_unsigned_to_nat(1523u); -x_4 = lean_unsigned_to_nat(24u); -x_5 = l_Lean_Meta_CheckAssignment_check___closed__12; -x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); -return x_6; -} -} -static lean_object* _init_l_Lean_Meta_CheckAssignment_check___closed__14() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("_private.Lean.Expr.0.Lean.Expr.updateLet!Impl", 45); -return x_1; -} -} -static lean_object* _init_l_Lean_Meta_CheckAssignment_check___closed__15() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_from_bytes("let expression expected", 23); -return x_1; -} -} -static lean_object* _init_l_Lean_Meta_CheckAssignment_check___closed__16() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; -x_1 = l_Lean_Meta_CheckAssignment_check___closed__1; -x_2 = l_Lean_Meta_CheckAssignment_check___closed__14; -x_3 = lean_unsigned_to_nat(1552u); -x_4 = lean_unsigned_to_nat(22u); -x_5 = l_Lean_Meta_CheckAssignment_check___closed__15; -x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); -return x_6; } } LEAN_EXPORT lean_object* l_Lean_Meta_CheckAssignment_check(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { -lean_object* x_9; lean_object* x_10; lean_object* x_23; lean_object* x_24; -switch (lean_obj_tag(x_1)) { -case 1: +lean_object* x_9; uint8_t x_232; +x_232 = l_Lean_Expr_hasExprMVar(x_1); +if (x_232 == 0) { -lean_object* x_38; uint8_t x_61; -x_61 = l_Lean_Expr_hasExprMVar(x_1); -if (x_61 == 0) +uint8_t x_233; +x_233 = l_Lean_Expr_hasFVar(x_1); +if (x_233 == 0) { -uint8_t x_62; -x_62 = l_Lean_Expr_hasFVar(x_1); -if (x_62 == 0) -{ -lean_object* x_63; +lean_object* x_234; lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); -x_63 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_63, 0, x_1); -lean_ctor_set(x_63, 1, x_8); -return x_63; +x_234 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_234, 0, x_1); +lean_ctor_set(x_234, 1, x_8); +return x_234; } else { -lean_object* x_64; -x_64 = lean_box(0); -x_38 = x_64; -goto block_60; +lean_object* x_235; +x_235 = lean_box(0); +x_9 = x_235; +goto block_231; } } else { -lean_object* x_65; -x_65 = lean_box(0); -x_38 = x_65; -goto block_60; +lean_object* x_236; +x_236 = lean_box(0); +x_9 = x_236; +goto block_231; } -block_60: +block_231: { -lean_object* x_39; lean_object* x_40; -lean_dec(x_38); +lean_object* x_10; lean_object* x_11; +lean_dec(x_9); lean_inc(x_1); -x_39 = l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_CheckAssignment_findCached_x3f(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); -x_40 = lean_ctor_get(x_39, 0); -lean_inc(x_40); -if (lean_obj_tag(x_40) == 0) +x_10 = l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_CheckAssignment_findCached_x3f(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_11 = lean_ctor_get(x_10, 0); +lean_inc(x_11); +if (lean_obj_tag(x_11) == 0) { -lean_object* x_41; lean_object* x_42; -x_41 = lean_ctor_get(x_39, 1); -lean_inc(x_41); -lean_dec(x_39); +switch (lean_obj_tag(x_1)) { +case 1: +{ +lean_object* x_12; lean_object* x_13; +x_12 = lean_ctor_get(x_10, 1); +lean_inc(x_12); +lean_dec(x_10); lean_inc(x_7); lean_inc(x_6); lean_inc(x_5); @@ -16781,47 +16280,47 @@ lean_inc(x_4); lean_inc(x_3); lean_inc(x_2); lean_inc(x_1); -x_42 = l_Lean_Meta_CheckAssignment_checkFVar(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_41); -if (lean_obj_tag(x_42) == 0) +x_13 = l_Lean_Meta_CheckAssignment_checkFVar(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_12); +if (lean_obj_tag(x_13) == 0) { -lean_object* x_43; lean_object* x_44; lean_object* x_45; uint8_t x_46; -x_43 = lean_ctor_get(x_42, 0); -lean_inc(x_43); -x_44 = lean_ctor_get(x_42, 1); -lean_inc(x_44); -lean_dec(x_42); -lean_inc(x_43); -x_45 = l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_CheckAssignment_cache(x_1, x_43, x_2, x_3, x_4, x_5, x_6, x_7, x_44); +lean_object* x_14; lean_object* x_15; lean_object* x_16; uint8_t x_17; +x_14 = lean_ctor_get(x_13, 0); +lean_inc(x_14); +x_15 = lean_ctor_get(x_13, 1); +lean_inc(x_15); +lean_dec(x_13); +lean_inc(x_14); +x_16 = l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_CheckAssignment_cache(x_1, x_14, x_2, x_3, x_4, x_5, x_6, x_7, x_15); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); -x_46 = !lean_is_exclusive(x_45); -if (x_46 == 0) +x_17 = !lean_is_exclusive(x_16); +if (x_17 == 0) { -lean_object* x_47; -x_47 = lean_ctor_get(x_45, 0); -lean_dec(x_47); -lean_ctor_set(x_45, 0, x_43); -return x_45; +lean_object* x_18; +x_18 = lean_ctor_get(x_16, 0); +lean_dec(x_18); +lean_ctor_set(x_16, 0, x_14); +return x_16; } else { -lean_object* x_48; lean_object* x_49; -x_48 = lean_ctor_get(x_45, 1); -lean_inc(x_48); -lean_dec(x_45); -x_49 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_49, 0, x_43); -lean_ctor_set(x_49, 1, x_48); -return x_49; +lean_object* x_19; lean_object* x_20; +x_19 = lean_ctor_get(x_16, 1); +lean_inc(x_19); +lean_dec(x_16); +x_20 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_20, 0, x_14); +lean_ctor_set(x_20, 1, x_19); +return x_20; } } else { -uint8_t x_50; +uint8_t x_21; lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); @@ -16829,1776 +16328,1154 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_50 = !lean_is_exclusive(x_42); -if (x_50 == 0) +x_21 = !lean_is_exclusive(x_13); +if (x_21 == 0) { -return x_42; +return x_13; } else { -lean_object* x_51; lean_object* x_52; lean_object* x_53; -x_51 = lean_ctor_get(x_42, 0); -x_52 = lean_ctor_get(x_42, 1); -lean_inc(x_52); -lean_inc(x_51); -lean_dec(x_42); -x_53 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_53, 0, x_51); -lean_ctor_set(x_53, 1, x_52); -return x_53; -} -} -} -else -{ -uint8_t x_54; -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -lean_dec(x_1); -x_54 = !lean_is_exclusive(x_39); -if (x_54 == 0) -{ -lean_object* x_55; lean_object* x_56; -x_55 = lean_ctor_get(x_39, 0); -lean_dec(x_55); -x_56 = lean_ctor_get(x_40, 0); -lean_inc(x_56); -lean_dec(x_40); -lean_ctor_set(x_39, 0, x_56); -return x_39; -} -else -{ -lean_object* x_57; lean_object* x_58; lean_object* x_59; -x_57 = lean_ctor_get(x_39, 1); -lean_inc(x_57); -lean_dec(x_39); -x_58 = lean_ctor_get(x_40, 0); -lean_inc(x_58); -lean_dec(x_40); -x_59 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_59, 0, x_58); -lean_ctor_set(x_59, 1, x_57); -return x_59; -} +lean_object* x_22; lean_object* x_23; lean_object* x_24; +x_22 = lean_ctor_get(x_13, 0); +x_23 = lean_ctor_get(x_13, 1); +lean_inc(x_23); +lean_inc(x_22); +lean_dec(x_13); +x_24 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_24, 0, x_22); +lean_ctor_set(x_24, 1, x_23); +return x_24; } } } case 2: { -lean_object* x_66; uint8_t x_89; -x_89 = l_Lean_Expr_hasExprMVar(x_1); -if (x_89 == 0) -{ -uint8_t x_90; -x_90 = l_Lean_Expr_hasFVar(x_1); -if (x_90 == 0) -{ -lean_object* x_91; -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -x_91 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_91, 0, x_1); -lean_ctor_set(x_91, 1, x_8); -return x_91; -} -else -{ -lean_object* x_92; -x_92 = lean_box(0); -x_66 = x_92; -goto block_88; -} -} -else -{ -lean_object* x_93; -x_93 = lean_box(0); -x_66 = x_93; -goto block_88; -} -block_88: -{ -lean_object* x_67; lean_object* x_68; -lean_dec(x_66); -lean_inc(x_1); -x_67 = l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_CheckAssignment_findCached_x3f(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); -x_68 = lean_ctor_get(x_67, 0); -lean_inc(x_68); -if (lean_obj_tag(x_68) == 0) -{ -lean_object* x_69; lean_object* x_70; -x_69 = lean_ctor_get(x_67, 1); -lean_inc(x_69); -lean_dec(x_67); -lean_inc(x_7); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_3); -lean_inc(x_2); -lean_inc(x_1); -x_70 = l_Lean_Meta_CheckAssignment_checkMVar(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_69); -if (lean_obj_tag(x_70) == 0) -{ -lean_object* x_71; lean_object* x_72; lean_object* x_73; uint8_t x_74; -x_71 = lean_ctor_get(x_70, 0); -lean_inc(x_71); -x_72 = lean_ctor_get(x_70, 1); -lean_inc(x_72); -lean_dec(x_70); -lean_inc(x_71); -x_73 = l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_CheckAssignment_cache(x_1, x_71, x_2, x_3, x_4, x_5, x_6, x_7, x_72); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -x_74 = !lean_is_exclusive(x_73); -if (x_74 == 0) -{ -lean_object* x_75; -x_75 = lean_ctor_get(x_73, 0); -lean_dec(x_75); -lean_ctor_set(x_73, 0, x_71); -return x_73; -} -else -{ -lean_object* x_76; lean_object* x_77; -x_76 = lean_ctor_get(x_73, 1); -lean_inc(x_76); -lean_dec(x_73); -x_77 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_77, 0, x_71); -lean_ctor_set(x_77, 1, x_76); -return x_77; -} -} -else -{ -uint8_t x_78; -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -lean_dec(x_1); -x_78 = !lean_is_exclusive(x_70); -if (x_78 == 0) -{ -return x_70; -} -else -{ -lean_object* x_79; lean_object* x_80; lean_object* x_81; -x_79 = lean_ctor_get(x_70, 0); -x_80 = lean_ctor_get(x_70, 1); -lean_inc(x_80); -lean_inc(x_79); -lean_dec(x_70); -x_81 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_81, 0, x_79); -lean_ctor_set(x_81, 1, x_80); -return x_81; -} -} -} -else -{ -uint8_t x_82; -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -lean_dec(x_1); -x_82 = !lean_is_exclusive(x_67); -if (x_82 == 0) -{ -lean_object* x_83; lean_object* x_84; -x_83 = lean_ctor_get(x_67, 0); -lean_dec(x_83); -x_84 = lean_ctor_get(x_68, 0); -lean_inc(x_84); -lean_dec(x_68); -lean_ctor_set(x_67, 0, x_84); -return x_67; -} -else -{ -lean_object* x_85; lean_object* x_86; lean_object* x_87; -x_85 = lean_ctor_get(x_67, 1); -lean_inc(x_85); -lean_dec(x_67); -x_86 = lean_ctor_get(x_68, 0); -lean_inc(x_86); -lean_dec(x_68); -x_87 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_87, 0, x_86); -lean_ctor_set(x_87, 1, x_85); -return x_87; -} -} -} -} -case 5: -{ -lean_object* x_94; -x_94 = l_Lean_Meta_CheckAssignment_checkApp(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8); -return x_94; -} -case 6: -{ -lean_object* x_95; lean_object* x_96; lean_object* x_97; lean_object* x_98; lean_object* x_145; uint8_t x_161; -x_95 = lean_ctor_get(x_1, 1); -lean_inc(x_95); -x_96 = lean_ctor_get(x_1, 2); -lean_inc(x_96); -x_161 = l_Lean_Expr_hasExprMVar(x_95); -if (x_161 == 0) -{ -uint8_t x_162; -x_162 = l_Lean_Expr_hasFVar(x_95); -if (x_162 == 0) -{ -x_97 = x_95; -x_98 = x_8; -goto block_144; -} -else -{ -lean_object* x_163; -x_163 = lean_box(0); -x_145 = x_163; -goto block_160; -} -} -else -{ -lean_object* x_164; -x_164 = lean_box(0); -x_145 = x_164; -goto block_160; -} -block_144: -{ -lean_object* x_99; lean_object* x_100; lean_object* x_124; uint8_t x_140; -x_140 = l_Lean_Expr_hasExprMVar(x_96); -if (x_140 == 0) -{ -uint8_t x_141; -x_141 = l_Lean_Expr_hasFVar(x_96); -if (x_141 == 0) -{ -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -x_99 = x_96; -x_100 = x_98; -goto block_123; -} -else -{ -lean_object* x_142; -x_142 = lean_box(0); -x_124 = x_142; -goto block_139; -} -} -else -{ -lean_object* x_143; -x_143 = lean_box(0); -x_124 = x_143; -goto block_139; -} -block_123: -{ -if (lean_obj_tag(x_1) == 6) -{ -lean_object* x_101; lean_object* x_102; lean_object* x_103; uint8_t x_104; lean_object* x_105; size_t x_106; size_t x_107; uint8_t x_108; -x_101 = lean_ctor_get(x_1, 0); -lean_inc(x_101); -x_102 = lean_ctor_get(x_1, 1); -lean_inc(x_102); -x_103 = lean_ctor_get(x_1, 2); -lean_inc(x_103); -x_104 = lean_ctor_get_uint8(x_1, sizeof(void*)*3 + 8); -lean_dec(x_1); -lean_inc(x_103); -lean_inc(x_102); -lean_inc(x_101); -x_105 = l_Lean_Expr_lam___override(x_101, x_102, x_103, x_104); -x_106 = lean_ptr_addr(x_102); -lean_dec(x_102); -x_107 = lean_ptr_addr(x_97); -x_108 = lean_usize_dec_eq(x_106, x_107); -if (x_108 == 0) -{ -lean_object* x_109; lean_object* x_110; -lean_dec(x_105); -lean_dec(x_103); -x_109 = l_Lean_Expr_lam___override(x_101, x_97, x_99, x_104); -x_110 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_110, 0, x_109); -lean_ctor_set(x_110, 1, x_100); -return x_110; -} -else -{ -size_t x_111; size_t x_112; uint8_t x_113; -x_111 = lean_ptr_addr(x_103); -lean_dec(x_103); -x_112 = lean_ptr_addr(x_99); -x_113 = lean_usize_dec_eq(x_111, x_112); -if (x_113 == 0) -{ -lean_object* x_114; lean_object* x_115; -lean_dec(x_105); -x_114 = l_Lean_Expr_lam___override(x_101, x_97, x_99, x_104); -x_115 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_115, 0, x_114); -lean_ctor_set(x_115, 1, x_100); -return x_115; -} -else -{ -uint8_t x_116; -x_116 = l___private_Lean_Expr_0__Lean_beqBinderInfo____x40_Lean_Expr___hyg_477_(x_104, x_104); -if (x_116 == 0) -{ -lean_object* x_117; lean_object* x_118; -lean_dec(x_105); -x_117 = l_Lean_Expr_lam___override(x_101, x_97, x_99, x_104); -x_118 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_118, 0, x_117); -lean_ctor_set(x_118, 1, x_100); -return x_118; -} -else -{ -lean_object* x_119; -lean_dec(x_101); -lean_dec(x_99); -lean_dec(x_97); -x_119 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_119, 0, x_105); -lean_ctor_set(x_119, 1, x_100); -return x_119; -} -} -} -} -else -{ -lean_object* x_120; lean_object* x_121; lean_object* x_122; -lean_dec(x_99); -lean_dec(x_97); -lean_dec(x_1); -x_120 = l_Lean_Meta_CheckAssignment_check___closed__10; -x_121 = l_panic___at_Lean_Expr_getRevArg_x21___spec__1(x_120); -x_122 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_122, 0, x_121); -lean_ctor_set(x_122, 1, x_100); -return x_122; -} -} -block_139: -{ -lean_object* x_125; lean_object* x_126; -lean_dec(x_124); -lean_inc(x_96); -x_125 = l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_CheckAssignment_findCached_x3f(x_96, x_2, x_3, x_4, x_5, x_6, x_7, x_98); -x_126 = lean_ctor_get(x_125, 0); -lean_inc(x_126); -if (lean_obj_tag(x_126) == 0) -{ -lean_object* x_127; lean_object* x_128; -x_127 = lean_ctor_get(x_125, 1); -lean_inc(x_127); -lean_dec(x_125); -lean_inc(x_7); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_3); -lean_inc(x_2); -lean_inc(x_96); -x_128 = l_Lean_Meta_CheckAssignment_check(x_96, x_2, x_3, x_4, x_5, x_6, x_7, x_127); -if (lean_obj_tag(x_128) == 0) -{ -lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; -x_129 = lean_ctor_get(x_128, 0); -lean_inc(x_129); -x_130 = lean_ctor_get(x_128, 1); -lean_inc(x_130); -lean_dec(x_128); -lean_inc(x_129); -x_131 = l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_CheckAssignment_cache(x_96, x_129, x_2, x_3, x_4, x_5, x_6, x_7, x_130); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -x_132 = lean_ctor_get(x_131, 1); -lean_inc(x_132); -lean_dec(x_131); -x_99 = x_129; -x_100 = x_132; -goto block_123; -} -else -{ -uint8_t x_133; -lean_dec(x_97); -lean_dec(x_96); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -lean_dec(x_1); -x_133 = !lean_is_exclusive(x_128); -if (x_133 == 0) -{ -return x_128; -} -else -{ -lean_object* x_134; lean_object* x_135; lean_object* x_136; -x_134 = lean_ctor_get(x_128, 0); -x_135 = lean_ctor_get(x_128, 1); -lean_inc(x_135); -lean_inc(x_134); -lean_dec(x_128); -x_136 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_136, 0, x_134); -lean_ctor_set(x_136, 1, x_135); -return x_136; -} -} -} -else -{ -lean_object* x_137; lean_object* x_138; -lean_dec(x_96); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -x_137 = lean_ctor_get(x_125, 1); -lean_inc(x_137); -lean_dec(x_125); -x_138 = lean_ctor_get(x_126, 0); -lean_inc(x_138); -lean_dec(x_126); -x_99 = x_138; -x_100 = x_137; -goto block_123; -} -} -} -block_160: -{ -lean_object* x_146; lean_object* x_147; -lean_dec(x_145); -lean_inc(x_95); -x_146 = l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_CheckAssignment_findCached_x3f(x_95, x_2, x_3, x_4, x_5, x_6, x_7, x_8); -x_147 = lean_ctor_get(x_146, 0); -lean_inc(x_147); -if (lean_obj_tag(x_147) == 0) -{ -lean_object* x_148; lean_object* x_149; -x_148 = lean_ctor_get(x_146, 1); -lean_inc(x_148); -lean_dec(x_146); -lean_inc(x_7); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_3); -lean_inc(x_2); -lean_inc(x_95); -x_149 = l_Lean_Meta_CheckAssignment_check(x_95, x_2, x_3, x_4, x_5, x_6, x_7, x_148); -if (lean_obj_tag(x_149) == 0) -{ -lean_object* x_150; lean_object* x_151; lean_object* x_152; lean_object* x_153; -x_150 = lean_ctor_get(x_149, 0); -lean_inc(x_150); -x_151 = lean_ctor_get(x_149, 1); -lean_inc(x_151); -lean_dec(x_149); -lean_inc(x_150); -x_152 = l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_CheckAssignment_cache(x_95, x_150, x_2, x_3, x_4, x_5, x_6, x_7, x_151); -x_153 = lean_ctor_get(x_152, 1); -lean_inc(x_153); -lean_dec(x_152); -x_97 = x_150; -x_98 = x_153; -goto block_144; -} -else -{ -uint8_t x_154; -lean_dec(x_96); -lean_dec(x_95); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -lean_dec(x_1); -x_154 = !lean_is_exclusive(x_149); -if (x_154 == 0) -{ -return x_149; -} -else -{ -lean_object* x_155; lean_object* x_156; lean_object* x_157; -x_155 = lean_ctor_get(x_149, 0); -x_156 = lean_ctor_get(x_149, 1); -lean_inc(x_156); -lean_inc(x_155); -lean_dec(x_149); -x_157 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_157, 0, x_155); -lean_ctor_set(x_157, 1, x_156); -return x_157; -} -} -} -else -{ -lean_object* x_158; lean_object* x_159; -lean_dec(x_95); -x_158 = lean_ctor_get(x_146, 1); -lean_inc(x_158); -lean_dec(x_146); -x_159 = lean_ctor_get(x_147, 0); -lean_inc(x_159); -lean_dec(x_147); -x_97 = x_159; -x_98 = x_158; -goto block_144; -} -} -} -case 7: -{ -lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; lean_object* x_215; uint8_t x_231; -x_165 = lean_ctor_get(x_1, 1); -lean_inc(x_165); -x_166 = lean_ctor_get(x_1, 2); -lean_inc(x_166); -x_231 = l_Lean_Expr_hasExprMVar(x_165); -if (x_231 == 0) -{ -uint8_t x_232; -x_232 = l_Lean_Expr_hasFVar(x_165); -if (x_232 == 0) -{ -x_167 = x_165; -x_168 = x_8; -goto block_214; -} -else -{ -lean_object* x_233; -x_233 = lean_box(0); -x_215 = x_233; -goto block_230; -} -} -else -{ -lean_object* x_234; -x_234 = lean_box(0); -x_215 = x_234; -goto block_230; -} -block_214: -{ -lean_object* x_169; lean_object* x_170; lean_object* x_194; uint8_t x_210; -x_210 = l_Lean_Expr_hasExprMVar(x_166); -if (x_210 == 0) -{ -uint8_t x_211; -x_211 = l_Lean_Expr_hasFVar(x_166); -if (x_211 == 0) -{ -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -x_169 = x_166; -x_170 = x_168; -goto block_193; -} -else -{ -lean_object* x_212; -x_212 = lean_box(0); -x_194 = x_212; -goto block_209; -} -} -else -{ -lean_object* x_213; -x_213 = lean_box(0); -x_194 = x_213; -goto block_209; -} -block_193: -{ -if (lean_obj_tag(x_1) == 7) -{ -lean_object* x_171; lean_object* x_172; lean_object* x_173; uint8_t x_174; lean_object* x_175; size_t x_176; size_t x_177; uint8_t x_178; -x_171 = lean_ctor_get(x_1, 0); -lean_inc(x_171); -x_172 = lean_ctor_get(x_1, 1); -lean_inc(x_172); -x_173 = lean_ctor_get(x_1, 2); -lean_inc(x_173); -x_174 = lean_ctor_get_uint8(x_1, sizeof(void*)*3 + 8); -lean_dec(x_1); -lean_inc(x_173); -lean_inc(x_172); -lean_inc(x_171); -x_175 = l_Lean_Expr_forallE___override(x_171, x_172, x_173, x_174); -x_176 = lean_ptr_addr(x_172); -lean_dec(x_172); -x_177 = lean_ptr_addr(x_167); -x_178 = lean_usize_dec_eq(x_176, x_177); -if (x_178 == 0) -{ -lean_object* x_179; lean_object* x_180; -lean_dec(x_175); -lean_dec(x_173); -x_179 = l_Lean_Expr_forallE___override(x_171, x_167, x_169, x_174); -x_180 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_180, 0, x_179); -lean_ctor_set(x_180, 1, x_170); -return x_180; -} -else -{ -size_t x_181; size_t x_182; uint8_t x_183; -x_181 = lean_ptr_addr(x_173); -lean_dec(x_173); -x_182 = lean_ptr_addr(x_169); -x_183 = lean_usize_dec_eq(x_181, x_182); -if (x_183 == 0) -{ -lean_object* x_184; lean_object* x_185; -lean_dec(x_175); -x_184 = l_Lean_Expr_forallE___override(x_171, x_167, x_169, x_174); -x_185 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_185, 0, x_184); -lean_ctor_set(x_185, 1, x_170); -return x_185; -} -else -{ -uint8_t x_186; -x_186 = l___private_Lean_Expr_0__Lean_beqBinderInfo____x40_Lean_Expr___hyg_477_(x_174, x_174); -if (x_186 == 0) -{ -lean_object* x_187; lean_object* x_188; -lean_dec(x_175); -x_187 = l_Lean_Expr_forallE___override(x_171, x_167, x_169, x_174); -x_188 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_188, 0, x_187); -lean_ctor_set(x_188, 1, x_170); -return x_188; -} -else -{ -lean_object* x_189; -lean_dec(x_171); -lean_dec(x_169); -lean_dec(x_167); -x_189 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_189, 0, x_175); -lean_ctor_set(x_189, 1, x_170); -return x_189; -} -} -} -} -else -{ -lean_object* x_190; lean_object* x_191; lean_object* x_192; -lean_dec(x_169); -lean_dec(x_167); -lean_dec(x_1); -x_190 = l_Lean_Meta_CheckAssignment_check___closed__13; -x_191 = l_panic___at_Lean_Expr_getRevArg_x21___spec__1(x_190); -x_192 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_192, 0, x_191); -lean_ctor_set(x_192, 1, x_170); -return x_192; -} -} -block_209: -{ -lean_object* x_195; lean_object* x_196; -lean_dec(x_194); -lean_inc(x_166); -x_195 = l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_CheckAssignment_findCached_x3f(x_166, x_2, x_3, x_4, x_5, x_6, x_7, x_168); -x_196 = lean_ctor_get(x_195, 0); -lean_inc(x_196); -if (lean_obj_tag(x_196) == 0) -{ -lean_object* x_197; lean_object* x_198; -x_197 = lean_ctor_get(x_195, 1); -lean_inc(x_197); -lean_dec(x_195); -lean_inc(x_7); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_3); -lean_inc(x_2); -lean_inc(x_166); -x_198 = l_Lean_Meta_CheckAssignment_check(x_166, x_2, x_3, x_4, x_5, x_6, x_7, x_197); -if (lean_obj_tag(x_198) == 0) -{ -lean_object* x_199; lean_object* x_200; lean_object* x_201; lean_object* x_202; -x_199 = lean_ctor_get(x_198, 0); -lean_inc(x_199); -x_200 = lean_ctor_get(x_198, 1); -lean_inc(x_200); -lean_dec(x_198); -lean_inc(x_199); -x_201 = l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_CheckAssignment_cache(x_166, x_199, x_2, x_3, x_4, x_5, x_6, x_7, x_200); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -x_202 = lean_ctor_get(x_201, 1); -lean_inc(x_202); -lean_dec(x_201); -x_169 = x_199; -x_170 = x_202; -goto block_193; -} -else -{ -uint8_t x_203; -lean_dec(x_167); -lean_dec(x_166); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -lean_dec(x_1); -x_203 = !lean_is_exclusive(x_198); -if (x_203 == 0) -{ -return x_198; -} -else -{ -lean_object* x_204; lean_object* x_205; lean_object* x_206; -x_204 = lean_ctor_get(x_198, 0); -x_205 = lean_ctor_get(x_198, 1); -lean_inc(x_205); -lean_inc(x_204); -lean_dec(x_198); -x_206 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_206, 0, x_204); -lean_ctor_set(x_206, 1, x_205); -return x_206; -} -} -} -else -{ -lean_object* x_207; lean_object* x_208; -lean_dec(x_166); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -x_207 = lean_ctor_get(x_195, 1); -lean_inc(x_207); -lean_dec(x_195); -x_208 = lean_ctor_get(x_196, 0); -lean_inc(x_208); -lean_dec(x_196); -x_169 = x_208; -x_170 = x_207; -goto block_193; -} -} -} -block_230: -{ -lean_object* x_216; lean_object* x_217; -lean_dec(x_215); -lean_inc(x_165); -x_216 = l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_CheckAssignment_findCached_x3f(x_165, x_2, x_3, x_4, x_5, x_6, x_7, x_8); -x_217 = lean_ctor_get(x_216, 0); -lean_inc(x_217); -if (lean_obj_tag(x_217) == 0) -{ -lean_object* x_218; lean_object* x_219; -x_218 = lean_ctor_get(x_216, 1); -lean_inc(x_218); -lean_dec(x_216); -lean_inc(x_7); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_3); -lean_inc(x_2); -lean_inc(x_165); -x_219 = l_Lean_Meta_CheckAssignment_check(x_165, x_2, x_3, x_4, x_5, x_6, x_7, x_218); -if (lean_obj_tag(x_219) == 0) -{ -lean_object* x_220; lean_object* x_221; lean_object* x_222; lean_object* x_223; -x_220 = lean_ctor_get(x_219, 0); -lean_inc(x_220); -x_221 = lean_ctor_get(x_219, 1); -lean_inc(x_221); -lean_dec(x_219); -lean_inc(x_220); -x_222 = l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_CheckAssignment_cache(x_165, x_220, x_2, x_3, x_4, x_5, x_6, x_7, x_221); -x_223 = lean_ctor_get(x_222, 1); -lean_inc(x_223); -lean_dec(x_222); -x_167 = x_220; -x_168 = x_223; -goto block_214; -} -else -{ -uint8_t x_224; -lean_dec(x_166); -lean_dec(x_165); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -lean_dec(x_1); -x_224 = !lean_is_exclusive(x_219); -if (x_224 == 0) -{ -return x_219; -} -else -{ -lean_object* x_225; lean_object* x_226; lean_object* x_227; -x_225 = lean_ctor_get(x_219, 0); -x_226 = lean_ctor_get(x_219, 1); -lean_inc(x_226); -lean_inc(x_225); -lean_dec(x_219); -x_227 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_227, 0, x_225); -lean_ctor_set(x_227, 1, x_226); -return x_227; -} -} -} -else -{ -lean_object* x_228; lean_object* x_229; -lean_dec(x_165); -x_228 = lean_ctor_get(x_216, 1); -lean_inc(x_228); -lean_dec(x_216); -x_229 = lean_ctor_get(x_217, 0); -lean_inc(x_229); -lean_dec(x_217); -x_167 = x_229; -x_168 = x_228; -goto block_214; -} -} -} -case 8: -{ -lean_object* x_235; lean_object* x_236; lean_object* x_237; lean_object* x_238; lean_object* x_239; lean_object* x_311; uint8_t x_327; -x_235 = lean_ctor_get(x_1, 1); -lean_inc(x_235); -x_236 = lean_ctor_get(x_1, 2); -lean_inc(x_236); -x_237 = lean_ctor_get(x_1, 3); -lean_inc(x_237); -x_327 = l_Lean_Expr_hasExprMVar(x_235); -if (x_327 == 0) -{ -uint8_t x_328; -x_328 = l_Lean_Expr_hasFVar(x_235); -if (x_328 == 0) -{ -x_238 = x_235; -x_239 = x_8; -goto block_310; -} -else -{ -lean_object* x_329; -x_329 = lean_box(0); -x_311 = x_329; -goto block_326; -} -} -else -{ -lean_object* x_330; -x_330 = lean_box(0); -x_311 = x_330; -goto block_326; -} -block_310: -{ -lean_object* x_240; lean_object* x_241; lean_object* x_290; uint8_t x_306; -x_306 = l_Lean_Expr_hasExprMVar(x_236); -if (x_306 == 0) -{ -uint8_t x_307; -x_307 = l_Lean_Expr_hasFVar(x_236); -if (x_307 == 0) -{ -x_240 = x_236; -x_241 = x_239; -goto block_289; -} -else -{ -lean_object* x_308; -x_308 = lean_box(0); -x_290 = x_308; -goto block_305; -} -} -else -{ -lean_object* x_309; -x_309 = lean_box(0); -x_290 = x_309; -goto block_305; -} -block_289: -{ -lean_object* x_242; lean_object* x_243; lean_object* x_269; uint8_t x_285; -x_285 = l_Lean_Expr_hasExprMVar(x_237); -if (x_285 == 0) -{ -uint8_t x_286; -x_286 = l_Lean_Expr_hasFVar(x_237); -if (x_286 == 0) -{ -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -x_242 = x_237; -x_243 = x_241; -goto block_268; -} -else -{ -lean_object* x_287; -x_287 = lean_box(0); -x_269 = x_287; -goto block_284; -} -} -else -{ -lean_object* x_288; -x_288 = lean_box(0); -x_269 = x_288; -goto block_284; -} -block_268: -{ -if (lean_obj_tag(x_1) == 8) -{ -lean_object* x_244; lean_object* x_245; lean_object* x_246; lean_object* x_247; uint8_t x_248; size_t x_249; size_t x_250; uint8_t x_251; -x_244 = lean_ctor_get(x_1, 0); -lean_inc(x_244); -x_245 = lean_ctor_get(x_1, 1); -lean_inc(x_245); -x_246 = lean_ctor_get(x_1, 2); -lean_inc(x_246); -x_247 = lean_ctor_get(x_1, 3); -lean_inc(x_247); -x_248 = lean_ctor_get_uint8(x_1, sizeof(void*)*4 + 8); -x_249 = lean_ptr_addr(x_245); -lean_dec(x_245); -x_250 = lean_ptr_addr(x_238); -x_251 = lean_usize_dec_eq(x_249, x_250); -if (x_251 == 0) -{ -lean_object* x_252; lean_object* x_253; -lean_dec(x_247); -lean_dec(x_246); -lean_dec(x_1); -x_252 = l_Lean_Expr_letE___override(x_244, x_238, x_240, x_242, x_248); -x_253 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_253, 0, x_252); -lean_ctor_set(x_253, 1, x_243); -return x_253; -} -else -{ -size_t x_254; size_t x_255; uint8_t x_256; -x_254 = lean_ptr_addr(x_246); -lean_dec(x_246); -x_255 = lean_ptr_addr(x_240); -x_256 = lean_usize_dec_eq(x_254, x_255); -if (x_256 == 0) -{ -lean_object* x_257; lean_object* x_258; -lean_dec(x_247); -lean_dec(x_1); -x_257 = l_Lean_Expr_letE___override(x_244, x_238, x_240, x_242, x_248); -x_258 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_258, 0, x_257); -lean_ctor_set(x_258, 1, x_243); -return x_258; -} -else -{ -size_t x_259; size_t x_260; uint8_t x_261; -x_259 = lean_ptr_addr(x_247); -lean_dec(x_247); -x_260 = lean_ptr_addr(x_242); -x_261 = lean_usize_dec_eq(x_259, x_260); -if (x_261 == 0) -{ -lean_object* x_262; lean_object* x_263; -lean_dec(x_1); -x_262 = l_Lean_Expr_letE___override(x_244, x_238, x_240, x_242, x_248); -x_263 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_263, 0, x_262); -lean_ctor_set(x_263, 1, x_243); -return x_263; -} -else -{ -lean_object* x_264; -lean_dec(x_244); -lean_dec(x_242); -lean_dec(x_240); -lean_dec(x_238); -x_264 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_264, 0, x_1); -lean_ctor_set(x_264, 1, x_243); -return x_264; -} -} -} -} -else -{ -lean_object* x_265; lean_object* x_266; lean_object* x_267; -lean_dec(x_242); -lean_dec(x_240); -lean_dec(x_238); -lean_dec(x_1); -x_265 = l_Lean_Meta_CheckAssignment_check___closed__16; -x_266 = l_panic___at_Lean_Expr_getRevArg_x21___spec__1(x_265); -x_267 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_267, 0, x_266); -lean_ctor_set(x_267, 1, x_243); -return x_267; -} -} -block_284: -{ -lean_object* x_270; lean_object* x_271; -lean_dec(x_269); -lean_inc(x_237); -x_270 = l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_CheckAssignment_findCached_x3f(x_237, x_2, x_3, x_4, x_5, x_6, x_7, x_241); -x_271 = lean_ctor_get(x_270, 0); -lean_inc(x_271); -if (lean_obj_tag(x_271) == 0) -{ -lean_object* x_272; lean_object* x_273; -x_272 = lean_ctor_get(x_270, 1); -lean_inc(x_272); -lean_dec(x_270); -lean_inc(x_7); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_3); -lean_inc(x_2); -lean_inc(x_237); -x_273 = l_Lean_Meta_CheckAssignment_check(x_237, x_2, x_3, x_4, x_5, x_6, x_7, x_272); -if (lean_obj_tag(x_273) == 0) -{ -lean_object* x_274; lean_object* x_275; lean_object* x_276; lean_object* x_277; -x_274 = lean_ctor_get(x_273, 0); -lean_inc(x_274); -x_275 = lean_ctor_get(x_273, 1); -lean_inc(x_275); -lean_dec(x_273); -lean_inc(x_274); -x_276 = l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_CheckAssignment_cache(x_237, x_274, x_2, x_3, x_4, x_5, x_6, x_7, x_275); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -x_277 = lean_ctor_get(x_276, 1); -lean_inc(x_277); -lean_dec(x_276); -x_242 = x_274; -x_243 = x_277; -goto block_268; -} -else -{ -uint8_t x_278; -lean_dec(x_240); -lean_dec(x_238); -lean_dec(x_237); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -lean_dec(x_1); -x_278 = !lean_is_exclusive(x_273); -if (x_278 == 0) -{ -return x_273; -} -else -{ -lean_object* x_279; lean_object* x_280; lean_object* x_281; -x_279 = lean_ctor_get(x_273, 0); -x_280 = lean_ctor_get(x_273, 1); -lean_inc(x_280); -lean_inc(x_279); -lean_dec(x_273); -x_281 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_281, 0, x_279); -lean_ctor_set(x_281, 1, x_280); -return x_281; -} -} -} -else -{ -lean_object* x_282; lean_object* x_283; -lean_dec(x_237); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -x_282 = lean_ctor_get(x_270, 1); -lean_inc(x_282); -lean_dec(x_270); -x_283 = lean_ctor_get(x_271, 0); -lean_inc(x_283); -lean_dec(x_271); -x_242 = x_283; -x_243 = x_282; -goto block_268; -} -} -} -block_305: -{ -lean_object* x_291; lean_object* x_292; -lean_dec(x_290); -lean_inc(x_236); -x_291 = l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_CheckAssignment_findCached_x3f(x_236, x_2, x_3, x_4, x_5, x_6, x_7, x_239); -x_292 = lean_ctor_get(x_291, 0); -lean_inc(x_292); -if (lean_obj_tag(x_292) == 0) -{ -lean_object* x_293; lean_object* x_294; -x_293 = lean_ctor_get(x_291, 1); -lean_inc(x_293); -lean_dec(x_291); -lean_inc(x_7); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_3); -lean_inc(x_2); -lean_inc(x_236); -x_294 = l_Lean_Meta_CheckAssignment_check(x_236, x_2, x_3, x_4, x_5, x_6, x_7, x_293); -if (lean_obj_tag(x_294) == 0) -{ -lean_object* x_295; lean_object* x_296; lean_object* x_297; lean_object* x_298; -x_295 = lean_ctor_get(x_294, 0); -lean_inc(x_295); -x_296 = lean_ctor_get(x_294, 1); -lean_inc(x_296); -lean_dec(x_294); -lean_inc(x_295); -x_297 = l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_CheckAssignment_cache(x_236, x_295, x_2, x_3, x_4, x_5, x_6, x_7, x_296); -x_298 = lean_ctor_get(x_297, 1); -lean_inc(x_298); -lean_dec(x_297); -x_240 = x_295; -x_241 = x_298; -goto block_289; -} -else -{ -uint8_t x_299; -lean_dec(x_238); -lean_dec(x_237); -lean_dec(x_236); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -lean_dec(x_1); -x_299 = !lean_is_exclusive(x_294); -if (x_299 == 0) -{ -return x_294; -} -else -{ -lean_object* x_300; lean_object* x_301; lean_object* x_302; -x_300 = lean_ctor_get(x_294, 0); -x_301 = lean_ctor_get(x_294, 1); -lean_inc(x_301); -lean_inc(x_300); -lean_dec(x_294); -x_302 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_302, 0, x_300); -lean_ctor_set(x_302, 1, x_301); -return x_302; -} -} -} -else -{ -lean_object* x_303; lean_object* x_304; -lean_dec(x_236); -x_303 = lean_ctor_get(x_291, 1); -lean_inc(x_303); -lean_dec(x_291); -x_304 = lean_ctor_get(x_292, 0); -lean_inc(x_304); -lean_dec(x_292); -x_240 = x_304; -x_241 = x_303; -goto block_289; -} -} -} -block_326: -{ -lean_object* x_312; lean_object* x_313; -lean_dec(x_311); -lean_inc(x_235); -x_312 = l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_CheckAssignment_findCached_x3f(x_235, x_2, x_3, x_4, x_5, x_6, x_7, x_8); -x_313 = lean_ctor_get(x_312, 0); -lean_inc(x_313); -if (lean_obj_tag(x_313) == 0) -{ -lean_object* x_314; lean_object* x_315; -x_314 = lean_ctor_get(x_312, 1); -lean_inc(x_314); -lean_dec(x_312); -lean_inc(x_7); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_3); -lean_inc(x_2); -lean_inc(x_235); -x_315 = l_Lean_Meta_CheckAssignment_check(x_235, x_2, x_3, x_4, x_5, x_6, x_7, x_314); -if (lean_obj_tag(x_315) == 0) -{ -lean_object* x_316; lean_object* x_317; lean_object* x_318; lean_object* x_319; -x_316 = lean_ctor_get(x_315, 0); -lean_inc(x_316); -x_317 = lean_ctor_get(x_315, 1); -lean_inc(x_317); -lean_dec(x_315); -lean_inc(x_316); -x_318 = l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_CheckAssignment_cache(x_235, x_316, x_2, x_3, x_4, x_5, x_6, x_7, x_317); -x_319 = lean_ctor_get(x_318, 1); -lean_inc(x_319); -lean_dec(x_318); -x_238 = x_316; -x_239 = x_319; -goto block_310; -} -else -{ -uint8_t x_320; -lean_dec(x_237); -lean_dec(x_236); -lean_dec(x_235); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -lean_dec(x_1); -x_320 = !lean_is_exclusive(x_315); -if (x_320 == 0) -{ -return x_315; -} -else -{ -lean_object* x_321; lean_object* x_322; lean_object* x_323; -x_321 = lean_ctor_get(x_315, 0); -x_322 = lean_ctor_get(x_315, 1); -lean_inc(x_322); -lean_inc(x_321); -lean_dec(x_315); -x_323 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_323, 0, x_321); -lean_ctor_set(x_323, 1, x_322); -return x_323; -} -} -} -else -{ -lean_object* x_324; lean_object* x_325; -lean_dec(x_235); -x_324 = lean_ctor_get(x_312, 1); -lean_inc(x_324); -lean_dec(x_312); -x_325 = lean_ctor_get(x_313, 0); -lean_inc(x_325); -lean_dec(x_313); -x_238 = x_325; -x_239 = x_324; -goto block_310; -} -} -} -case 10: -{ -lean_object* x_331; lean_object* x_332; uint8_t x_348; -x_331 = lean_ctor_get(x_1, 1); -lean_inc(x_331); -x_348 = l_Lean_Expr_hasExprMVar(x_331); -if (x_348 == 0) -{ -uint8_t x_349; -x_349 = l_Lean_Expr_hasFVar(x_331); -if (x_349 == 0) -{ -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -x_9 = x_331; -x_10 = x_8; -goto block_22; -} -else -{ -lean_object* x_350; -x_350 = lean_box(0); -x_332 = x_350; -goto block_347; -} -} -else -{ -lean_object* x_351; -x_351 = lean_box(0); -x_332 = x_351; -goto block_347; -} -block_347: -{ -lean_object* x_333; lean_object* x_334; -lean_dec(x_332); -lean_inc(x_331); -x_333 = l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_CheckAssignment_findCached_x3f(x_331, x_2, x_3, x_4, x_5, x_6, x_7, x_8); -x_334 = lean_ctor_get(x_333, 0); -lean_inc(x_334); -if (lean_obj_tag(x_334) == 0) -{ -lean_object* x_335; lean_object* x_336; -x_335 = lean_ctor_get(x_333, 1); -lean_inc(x_335); -lean_dec(x_333); -lean_inc(x_7); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_3); -lean_inc(x_2); -lean_inc(x_331); -x_336 = l_Lean_Meta_CheckAssignment_check(x_331, x_2, x_3, x_4, x_5, x_6, x_7, x_335); -if (lean_obj_tag(x_336) == 0) -{ -lean_object* x_337; lean_object* x_338; lean_object* x_339; lean_object* x_340; -x_337 = lean_ctor_get(x_336, 0); -lean_inc(x_337); -x_338 = lean_ctor_get(x_336, 1); -lean_inc(x_338); -lean_dec(x_336); -lean_inc(x_337); -x_339 = l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_CheckAssignment_cache(x_331, x_337, x_2, x_3, x_4, x_5, x_6, x_7, x_338); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -x_340 = lean_ctor_get(x_339, 1); -lean_inc(x_340); -lean_dec(x_339); -x_9 = x_337; -x_10 = x_340; -goto block_22; -} -else -{ -uint8_t x_341; -lean_dec(x_331); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -lean_dec(x_1); -x_341 = !lean_is_exclusive(x_336); -if (x_341 == 0) -{ -return x_336; -} -else -{ -lean_object* x_342; lean_object* x_343; lean_object* x_344; -x_342 = lean_ctor_get(x_336, 0); -x_343 = lean_ctor_get(x_336, 1); -lean_inc(x_343); -lean_inc(x_342); -lean_dec(x_336); -x_344 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_344, 0, x_342); -lean_ctor_set(x_344, 1, x_343); -return x_344; -} -} -} -else -{ -lean_object* x_345; lean_object* x_346; -lean_dec(x_331); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -x_345 = lean_ctor_get(x_333, 1); -lean_inc(x_345); -lean_dec(x_333); -x_346 = lean_ctor_get(x_334, 0); -lean_inc(x_346); -lean_dec(x_334); -x_9 = x_346; -x_10 = x_345; -goto block_22; -} -} -} -case 11: -{ -lean_object* x_352; lean_object* x_353; uint8_t x_369; -x_352 = lean_ctor_get(x_1, 2); -lean_inc(x_352); -x_369 = l_Lean_Expr_hasExprMVar(x_352); -if (x_369 == 0) -{ -uint8_t x_370; -x_370 = l_Lean_Expr_hasFVar(x_352); -if (x_370 == 0) -{ -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -x_23 = x_352; -x_24 = x_8; -goto block_37; -} -else -{ -lean_object* x_371; -x_371 = lean_box(0); -x_353 = x_371; -goto block_368; -} -} -else -{ -lean_object* x_372; -x_372 = lean_box(0); -x_353 = x_372; -goto block_368; -} -block_368: -{ -lean_object* x_354; lean_object* x_355; -lean_dec(x_353); -lean_inc(x_352); -x_354 = l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_CheckAssignment_findCached_x3f(x_352, x_2, x_3, x_4, x_5, x_6, x_7, x_8); -x_355 = lean_ctor_get(x_354, 0); -lean_inc(x_355); -if (lean_obj_tag(x_355) == 0) -{ -lean_object* x_356; lean_object* x_357; -x_356 = lean_ctor_get(x_354, 1); -lean_inc(x_356); -lean_dec(x_354); -lean_inc(x_7); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_3); -lean_inc(x_2); -lean_inc(x_352); -x_357 = l_Lean_Meta_CheckAssignment_check(x_352, x_2, x_3, x_4, x_5, x_6, x_7, x_356); -if (lean_obj_tag(x_357) == 0) -{ -lean_object* x_358; lean_object* x_359; lean_object* x_360; lean_object* x_361; -x_358 = lean_ctor_get(x_357, 0); -lean_inc(x_358); -x_359 = lean_ctor_get(x_357, 1); -lean_inc(x_359); -lean_dec(x_357); -lean_inc(x_358); -x_360 = l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_CheckAssignment_cache(x_352, x_358, x_2, x_3, x_4, x_5, x_6, x_7, x_359); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -x_361 = lean_ctor_get(x_360, 1); -lean_inc(x_361); -lean_dec(x_360); -x_23 = x_358; -x_24 = x_361; -goto block_37; -} -else -{ -uint8_t x_362; -lean_dec(x_352); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -lean_dec(x_1); -x_362 = !lean_is_exclusive(x_357); -if (x_362 == 0) -{ -return x_357; -} -else -{ -lean_object* x_363; lean_object* x_364; lean_object* x_365; -x_363 = lean_ctor_get(x_357, 0); -x_364 = lean_ctor_get(x_357, 1); -lean_inc(x_364); -lean_inc(x_363); -lean_dec(x_357); -x_365 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_365, 0, x_363); -lean_ctor_set(x_365, 1, x_364); -return x_365; -} -} -} -else -{ -lean_object* x_366; lean_object* x_367; -lean_dec(x_352); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -x_366 = lean_ctor_get(x_354, 1); -lean_inc(x_366); -lean_dec(x_354); -x_367 = lean_ctor_get(x_355, 0); -lean_inc(x_367); -lean_dec(x_355); -x_23 = x_367; -x_24 = x_366; -goto block_37; -} -} -} -default: -{ -lean_object* x_373; -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -x_373 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_373, 0, x_1); -lean_ctor_set(x_373, 1, x_8); -return x_373; -} -} -block_22: -{ -if (lean_obj_tag(x_1) == 10) -{ -lean_object* x_11; lean_object* x_12; size_t x_13; size_t x_14; uint8_t x_15; -x_11 = lean_ctor_get(x_1, 0); -lean_inc(x_11); -x_12 = lean_ctor_get(x_1, 1); -lean_inc(x_12); -x_13 = lean_ptr_addr(x_12); -lean_dec(x_12); -x_14 = lean_ptr_addr(x_9); -x_15 = lean_usize_dec_eq(x_13, x_14); -if (x_15 == 0) -{ -lean_object* x_16; lean_object* x_17; -lean_dec(x_1); -x_16 = l_Lean_Expr_mdata___override(x_11, x_9); -x_17 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_17, 0, x_16); -lean_ctor_set(x_17, 1, x_10); -return x_17; -} -else -{ -lean_object* x_18; -lean_dec(x_11); -lean_dec(x_9); -x_18 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_18, 0, x_1); -lean_ctor_set(x_18, 1, x_10); -return x_18; -} -} -else -{ -lean_object* x_19; lean_object* x_20; lean_object* x_21; -lean_dec(x_9); -lean_dec(x_1); -x_19 = l_Lean_Meta_CheckAssignment_check___closed__4; -x_20 = l_panic___at_Lean_Expr_getRevArg_x21___spec__1(x_19); -x_21 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_21, 0, x_20); -lean_ctor_set(x_21, 1, x_10); -return x_21; -} -} -block_37: -{ -if (lean_obj_tag(x_1) == 11) -{ -lean_object* x_25; lean_object* x_26; lean_object* x_27; size_t x_28; size_t x_29; uint8_t x_30; -x_25 = lean_ctor_get(x_1, 0); +lean_object* x_25; lean_object* x_26; +x_25 = lean_ctor_get(x_10, 1); lean_inc(x_25); -x_26 = lean_ctor_get(x_1, 1); -lean_inc(x_26); -x_27 = lean_ctor_get(x_1, 2); +lean_dec(x_10); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +lean_inc(x_2); +lean_inc(x_1); +x_26 = l_Lean_Meta_CheckAssignment_checkMVar(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_25); +if (lean_obj_tag(x_26) == 0) +{ +lean_object* x_27; lean_object* x_28; lean_object* x_29; uint8_t x_30; +x_27 = lean_ctor_get(x_26, 0); lean_inc(x_27); -x_28 = lean_ptr_addr(x_27); -lean_dec(x_27); -x_29 = lean_ptr_addr(x_23); -x_30 = lean_usize_dec_eq(x_28, x_29); +x_28 = lean_ctor_get(x_26, 1); +lean_inc(x_28); +lean_dec(x_26); +lean_inc(x_27); +x_29 = l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_CheckAssignment_cache(x_1, x_27, x_2, x_3, x_4, x_5, x_6, x_7, x_28); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_30 = !lean_is_exclusive(x_29); if (x_30 == 0) { -lean_object* x_31; lean_object* x_32; -lean_dec(x_1); -x_31 = l_Lean_Expr_proj___override(x_25, x_26, x_23); -x_32 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_32, 0, x_31); -lean_ctor_set(x_32, 1, x_24); -return x_32; +lean_object* x_31; +x_31 = lean_ctor_get(x_29, 0); +lean_dec(x_31); +lean_ctor_set(x_29, 0, x_27); +return x_29; } else { -lean_object* x_33; -lean_dec(x_26); -lean_dec(x_25); -lean_dec(x_23); +lean_object* x_32; lean_object* x_33; +x_32 = lean_ctor_get(x_29, 1); +lean_inc(x_32); +lean_dec(x_29); x_33 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_33, 0, x_1); -lean_ctor_set(x_33, 1, x_24); +lean_ctor_set(x_33, 0, x_27); +lean_ctor_set(x_33, 1, x_32); return x_33; } } else { -lean_object* x_34; lean_object* x_35; lean_object* x_36; -lean_dec(x_23); +uint8_t x_34; +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); lean_dec(x_1); -x_34 = l_Lean_Meta_CheckAssignment_check___closed__7; -x_35 = l_panic___at_Lean_Expr_getRevArg_x21___spec__1(x_34); -x_36 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_36, 0, x_35); -lean_ctor_set(x_36, 1, x_24); -return x_36; +x_34 = !lean_is_exclusive(x_26); +if (x_34 == 0) +{ +return x_26; +} +else +{ +lean_object* x_35; lean_object* x_36; lean_object* x_37; +x_35 = lean_ctor_get(x_26, 0); +x_36 = lean_ctor_get(x_26, 1); +lean_inc(x_36); +lean_inc(x_35); +lean_dec(x_26); +x_37 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_37, 0, x_35); +lean_ctor_set(x_37, 1, x_36); +return x_37; +} +} +} +case 5: +{ +lean_object* x_38; lean_object* x_39; +x_38 = lean_ctor_get(x_10, 1); +lean_inc(x_38); +lean_dec(x_10); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +lean_inc(x_2); +lean_inc(x_1); +x_39 = l_Lean_Meta_CheckAssignment_checkApp(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_38); +if (lean_obj_tag(x_39) == 0) +{ +lean_object* x_40; lean_object* x_41; lean_object* x_42; uint8_t x_43; +x_40 = lean_ctor_get(x_39, 0); +lean_inc(x_40); +x_41 = lean_ctor_get(x_39, 1); +lean_inc(x_41); +lean_dec(x_39); +lean_inc(x_40); +x_42 = l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_CheckAssignment_cache(x_1, x_40, x_2, x_3, x_4, x_5, x_6, x_7, x_41); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_43 = !lean_is_exclusive(x_42); +if (x_43 == 0) +{ +lean_object* x_44; +x_44 = lean_ctor_get(x_42, 0); +lean_dec(x_44); +lean_ctor_set(x_42, 0, x_40); +return x_42; +} +else +{ +lean_object* x_45; lean_object* x_46; +x_45 = lean_ctor_get(x_42, 1); +lean_inc(x_45); +lean_dec(x_42); +x_46 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_46, 0, x_40); +lean_ctor_set(x_46, 1, x_45); +return x_46; +} +} +else +{ +uint8_t x_47; +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_47 = !lean_is_exclusive(x_39); +if (x_47 == 0) +{ +return x_39; +} +else +{ +lean_object* x_48; lean_object* x_49; lean_object* x_50; +x_48 = lean_ctor_get(x_39, 0); +x_49 = lean_ctor_get(x_39, 1); +lean_inc(x_49); +lean_inc(x_48); +lean_dec(x_39); +x_50 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_50, 0, x_48); +lean_ctor_set(x_50, 1, x_49); +return x_50; +} +} +} +case 6: +{ +lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; uint8_t x_55; lean_object* x_56; lean_object* x_57; lean_object* x_64; +x_51 = lean_ctor_get(x_10, 1); +lean_inc(x_51); +lean_dec(x_10); +x_52 = lean_ctor_get(x_1, 0); +lean_inc(x_52); +x_53 = lean_ctor_get(x_1, 1); +lean_inc(x_53); +x_54 = lean_ctor_get(x_1, 2); +lean_inc(x_54); +x_55 = lean_ctor_get_uint8(x_1, sizeof(void*)*3 + 8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +lean_inc(x_2); +lean_inc(x_53); +x_64 = l_Lean_Meta_CheckAssignment_check(x_53, x_2, x_3, x_4, x_5, x_6, x_7, x_51); +if (lean_obj_tag(x_64) == 0) +{ +lean_object* x_65; lean_object* x_66; lean_object* x_67; +x_65 = lean_ctor_get(x_64, 0); +lean_inc(x_65); +x_66 = lean_ctor_get(x_64, 1); +lean_inc(x_66); +lean_dec(x_64); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +lean_inc(x_2); +lean_inc(x_54); +x_67 = l_Lean_Meta_CheckAssignment_check(x_54, x_2, x_3, x_4, x_5, x_6, x_7, x_66); +if (lean_obj_tag(x_67) == 0) +{ +lean_object* x_68; lean_object* x_69; lean_object* x_70; size_t x_71; size_t x_72; uint8_t x_73; +x_68 = lean_ctor_get(x_67, 0); +lean_inc(x_68); +x_69 = lean_ctor_get(x_67, 1); +lean_inc(x_69); +lean_dec(x_67); +lean_inc(x_54); +lean_inc(x_53); +lean_inc(x_52); +x_70 = l_Lean_Expr_lam___override(x_52, x_53, x_54, x_55); +x_71 = lean_ptr_addr(x_53); +lean_dec(x_53); +x_72 = lean_ptr_addr(x_65); +x_73 = lean_usize_dec_eq(x_71, x_72); +if (x_73 == 0) +{ +lean_object* x_74; +lean_dec(x_70); +lean_dec(x_54); +x_74 = l_Lean_Expr_lam___override(x_52, x_65, x_68, x_55); +x_56 = x_74; +x_57 = x_69; +goto block_63; +} +else +{ +size_t x_75; size_t x_76; uint8_t x_77; +x_75 = lean_ptr_addr(x_54); +lean_dec(x_54); +x_76 = lean_ptr_addr(x_68); +x_77 = lean_usize_dec_eq(x_75, x_76); +if (x_77 == 0) +{ +lean_object* x_78; +lean_dec(x_70); +x_78 = l_Lean_Expr_lam___override(x_52, x_65, x_68, x_55); +x_56 = x_78; +x_57 = x_69; +goto block_63; +} +else +{ +uint8_t x_79; +x_79 = l___private_Lean_Expr_0__Lean_beqBinderInfo____x40_Lean_Expr___hyg_477_(x_55, x_55); +if (x_79 == 0) +{ +lean_object* x_80; +lean_dec(x_70); +x_80 = l_Lean_Expr_lam___override(x_52, x_65, x_68, x_55); +x_56 = x_80; +x_57 = x_69; +goto block_63; +} +else +{ +lean_dec(x_68); +lean_dec(x_65); +lean_dec(x_52); +x_56 = x_70; +x_57 = x_69; +goto block_63; +} +} +} +} +else +{ +uint8_t x_81; +lean_dec(x_65); +lean_dec(x_54); +lean_dec(x_53); +lean_dec(x_52); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_81 = !lean_is_exclusive(x_67); +if (x_81 == 0) +{ +return x_67; +} +else +{ +lean_object* x_82; lean_object* x_83; lean_object* x_84; +x_82 = lean_ctor_get(x_67, 0); +x_83 = lean_ctor_get(x_67, 1); +lean_inc(x_83); +lean_inc(x_82); +lean_dec(x_67); +x_84 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_84, 0, x_82); +lean_ctor_set(x_84, 1, x_83); +return x_84; +} +} +} +else +{ +uint8_t x_85; +lean_dec(x_54); +lean_dec(x_53); +lean_dec(x_52); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_85 = !lean_is_exclusive(x_64); +if (x_85 == 0) +{ +return x_64; +} +else +{ +lean_object* x_86; lean_object* x_87; lean_object* x_88; +x_86 = lean_ctor_get(x_64, 0); +x_87 = lean_ctor_get(x_64, 1); +lean_inc(x_87); +lean_inc(x_86); +lean_dec(x_64); +x_88 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_88, 0, x_86); +lean_ctor_set(x_88, 1, x_87); +return x_88; +} +} +block_63: +{ +lean_object* x_58; uint8_t x_59; +lean_inc(x_56); +x_58 = l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_CheckAssignment_cache(x_1, x_56, x_2, x_3, x_4, x_5, x_6, x_7, x_57); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_59 = !lean_is_exclusive(x_58); +if (x_59 == 0) +{ +lean_object* x_60; +x_60 = lean_ctor_get(x_58, 0); +lean_dec(x_60); +lean_ctor_set(x_58, 0, x_56); +return x_58; +} +else +{ +lean_object* x_61; lean_object* x_62; +x_61 = lean_ctor_get(x_58, 1); +lean_inc(x_61); +lean_dec(x_58); +x_62 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_62, 0, x_56); +lean_ctor_set(x_62, 1, x_61); +return x_62; +} +} +} +case 7: +{ +lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; uint8_t x_93; lean_object* x_94; lean_object* x_95; lean_object* x_102; +x_89 = lean_ctor_get(x_10, 1); +lean_inc(x_89); +lean_dec(x_10); +x_90 = lean_ctor_get(x_1, 0); +lean_inc(x_90); +x_91 = lean_ctor_get(x_1, 1); +lean_inc(x_91); +x_92 = lean_ctor_get(x_1, 2); +lean_inc(x_92); +x_93 = lean_ctor_get_uint8(x_1, sizeof(void*)*3 + 8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +lean_inc(x_2); +lean_inc(x_91); +x_102 = l_Lean_Meta_CheckAssignment_check(x_91, x_2, x_3, x_4, x_5, x_6, x_7, x_89); +if (lean_obj_tag(x_102) == 0) +{ +lean_object* x_103; lean_object* x_104; lean_object* x_105; +x_103 = lean_ctor_get(x_102, 0); +lean_inc(x_103); +x_104 = lean_ctor_get(x_102, 1); +lean_inc(x_104); +lean_dec(x_102); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +lean_inc(x_2); +lean_inc(x_92); +x_105 = l_Lean_Meta_CheckAssignment_check(x_92, x_2, x_3, x_4, x_5, x_6, x_7, x_104); +if (lean_obj_tag(x_105) == 0) +{ +lean_object* x_106; lean_object* x_107; lean_object* x_108; size_t x_109; size_t x_110; uint8_t x_111; +x_106 = lean_ctor_get(x_105, 0); +lean_inc(x_106); +x_107 = lean_ctor_get(x_105, 1); +lean_inc(x_107); +lean_dec(x_105); +lean_inc(x_92); +lean_inc(x_91); +lean_inc(x_90); +x_108 = l_Lean_Expr_forallE___override(x_90, x_91, x_92, x_93); +x_109 = lean_ptr_addr(x_91); +lean_dec(x_91); +x_110 = lean_ptr_addr(x_103); +x_111 = lean_usize_dec_eq(x_109, x_110); +if (x_111 == 0) +{ +lean_object* x_112; +lean_dec(x_108); +lean_dec(x_92); +x_112 = l_Lean_Expr_forallE___override(x_90, x_103, x_106, x_93); +x_94 = x_112; +x_95 = x_107; +goto block_101; +} +else +{ +size_t x_113; size_t x_114; uint8_t x_115; +x_113 = lean_ptr_addr(x_92); +lean_dec(x_92); +x_114 = lean_ptr_addr(x_106); +x_115 = lean_usize_dec_eq(x_113, x_114); +if (x_115 == 0) +{ +lean_object* x_116; +lean_dec(x_108); +x_116 = l_Lean_Expr_forallE___override(x_90, x_103, x_106, x_93); +x_94 = x_116; +x_95 = x_107; +goto block_101; +} +else +{ +uint8_t x_117; +x_117 = l___private_Lean_Expr_0__Lean_beqBinderInfo____x40_Lean_Expr___hyg_477_(x_93, x_93); +if (x_117 == 0) +{ +lean_object* x_118; +lean_dec(x_108); +x_118 = l_Lean_Expr_forallE___override(x_90, x_103, x_106, x_93); +x_94 = x_118; +x_95 = x_107; +goto block_101; +} +else +{ +lean_dec(x_106); +lean_dec(x_103); +lean_dec(x_90); +x_94 = x_108; +x_95 = x_107; +goto block_101; +} +} +} +} +else +{ +uint8_t x_119; +lean_dec(x_103); +lean_dec(x_92); +lean_dec(x_91); +lean_dec(x_90); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_119 = !lean_is_exclusive(x_105); +if (x_119 == 0) +{ +return x_105; +} +else +{ +lean_object* x_120; lean_object* x_121; lean_object* x_122; +x_120 = lean_ctor_get(x_105, 0); +x_121 = lean_ctor_get(x_105, 1); +lean_inc(x_121); +lean_inc(x_120); +lean_dec(x_105); +x_122 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_122, 0, x_120); +lean_ctor_set(x_122, 1, x_121); +return x_122; +} +} +} +else +{ +uint8_t x_123; +lean_dec(x_92); +lean_dec(x_91); +lean_dec(x_90); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_123 = !lean_is_exclusive(x_102); +if (x_123 == 0) +{ +return x_102; +} +else +{ +lean_object* x_124; lean_object* x_125; lean_object* x_126; +x_124 = lean_ctor_get(x_102, 0); +x_125 = lean_ctor_get(x_102, 1); +lean_inc(x_125); +lean_inc(x_124); +lean_dec(x_102); +x_126 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_126, 0, x_124); +lean_ctor_set(x_126, 1, x_125); +return x_126; +} +} +block_101: +{ +lean_object* x_96; uint8_t x_97; +lean_inc(x_94); +x_96 = l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_CheckAssignment_cache(x_1, x_94, x_2, x_3, x_4, x_5, x_6, x_7, x_95); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_97 = !lean_is_exclusive(x_96); +if (x_97 == 0) +{ +lean_object* x_98; +x_98 = lean_ctor_get(x_96, 0); +lean_dec(x_98); +lean_ctor_set(x_96, 0, x_94); +return x_96; +} +else +{ +lean_object* x_99; lean_object* x_100; +x_99 = lean_ctor_get(x_96, 1); +lean_inc(x_99); +lean_dec(x_96); +x_100 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_100, 0, x_94); +lean_ctor_set(x_100, 1, x_99); +return x_100; +} +} +} +case 8: +{ +lean_object* x_127; lean_object* x_128; lean_object* x_129; lean_object* x_130; lean_object* x_131; uint8_t x_132; lean_object* x_133; lean_object* x_134; lean_object* x_141; +x_127 = lean_ctor_get(x_10, 1); +lean_inc(x_127); +lean_dec(x_10); +x_128 = lean_ctor_get(x_1, 0); +lean_inc(x_128); +x_129 = lean_ctor_get(x_1, 1); +lean_inc(x_129); +x_130 = lean_ctor_get(x_1, 2); +lean_inc(x_130); +x_131 = lean_ctor_get(x_1, 3); +lean_inc(x_131); +x_132 = lean_ctor_get_uint8(x_1, sizeof(void*)*4 + 8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +lean_inc(x_2); +lean_inc(x_129); +x_141 = l_Lean_Meta_CheckAssignment_check(x_129, x_2, x_3, x_4, x_5, x_6, x_7, x_127); +if (lean_obj_tag(x_141) == 0) +{ +lean_object* x_142; lean_object* x_143; lean_object* x_144; +x_142 = lean_ctor_get(x_141, 0); +lean_inc(x_142); +x_143 = lean_ctor_get(x_141, 1); +lean_inc(x_143); +lean_dec(x_141); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +lean_inc(x_2); +lean_inc(x_130); +x_144 = l_Lean_Meta_CheckAssignment_check(x_130, x_2, x_3, x_4, x_5, x_6, x_7, x_143); +if (lean_obj_tag(x_144) == 0) +{ +lean_object* x_145; lean_object* x_146; lean_object* x_147; +x_145 = lean_ctor_get(x_144, 0); +lean_inc(x_145); +x_146 = lean_ctor_get(x_144, 1); +lean_inc(x_146); +lean_dec(x_144); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +lean_inc(x_2); +lean_inc(x_131); +x_147 = l_Lean_Meta_CheckAssignment_check(x_131, x_2, x_3, x_4, x_5, x_6, x_7, x_146); +if (lean_obj_tag(x_147) == 0) +{ +lean_object* x_148; lean_object* x_149; size_t x_150; size_t x_151; uint8_t x_152; +x_148 = lean_ctor_get(x_147, 0); +lean_inc(x_148); +x_149 = lean_ctor_get(x_147, 1); +lean_inc(x_149); +lean_dec(x_147); +x_150 = lean_ptr_addr(x_129); +lean_dec(x_129); +x_151 = lean_ptr_addr(x_142); +x_152 = lean_usize_dec_eq(x_150, x_151); +if (x_152 == 0) +{ +lean_object* x_153; +lean_dec(x_131); +lean_dec(x_130); +x_153 = l_Lean_Expr_letE___override(x_128, x_142, x_145, x_148, x_132); +x_133 = x_153; +x_134 = x_149; +goto block_140; +} +else +{ +size_t x_154; size_t x_155; uint8_t x_156; +x_154 = lean_ptr_addr(x_130); +lean_dec(x_130); +x_155 = lean_ptr_addr(x_145); +x_156 = lean_usize_dec_eq(x_154, x_155); +if (x_156 == 0) +{ +lean_object* x_157; +lean_dec(x_131); +x_157 = l_Lean_Expr_letE___override(x_128, x_142, x_145, x_148, x_132); +x_133 = x_157; +x_134 = x_149; +goto block_140; +} +else +{ +size_t x_158; size_t x_159; uint8_t x_160; +x_158 = lean_ptr_addr(x_131); +lean_dec(x_131); +x_159 = lean_ptr_addr(x_148); +x_160 = lean_usize_dec_eq(x_158, x_159); +if (x_160 == 0) +{ +lean_object* x_161; +x_161 = l_Lean_Expr_letE___override(x_128, x_142, x_145, x_148, x_132); +x_133 = x_161; +x_134 = x_149; +goto block_140; +} +else +{ +lean_dec(x_148); +lean_dec(x_145); +lean_dec(x_142); +lean_dec(x_128); +lean_inc(x_1); +x_133 = x_1; +x_134 = x_149; +goto block_140; +} +} +} +} +else +{ +uint8_t x_162; +lean_dec(x_145); +lean_dec(x_142); +lean_dec(x_131); +lean_dec(x_130); +lean_dec(x_129); +lean_dec(x_128); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_162 = !lean_is_exclusive(x_147); +if (x_162 == 0) +{ +return x_147; +} +else +{ +lean_object* x_163; lean_object* x_164; lean_object* x_165; +x_163 = lean_ctor_get(x_147, 0); +x_164 = lean_ctor_get(x_147, 1); +lean_inc(x_164); +lean_inc(x_163); +lean_dec(x_147); +x_165 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_165, 0, x_163); +lean_ctor_set(x_165, 1, x_164); +return x_165; +} +} +} +else +{ +uint8_t x_166; +lean_dec(x_142); +lean_dec(x_131); +lean_dec(x_130); +lean_dec(x_129); +lean_dec(x_128); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_166 = !lean_is_exclusive(x_144); +if (x_166 == 0) +{ +return x_144; +} +else +{ +lean_object* x_167; lean_object* x_168; lean_object* x_169; +x_167 = lean_ctor_get(x_144, 0); +x_168 = lean_ctor_get(x_144, 1); +lean_inc(x_168); +lean_inc(x_167); +lean_dec(x_144); +x_169 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_169, 0, x_167); +lean_ctor_set(x_169, 1, x_168); +return x_169; +} +} +} +else +{ +uint8_t x_170; +lean_dec(x_131); +lean_dec(x_130); +lean_dec(x_129); +lean_dec(x_128); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_170 = !lean_is_exclusive(x_141); +if (x_170 == 0) +{ +return x_141; +} +else +{ +lean_object* x_171; lean_object* x_172; lean_object* x_173; +x_171 = lean_ctor_get(x_141, 0); +x_172 = lean_ctor_get(x_141, 1); +lean_inc(x_172); +lean_inc(x_171); +lean_dec(x_141); +x_173 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_173, 0, x_171); +lean_ctor_set(x_173, 1, x_172); +return x_173; +} +} +block_140: +{ +lean_object* x_135; uint8_t x_136; +lean_inc(x_133); +x_135 = l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_CheckAssignment_cache(x_1, x_133, x_2, x_3, x_4, x_5, x_6, x_7, x_134); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_136 = !lean_is_exclusive(x_135); +if (x_136 == 0) +{ +lean_object* x_137; +x_137 = lean_ctor_get(x_135, 0); +lean_dec(x_137); +lean_ctor_set(x_135, 0, x_133); +return x_135; +} +else +{ +lean_object* x_138; lean_object* x_139; +x_138 = lean_ctor_get(x_135, 1); +lean_inc(x_138); +lean_dec(x_135); +x_139 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_139, 0, x_133); +lean_ctor_set(x_139, 1, x_138); +return x_139; +} +} +} +case 10: +{ +lean_object* x_174; lean_object* x_175; lean_object* x_176; lean_object* x_177; lean_object* x_178; lean_object* x_185; +x_174 = lean_ctor_get(x_10, 1); +lean_inc(x_174); +lean_dec(x_10); +x_175 = lean_ctor_get(x_1, 0); +lean_inc(x_175); +x_176 = lean_ctor_get(x_1, 1); +lean_inc(x_176); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +lean_inc(x_2); +lean_inc(x_176); +x_185 = l_Lean_Meta_CheckAssignment_check(x_176, x_2, x_3, x_4, x_5, x_6, x_7, x_174); +if (lean_obj_tag(x_185) == 0) +{ +lean_object* x_186; lean_object* x_187; size_t x_188; size_t x_189; uint8_t x_190; +x_186 = lean_ctor_get(x_185, 0); +lean_inc(x_186); +x_187 = lean_ctor_get(x_185, 1); +lean_inc(x_187); +lean_dec(x_185); +x_188 = lean_ptr_addr(x_176); +lean_dec(x_176); +x_189 = lean_ptr_addr(x_186); +x_190 = lean_usize_dec_eq(x_188, x_189); +if (x_190 == 0) +{ +lean_object* x_191; +x_191 = l_Lean_Expr_mdata___override(x_175, x_186); +x_177 = x_191; +x_178 = x_187; +goto block_184; +} +else +{ +lean_dec(x_186); +lean_dec(x_175); +lean_inc(x_1); +x_177 = x_1; +x_178 = x_187; +goto block_184; +} +} +else +{ +uint8_t x_192; +lean_dec(x_176); +lean_dec(x_175); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_192 = !lean_is_exclusive(x_185); +if (x_192 == 0) +{ +return x_185; +} +else +{ +lean_object* x_193; lean_object* x_194; lean_object* x_195; +x_193 = lean_ctor_get(x_185, 0); +x_194 = lean_ctor_get(x_185, 1); +lean_inc(x_194); +lean_inc(x_193); +lean_dec(x_185); +x_195 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_195, 0, x_193); +lean_ctor_set(x_195, 1, x_194); +return x_195; +} +} +block_184: +{ +lean_object* x_179; uint8_t x_180; +lean_inc(x_177); +x_179 = l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_CheckAssignment_cache(x_1, x_177, x_2, x_3, x_4, x_5, x_6, x_7, x_178); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_180 = !lean_is_exclusive(x_179); +if (x_180 == 0) +{ +lean_object* x_181; +x_181 = lean_ctor_get(x_179, 0); +lean_dec(x_181); +lean_ctor_set(x_179, 0, x_177); +return x_179; +} +else +{ +lean_object* x_182; lean_object* x_183; +x_182 = lean_ctor_get(x_179, 1); +lean_inc(x_182); +lean_dec(x_179); +x_183 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_183, 0, x_177); +lean_ctor_set(x_183, 1, x_182); +return x_183; +} +} +} +case 11: +{ +lean_object* x_196; lean_object* x_197; lean_object* x_198; lean_object* x_199; lean_object* x_200; lean_object* x_201; lean_object* x_208; +x_196 = lean_ctor_get(x_10, 1); +lean_inc(x_196); +lean_dec(x_10); +x_197 = lean_ctor_get(x_1, 0); +lean_inc(x_197); +x_198 = lean_ctor_get(x_1, 1); +lean_inc(x_198); +x_199 = lean_ctor_get(x_1, 2); +lean_inc(x_199); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +lean_inc(x_2); +lean_inc(x_199); +x_208 = l_Lean_Meta_CheckAssignment_check(x_199, x_2, x_3, x_4, x_5, x_6, x_7, x_196); +if (lean_obj_tag(x_208) == 0) +{ +lean_object* x_209; lean_object* x_210; size_t x_211; size_t x_212; uint8_t x_213; +x_209 = lean_ctor_get(x_208, 0); +lean_inc(x_209); +x_210 = lean_ctor_get(x_208, 1); +lean_inc(x_210); +lean_dec(x_208); +x_211 = lean_ptr_addr(x_199); +lean_dec(x_199); +x_212 = lean_ptr_addr(x_209); +x_213 = lean_usize_dec_eq(x_211, x_212); +if (x_213 == 0) +{ +lean_object* x_214; +x_214 = l_Lean_Expr_proj___override(x_197, x_198, x_209); +x_200 = x_214; +x_201 = x_210; +goto block_207; +} +else +{ +lean_dec(x_209); +lean_dec(x_198); +lean_dec(x_197); +lean_inc(x_1); +x_200 = x_1; +x_201 = x_210; +goto block_207; +} +} +else +{ +uint8_t x_215; +lean_dec(x_199); +lean_dec(x_198); +lean_dec(x_197); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_215 = !lean_is_exclusive(x_208); +if (x_215 == 0) +{ +return x_208; +} +else +{ +lean_object* x_216; lean_object* x_217; lean_object* x_218; +x_216 = lean_ctor_get(x_208, 0); +x_217 = lean_ctor_get(x_208, 1); +lean_inc(x_217); +lean_inc(x_216); +lean_dec(x_208); +x_218 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_218, 0, x_216); +lean_ctor_set(x_218, 1, x_217); +return x_218; +} +} +block_207: +{ +lean_object* x_202; uint8_t x_203; +lean_inc(x_200); +x_202 = l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_CheckAssignment_cache(x_1, x_200, x_2, x_3, x_4, x_5, x_6, x_7, x_201); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_203 = !lean_is_exclusive(x_202); +if (x_203 == 0) +{ +lean_object* x_204; +x_204 = lean_ctor_get(x_202, 0); +lean_dec(x_204); +lean_ctor_set(x_202, 0, x_200); +return x_202; +} +else +{ +lean_object* x_205; lean_object* x_206; +x_205 = lean_ctor_get(x_202, 1); +lean_inc(x_205); +lean_dec(x_202); +x_206 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_206, 0, x_200); +lean_ctor_set(x_206, 1, x_205); +return x_206; +} +} +} +default: +{ +lean_object* x_219; lean_object* x_220; uint8_t x_221; +x_219 = lean_ctor_get(x_10, 1); +lean_inc(x_219); +lean_dec(x_10); +lean_inc_n(x_1, 2); +x_220 = l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_CheckAssignment_cache(x_1, x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_219); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_221 = !lean_is_exclusive(x_220); +if (x_221 == 0) +{ +lean_object* x_222; +x_222 = lean_ctor_get(x_220, 0); +lean_dec(x_222); +lean_ctor_set(x_220, 0, x_1); +return x_220; +} +else +{ +lean_object* x_223; lean_object* x_224; +x_223 = lean_ctor_get(x_220, 1); +lean_inc(x_223); +lean_dec(x_220); +x_224 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_224, 0, x_1); +lean_ctor_set(x_224, 1, x_223); +return x_224; +} +} +} +} +else +{ +uint8_t x_225; +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_225 = !lean_is_exclusive(x_10); +if (x_225 == 0) +{ +lean_object* x_226; lean_object* x_227; +x_226 = lean_ctor_get(x_10, 0); +lean_dec(x_226); +x_227 = lean_ctor_get(x_11, 0); +lean_inc(x_227); +lean_dec(x_11); +lean_ctor_set(x_10, 0, x_227); +return x_10; +} +else +{ +lean_object* x_228; lean_object* x_229; lean_object* x_230; +x_228 = lean_ctor_get(x_10, 1); +lean_inc(x_228); +lean_dec(x_10); +x_229 = lean_ctor_get(x_11, 0); +lean_inc(x_229); +lean_dec(x_11); +x_230 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_230, 0, x_229); +lean_ctor_set(x_230, 1, x_228); +return x_230; +} } } } @@ -18624,131 +17501,60 @@ return x_12; } else { -lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; uint8_t x_40; +lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; x_13 = lean_array_uget(x_3, x_2); x_14 = lean_unsigned_to_nat(0u); x_15 = lean_array_uset(x_3, x_2, x_14); -x_40 = l_Lean_Expr_hasExprMVar(x_13); -if (x_40 == 0) -{ -uint8_t x_41; -x_41 = l_Lean_Expr_hasFVar(x_13); -if (x_41 == 0) -{ -size_t x_42; size_t x_43; lean_object* x_44; -x_42 = 1; -x_43 = lean_usize_add(x_2, x_42); -x_44 = lean_array_uset(x_15, x_2, x_13); -x_2 = x_43; -x_3 = x_44; -goto _start; -} -else -{ -lean_object* x_46; -x_46 = lean_box(0); -x_16 = x_46; -goto block_39; -} -} -else -{ -lean_object* x_47; -x_47 = lean_box(0); -x_16 = x_47; -goto block_39; -} -block_39: -{ -lean_object* x_17; lean_object* x_18; -lean_dec(x_16); -lean_inc(x_13); -x_17 = l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_CheckAssignment_findCached_x3f(x_13, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -x_18 = lean_ctor_get(x_17, 0); -lean_inc(x_18); -if (lean_obj_tag(x_18) == 0) -{ -lean_object* x_19; lean_object* x_20; -x_19 = lean_ctor_get(x_17, 1); -lean_inc(x_19); -lean_dec(x_17); lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); lean_inc(x_5); lean_inc(x_4); -lean_inc(x_13); -x_20 = l_Lean_Meta_CheckAssignment_check(x_13, x_4, x_5, x_6, x_7, x_8, x_9, x_19); -if (lean_obj_tag(x_20) == 0) +x_16 = l_Lean_Meta_CheckAssignment_check(x_13, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +if (lean_obj_tag(x_16) == 0) { -lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; size_t x_25; size_t x_26; lean_object* x_27; -x_21 = lean_ctor_get(x_20, 0); -lean_inc(x_21); -x_22 = lean_ctor_get(x_20, 1); -lean_inc(x_22); -lean_dec(x_20); -lean_inc(x_21); -x_23 = l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_CheckAssignment_cache(x_13, x_21, x_4, x_5, x_6, x_7, x_8, x_9, x_22); -x_24 = lean_ctor_get(x_23, 1); -lean_inc(x_24); -lean_dec(x_23); -x_25 = 1; -x_26 = lean_usize_add(x_2, x_25); -x_27 = lean_array_uset(x_15, x_2, x_21); -x_2 = x_26; -x_3 = x_27; -x_10 = x_24; +lean_object* x_17; lean_object* x_18; size_t x_19; size_t x_20; lean_object* x_21; +x_17 = lean_ctor_get(x_16, 0); +lean_inc(x_17); +x_18 = lean_ctor_get(x_16, 1); +lean_inc(x_18); +lean_dec(x_16); +x_19 = 1; +x_20 = lean_usize_add(x_2, x_19); +x_21 = lean_array_uset(x_15, x_2, x_17); +x_2 = x_20; +x_3 = x_21; +x_10 = x_18; goto _start; } else { -uint8_t x_29; +uint8_t x_23; lean_dec(x_15); -lean_dec(x_13); lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -x_29 = !lean_is_exclusive(x_20); -if (x_29 == 0) +x_23 = !lean_is_exclusive(x_16); +if (x_23 == 0) { -return x_20; +return x_16; } else { -lean_object* x_30; lean_object* x_31; lean_object* x_32; -x_30 = lean_ctor_get(x_20, 0); -x_31 = lean_ctor_get(x_20, 1); -lean_inc(x_31); -lean_inc(x_30); -lean_dec(x_20); -x_32 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_32, 0, x_30); -lean_ctor_set(x_32, 1, x_31); -return x_32; -} -} -} -else -{ -lean_object* x_33; lean_object* x_34; size_t x_35; size_t x_36; lean_object* x_37; -lean_dec(x_13); -x_33 = lean_ctor_get(x_17, 1); -lean_inc(x_33); -lean_dec(x_17); -x_34 = lean_ctor_get(x_18, 0); -lean_inc(x_34); -lean_dec(x_18); -x_35 = 1; -x_36 = lean_usize_add(x_2, x_35); -x_37 = lean_array_uset(x_15, x_2, x_34); -x_2 = x_36; -x_3 = x_37; -x_10 = x_33; -goto _start; +lean_object* x_24; lean_object* x_25; lean_object* x_26; +x_24 = lean_ctor_get(x_16, 0); +x_25 = lean_ctor_get(x_16, 1); +lean_inc(x_25); +lean_inc(x_24); +lean_dec(x_16); +x_26 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_26, 0, x_24); +lean_ctor_set(x_26, 1, x_25); +return x_26; } } } @@ -18842,306 +17648,117 @@ _start: switch (lean_obj_tag(x_2)) { case 0: { -lean_object* x_12; lean_object* x_52; uint8_t x_198; +lean_object* x_12; lean_object* x_142; uint8_t x_166; lean_dec(x_4); -x_198 = l_Lean_Expr_isMVar(x_2); -if (x_198 == 0) +x_166 = l_Lean_Expr_isMVar(x_2); +if (x_166 == 0) { -lean_object* x_199; +lean_object* x_167; lean_dec(x_1); -x_199 = lean_box(0); -x_12 = x_199; -goto block_51; +x_167 = lean_box(0); +x_142 = x_167; +goto block_165; } else { -lean_object* x_200; uint8_t x_201; -x_200 = lean_ctor_get(x_7, 0); -lean_inc(x_200); -x_201 = lean_ctor_get_uint8(x_200, 1); -lean_dec(x_200); -if (x_201 == 0) +lean_object* x_168; uint8_t x_169; +x_168 = lean_ctor_get(x_7, 0); +lean_inc(x_168); +x_169 = lean_ctor_get_uint8(x_168, 1); +lean_dec(x_168); +if (x_169 == 0) { -lean_object* x_202; +lean_object* x_170; lean_dec(x_1); -x_202 = lean_box(0); -x_12 = x_202; -goto block_51; +x_170 = lean_box(0); +x_142 = x_170; +goto block_165; } else { -lean_object* x_203; lean_object* x_204; uint8_t x_205; -x_203 = lean_array_get_size(x_3); -x_204 = lean_unsigned_to_nat(0u); -x_205 = lean_nat_dec_lt(x_204, x_203); -if (x_205 == 0) +lean_object* x_171; lean_object* x_172; uint8_t x_173; +x_171 = lean_array_get_size(x_3); +x_172 = lean_unsigned_to_nat(0u); +x_173 = lean_nat_dec_lt(x_172, x_171); +if (x_173 == 0) { -lean_object* x_206; -lean_dec(x_203); -x_206 = lean_box(0); -x_52 = x_206; -goto block_197; +lean_object* x_174; +lean_dec(x_171); +x_174 = lean_box(0); +x_12 = x_174; +goto block_141; } else { -uint8_t x_207; -x_207 = lean_nat_dec_le(x_203, x_203); -if (x_207 == 0) +uint8_t x_175; +x_175 = lean_nat_dec_le(x_171, x_171); +if (x_175 == 0) { -lean_object* x_208; -lean_dec(x_203); -x_208 = lean_box(0); -x_52 = x_208; -goto block_197; +lean_object* x_176; +lean_dec(x_171); +x_176 = lean_box(0); +x_12 = x_176; +goto block_141; } else { -size_t x_209; size_t x_210; uint8_t x_211; -x_209 = 0; -x_210 = lean_usize_of_nat(x_203); -lean_dec(x_203); -x_211 = l_Array_anyMUnsafe_any___at_Lean_Meta_CheckAssignment_checkApp___spec__3(x_3, x_209, x_210); -if (x_211 == 0) +size_t x_177; size_t x_178; uint8_t x_179; +x_177 = 0; +x_178 = lean_usize_of_nat(x_171); +lean_dec(x_171); +x_179 = l_Array_anyMUnsafe_any___at_Lean_Meta_CheckAssignment_checkApp___spec__3(x_3, x_177, x_178); +if (x_179 == 0) { -lean_object* x_212; -x_212 = lean_box(0); -x_52 = x_212; -goto block_197; +lean_object* x_180; +x_180 = lean_box(0); +x_12 = x_180; +goto block_141; } else { -lean_object* x_213; +lean_object* x_181; lean_dec(x_1); -x_213 = lean_box(0); -x_12 = x_213; -goto block_51; +x_181 = lean_box(0); +x_142 = x_181; +goto block_165; } } } } } -block_51: +block_141: { -lean_object* x_13; lean_object* x_14; lean_object* x_31; uint8_t x_47; +lean_object* x_13; lean_dec(x_12); -x_47 = l_Lean_Expr_hasExprMVar(x_2); -if (x_47 == 0) +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +x_13 = l_Lean_Meta_CheckAssignment_check(x_2, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +if (lean_obj_tag(x_13) == 0) { -uint8_t x_48; -x_48 = l_Lean_Expr_hasFVar(x_2); -if (x_48 == 0) -{ -x_13 = x_2; -x_14 = x_11; -goto block_30; -} -else -{ -lean_object* x_49; -x_49 = lean_box(0); -x_31 = x_49; -goto block_46; -} -} -else -{ -lean_object* x_50; -x_50 = lean_box(0); -x_31 = x_50; -goto block_46; -} -block_30: -{ -lean_object* x_15; size_t x_16; size_t x_17; lean_object* x_18; -x_15 = lean_array_get_size(x_3); -x_16 = lean_usize_of_nat(x_15); -lean_dec(x_15); -x_17 = 0; -x_18 = l_Array_mapMUnsafe_map___at_Lean_Meta_CheckAssignment_checkApp___spec__1(x_16, x_17, x_3, x_5, x_6, x_7, x_8, x_9, x_10, x_14); -if (lean_obj_tag(x_18) == 0) -{ -uint8_t x_19; -x_19 = !lean_is_exclusive(x_18); -if (x_19 == 0) -{ -lean_object* x_20; lean_object* x_21; -x_20 = lean_ctor_get(x_18, 0); -x_21 = l_Lean_mkAppN(x_13, x_20); -lean_ctor_set(x_18, 0, x_21); -return x_18; -} -else -{ -lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; -x_22 = lean_ctor_get(x_18, 0); -x_23 = lean_ctor_get(x_18, 1); -lean_inc(x_23); -lean_inc(x_22); -lean_dec(x_18); -x_24 = l_Lean_mkAppN(x_13, x_22); -x_25 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_25, 0, x_24); -lean_ctor_set(x_25, 1, x_23); -return x_25; -} -} -else -{ -uint8_t x_26; +lean_object* x_14; lean_object* x_15; lean_object* x_16; size_t x_17; size_t x_18; lean_object* x_19; +x_14 = lean_ctor_get(x_13, 0); +lean_inc(x_14); +x_15 = lean_ctor_get(x_13, 1); +lean_inc(x_15); lean_dec(x_13); -x_26 = !lean_is_exclusive(x_18); -if (x_26 == 0) -{ -return x_18; -} -else -{ -lean_object* x_27; lean_object* x_28; lean_object* x_29; -x_27 = lean_ctor_get(x_18, 0); -x_28 = lean_ctor_get(x_18, 1); -lean_inc(x_28); -lean_inc(x_27); -lean_dec(x_18); -x_29 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_29, 0, x_27); -lean_ctor_set(x_29, 1, x_28); -return x_29; -} -} -} -block_46: -{ -lean_object* x_32; lean_object* x_33; -lean_dec(x_31); -lean_inc(x_2); -x_32 = l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_CheckAssignment_findCached_x3f(x_2, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -x_33 = lean_ctor_get(x_32, 0); -lean_inc(x_33); -if (lean_obj_tag(x_33) == 0) -{ -lean_object* x_34; lean_object* x_35; -x_34 = lean_ctor_get(x_32, 1); -lean_inc(x_34); -lean_dec(x_32); +x_16 = lean_array_get_size(x_3); +x_17 = lean_usize_of_nat(x_16); +x_18 = 0; lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); lean_inc(x_5); -lean_inc(x_2); -x_35 = l_Lean_Meta_CheckAssignment_check(x_2, x_5, x_6, x_7, x_8, x_9, x_10, x_34); -if (lean_obj_tag(x_35) == 0) +x_19 = l_Array_mapMUnsafe_map___at_Lean_Meta_CheckAssignment_checkApp___spec__1(x_17, x_18, x_3, x_5, x_6, x_7, x_8, x_9, x_10, x_15); +if (lean_obj_tag(x_19) == 0) { -lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; -x_36 = lean_ctor_get(x_35, 0); -lean_inc(x_36); -x_37 = lean_ctor_get(x_35, 1); -lean_inc(x_37); -lean_dec(x_35); -lean_inc(x_36); -x_38 = l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_CheckAssignment_cache(x_2, x_36, x_5, x_6, x_7, x_8, x_9, x_10, x_37); -x_39 = lean_ctor_get(x_38, 1); -lean_inc(x_39); -lean_dec(x_38); -x_13 = x_36; -x_14 = x_39; -goto block_30; -} -else -{ -uint8_t x_40; -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_3); -lean_dec(x_2); -x_40 = !lean_is_exclusive(x_35); -if (x_40 == 0) -{ -return x_35; -} -else -{ -lean_object* x_41; lean_object* x_42; lean_object* x_43; -x_41 = lean_ctor_get(x_35, 0); -x_42 = lean_ctor_get(x_35, 1); -lean_inc(x_42); -lean_inc(x_41); -lean_dec(x_35); -x_43 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_43, 0, x_41); -lean_ctor_set(x_43, 1, x_42); -return x_43; -} -} -} -else -{ -lean_object* x_44; lean_object* x_45; -lean_dec(x_2); -x_44 = lean_ctor_get(x_32, 1); -lean_inc(x_44); -lean_dec(x_32); -x_45 = lean_ctor_get(x_33, 0); -lean_inc(x_45); -lean_dec(x_33); -x_13 = x_45; -x_14 = x_44; -goto block_30; -} -} -} -block_197: -{ -lean_object* x_53; lean_object* x_54; lean_object* x_177; uint8_t x_193; -lean_dec(x_52); -x_193 = l_Lean_Expr_hasExprMVar(x_2); -if (x_193 == 0) -{ -uint8_t x_194; -x_194 = l_Lean_Expr_hasFVar(x_2); -if (x_194 == 0) -{ -x_53 = x_2; -x_54 = x_11; -goto block_176; -} -else -{ -lean_object* x_195; -x_195 = lean_box(0); -x_177 = x_195; -goto block_192; -} -} -else -{ -lean_object* x_196; -x_196 = lean_box(0); -x_177 = x_196; -goto block_192; -} -block_176: -{ -lean_object* x_55; size_t x_56; size_t x_57; lean_object* x_58; -x_55 = lean_array_get_size(x_3); -x_56 = lean_usize_of_nat(x_55); -x_57 = 0; -lean_inc(x_10); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_6); -lean_inc(x_5); -x_58 = l_Array_mapMUnsafe_map___at_Lean_Meta_CheckAssignment_checkApp___spec__1(x_56, x_57, x_3, x_5, x_6, x_7, x_8, x_9, x_10, x_54); -if (lean_obj_tag(x_58) == 0) -{ -uint8_t x_59; -lean_dec(x_55); +uint8_t x_20; +lean_dec(x_16); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); @@ -19149,396 +17766,624 @@ lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_1); -x_59 = !lean_is_exclusive(x_58); -if (x_59 == 0) +x_20 = !lean_is_exclusive(x_19); +if (x_20 == 0) { -lean_object* x_60; lean_object* x_61; -x_60 = lean_ctor_get(x_58, 0); -x_61 = l_Lean_mkAppN(x_53, x_60); -lean_ctor_set(x_58, 0, x_61); -return x_58; +lean_object* x_21; lean_object* x_22; +x_21 = lean_ctor_get(x_19, 0); +x_22 = l_Lean_mkAppN(x_14, x_21); +lean_ctor_set(x_19, 0, x_22); +return x_19; } else { -lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; -x_62 = lean_ctor_get(x_58, 0); -x_63 = lean_ctor_get(x_58, 1); -lean_inc(x_63); -lean_inc(x_62); -lean_dec(x_58); -x_64 = l_Lean_mkAppN(x_53, x_62); -x_65 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_65, 0, x_64); -lean_ctor_set(x_65, 1, x_63); +lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; +x_23 = lean_ctor_get(x_19, 0); +x_24 = lean_ctor_get(x_19, 1); +lean_inc(x_24); +lean_inc(x_23); +lean_dec(x_19); +x_25 = l_Lean_mkAppN(x_14, x_23); +x_26 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_26, 0, x_25); +lean_ctor_set(x_26, 1, x_24); +return x_26; +} +} +else +{ +lean_object* x_27; +x_27 = lean_ctor_get(x_19, 0); +lean_inc(x_27); +if (lean_obj_tag(x_27) == 0) +{ +uint8_t x_28; +lean_dec(x_16); +lean_dec(x_14); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_1); +x_28 = !lean_is_exclusive(x_19); +if (x_28 == 0) +{ +lean_object* x_29; +x_29 = lean_ctor_get(x_19, 0); +lean_dec(x_29); +return x_19; +} +else +{ +lean_object* x_30; lean_object* x_31; +x_30 = lean_ctor_get(x_19, 1); +lean_inc(x_30); +lean_dec(x_19); +x_31 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_31, 0, x_27); +lean_ctor_set(x_31, 1, x_30); +return x_31; +} +} +else +{ +uint8_t x_32; +x_32 = !lean_is_exclusive(x_19); +if (x_32 == 0) +{ +lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; uint8_t x_37; +x_33 = lean_ctor_get(x_19, 1); +x_34 = lean_ctor_get(x_19, 0); +lean_dec(x_34); +x_35 = lean_ctor_get(x_27, 0); +lean_inc(x_35); +x_36 = l_Lean_Meta_CheckAssignment_throwOutOfScopeFVar___rarg___closed__1; +x_37 = lean_nat_dec_eq(x_36, x_35); +lean_dec(x_35); +if (x_37 == 0) +{ +lean_dec(x_16); +lean_dec(x_14); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_1); +return x_19; +} +else +{ +uint8_t x_38; +x_38 = l_Lean_Expr_isMVar(x_14); +if (x_38 == 0) +{ +lean_dec(x_16); +lean_dec(x_14); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_1); +return x_19; +} +else +{ +lean_object* x_39; lean_object* x_40; lean_object* x_41; uint8_t x_42; +lean_free_object(x_19); +lean_inc(x_14); +x_39 = l_Lean_Expr_mvarId_x21(x_14); +x_40 = l_Lean_MVarId_isDelayedAssigned___at_Lean_Meta_CheckAssignment_checkApp___spec__2(x_39, x_5, x_6, x_7, x_8, x_9, x_10, x_33); +x_41 = lean_ctor_get(x_40, 0); +lean_inc(x_41); +x_42 = lean_unbox(x_41); +lean_dec(x_41); +if (x_42 == 0) +{ +lean_object* x_43; lean_object* x_44; +x_43 = lean_ctor_get(x_40, 1); +lean_inc(x_43); +lean_dec(x_40); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +x_44 = lean_infer_type(x_1, x_7, x_8, x_9, x_10, x_43); +if (lean_obj_tag(x_44) == 0) +{ +lean_object* x_45; lean_object* x_46; lean_object* x_47; +x_45 = lean_ctor_get(x_44, 0); +lean_inc(x_45); +x_46 = lean_ctor_get(x_44, 1); +lean_inc(x_46); +lean_dec(x_44); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_5); +x_47 = l_Lean_Meta_CheckAssignment_check(x_45, x_5, x_6, x_7, x_8, x_9, x_10, x_46); +if (lean_obj_tag(x_47) == 0) +{ +lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; uint8_t x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; +x_48 = lean_ctor_get(x_47, 0); +lean_inc(x_48); +x_49 = lean_ctor_get(x_47, 1); +lean_inc(x_49); +lean_dec(x_47); +x_50 = lean_ctor_get(x_5, 1); +lean_inc(x_50); +lean_dec(x_5); +x_51 = lean_ctor_get(x_50, 1); +lean_inc(x_51); +x_52 = lean_ctor_get(x_50, 4); +lean_inc(x_52); +lean_dec(x_50); +x_53 = 0; +x_54 = lean_box(0); +x_55 = lean_unsigned_to_nat(0u); +x_56 = l_Lean_Meta_mkFreshExprMVarAt(x_51, x_52, x_48, x_53, x_54, x_55, x_7, x_8, x_9, x_10, x_49); +x_57 = lean_ctor_get(x_56, 0); +lean_inc(x_57); +x_58 = lean_ctor_get(x_56, 1); +lean_inc(x_58); +lean_dec(x_56); +lean_inc(x_57); +x_59 = l_Lean_Meta_CheckAssignment_assignToConstFun(x_14, x_16, x_57, x_7, x_8, x_9, x_10, x_58); +if (lean_obj_tag(x_59) == 0) +{ +lean_object* x_60; uint8_t x_61; +x_60 = lean_ctor_get(x_59, 0); +lean_inc(x_60); +x_61 = lean_unbox(x_60); +lean_dec(x_60); +if (x_61 == 0) +{ +uint8_t x_62; +lean_dec(x_57); +x_62 = !lean_is_exclusive(x_59); +if (x_62 == 0) +{ +lean_object* x_63; +x_63 = lean_ctor_get(x_59, 0); +lean_dec(x_63); +lean_ctor_set_tag(x_59, 1); +lean_ctor_set(x_59, 0, x_27); +return x_59; +} +else +{ +lean_object* x_64; lean_object* x_65; +x_64 = lean_ctor_get(x_59, 1); +lean_inc(x_64); +lean_dec(x_59); +x_65 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_65, 0, x_27); +lean_ctor_set(x_65, 1, x_64); return x_65; } } else { -lean_object* x_66; -x_66 = lean_ctor_get(x_58, 0); -lean_inc(x_66); -if (lean_obj_tag(x_66) == 0) +uint8_t x_66; +lean_dec(x_27); +x_66 = !lean_is_exclusive(x_59); +if (x_66 == 0) { -uint8_t x_67; -lean_dec(x_55); -lean_dec(x_53); +lean_object* x_67; +x_67 = lean_ctor_get(x_59, 0); +lean_dec(x_67); +lean_ctor_set(x_59, 0, x_57); +return x_59; +} +else +{ +lean_object* x_68; lean_object* x_69; +x_68 = lean_ctor_get(x_59, 1); +lean_inc(x_68); +lean_dec(x_59); +x_69 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_69, 0, x_57); +lean_ctor_set(x_69, 1, x_68); +return x_69; +} +} +} +else +{ +uint8_t x_70; +lean_dec(x_57); +lean_dec(x_27); +x_70 = !lean_is_exclusive(x_59); +if (x_70 == 0) +{ +return x_59; +} +else +{ +lean_object* x_71; lean_object* x_72; lean_object* x_73; +x_71 = lean_ctor_get(x_59, 0); +x_72 = lean_ctor_get(x_59, 1); +lean_inc(x_72); +lean_inc(x_71); +lean_dec(x_59); +x_73 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_73, 0, x_71); +lean_ctor_set(x_73, 1, x_72); +return x_73; +} +} +} +else +{ +uint8_t x_74; +lean_dec(x_27); +lean_dec(x_16); +lean_dec(x_14); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_5); +x_74 = !lean_is_exclusive(x_47); +if (x_74 == 0) +{ +return x_47; +} +else +{ +lean_object* x_75; lean_object* x_76; lean_object* x_77; +x_75 = lean_ctor_get(x_47, 0); +x_76 = lean_ctor_get(x_47, 1); +lean_inc(x_76); +lean_inc(x_75); +lean_dec(x_47); +x_77 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_77, 0, x_75); +lean_ctor_set(x_77, 1, x_76); +return x_77; +} +} +} +else +{ +uint8_t x_78; +lean_dec(x_27); +lean_dec(x_16); +lean_dec(x_14); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); -lean_dec(x_1); -x_67 = !lean_is_exclusive(x_58); -if (x_67 == 0) +x_78 = !lean_is_exclusive(x_44); +if (x_78 == 0) { -lean_object* x_68; -x_68 = lean_ctor_get(x_58, 0); -lean_dec(x_68); -return x_58; +return x_44; } else { -lean_object* x_69; lean_object* x_70; -x_69 = lean_ctor_get(x_58, 1); -lean_inc(x_69); -lean_dec(x_58); -x_70 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_70, 0, x_66); -lean_ctor_set(x_70, 1, x_69); -return x_70; -} -} -else -{ -uint8_t x_71; -x_71 = !lean_is_exclusive(x_58); -if (x_71 == 0) -{ -lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; uint8_t x_76; -x_72 = lean_ctor_get(x_58, 1); -x_73 = lean_ctor_get(x_58, 0); -lean_dec(x_73); -x_74 = lean_ctor_get(x_66, 0); -lean_inc(x_74); -x_75 = l_Lean_Meta_CheckAssignment_throwOutOfScopeFVar___rarg___closed__1; -x_76 = lean_nat_dec_eq(x_75, x_74); -lean_dec(x_74); -if (x_76 == 0) -{ -lean_dec(x_55); -lean_dec(x_53); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_1); -return x_58; -} -else -{ -uint8_t x_77; -x_77 = l_Lean_Expr_isMVar(x_53); -if (x_77 == 0) -{ -lean_dec(x_55); -lean_dec(x_53); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_1); -return x_58; -} -else -{ -lean_object* x_78; lean_object* x_79; lean_object* x_80; uint8_t x_81; -lean_free_object(x_58); -lean_inc(x_53); -x_78 = l_Lean_Expr_mvarId_x21(x_53); -x_79 = l_Lean_MVarId_isDelayedAssigned___at_Lean_Meta_CheckAssignment_checkApp___spec__2(x_78, x_5, x_6, x_7, x_8, x_9, x_10, x_72); -x_80 = lean_ctor_get(x_79, 0); +lean_object* x_79; lean_object* x_80; lean_object* x_81; +x_79 = lean_ctor_get(x_44, 0); +x_80 = lean_ctor_get(x_44, 1); lean_inc(x_80); -x_81 = lean_unbox(x_80); -lean_dec(x_80); -if (x_81 == 0) +lean_inc(x_79); +lean_dec(x_44); +x_81 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_81, 0, x_79); +lean_ctor_set(x_81, 1, x_80); +return x_81; +} +} +} +else { -lean_object* x_82; lean_object* x_83; -x_82 = lean_ctor_get(x_79, 1); -lean_inc(x_82); -lean_dec(x_79); -lean_inc(x_10); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -x_83 = lean_infer_type(x_1, x_7, x_8, x_9, x_10, x_82); -if (lean_obj_tag(x_83) == 0) -{ -lean_object* x_84; lean_object* x_85; lean_object* x_86; -x_84 = lean_ctor_get(x_83, 0); -lean_inc(x_84); -x_85 = lean_ctor_get(x_83, 1); -lean_inc(x_85); -lean_dec(x_83); -lean_inc(x_10); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_5); -x_86 = l_Lean_Meta_CheckAssignment_check(x_84, x_5, x_6, x_7, x_8, x_9, x_10, x_85); -if (lean_obj_tag(x_86) == 0) -{ -lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; uint8_t x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; lean_object* x_98; -x_87 = lean_ctor_get(x_86, 0); -lean_inc(x_87); -x_88 = lean_ctor_get(x_86, 1); -lean_inc(x_88); -lean_dec(x_86); -x_89 = lean_ctor_get(x_5, 1); -lean_inc(x_89); +uint8_t x_82; +lean_dec(x_16); +lean_dec(x_14); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); lean_dec(x_5); -x_90 = lean_ctor_get(x_89, 1); -lean_inc(x_90); -x_91 = lean_ctor_get(x_89, 4); -lean_inc(x_91); -lean_dec(x_89); -x_92 = 0; -x_93 = lean_box(0); -x_94 = lean_unsigned_to_nat(0u); -x_95 = l_Lean_Meta_mkFreshExprMVarAt(x_90, x_91, x_87, x_92, x_93, x_94, x_7, x_8, x_9, x_10, x_88); -x_96 = lean_ctor_get(x_95, 0); -lean_inc(x_96); -x_97 = lean_ctor_get(x_95, 1); -lean_inc(x_97); +lean_dec(x_1); +x_82 = !lean_is_exclusive(x_40); +if (x_82 == 0) +{ +lean_object* x_83; +x_83 = lean_ctor_get(x_40, 0); +lean_dec(x_83); +lean_ctor_set_tag(x_40, 1); +lean_ctor_set(x_40, 0, x_27); +return x_40; +} +else +{ +lean_object* x_84; lean_object* x_85; +x_84 = lean_ctor_get(x_40, 1); +lean_inc(x_84); +lean_dec(x_40); +x_85 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_85, 0, x_27); +lean_ctor_set(x_85, 1, x_84); +return x_85; +} +} +} +} +} +else +{ +lean_object* x_86; lean_object* x_87; lean_object* x_88; uint8_t x_89; +x_86 = lean_ctor_get(x_19, 1); +lean_inc(x_86); +lean_dec(x_19); +x_87 = lean_ctor_get(x_27, 0); +lean_inc(x_87); +x_88 = l_Lean_Meta_CheckAssignment_throwOutOfScopeFVar___rarg___closed__1; +x_89 = lean_nat_dec_eq(x_88, x_87); +lean_dec(x_87); +if (x_89 == 0) +{ +lean_object* x_90; +lean_dec(x_16); +lean_dec(x_14); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_1); +x_90 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_90, 0, x_27); +lean_ctor_set(x_90, 1, x_86); +return x_90; +} +else +{ +uint8_t x_91; +x_91 = l_Lean_Expr_isMVar(x_14); +if (x_91 == 0) +{ +lean_object* x_92; +lean_dec(x_16); +lean_dec(x_14); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_1); +x_92 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_92, 0, x_27); +lean_ctor_set(x_92, 1, x_86); +return x_92; +} +else +{ +lean_object* x_93; lean_object* x_94; lean_object* x_95; uint8_t x_96; +lean_inc(x_14); +x_93 = l_Lean_Expr_mvarId_x21(x_14); +x_94 = l_Lean_MVarId_isDelayedAssigned___at_Lean_Meta_CheckAssignment_checkApp___spec__2(x_93, x_5, x_6, x_7, x_8, x_9, x_10, x_86); +x_95 = lean_ctor_get(x_94, 0); +lean_inc(x_95); +x_96 = lean_unbox(x_95); lean_dec(x_95); -lean_inc(x_96); -x_98 = l_Lean_Meta_CheckAssignment_assignToConstFun(x_53, x_55, x_96, x_7, x_8, x_9, x_10, x_97); +if (x_96 == 0) +{ +lean_object* x_97; lean_object* x_98; +x_97 = lean_ctor_get(x_94, 1); +lean_inc(x_97); +lean_dec(x_94); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +x_98 = lean_infer_type(x_1, x_7, x_8, x_9, x_10, x_97); if (lean_obj_tag(x_98) == 0) { -lean_object* x_99; uint8_t x_100; +lean_object* x_99; lean_object* x_100; lean_object* x_101; x_99 = lean_ctor_get(x_98, 0); lean_inc(x_99); -x_100 = lean_unbox(x_99); -lean_dec(x_99); -if (x_100 == 0) +x_100 = lean_ctor_get(x_98, 1); +lean_inc(x_100); +lean_dec(x_98); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_5); +x_101 = l_Lean_Meta_CheckAssignment_check(x_99, x_5, x_6, x_7, x_8, x_9, x_10, x_100); +if (lean_obj_tag(x_101) == 0) { -uint8_t x_101; -lean_dec(x_96); -x_101 = !lean_is_exclusive(x_98); -if (x_101 == 0) -{ -lean_object* x_102; -x_102 = lean_ctor_get(x_98, 0); -lean_dec(x_102); -lean_ctor_set_tag(x_98, 1); -lean_ctor_set(x_98, 0, x_66); -return x_98; -} -else -{ -lean_object* x_103; lean_object* x_104; -x_103 = lean_ctor_get(x_98, 1); +lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; lean_object* x_106; uint8_t x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; +x_102 = lean_ctor_get(x_101, 0); +lean_inc(x_102); +x_103 = lean_ctor_get(x_101, 1); lean_inc(x_103); -lean_dec(x_98); -x_104 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_104, 0, x_66); -lean_ctor_set(x_104, 1, x_103); -return x_104; -} -} -else -{ -uint8_t x_105; -lean_dec(x_66); -x_105 = !lean_is_exclusive(x_98); -if (x_105 == 0) -{ -lean_object* x_106; -x_106 = lean_ctor_get(x_98, 0); -lean_dec(x_106); -lean_ctor_set(x_98, 0, x_96); -return x_98; -} -else -{ -lean_object* x_107; lean_object* x_108; -x_107 = lean_ctor_get(x_98, 1); -lean_inc(x_107); -lean_dec(x_98); -x_108 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_108, 0, x_96); -lean_ctor_set(x_108, 1, x_107); -return x_108; -} -} -} -else -{ -uint8_t x_109; -lean_dec(x_96); -lean_dec(x_66); -x_109 = !lean_is_exclusive(x_98); -if (x_109 == 0) -{ -return x_98; -} -else -{ -lean_object* x_110; lean_object* x_111; lean_object* x_112; -x_110 = lean_ctor_get(x_98, 0); -x_111 = lean_ctor_get(x_98, 1); +lean_dec(x_101); +x_104 = lean_ctor_get(x_5, 1); +lean_inc(x_104); +lean_dec(x_5); +x_105 = lean_ctor_get(x_104, 1); +lean_inc(x_105); +x_106 = lean_ctor_get(x_104, 4); +lean_inc(x_106); +lean_dec(x_104); +x_107 = 0; +x_108 = lean_box(0); +x_109 = lean_unsigned_to_nat(0u); +x_110 = l_Lean_Meta_mkFreshExprMVarAt(x_105, x_106, x_102, x_107, x_108, x_109, x_7, x_8, x_9, x_10, x_103); +x_111 = lean_ctor_get(x_110, 0); lean_inc(x_111); -lean_inc(x_110); -lean_dec(x_98); -x_112 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_112, 0, x_110); -lean_ctor_set(x_112, 1, x_111); -return x_112; -} -} -} -else +x_112 = lean_ctor_get(x_110, 1); +lean_inc(x_112); +lean_dec(x_110); +lean_inc(x_111); +x_113 = l_Lean_Meta_CheckAssignment_assignToConstFun(x_14, x_16, x_111, x_7, x_8, x_9, x_10, x_112); +if (lean_obj_tag(x_113) == 0) { -uint8_t x_113; -lean_dec(x_66); -lean_dec(x_55); -lean_dec(x_53); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_5); -x_113 = !lean_is_exclusive(x_86); -if (x_113 == 0) -{ -return x_86; -} -else -{ -lean_object* x_114; lean_object* x_115; lean_object* x_116; -x_114 = lean_ctor_get(x_86, 0); -x_115 = lean_ctor_get(x_86, 1); -lean_inc(x_115); +lean_object* x_114; uint8_t x_115; +x_114 = lean_ctor_get(x_113, 0); lean_inc(x_114); -lean_dec(x_86); -x_116 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_116, 0, x_114); -lean_ctor_set(x_116, 1, x_115); -return x_116; +x_115 = lean_unbox(x_114); +lean_dec(x_114); +if (x_115 == 0) +{ +lean_object* x_116; lean_object* x_117; lean_object* x_118; +lean_dec(x_111); +x_116 = lean_ctor_get(x_113, 1); +lean_inc(x_116); +if (lean_is_exclusive(x_113)) { + lean_ctor_release(x_113, 0); + lean_ctor_release(x_113, 1); + x_117 = x_113; +} else { + lean_dec_ref(x_113); + x_117 = lean_box(0); } +if (lean_is_scalar(x_117)) { + x_118 = lean_alloc_ctor(1, 2, 0); +} else { + x_118 = x_117; + lean_ctor_set_tag(x_118, 1); } +lean_ctor_set(x_118, 0, x_27); +lean_ctor_set(x_118, 1, x_116); +return x_118; } else { -uint8_t x_117; -lean_dec(x_66); -lean_dec(x_55); -lean_dec(x_53); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -x_117 = !lean_is_exclusive(x_83); -if (x_117 == 0) -{ -return x_83; -} -else -{ -lean_object* x_118; lean_object* x_119; lean_object* x_120; -x_118 = lean_ctor_get(x_83, 0); -x_119 = lean_ctor_get(x_83, 1); +lean_object* x_119; lean_object* x_120; lean_object* x_121; +lean_dec(x_27); +x_119 = lean_ctor_get(x_113, 1); lean_inc(x_119); -lean_inc(x_118); -lean_dec(x_83); -x_120 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_120, 0, x_118); -lean_ctor_set(x_120, 1, x_119); -return x_120; +if (lean_is_exclusive(x_113)) { + lean_ctor_release(x_113, 0); + lean_ctor_release(x_113, 1); + x_120 = x_113; +} else { + lean_dec_ref(x_113); + x_120 = lean_box(0); } +if (lean_is_scalar(x_120)) { + x_121 = lean_alloc_ctor(0, 2, 0); +} else { + x_121 = x_120; +} +lean_ctor_set(x_121, 0, x_111); +lean_ctor_set(x_121, 1, x_119); +return x_121; } } else { -uint8_t x_121; -lean_dec(x_55); -lean_dec(x_53); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_1); -x_121 = !lean_is_exclusive(x_79); -if (x_121 == 0) -{ -lean_object* x_122; -x_122 = lean_ctor_get(x_79, 0); -lean_dec(x_122); -lean_ctor_set_tag(x_79, 1); -lean_ctor_set(x_79, 0, x_66); -return x_79; -} -else -{ -lean_object* x_123; lean_object* x_124; -x_123 = lean_ctor_get(x_79, 1); +lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; +lean_dec(x_111); +lean_dec(x_27); +x_122 = lean_ctor_get(x_113, 0); +lean_inc(x_122); +x_123 = lean_ctor_get(x_113, 1); lean_inc(x_123); -lean_dec(x_79); -x_124 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_124, 0, x_66); -lean_ctor_set(x_124, 1, x_123); -return x_124; -} +if (lean_is_exclusive(x_113)) { + lean_ctor_release(x_113, 0); + lean_ctor_release(x_113, 1); + x_124 = x_113; +} else { + lean_dec_ref(x_113); + x_124 = lean_box(0); } +if (lean_is_scalar(x_124)) { + x_125 = lean_alloc_ctor(1, 2, 0); +} else { + x_125 = x_124; } +lean_ctor_set(x_125, 0, x_122); +lean_ctor_set(x_125, 1, x_123); +return x_125; } } else { -lean_object* x_125; lean_object* x_126; lean_object* x_127; uint8_t x_128; -x_125 = lean_ctor_get(x_58, 1); -lean_inc(x_125); -lean_dec(x_58); -x_126 = lean_ctor_get(x_66, 0); -lean_inc(x_126); -x_127 = l_Lean_Meta_CheckAssignment_throwOutOfScopeFVar___rarg___closed__1; -x_128 = lean_nat_dec_eq(x_127, x_126); -lean_dec(x_126); -if (x_128 == 0) -{ -lean_object* x_129; -lean_dec(x_55); -lean_dec(x_53); +lean_object* x_126; lean_object* x_127; lean_object* x_128; lean_object* x_129; +lean_dec(x_27); +lean_dec(x_16); +lean_dec(x_14); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); -lean_dec(x_6); lean_dec(x_5); -lean_dec(x_1); -x_129 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_129, 0, x_66); -lean_ctor_set(x_129, 1, x_125); +x_126 = lean_ctor_get(x_101, 0); +lean_inc(x_126); +x_127 = lean_ctor_get(x_101, 1); +lean_inc(x_127); +if (lean_is_exclusive(x_101)) { + lean_ctor_release(x_101, 0); + lean_ctor_release(x_101, 1); + x_128 = x_101; +} else { + lean_dec_ref(x_101); + x_128 = lean_box(0); +} +if (lean_is_scalar(x_128)) { + x_129 = lean_alloc_ctor(1, 2, 0); +} else { + x_129 = x_128; +} +lean_ctor_set(x_129, 0, x_126); +lean_ctor_set(x_129, 1, x_127); return x_129; } +} else { -uint8_t x_130; -x_130 = l_Lean_Expr_isMVar(x_53); -if (x_130 == 0) +lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; +lean_dec(x_27); +lean_dec(x_16); +lean_dec(x_14); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +x_130 = lean_ctor_get(x_98, 0); +lean_inc(x_130); +x_131 = lean_ctor_get(x_98, 1); +lean_inc(x_131); +if (lean_is_exclusive(x_98)) { + lean_ctor_release(x_98, 0); + lean_ctor_release(x_98, 1); + x_132 = x_98; +} else { + lean_dec_ref(x_98); + x_132 = lean_box(0); +} +if (lean_is_scalar(x_132)) { + x_133 = lean_alloc_ctor(1, 2, 0); +} else { + x_133 = x_132; +} +lean_ctor_set(x_133, 0, x_130); +lean_ctor_set(x_133, 1, x_131); +return x_133; +} +} +else { -lean_object* x_131; -lean_dec(x_55); -lean_dec(x_53); +lean_object* x_134; lean_object* x_135; lean_object* x_136; +lean_dec(x_16); +lean_dec(x_14); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); @@ -19546,302 +18391,35 @@ lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_1); -x_131 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_131, 0, x_66); -lean_ctor_set(x_131, 1, x_125); -return x_131; -} -else -{ -lean_object* x_132; lean_object* x_133; lean_object* x_134; uint8_t x_135; -lean_inc(x_53); -x_132 = l_Lean_Expr_mvarId_x21(x_53); -x_133 = l_Lean_MVarId_isDelayedAssigned___at_Lean_Meta_CheckAssignment_checkApp___spec__2(x_132, x_5, x_6, x_7, x_8, x_9, x_10, x_125); -x_134 = lean_ctor_get(x_133, 0); +x_134 = lean_ctor_get(x_94, 1); lean_inc(x_134); -x_135 = lean_unbox(x_134); -lean_dec(x_134); -if (x_135 == 0) -{ -lean_object* x_136; lean_object* x_137; -x_136 = lean_ctor_get(x_133, 1); -lean_inc(x_136); -lean_dec(x_133); -lean_inc(x_10); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -x_137 = lean_infer_type(x_1, x_7, x_8, x_9, x_10, x_136); -if (lean_obj_tag(x_137) == 0) -{ -lean_object* x_138; lean_object* x_139; lean_object* x_140; -x_138 = lean_ctor_get(x_137, 0); -lean_inc(x_138); -x_139 = lean_ctor_get(x_137, 1); -lean_inc(x_139); -lean_dec(x_137); -lean_inc(x_10); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_5); -x_140 = l_Lean_Meta_CheckAssignment_check(x_138, x_5, x_6, x_7, x_8, x_9, x_10, x_139); -if (lean_obj_tag(x_140) == 0) -{ -lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; uint8_t x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; -x_141 = lean_ctor_get(x_140, 0); -lean_inc(x_141); -x_142 = lean_ctor_get(x_140, 1); -lean_inc(x_142); -lean_dec(x_140); -x_143 = lean_ctor_get(x_5, 1); -lean_inc(x_143); -lean_dec(x_5); -x_144 = lean_ctor_get(x_143, 1); -lean_inc(x_144); -x_145 = lean_ctor_get(x_143, 4); -lean_inc(x_145); -lean_dec(x_143); -x_146 = 0; -x_147 = lean_box(0); -x_148 = lean_unsigned_to_nat(0u); -x_149 = l_Lean_Meta_mkFreshExprMVarAt(x_144, x_145, x_141, x_146, x_147, x_148, x_7, x_8, x_9, x_10, x_142); -x_150 = lean_ctor_get(x_149, 0); -lean_inc(x_150); -x_151 = lean_ctor_get(x_149, 1); -lean_inc(x_151); -lean_dec(x_149); -lean_inc(x_150); -x_152 = l_Lean_Meta_CheckAssignment_assignToConstFun(x_53, x_55, x_150, x_7, x_8, x_9, x_10, x_151); -if (lean_obj_tag(x_152) == 0) -{ -lean_object* x_153; uint8_t x_154; -x_153 = lean_ctor_get(x_152, 0); -lean_inc(x_153); -x_154 = lean_unbox(x_153); -lean_dec(x_153); -if (x_154 == 0) -{ -lean_object* x_155; lean_object* x_156; lean_object* x_157; -lean_dec(x_150); -x_155 = lean_ctor_get(x_152, 1); -lean_inc(x_155); -if (lean_is_exclusive(x_152)) { - lean_ctor_release(x_152, 0); - lean_ctor_release(x_152, 1); - x_156 = x_152; +if (lean_is_exclusive(x_94)) { + lean_ctor_release(x_94, 0); + lean_ctor_release(x_94, 1); + x_135 = x_94; } else { - lean_dec_ref(x_152); - x_156 = lean_box(0); + lean_dec_ref(x_94); + x_135 = lean_box(0); } -if (lean_is_scalar(x_156)) { - x_157 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_135)) { + x_136 = lean_alloc_ctor(1, 2, 0); } else { - x_157 = x_156; - lean_ctor_set_tag(x_157, 1); + x_136 = x_135; + lean_ctor_set_tag(x_136, 1); +} +lean_ctor_set(x_136, 0, x_27); +lean_ctor_set(x_136, 1, x_134); +return x_136; +} } -lean_ctor_set(x_157, 0, x_66); -lean_ctor_set(x_157, 1, x_155); -return x_157; } -else -{ -lean_object* x_158; lean_object* x_159; lean_object* x_160; -lean_dec(x_66); -x_158 = lean_ctor_get(x_152, 1); -lean_inc(x_158); -if (lean_is_exclusive(x_152)) { - lean_ctor_release(x_152, 0); - lean_ctor_release(x_152, 1); - x_159 = x_152; -} else { - lean_dec_ref(x_152); - x_159 = lean_box(0); } -if (lean_is_scalar(x_159)) { - x_160 = lean_alloc_ctor(0, 2, 0); -} else { - x_160 = x_159; } -lean_ctor_set(x_160, 0, x_150); -lean_ctor_set(x_160, 1, x_158); -return x_160; } } else { -lean_object* x_161; lean_object* x_162; lean_object* x_163; lean_object* x_164; -lean_dec(x_150); -lean_dec(x_66); -x_161 = lean_ctor_get(x_152, 0); -lean_inc(x_161); -x_162 = lean_ctor_get(x_152, 1); -lean_inc(x_162); -if (lean_is_exclusive(x_152)) { - lean_ctor_release(x_152, 0); - lean_ctor_release(x_152, 1); - x_163 = x_152; -} else { - lean_dec_ref(x_152); - x_163 = lean_box(0); -} -if (lean_is_scalar(x_163)) { - x_164 = lean_alloc_ctor(1, 2, 0); -} else { - x_164 = x_163; -} -lean_ctor_set(x_164, 0, x_161); -lean_ctor_set(x_164, 1, x_162); -return x_164; -} -} -else -{ -lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; -lean_dec(x_66); -lean_dec(x_55); -lean_dec(x_53); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_5); -x_165 = lean_ctor_get(x_140, 0); -lean_inc(x_165); -x_166 = lean_ctor_get(x_140, 1); -lean_inc(x_166); -if (lean_is_exclusive(x_140)) { - lean_ctor_release(x_140, 0); - lean_ctor_release(x_140, 1); - x_167 = x_140; -} else { - lean_dec_ref(x_140); - x_167 = lean_box(0); -} -if (lean_is_scalar(x_167)) { - x_168 = lean_alloc_ctor(1, 2, 0); -} else { - x_168 = x_167; -} -lean_ctor_set(x_168, 0, x_165); -lean_ctor_set(x_168, 1, x_166); -return x_168; -} -} -else -{ -lean_object* x_169; lean_object* x_170; lean_object* x_171; lean_object* x_172; -lean_dec(x_66); -lean_dec(x_55); -lean_dec(x_53); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -x_169 = lean_ctor_get(x_137, 0); -lean_inc(x_169); -x_170 = lean_ctor_get(x_137, 1); -lean_inc(x_170); -if (lean_is_exclusive(x_137)) { - lean_ctor_release(x_137, 0); - lean_ctor_release(x_137, 1); - x_171 = x_137; -} else { - lean_dec_ref(x_137); - x_171 = lean_box(0); -} -if (lean_is_scalar(x_171)) { - x_172 = lean_alloc_ctor(1, 2, 0); -} else { - x_172 = x_171; -} -lean_ctor_set(x_172, 0, x_169); -lean_ctor_set(x_172, 1, x_170); -return x_172; -} -} -else -{ -lean_object* x_173; lean_object* x_174; lean_object* x_175; -lean_dec(x_55); -lean_dec(x_53); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_1); -x_173 = lean_ctor_get(x_133, 1); -lean_inc(x_173); -if (lean_is_exclusive(x_133)) { - lean_ctor_release(x_133, 0); - lean_ctor_release(x_133, 1); - x_174 = x_133; -} else { - lean_dec_ref(x_133); - x_174 = lean_box(0); -} -if (lean_is_scalar(x_174)) { - x_175 = lean_alloc_ctor(1, 2, 0); -} else { - x_175 = x_174; - lean_ctor_set_tag(x_175, 1); -} -lean_ctor_set(x_175, 0, x_66); -lean_ctor_set(x_175, 1, x_173); -return x_175; -} -} -} -} -} -} -} -block_192: -{ -lean_object* x_178; lean_object* x_179; -lean_dec(x_177); -lean_inc(x_2); -x_178 = l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_CheckAssignment_findCached_x3f(x_2, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -x_179 = lean_ctor_get(x_178, 0); -lean_inc(x_179); -if (lean_obj_tag(x_179) == 0) -{ -lean_object* x_180; lean_object* x_181; -x_180 = lean_ctor_get(x_178, 1); -lean_inc(x_180); -lean_dec(x_178); -lean_inc(x_10); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_2); -x_181 = l_Lean_Meta_CheckAssignment_checkMVar(x_2, x_5, x_6, x_7, x_8, x_9, x_10, x_180); -if (lean_obj_tag(x_181) == 0) -{ -lean_object* x_182; lean_object* x_183; lean_object* x_184; lean_object* x_185; -x_182 = lean_ctor_get(x_181, 0); -lean_inc(x_182); -x_183 = lean_ctor_get(x_181, 1); -lean_inc(x_183); -lean_dec(x_181); -lean_inc(x_182); -x_184 = l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_CheckAssignment_cache(x_2, x_182, x_5, x_6, x_7, x_8, x_9, x_10, x_183); -x_185 = lean_ctor_get(x_184, 1); -lean_inc(x_185); -lean_dec(x_184); -x_53 = x_182; -x_54 = x_185; -goto block_176; -} -else -{ -uint8_t x_186; +uint8_t x_137; lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); @@ -19849,1047 +18427,907 @@ lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_3); -lean_dec(x_2); lean_dec(x_1); -x_186 = !lean_is_exclusive(x_181); -if (x_186 == 0) +x_137 = !lean_is_exclusive(x_13); +if (x_137 == 0) { -return x_181; +return x_13; } else { -lean_object* x_187; lean_object* x_188; lean_object* x_189; -x_187 = lean_ctor_get(x_181, 0); -x_188 = lean_ctor_get(x_181, 1); -lean_inc(x_188); -lean_inc(x_187); -lean_dec(x_181); -x_189 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_189, 0, x_187); -lean_ctor_set(x_189, 1, x_188); -return x_189; +lean_object* x_138; lean_object* x_139; lean_object* x_140; +x_138 = lean_ctor_get(x_13, 0); +x_139 = lean_ctor_get(x_13, 1); +lean_inc(x_139); +lean_inc(x_138); +lean_dec(x_13); +x_140 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_140, 0, x_138); +lean_ctor_set(x_140, 1, x_139); +return x_140; +} +} +} +block_165: +{ +lean_object* x_143; +lean_dec(x_142); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +x_143 = l_Lean_Meta_CheckAssignment_check(x_2, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +if (lean_obj_tag(x_143) == 0) +{ +lean_object* x_144; lean_object* x_145; lean_object* x_146; size_t x_147; size_t x_148; lean_object* x_149; +x_144 = lean_ctor_get(x_143, 0); +lean_inc(x_144); +x_145 = lean_ctor_get(x_143, 1); +lean_inc(x_145); +lean_dec(x_143); +x_146 = lean_array_get_size(x_3); +x_147 = lean_usize_of_nat(x_146); +lean_dec(x_146); +x_148 = 0; +x_149 = l_Array_mapMUnsafe_map___at_Lean_Meta_CheckAssignment_checkApp___spec__1(x_147, x_148, x_3, x_5, x_6, x_7, x_8, x_9, x_10, x_145); +if (lean_obj_tag(x_149) == 0) +{ +uint8_t x_150; +x_150 = !lean_is_exclusive(x_149); +if (x_150 == 0) +{ +lean_object* x_151; lean_object* x_152; +x_151 = lean_ctor_get(x_149, 0); +x_152 = l_Lean_mkAppN(x_144, x_151); +lean_ctor_set(x_149, 0, x_152); +return x_149; +} +else +{ +lean_object* x_153; lean_object* x_154; lean_object* x_155; lean_object* x_156; +x_153 = lean_ctor_get(x_149, 0); +x_154 = lean_ctor_get(x_149, 1); +lean_inc(x_154); +lean_inc(x_153); +lean_dec(x_149); +x_155 = l_Lean_mkAppN(x_144, x_153); +x_156 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_156, 0, x_155); +lean_ctor_set(x_156, 1, x_154); +return x_156; +} +} +else +{ +uint8_t x_157; +lean_dec(x_144); +x_157 = !lean_is_exclusive(x_149); +if (x_157 == 0) +{ +return x_149; +} +else +{ +lean_object* x_158; lean_object* x_159; lean_object* x_160; +x_158 = lean_ctor_get(x_149, 0); +x_159 = lean_ctor_get(x_149, 1); +lean_inc(x_159); +lean_inc(x_158); +lean_dec(x_149); +x_160 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_160, 0, x_158); +lean_ctor_set(x_160, 1, x_159); +return x_160; } } } else { -lean_object* x_190; lean_object* x_191; -lean_dec(x_2); -x_190 = lean_ctor_get(x_178, 1); -lean_inc(x_190); -lean_dec(x_178); -x_191 = lean_ctor_get(x_179, 0); -lean_inc(x_191); -lean_dec(x_179); -x_53 = x_191; -x_54 = x_190; -goto block_176; +uint8_t x_161; +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_3); +x_161 = !lean_is_exclusive(x_143); +if (x_161 == 0) +{ +return x_143; +} +else +{ +lean_object* x_162; lean_object* x_163; lean_object* x_164; +x_162 = lean_ctor_get(x_143, 0); +x_163 = lean_ctor_get(x_143, 1); +lean_inc(x_163); +lean_inc(x_162); +lean_dec(x_143); +x_164 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_164, 0, x_162); +lean_ctor_set(x_164, 1, x_163); +return x_164; } } } } case 1: { -lean_object* x_214; lean_object* x_254; uint8_t x_400; +lean_object* x_182; lean_object* x_312; uint8_t x_336; lean_dec(x_4); -x_400 = l_Lean_Expr_isMVar(x_2); -if (x_400 == 0) +x_336 = l_Lean_Expr_isMVar(x_2); +if (x_336 == 0) { -lean_object* x_401; +lean_object* x_337; lean_dec(x_1); -x_401 = lean_box(0); -x_214 = x_401; -goto block_253; +x_337 = lean_box(0); +x_312 = x_337; +goto block_335; } else { -lean_object* x_402; uint8_t x_403; -x_402 = lean_ctor_get(x_7, 0); -lean_inc(x_402); -x_403 = lean_ctor_get_uint8(x_402, 1); -lean_dec(x_402); -if (x_403 == 0) +lean_object* x_338; uint8_t x_339; +x_338 = lean_ctor_get(x_7, 0); +lean_inc(x_338); +x_339 = lean_ctor_get_uint8(x_338, 1); +lean_dec(x_338); +if (x_339 == 0) { -lean_object* x_404; +lean_object* x_340; lean_dec(x_1); -x_404 = lean_box(0); -x_214 = x_404; -goto block_253; +x_340 = lean_box(0); +x_312 = x_340; +goto block_335; } else { -lean_object* x_405; lean_object* x_406; uint8_t x_407; -x_405 = lean_array_get_size(x_3); -x_406 = lean_unsigned_to_nat(0u); -x_407 = lean_nat_dec_lt(x_406, x_405); -if (x_407 == 0) +lean_object* x_341; lean_object* x_342; uint8_t x_343; +x_341 = lean_array_get_size(x_3); +x_342 = lean_unsigned_to_nat(0u); +x_343 = lean_nat_dec_lt(x_342, x_341); +if (x_343 == 0) { -lean_object* x_408; -lean_dec(x_405); -x_408 = lean_box(0); -x_254 = x_408; -goto block_399; +lean_object* x_344; +lean_dec(x_341); +x_344 = lean_box(0); +x_182 = x_344; +goto block_311; } else { -uint8_t x_409; -x_409 = lean_nat_dec_le(x_405, x_405); -if (x_409 == 0) +uint8_t x_345; +x_345 = lean_nat_dec_le(x_341, x_341); +if (x_345 == 0) { -lean_object* x_410; -lean_dec(x_405); -x_410 = lean_box(0); -x_254 = x_410; -goto block_399; +lean_object* x_346; +lean_dec(x_341); +x_346 = lean_box(0); +x_182 = x_346; +goto block_311; } else { -size_t x_411; size_t x_412; uint8_t x_413; -x_411 = 0; -x_412 = lean_usize_of_nat(x_405); -lean_dec(x_405); -x_413 = l_Array_anyMUnsafe_any___at_Lean_Meta_CheckAssignment_checkApp___spec__3(x_3, x_411, x_412); -if (x_413 == 0) +size_t x_347; size_t x_348; uint8_t x_349; +x_347 = 0; +x_348 = lean_usize_of_nat(x_341); +lean_dec(x_341); +x_349 = l_Array_anyMUnsafe_any___at_Lean_Meta_CheckAssignment_checkApp___spec__3(x_3, x_347, x_348); +if (x_349 == 0) { -lean_object* x_414; -x_414 = lean_box(0); -x_254 = x_414; -goto block_399; +lean_object* x_350; +x_350 = lean_box(0); +x_182 = x_350; +goto block_311; } else { -lean_object* x_415; +lean_object* x_351; lean_dec(x_1); -x_415 = lean_box(0); -x_214 = x_415; -goto block_253; +x_351 = lean_box(0); +x_312 = x_351; +goto block_335; } } } } } -block_253: +block_311: { -lean_object* x_215; lean_object* x_216; lean_object* x_233; uint8_t x_249; +lean_object* x_183; +lean_dec(x_182); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +x_183 = l_Lean_Meta_CheckAssignment_check(x_2, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +if (lean_obj_tag(x_183) == 0) +{ +lean_object* x_184; lean_object* x_185; lean_object* x_186; size_t x_187; size_t x_188; lean_object* x_189; +x_184 = lean_ctor_get(x_183, 0); +lean_inc(x_184); +x_185 = lean_ctor_get(x_183, 1); +lean_inc(x_185); +lean_dec(x_183); +x_186 = lean_array_get_size(x_3); +x_187 = lean_usize_of_nat(x_186); +x_188 = 0; +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +x_189 = l_Array_mapMUnsafe_map___at_Lean_Meta_CheckAssignment_checkApp___spec__1(x_187, x_188, x_3, x_5, x_6, x_7, x_8, x_9, x_10, x_185); +if (lean_obj_tag(x_189) == 0) +{ +uint8_t x_190; +lean_dec(x_186); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_1); +x_190 = !lean_is_exclusive(x_189); +if (x_190 == 0) +{ +lean_object* x_191; lean_object* x_192; +x_191 = lean_ctor_get(x_189, 0); +x_192 = l_Lean_mkAppN(x_184, x_191); +lean_ctor_set(x_189, 0, x_192); +return x_189; +} +else +{ +lean_object* x_193; lean_object* x_194; lean_object* x_195; lean_object* x_196; +x_193 = lean_ctor_get(x_189, 0); +x_194 = lean_ctor_get(x_189, 1); +lean_inc(x_194); +lean_inc(x_193); +lean_dec(x_189); +x_195 = l_Lean_mkAppN(x_184, x_193); +x_196 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_196, 0, x_195); +lean_ctor_set(x_196, 1, x_194); +return x_196; +} +} +else +{ +lean_object* x_197; +x_197 = lean_ctor_get(x_189, 0); +lean_inc(x_197); +if (lean_obj_tag(x_197) == 0) +{ +uint8_t x_198; +lean_dec(x_186); +lean_dec(x_184); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_1); +x_198 = !lean_is_exclusive(x_189); +if (x_198 == 0) +{ +lean_object* x_199; +x_199 = lean_ctor_get(x_189, 0); +lean_dec(x_199); +return x_189; +} +else +{ +lean_object* x_200; lean_object* x_201; +x_200 = lean_ctor_get(x_189, 1); +lean_inc(x_200); +lean_dec(x_189); +x_201 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_201, 0, x_197); +lean_ctor_set(x_201, 1, x_200); +return x_201; +} +} +else +{ +uint8_t x_202; +x_202 = !lean_is_exclusive(x_189); +if (x_202 == 0) +{ +lean_object* x_203; lean_object* x_204; lean_object* x_205; lean_object* x_206; uint8_t x_207; +x_203 = lean_ctor_get(x_189, 1); +x_204 = lean_ctor_get(x_189, 0); +lean_dec(x_204); +x_205 = lean_ctor_get(x_197, 0); +lean_inc(x_205); +x_206 = l_Lean_Meta_CheckAssignment_throwOutOfScopeFVar___rarg___closed__1; +x_207 = lean_nat_dec_eq(x_206, x_205); +lean_dec(x_205); +if (x_207 == 0) +{ +lean_dec(x_186); +lean_dec(x_184); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_1); +return x_189; +} +else +{ +uint8_t x_208; +x_208 = l_Lean_Expr_isMVar(x_184); +if (x_208 == 0) +{ +lean_dec(x_186); +lean_dec(x_184); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_1); +return x_189; +} +else +{ +lean_object* x_209; lean_object* x_210; lean_object* x_211; uint8_t x_212; +lean_free_object(x_189); +lean_inc(x_184); +x_209 = l_Lean_Expr_mvarId_x21(x_184); +x_210 = l_Lean_MVarId_isDelayedAssigned___at_Lean_Meta_CheckAssignment_checkApp___spec__2(x_209, x_5, x_6, x_7, x_8, x_9, x_10, x_203); +x_211 = lean_ctor_get(x_210, 0); +lean_inc(x_211); +x_212 = lean_unbox(x_211); +lean_dec(x_211); +if (x_212 == 0) +{ +lean_object* x_213; lean_object* x_214; +x_213 = lean_ctor_get(x_210, 1); +lean_inc(x_213); +lean_dec(x_210); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +x_214 = lean_infer_type(x_1, x_7, x_8, x_9, x_10, x_213); +if (lean_obj_tag(x_214) == 0) +{ +lean_object* x_215; lean_object* x_216; lean_object* x_217; +x_215 = lean_ctor_get(x_214, 0); +lean_inc(x_215); +x_216 = lean_ctor_get(x_214, 1); +lean_inc(x_216); lean_dec(x_214); -x_249 = l_Lean_Expr_hasExprMVar(x_2); -if (x_249 == 0) +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_5); +x_217 = l_Lean_Meta_CheckAssignment_check(x_215, x_5, x_6, x_7, x_8, x_9, x_10, x_216); +if (lean_obj_tag(x_217) == 0) { -uint8_t x_250; -x_250 = l_Lean_Expr_hasFVar(x_2); -if (x_250 == 0) -{ -x_215 = x_2; -x_216 = x_11; -goto block_232; -} -else -{ -lean_object* x_251; -x_251 = lean_box(0); -x_233 = x_251; -goto block_248; -} -} -else -{ -lean_object* x_252; -x_252 = lean_box(0); -x_233 = x_252; -goto block_248; -} -block_232: -{ -lean_object* x_217; size_t x_218; size_t x_219; lean_object* x_220; -x_217 = lean_array_get_size(x_3); -x_218 = lean_usize_of_nat(x_217); +lean_object* x_218; lean_object* x_219; lean_object* x_220; lean_object* x_221; lean_object* x_222; uint8_t x_223; lean_object* x_224; lean_object* x_225; lean_object* x_226; lean_object* x_227; lean_object* x_228; lean_object* x_229; +x_218 = lean_ctor_get(x_217, 0); +lean_inc(x_218); +x_219 = lean_ctor_get(x_217, 1); +lean_inc(x_219); lean_dec(x_217); -x_219 = 0; -x_220 = l_Array_mapMUnsafe_map___at_Lean_Meta_CheckAssignment_checkApp___spec__1(x_218, x_219, x_3, x_5, x_6, x_7, x_8, x_9, x_10, x_216); -if (lean_obj_tag(x_220) == 0) -{ -uint8_t x_221; -x_221 = !lean_is_exclusive(x_220); -if (x_221 == 0) -{ -lean_object* x_222; lean_object* x_223; -x_222 = lean_ctor_get(x_220, 0); -x_223 = l_Lean_mkAppN(x_215, x_222); -lean_ctor_set(x_220, 0, x_223); -return x_220; -} -else -{ -lean_object* x_224; lean_object* x_225; lean_object* x_226; lean_object* x_227; -x_224 = lean_ctor_get(x_220, 0); -x_225 = lean_ctor_get(x_220, 1); -lean_inc(x_225); -lean_inc(x_224); +x_220 = lean_ctor_get(x_5, 1); +lean_inc(x_220); +lean_dec(x_5); +x_221 = lean_ctor_get(x_220, 1); +lean_inc(x_221); +x_222 = lean_ctor_get(x_220, 4); +lean_inc(x_222); lean_dec(x_220); -x_226 = l_Lean_mkAppN(x_215, x_224); -x_227 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_227, 0, x_226); -lean_ctor_set(x_227, 1, x_225); -return x_227; -} -} -else +x_223 = 0; +x_224 = lean_box(0); +x_225 = lean_unsigned_to_nat(0u); +x_226 = l_Lean_Meta_mkFreshExprMVarAt(x_221, x_222, x_218, x_223, x_224, x_225, x_7, x_8, x_9, x_10, x_219); +x_227 = lean_ctor_get(x_226, 0); +lean_inc(x_227); +x_228 = lean_ctor_get(x_226, 1); +lean_inc(x_228); +lean_dec(x_226); +lean_inc(x_227); +x_229 = l_Lean_Meta_CheckAssignment_assignToConstFun(x_184, x_186, x_227, x_7, x_8, x_9, x_10, x_228); +if (lean_obj_tag(x_229) == 0) { -uint8_t x_228; -lean_dec(x_215); -x_228 = !lean_is_exclusive(x_220); -if (x_228 == 0) -{ -return x_220; -} -else -{ -lean_object* x_229; lean_object* x_230; lean_object* x_231; -x_229 = lean_ctor_get(x_220, 0); -x_230 = lean_ctor_get(x_220, 1); +lean_object* x_230; uint8_t x_231; +x_230 = lean_ctor_get(x_229, 0); lean_inc(x_230); -lean_inc(x_229); -lean_dec(x_220); -x_231 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_231, 0, x_229); -lean_ctor_set(x_231, 1, x_230); -return x_231; +x_231 = lean_unbox(x_230); +lean_dec(x_230); +if (x_231 == 0) +{ +uint8_t x_232; +lean_dec(x_227); +x_232 = !lean_is_exclusive(x_229); +if (x_232 == 0) +{ +lean_object* x_233; +x_233 = lean_ctor_get(x_229, 0); +lean_dec(x_233); +lean_ctor_set_tag(x_229, 1); +lean_ctor_set(x_229, 0, x_197); +return x_229; } -} -} -block_248: +else { lean_object* x_234; lean_object* x_235; -lean_dec(x_233); -lean_inc(x_2); -x_234 = l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_CheckAssignment_findCached_x3f(x_2, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -x_235 = lean_ctor_get(x_234, 0); -lean_inc(x_235); -if (lean_obj_tag(x_235) == 0) -{ -lean_object* x_236; lean_object* x_237; -x_236 = lean_ctor_get(x_234, 1); -lean_inc(x_236); -lean_dec(x_234); -lean_inc(x_10); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_2); -x_237 = l_Lean_Meta_CheckAssignment_check(x_2, x_5, x_6, x_7, x_8, x_9, x_10, x_236); -if (lean_obj_tag(x_237) == 0) -{ -lean_object* x_238; lean_object* x_239; lean_object* x_240; lean_object* x_241; -x_238 = lean_ctor_get(x_237, 0); -lean_inc(x_238); -x_239 = lean_ctor_get(x_237, 1); -lean_inc(x_239); -lean_dec(x_237); -lean_inc(x_238); -x_240 = l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_CheckAssignment_cache(x_2, x_238, x_5, x_6, x_7, x_8, x_9, x_10, x_239); -x_241 = lean_ctor_get(x_240, 1); -lean_inc(x_241); -lean_dec(x_240); -x_215 = x_238; -x_216 = x_241; -goto block_232; +x_234 = lean_ctor_get(x_229, 1); +lean_inc(x_234); +lean_dec(x_229); +x_235 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_235, 0, x_197); +lean_ctor_set(x_235, 1, x_234); +return x_235; +} } else { -uint8_t x_242; +uint8_t x_236; +lean_dec(x_197); +x_236 = !lean_is_exclusive(x_229); +if (x_236 == 0) +{ +lean_object* x_237; +x_237 = lean_ctor_get(x_229, 0); +lean_dec(x_237); +lean_ctor_set(x_229, 0, x_227); +return x_229; +} +else +{ +lean_object* x_238; lean_object* x_239; +x_238 = lean_ctor_get(x_229, 1); +lean_inc(x_238); +lean_dec(x_229); +x_239 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_239, 0, x_227); +lean_ctor_set(x_239, 1, x_238); +return x_239; +} +} +} +else +{ +uint8_t x_240; +lean_dec(x_227); +lean_dec(x_197); +x_240 = !lean_is_exclusive(x_229); +if (x_240 == 0) +{ +return x_229; +} +else +{ +lean_object* x_241; lean_object* x_242; lean_object* x_243; +x_241 = lean_ctor_get(x_229, 0); +x_242 = lean_ctor_get(x_229, 1); +lean_inc(x_242); +lean_inc(x_241); +lean_dec(x_229); +x_243 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_243, 0, x_241); +lean_ctor_set(x_243, 1, x_242); +return x_243; +} +} +} +else +{ +uint8_t x_244; +lean_dec(x_197); +lean_dec(x_186); +lean_dec(x_184); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_5); +x_244 = !lean_is_exclusive(x_217); +if (x_244 == 0) +{ +return x_217; +} +else +{ +lean_object* x_245; lean_object* x_246; lean_object* x_247; +x_245 = lean_ctor_get(x_217, 0); +x_246 = lean_ctor_get(x_217, 1); +lean_inc(x_246); +lean_inc(x_245); +lean_dec(x_217); +x_247 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_247, 0, x_245); +lean_ctor_set(x_247, 1, x_246); +return x_247; +} +} +} +else +{ +uint8_t x_248; +lean_dec(x_197); +lean_dec(x_186); +lean_dec(x_184); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); -lean_dec(x_3); -lean_dec(x_2); -x_242 = !lean_is_exclusive(x_237); -if (x_242 == 0) +x_248 = !lean_is_exclusive(x_214); +if (x_248 == 0) { -return x_237; +return x_214; } else { -lean_object* x_243; lean_object* x_244; lean_object* x_245; -x_243 = lean_ctor_get(x_237, 0); -x_244 = lean_ctor_get(x_237, 1); -lean_inc(x_244); -lean_inc(x_243); -lean_dec(x_237); -x_245 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_245, 0, x_243); -lean_ctor_set(x_245, 1, x_244); -return x_245; +lean_object* x_249; lean_object* x_250; lean_object* x_251; +x_249 = lean_ctor_get(x_214, 0); +x_250 = lean_ctor_get(x_214, 1); +lean_inc(x_250); +lean_inc(x_249); +lean_dec(x_214); +x_251 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_251, 0, x_249); +lean_ctor_set(x_251, 1, x_250); +return x_251; } } } else { -lean_object* x_246; lean_object* x_247; -lean_dec(x_2); -x_246 = lean_ctor_get(x_234, 1); -lean_inc(x_246); -lean_dec(x_234); -x_247 = lean_ctor_get(x_235, 0); -lean_inc(x_247); -lean_dec(x_235); -x_215 = x_247; -x_216 = x_246; -goto block_232; -} -} -} -block_399: +uint8_t x_252; +lean_dec(x_186); +lean_dec(x_184); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_1); +x_252 = !lean_is_exclusive(x_210); +if (x_252 == 0) { -lean_object* x_255; lean_object* x_256; lean_object* x_379; uint8_t x_395; -lean_dec(x_254); -x_395 = l_Lean_Expr_hasExprMVar(x_2); -if (x_395 == 0) -{ -uint8_t x_396; -x_396 = l_Lean_Expr_hasFVar(x_2); -if (x_396 == 0) -{ -x_255 = x_2; -x_256 = x_11; -goto block_378; +lean_object* x_253; +x_253 = lean_ctor_get(x_210, 0); +lean_dec(x_253); +lean_ctor_set_tag(x_210, 1); +lean_ctor_set(x_210, 0, x_197); +return x_210; } else { -lean_object* x_397; -x_397 = lean_box(0); -x_379 = x_397; -goto block_394; +lean_object* x_254; lean_object* x_255; +x_254 = lean_ctor_get(x_210, 1); +lean_inc(x_254); +lean_dec(x_210); +x_255 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_255, 0, x_197); +lean_ctor_set(x_255, 1, x_254); +return x_255; +} +} +} } } else { -lean_object* x_398; -x_398 = lean_box(0); -x_379 = x_398; -goto block_394; -} -block_378: +lean_object* x_256; lean_object* x_257; lean_object* x_258; uint8_t x_259; +x_256 = lean_ctor_get(x_189, 1); +lean_inc(x_256); +lean_dec(x_189); +x_257 = lean_ctor_get(x_197, 0); +lean_inc(x_257); +x_258 = l_Lean_Meta_CheckAssignment_throwOutOfScopeFVar___rarg___closed__1; +x_259 = lean_nat_dec_eq(x_258, x_257); +lean_dec(x_257); +if (x_259 == 0) { -lean_object* x_257; size_t x_258; size_t x_259; lean_object* x_260; -x_257 = lean_array_get_size(x_3); -x_258 = lean_usize_of_nat(x_257); -x_259 = 0; -lean_inc(x_10); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_6); -lean_inc(x_5); -x_260 = l_Array_mapMUnsafe_map___at_Lean_Meta_CheckAssignment_checkApp___spec__1(x_258, x_259, x_3, x_5, x_6, x_7, x_8, x_9, x_10, x_256); -if (lean_obj_tag(x_260) == 0) +lean_object* x_260; +lean_dec(x_186); +lean_dec(x_184); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_1); +x_260 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_260, 0, x_197); +lean_ctor_set(x_260, 1, x_256); +return x_260; +} +else { uint8_t x_261; -lean_dec(x_257); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_1); -x_261 = !lean_is_exclusive(x_260); +x_261 = l_Lean_Expr_isMVar(x_184); if (x_261 == 0) { -lean_object* x_262; lean_object* x_263; -x_262 = lean_ctor_get(x_260, 0); -x_263 = l_Lean_mkAppN(x_255, x_262); -lean_ctor_set(x_260, 0, x_263); -return x_260; +lean_object* x_262; +lean_dec(x_186); +lean_dec(x_184); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_1); +x_262 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_262, 0, x_197); +lean_ctor_set(x_262, 1, x_256); +return x_262; } else { -lean_object* x_264; lean_object* x_265; lean_object* x_266; lean_object* x_267; -x_264 = lean_ctor_get(x_260, 0); -x_265 = lean_ctor_get(x_260, 1); +lean_object* x_263; lean_object* x_264; lean_object* x_265; uint8_t x_266; +lean_inc(x_184); +x_263 = l_Lean_Expr_mvarId_x21(x_184); +x_264 = l_Lean_MVarId_isDelayedAssigned___at_Lean_Meta_CheckAssignment_checkApp___spec__2(x_263, x_5, x_6, x_7, x_8, x_9, x_10, x_256); +x_265 = lean_ctor_get(x_264, 0); lean_inc(x_265); -lean_inc(x_264); -lean_dec(x_260); -x_266 = l_Lean_mkAppN(x_255, x_264); -x_267 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_267, 0, x_266); -lean_ctor_set(x_267, 1, x_265); -return x_267; -} -} -else +x_266 = lean_unbox(x_265); +lean_dec(x_265); +if (x_266 == 0) { -lean_object* x_268; -x_268 = lean_ctor_get(x_260, 0); -lean_inc(x_268); -if (lean_obj_tag(x_268) == 0) -{ -uint8_t x_269; -lean_dec(x_257); -lean_dec(x_255); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_1); -x_269 = !lean_is_exclusive(x_260); -if (x_269 == 0) -{ -lean_object* x_270; -x_270 = lean_ctor_get(x_260, 0); -lean_dec(x_270); -return x_260; -} -else -{ -lean_object* x_271; lean_object* x_272; -x_271 = lean_ctor_get(x_260, 1); -lean_inc(x_271); -lean_dec(x_260); -x_272 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_272, 0, x_268); -lean_ctor_set(x_272, 1, x_271); -return x_272; -} -} -else -{ -uint8_t x_273; -x_273 = !lean_is_exclusive(x_260); -if (x_273 == 0) -{ -lean_object* x_274; lean_object* x_275; lean_object* x_276; lean_object* x_277; uint8_t x_278; -x_274 = lean_ctor_get(x_260, 1); -x_275 = lean_ctor_get(x_260, 0); -lean_dec(x_275); -x_276 = lean_ctor_get(x_268, 0); -lean_inc(x_276); -x_277 = l_Lean_Meta_CheckAssignment_throwOutOfScopeFVar___rarg___closed__1; -x_278 = lean_nat_dec_eq(x_277, x_276); -lean_dec(x_276); -if (x_278 == 0) -{ -lean_dec(x_257); -lean_dec(x_255); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_1); -return x_260; -} -else -{ -uint8_t x_279; -x_279 = l_Lean_Expr_isMVar(x_255); -if (x_279 == 0) -{ -lean_dec(x_257); -lean_dec(x_255); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_1); -return x_260; -} -else -{ -lean_object* x_280; lean_object* x_281; lean_object* x_282; uint8_t x_283; -lean_free_object(x_260); -lean_inc(x_255); -x_280 = l_Lean_Expr_mvarId_x21(x_255); -x_281 = l_Lean_MVarId_isDelayedAssigned___at_Lean_Meta_CheckAssignment_checkApp___spec__2(x_280, x_5, x_6, x_7, x_8, x_9, x_10, x_274); -x_282 = lean_ctor_get(x_281, 0); -lean_inc(x_282); -x_283 = lean_unbox(x_282); -lean_dec(x_282); -if (x_283 == 0) -{ -lean_object* x_284; lean_object* x_285; -x_284 = lean_ctor_get(x_281, 1); -lean_inc(x_284); -lean_dec(x_281); +lean_object* x_267; lean_object* x_268; +x_267 = lean_ctor_get(x_264, 1); +lean_inc(x_267); +lean_dec(x_264); lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); -x_285 = lean_infer_type(x_1, x_7, x_8, x_9, x_10, x_284); -if (lean_obj_tag(x_285) == 0) +x_268 = lean_infer_type(x_1, x_7, x_8, x_9, x_10, x_267); +if (lean_obj_tag(x_268) == 0) { -lean_object* x_286; lean_object* x_287; lean_object* x_288; -x_286 = lean_ctor_get(x_285, 0); -lean_inc(x_286); -x_287 = lean_ctor_get(x_285, 1); -lean_inc(x_287); -lean_dec(x_285); +lean_object* x_269; lean_object* x_270; lean_object* x_271; +x_269 = lean_ctor_get(x_268, 0); +lean_inc(x_269); +x_270 = lean_ctor_get(x_268, 1); +lean_inc(x_270); +lean_dec(x_268); lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); lean_inc(x_5); -x_288 = l_Lean_Meta_CheckAssignment_check(x_286, x_5, x_6, x_7, x_8, x_9, x_10, x_287); -if (lean_obj_tag(x_288) == 0) +x_271 = l_Lean_Meta_CheckAssignment_check(x_269, x_5, x_6, x_7, x_8, x_9, x_10, x_270); +if (lean_obj_tag(x_271) == 0) { -lean_object* x_289; lean_object* x_290; lean_object* x_291; lean_object* x_292; lean_object* x_293; uint8_t x_294; lean_object* x_295; lean_object* x_296; lean_object* x_297; lean_object* x_298; lean_object* x_299; lean_object* x_300; -x_289 = lean_ctor_get(x_288, 0); -lean_inc(x_289); -x_290 = lean_ctor_get(x_288, 1); -lean_inc(x_290); -lean_dec(x_288); -x_291 = lean_ctor_get(x_5, 1); -lean_inc(x_291); +lean_object* x_272; lean_object* x_273; lean_object* x_274; lean_object* x_275; lean_object* x_276; uint8_t x_277; lean_object* x_278; lean_object* x_279; lean_object* x_280; lean_object* x_281; lean_object* x_282; lean_object* x_283; +x_272 = lean_ctor_get(x_271, 0); +lean_inc(x_272); +x_273 = lean_ctor_get(x_271, 1); +lean_inc(x_273); +lean_dec(x_271); +x_274 = lean_ctor_get(x_5, 1); +lean_inc(x_274); lean_dec(x_5); -x_292 = lean_ctor_get(x_291, 1); -lean_inc(x_292); -x_293 = lean_ctor_get(x_291, 4); -lean_inc(x_293); -lean_dec(x_291); -x_294 = 0; -x_295 = lean_box(0); -x_296 = lean_unsigned_to_nat(0u); -x_297 = l_Lean_Meta_mkFreshExprMVarAt(x_292, x_293, x_289, x_294, x_295, x_296, x_7, x_8, x_9, x_10, x_290); -x_298 = lean_ctor_get(x_297, 0); -lean_inc(x_298); -x_299 = lean_ctor_get(x_297, 1); -lean_inc(x_299); -lean_dec(x_297); -lean_inc(x_298); -x_300 = l_Lean_Meta_CheckAssignment_assignToConstFun(x_255, x_257, x_298, x_7, x_8, x_9, x_10, x_299); -if (lean_obj_tag(x_300) == 0) +x_275 = lean_ctor_get(x_274, 1); +lean_inc(x_275); +x_276 = lean_ctor_get(x_274, 4); +lean_inc(x_276); +lean_dec(x_274); +x_277 = 0; +x_278 = lean_box(0); +x_279 = lean_unsigned_to_nat(0u); +x_280 = l_Lean_Meta_mkFreshExprMVarAt(x_275, x_276, x_272, x_277, x_278, x_279, x_7, x_8, x_9, x_10, x_273); +x_281 = lean_ctor_get(x_280, 0); +lean_inc(x_281); +x_282 = lean_ctor_get(x_280, 1); +lean_inc(x_282); +lean_dec(x_280); +lean_inc(x_281); +x_283 = l_Lean_Meta_CheckAssignment_assignToConstFun(x_184, x_186, x_281, x_7, x_8, x_9, x_10, x_282); +if (lean_obj_tag(x_283) == 0) { -lean_object* x_301; uint8_t x_302; -x_301 = lean_ctor_get(x_300, 0); -lean_inc(x_301); -x_302 = lean_unbox(x_301); -lean_dec(x_301); -if (x_302 == 0) +lean_object* x_284; uint8_t x_285; +x_284 = lean_ctor_get(x_283, 0); +lean_inc(x_284); +x_285 = lean_unbox(x_284); +lean_dec(x_284); +if (x_285 == 0) { -uint8_t x_303; -lean_dec(x_298); -x_303 = !lean_is_exclusive(x_300); -if (x_303 == 0) -{ -lean_object* x_304; -x_304 = lean_ctor_get(x_300, 0); -lean_dec(x_304); -lean_ctor_set_tag(x_300, 1); -lean_ctor_set(x_300, 0, x_268); -return x_300; +lean_object* x_286; lean_object* x_287; lean_object* x_288; +lean_dec(x_281); +x_286 = lean_ctor_get(x_283, 1); +lean_inc(x_286); +if (lean_is_exclusive(x_283)) { + lean_ctor_release(x_283, 0); + lean_ctor_release(x_283, 1); + x_287 = x_283; +} else { + lean_dec_ref(x_283); + x_287 = lean_box(0); +} +if (lean_is_scalar(x_287)) { + x_288 = lean_alloc_ctor(1, 2, 0); +} else { + x_288 = x_287; + lean_ctor_set_tag(x_288, 1); +} +lean_ctor_set(x_288, 0, x_197); +lean_ctor_set(x_288, 1, x_286); +return x_288; } else { -lean_object* x_305; lean_object* x_306; -x_305 = lean_ctor_get(x_300, 1); -lean_inc(x_305); -lean_dec(x_300); -x_306 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_306, 0, x_268); -lean_ctor_set(x_306, 1, x_305); +lean_object* x_289; lean_object* x_290; lean_object* x_291; +lean_dec(x_197); +x_289 = lean_ctor_get(x_283, 1); +lean_inc(x_289); +if (lean_is_exclusive(x_283)) { + lean_ctor_release(x_283, 0); + lean_ctor_release(x_283, 1); + x_290 = x_283; +} else { + lean_dec_ref(x_283); + x_290 = lean_box(0); +} +if (lean_is_scalar(x_290)) { + x_291 = lean_alloc_ctor(0, 2, 0); +} else { + x_291 = x_290; +} +lean_ctor_set(x_291, 0, x_281); +lean_ctor_set(x_291, 1, x_289); +return x_291; +} +} +else +{ +lean_object* x_292; lean_object* x_293; lean_object* x_294; lean_object* x_295; +lean_dec(x_281); +lean_dec(x_197); +x_292 = lean_ctor_get(x_283, 0); +lean_inc(x_292); +x_293 = lean_ctor_get(x_283, 1); +lean_inc(x_293); +if (lean_is_exclusive(x_283)) { + lean_ctor_release(x_283, 0); + lean_ctor_release(x_283, 1); + x_294 = x_283; +} else { + lean_dec_ref(x_283); + x_294 = lean_box(0); +} +if (lean_is_scalar(x_294)) { + x_295 = lean_alloc_ctor(1, 2, 0); +} else { + x_295 = x_294; +} +lean_ctor_set(x_295, 0, x_292); +lean_ctor_set(x_295, 1, x_293); +return x_295; +} +} +else +{ +lean_object* x_296; lean_object* x_297; lean_object* x_298; lean_object* x_299; +lean_dec(x_197); +lean_dec(x_186); +lean_dec(x_184); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_5); +x_296 = lean_ctor_get(x_271, 0); +lean_inc(x_296); +x_297 = lean_ctor_get(x_271, 1); +lean_inc(x_297); +if (lean_is_exclusive(x_271)) { + lean_ctor_release(x_271, 0); + lean_ctor_release(x_271, 1); + x_298 = x_271; +} else { + lean_dec_ref(x_271); + x_298 = lean_box(0); +} +if (lean_is_scalar(x_298)) { + x_299 = lean_alloc_ctor(1, 2, 0); +} else { + x_299 = x_298; +} +lean_ctor_set(x_299, 0, x_296); +lean_ctor_set(x_299, 1, x_297); +return x_299; +} +} +else +{ +lean_object* x_300; lean_object* x_301; lean_object* x_302; lean_object* x_303; +lean_dec(x_197); +lean_dec(x_186); +lean_dec(x_184); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +x_300 = lean_ctor_get(x_268, 0); +lean_inc(x_300); +x_301 = lean_ctor_get(x_268, 1); +lean_inc(x_301); +if (lean_is_exclusive(x_268)) { + lean_ctor_release(x_268, 0); + lean_ctor_release(x_268, 1); + x_302 = x_268; +} else { + lean_dec_ref(x_268); + x_302 = lean_box(0); +} +if (lean_is_scalar(x_302)) { + x_303 = lean_alloc_ctor(1, 2, 0); +} else { + x_303 = x_302; +} +lean_ctor_set(x_303, 0, x_300); +lean_ctor_set(x_303, 1, x_301); +return x_303; +} +} +else +{ +lean_object* x_304; lean_object* x_305; lean_object* x_306; +lean_dec(x_186); +lean_dec(x_184); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_1); +x_304 = lean_ctor_get(x_264, 1); +lean_inc(x_304); +if (lean_is_exclusive(x_264)) { + lean_ctor_release(x_264, 0); + lean_ctor_release(x_264, 1); + x_305 = x_264; +} else { + lean_dec_ref(x_264); + x_305 = lean_box(0); +} +if (lean_is_scalar(x_305)) { + x_306 = lean_alloc_ctor(1, 2, 0); +} else { + x_306 = x_305; + lean_ctor_set_tag(x_306, 1); +} +lean_ctor_set(x_306, 0, x_197); +lean_ctor_set(x_306, 1, x_304); return x_306; } } +} +} +} +} +} else { uint8_t x_307; -lean_dec(x_268); -x_307 = !lean_is_exclusive(x_300); -if (x_307 == 0) -{ -lean_object* x_308; -x_308 = lean_ctor_get(x_300, 0); -lean_dec(x_308); -lean_ctor_set(x_300, 0, x_298); -return x_300; -} -else -{ -lean_object* x_309; lean_object* x_310; -x_309 = lean_ctor_get(x_300, 1); -lean_inc(x_309); -lean_dec(x_300); -x_310 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_310, 0, x_298); -lean_ctor_set(x_310, 1, x_309); -return x_310; -} -} -} -else -{ -uint8_t x_311; -lean_dec(x_298); -lean_dec(x_268); -x_311 = !lean_is_exclusive(x_300); -if (x_311 == 0) -{ -return x_300; -} -else -{ -lean_object* x_312; lean_object* x_313; lean_object* x_314; -x_312 = lean_ctor_get(x_300, 0); -x_313 = lean_ctor_get(x_300, 1); -lean_inc(x_313); -lean_inc(x_312); -lean_dec(x_300); -x_314 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_314, 0, x_312); -lean_ctor_set(x_314, 1, x_313); -return x_314; -} -} -} -else -{ -uint8_t x_315; -lean_dec(x_268); -lean_dec(x_257); -lean_dec(x_255); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_5); -x_315 = !lean_is_exclusive(x_288); -if (x_315 == 0) -{ -return x_288; -} -else -{ -lean_object* x_316; lean_object* x_317; lean_object* x_318; -x_316 = lean_ctor_get(x_288, 0); -x_317 = lean_ctor_get(x_288, 1); -lean_inc(x_317); -lean_inc(x_316); -lean_dec(x_288); -x_318 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_318, 0, x_316); -lean_ctor_set(x_318, 1, x_317); -return x_318; -} -} -} -else -{ -uint8_t x_319; -lean_dec(x_268); -lean_dec(x_257); -lean_dec(x_255); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -x_319 = !lean_is_exclusive(x_285); -if (x_319 == 0) -{ -return x_285; -} -else -{ -lean_object* x_320; lean_object* x_321; lean_object* x_322; -x_320 = lean_ctor_get(x_285, 0); -x_321 = lean_ctor_get(x_285, 1); -lean_inc(x_321); -lean_inc(x_320); -lean_dec(x_285); -x_322 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_322, 0, x_320); -lean_ctor_set(x_322, 1, x_321); -return x_322; -} -} -} -else -{ -uint8_t x_323; -lean_dec(x_257); -lean_dec(x_255); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_1); -x_323 = !lean_is_exclusive(x_281); -if (x_323 == 0) -{ -lean_object* x_324; -x_324 = lean_ctor_get(x_281, 0); -lean_dec(x_324); -lean_ctor_set_tag(x_281, 1); -lean_ctor_set(x_281, 0, x_268); -return x_281; -} -else -{ -lean_object* x_325; lean_object* x_326; -x_325 = lean_ctor_get(x_281, 1); -lean_inc(x_325); -lean_dec(x_281); -x_326 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_326, 0, x_268); -lean_ctor_set(x_326, 1, x_325); -return x_326; -} -} -} -} -} -else -{ -lean_object* x_327; lean_object* x_328; lean_object* x_329; uint8_t x_330; -x_327 = lean_ctor_get(x_260, 1); -lean_inc(x_327); -lean_dec(x_260); -x_328 = lean_ctor_get(x_268, 0); -lean_inc(x_328); -x_329 = l_Lean_Meta_CheckAssignment_throwOutOfScopeFVar___rarg___closed__1; -x_330 = lean_nat_dec_eq(x_329, x_328); -lean_dec(x_328); -if (x_330 == 0) -{ -lean_object* x_331; -lean_dec(x_257); -lean_dec(x_255); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_1); -x_331 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_331, 0, x_268); -lean_ctor_set(x_331, 1, x_327); -return x_331; -} -else -{ -uint8_t x_332; -x_332 = l_Lean_Expr_isMVar(x_255); -if (x_332 == 0) -{ -lean_object* x_333; -lean_dec(x_257); -lean_dec(x_255); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_1); -x_333 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_333, 0, x_268); -lean_ctor_set(x_333, 1, x_327); -return x_333; -} -else -{ -lean_object* x_334; lean_object* x_335; lean_object* x_336; uint8_t x_337; -lean_inc(x_255); -x_334 = l_Lean_Expr_mvarId_x21(x_255); -x_335 = l_Lean_MVarId_isDelayedAssigned___at_Lean_Meta_CheckAssignment_checkApp___spec__2(x_334, x_5, x_6, x_7, x_8, x_9, x_10, x_327); -x_336 = lean_ctor_get(x_335, 0); -lean_inc(x_336); -x_337 = lean_unbox(x_336); -lean_dec(x_336); -if (x_337 == 0) -{ -lean_object* x_338; lean_object* x_339; -x_338 = lean_ctor_get(x_335, 1); -lean_inc(x_338); -lean_dec(x_335); -lean_inc(x_10); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -x_339 = lean_infer_type(x_1, x_7, x_8, x_9, x_10, x_338); -if (lean_obj_tag(x_339) == 0) -{ -lean_object* x_340; lean_object* x_341; lean_object* x_342; -x_340 = lean_ctor_get(x_339, 0); -lean_inc(x_340); -x_341 = lean_ctor_get(x_339, 1); -lean_inc(x_341); -lean_dec(x_339); -lean_inc(x_10); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_5); -x_342 = l_Lean_Meta_CheckAssignment_check(x_340, x_5, x_6, x_7, x_8, x_9, x_10, x_341); -if (lean_obj_tag(x_342) == 0) -{ -lean_object* x_343; lean_object* x_344; lean_object* x_345; lean_object* x_346; lean_object* x_347; uint8_t x_348; lean_object* x_349; lean_object* x_350; lean_object* x_351; lean_object* x_352; lean_object* x_353; lean_object* x_354; -x_343 = lean_ctor_get(x_342, 0); -lean_inc(x_343); -x_344 = lean_ctor_get(x_342, 1); -lean_inc(x_344); -lean_dec(x_342); -x_345 = lean_ctor_get(x_5, 1); -lean_inc(x_345); -lean_dec(x_5); -x_346 = lean_ctor_get(x_345, 1); -lean_inc(x_346); -x_347 = lean_ctor_get(x_345, 4); -lean_inc(x_347); -lean_dec(x_345); -x_348 = 0; -x_349 = lean_box(0); -x_350 = lean_unsigned_to_nat(0u); -x_351 = l_Lean_Meta_mkFreshExprMVarAt(x_346, x_347, x_343, x_348, x_349, x_350, x_7, x_8, x_9, x_10, x_344); -x_352 = lean_ctor_get(x_351, 0); -lean_inc(x_352); -x_353 = lean_ctor_get(x_351, 1); -lean_inc(x_353); -lean_dec(x_351); -lean_inc(x_352); -x_354 = l_Lean_Meta_CheckAssignment_assignToConstFun(x_255, x_257, x_352, x_7, x_8, x_9, x_10, x_353); -if (lean_obj_tag(x_354) == 0) -{ -lean_object* x_355; uint8_t x_356; -x_355 = lean_ctor_get(x_354, 0); -lean_inc(x_355); -x_356 = lean_unbox(x_355); -lean_dec(x_355); -if (x_356 == 0) -{ -lean_object* x_357; lean_object* x_358; lean_object* x_359; -lean_dec(x_352); -x_357 = lean_ctor_get(x_354, 1); -lean_inc(x_357); -if (lean_is_exclusive(x_354)) { - lean_ctor_release(x_354, 0); - lean_ctor_release(x_354, 1); - x_358 = x_354; -} else { - lean_dec_ref(x_354); - x_358 = lean_box(0); -} -if (lean_is_scalar(x_358)) { - x_359 = lean_alloc_ctor(1, 2, 0); -} else { - x_359 = x_358; - lean_ctor_set_tag(x_359, 1); -} -lean_ctor_set(x_359, 0, x_268); -lean_ctor_set(x_359, 1, x_357); -return x_359; -} -else -{ -lean_object* x_360; lean_object* x_361; lean_object* x_362; -lean_dec(x_268); -x_360 = lean_ctor_get(x_354, 1); -lean_inc(x_360); -if (lean_is_exclusive(x_354)) { - lean_ctor_release(x_354, 0); - lean_ctor_release(x_354, 1); - x_361 = x_354; -} else { - lean_dec_ref(x_354); - x_361 = lean_box(0); -} -if (lean_is_scalar(x_361)) { - x_362 = lean_alloc_ctor(0, 2, 0); -} else { - x_362 = x_361; -} -lean_ctor_set(x_362, 0, x_352); -lean_ctor_set(x_362, 1, x_360); -return x_362; -} -} -else -{ -lean_object* x_363; lean_object* x_364; lean_object* x_365; lean_object* x_366; -lean_dec(x_352); -lean_dec(x_268); -x_363 = lean_ctor_get(x_354, 0); -lean_inc(x_363); -x_364 = lean_ctor_get(x_354, 1); -lean_inc(x_364); -if (lean_is_exclusive(x_354)) { - lean_ctor_release(x_354, 0); - lean_ctor_release(x_354, 1); - x_365 = x_354; -} else { - lean_dec_ref(x_354); - x_365 = lean_box(0); -} -if (lean_is_scalar(x_365)) { - x_366 = lean_alloc_ctor(1, 2, 0); -} else { - x_366 = x_365; -} -lean_ctor_set(x_366, 0, x_363); -lean_ctor_set(x_366, 1, x_364); -return x_366; -} -} -else -{ -lean_object* x_367; lean_object* x_368; lean_object* x_369; lean_object* x_370; -lean_dec(x_268); -lean_dec(x_257); -lean_dec(x_255); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_5); -x_367 = lean_ctor_get(x_342, 0); -lean_inc(x_367); -x_368 = lean_ctor_get(x_342, 1); -lean_inc(x_368); -if (lean_is_exclusive(x_342)) { - lean_ctor_release(x_342, 0); - lean_ctor_release(x_342, 1); - x_369 = x_342; -} else { - lean_dec_ref(x_342); - x_369 = lean_box(0); -} -if (lean_is_scalar(x_369)) { - x_370 = lean_alloc_ctor(1, 2, 0); -} else { - x_370 = x_369; -} -lean_ctor_set(x_370, 0, x_367); -lean_ctor_set(x_370, 1, x_368); -return x_370; -} -} -else -{ -lean_object* x_371; lean_object* x_372; lean_object* x_373; lean_object* x_374; -lean_dec(x_268); -lean_dec(x_257); -lean_dec(x_255); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -x_371 = lean_ctor_get(x_339, 0); -lean_inc(x_371); -x_372 = lean_ctor_get(x_339, 1); -lean_inc(x_372); -if (lean_is_exclusive(x_339)) { - lean_ctor_release(x_339, 0); - lean_ctor_release(x_339, 1); - x_373 = x_339; -} else { - lean_dec_ref(x_339); - x_373 = lean_box(0); -} -if (lean_is_scalar(x_373)) { - x_374 = lean_alloc_ctor(1, 2, 0); -} else { - x_374 = x_373; -} -lean_ctor_set(x_374, 0, x_371); -lean_ctor_set(x_374, 1, x_372); -return x_374; -} -} -else -{ -lean_object* x_375; lean_object* x_376; lean_object* x_377; -lean_dec(x_257); -lean_dec(x_255); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_1); -x_375 = lean_ctor_get(x_335, 1); -lean_inc(x_375); -if (lean_is_exclusive(x_335)) { - lean_ctor_release(x_335, 0); - lean_ctor_release(x_335, 1); - x_376 = x_335; -} else { - lean_dec_ref(x_335); - x_376 = lean_box(0); -} -if (lean_is_scalar(x_376)) { - x_377 = lean_alloc_ctor(1, 2, 0); -} else { - x_377 = x_376; - lean_ctor_set_tag(x_377, 1); -} -lean_ctor_set(x_377, 0, x_268); -lean_ctor_set(x_377, 1, x_375); -return x_377; -} -} -} -} -} -} -} -block_394: -{ -lean_object* x_380; lean_object* x_381; -lean_dec(x_379); -lean_inc(x_2); -x_380 = l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_CheckAssignment_findCached_x3f(x_2, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -x_381 = lean_ctor_get(x_380, 0); -lean_inc(x_381); -if (lean_obj_tag(x_381) == 0) -{ -lean_object* x_382; lean_object* x_383; -x_382 = lean_ctor_get(x_380, 1); -lean_inc(x_382); -lean_dec(x_380); -lean_inc(x_10); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_2); -x_383 = l_Lean_Meta_CheckAssignment_checkMVar(x_2, x_5, x_6, x_7, x_8, x_9, x_10, x_382); -if (lean_obj_tag(x_383) == 0) -{ -lean_object* x_384; lean_object* x_385; lean_object* x_386; lean_object* x_387; -x_384 = lean_ctor_get(x_383, 0); -lean_inc(x_384); -x_385 = lean_ctor_get(x_383, 1); -lean_inc(x_385); -lean_dec(x_383); -lean_inc(x_384); -x_386 = l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_CheckAssignment_cache(x_2, x_384, x_5, x_6, x_7, x_8, x_9, x_10, x_385); -x_387 = lean_ctor_get(x_386, 1); -lean_inc(x_387); -lean_dec(x_386); -x_255 = x_384; -x_256 = x_387; -goto block_378; -} -else -{ -uint8_t x_388; lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); @@ -20897,347 +19335,622 @@ lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_3); -lean_dec(x_2); lean_dec(x_1); -x_388 = !lean_is_exclusive(x_383); -if (x_388 == 0) +x_307 = !lean_is_exclusive(x_183); +if (x_307 == 0) { -return x_383; +return x_183; } else { -lean_object* x_389; lean_object* x_390; lean_object* x_391; -x_389 = lean_ctor_get(x_383, 0); -x_390 = lean_ctor_get(x_383, 1); -lean_inc(x_390); -lean_inc(x_389); -lean_dec(x_383); -x_391 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_391, 0, x_389); -lean_ctor_set(x_391, 1, x_390); -return x_391; +lean_object* x_308; lean_object* x_309; lean_object* x_310; +x_308 = lean_ctor_get(x_183, 0); +x_309 = lean_ctor_get(x_183, 1); +lean_inc(x_309); +lean_inc(x_308); +lean_dec(x_183); +x_310 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_310, 0, x_308); +lean_ctor_set(x_310, 1, x_309); +return x_310; +} +} +} +block_335: +{ +lean_object* x_313; +lean_dec(x_312); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +x_313 = l_Lean_Meta_CheckAssignment_check(x_2, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +if (lean_obj_tag(x_313) == 0) +{ +lean_object* x_314; lean_object* x_315; lean_object* x_316; size_t x_317; size_t x_318; lean_object* x_319; +x_314 = lean_ctor_get(x_313, 0); +lean_inc(x_314); +x_315 = lean_ctor_get(x_313, 1); +lean_inc(x_315); +lean_dec(x_313); +x_316 = lean_array_get_size(x_3); +x_317 = lean_usize_of_nat(x_316); +lean_dec(x_316); +x_318 = 0; +x_319 = l_Array_mapMUnsafe_map___at_Lean_Meta_CheckAssignment_checkApp___spec__1(x_317, x_318, x_3, x_5, x_6, x_7, x_8, x_9, x_10, x_315); +if (lean_obj_tag(x_319) == 0) +{ +uint8_t x_320; +x_320 = !lean_is_exclusive(x_319); +if (x_320 == 0) +{ +lean_object* x_321; lean_object* x_322; +x_321 = lean_ctor_get(x_319, 0); +x_322 = l_Lean_mkAppN(x_314, x_321); +lean_ctor_set(x_319, 0, x_322); +return x_319; +} +else +{ +lean_object* x_323; lean_object* x_324; lean_object* x_325; lean_object* x_326; +x_323 = lean_ctor_get(x_319, 0); +x_324 = lean_ctor_get(x_319, 1); +lean_inc(x_324); +lean_inc(x_323); +lean_dec(x_319); +x_325 = l_Lean_mkAppN(x_314, x_323); +x_326 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_326, 0, x_325); +lean_ctor_set(x_326, 1, x_324); +return x_326; +} +} +else +{ +uint8_t x_327; +lean_dec(x_314); +x_327 = !lean_is_exclusive(x_319); +if (x_327 == 0) +{ +return x_319; +} +else +{ +lean_object* x_328; lean_object* x_329; lean_object* x_330; +x_328 = lean_ctor_get(x_319, 0); +x_329 = lean_ctor_get(x_319, 1); +lean_inc(x_329); +lean_inc(x_328); +lean_dec(x_319); +x_330 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_330, 0, x_328); +lean_ctor_set(x_330, 1, x_329); +return x_330; } } } else { -lean_object* x_392; lean_object* x_393; -lean_dec(x_2); -x_392 = lean_ctor_get(x_380, 1); -lean_inc(x_392); -lean_dec(x_380); -x_393 = lean_ctor_get(x_381, 0); -lean_inc(x_393); -lean_dec(x_381); -x_255 = x_393; -x_256 = x_392; -goto block_378; +uint8_t x_331; +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_3); +x_331 = !lean_is_exclusive(x_313); +if (x_331 == 0) +{ +return x_313; +} +else +{ +lean_object* x_332; lean_object* x_333; lean_object* x_334; +x_332 = lean_ctor_get(x_313, 0); +x_333 = lean_ctor_get(x_313, 1); +lean_inc(x_333); +lean_inc(x_332); +lean_dec(x_313); +x_334 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_334, 0, x_332); +lean_ctor_set(x_334, 1, x_333); +return x_334; } } } } case 2: { -lean_object* x_416; lean_object* x_456; uint8_t x_602; +lean_object* x_352; lean_object* x_482; uint8_t x_506; lean_dec(x_4); -x_602 = l_Lean_Expr_isMVar(x_2); -if (x_602 == 0) +x_506 = l_Lean_Expr_isMVar(x_2); +if (x_506 == 0) { -lean_object* x_603; +lean_object* x_507; lean_dec(x_1); -x_603 = lean_box(0); -x_416 = x_603; -goto block_455; +x_507 = lean_box(0); +x_482 = x_507; +goto block_505; } else { -lean_object* x_604; uint8_t x_605; -x_604 = lean_ctor_get(x_7, 0); -lean_inc(x_604); -x_605 = lean_ctor_get_uint8(x_604, 1); -lean_dec(x_604); -if (x_605 == 0) +lean_object* x_508; uint8_t x_509; +x_508 = lean_ctor_get(x_7, 0); +lean_inc(x_508); +x_509 = lean_ctor_get_uint8(x_508, 1); +lean_dec(x_508); +if (x_509 == 0) { -lean_object* x_606; +lean_object* x_510; lean_dec(x_1); -x_606 = lean_box(0); -x_416 = x_606; -goto block_455; +x_510 = lean_box(0); +x_482 = x_510; +goto block_505; } else { -lean_object* x_607; lean_object* x_608; uint8_t x_609; -x_607 = lean_array_get_size(x_3); -x_608 = lean_unsigned_to_nat(0u); -x_609 = lean_nat_dec_lt(x_608, x_607); -if (x_609 == 0) +lean_object* x_511; lean_object* x_512; uint8_t x_513; +x_511 = lean_array_get_size(x_3); +x_512 = lean_unsigned_to_nat(0u); +x_513 = lean_nat_dec_lt(x_512, x_511); +if (x_513 == 0) { -lean_object* x_610; -lean_dec(x_607); -x_610 = lean_box(0); -x_456 = x_610; -goto block_601; +lean_object* x_514; +lean_dec(x_511); +x_514 = lean_box(0); +x_352 = x_514; +goto block_481; } else { -uint8_t x_611; -x_611 = lean_nat_dec_le(x_607, x_607); -if (x_611 == 0) +uint8_t x_515; +x_515 = lean_nat_dec_le(x_511, x_511); +if (x_515 == 0) { -lean_object* x_612; -lean_dec(x_607); -x_612 = lean_box(0); -x_456 = x_612; -goto block_601; +lean_object* x_516; +lean_dec(x_511); +x_516 = lean_box(0); +x_352 = x_516; +goto block_481; } else { -size_t x_613; size_t x_614; uint8_t x_615; -x_613 = 0; -x_614 = lean_usize_of_nat(x_607); -lean_dec(x_607); -x_615 = l_Array_anyMUnsafe_any___at_Lean_Meta_CheckAssignment_checkApp___spec__3(x_3, x_613, x_614); -if (x_615 == 0) +size_t x_517; size_t x_518; uint8_t x_519; +x_517 = 0; +x_518 = lean_usize_of_nat(x_511); +lean_dec(x_511); +x_519 = l_Array_anyMUnsafe_any___at_Lean_Meta_CheckAssignment_checkApp___spec__3(x_3, x_517, x_518); +if (x_519 == 0) { -lean_object* x_616; -x_616 = lean_box(0); -x_456 = x_616; -goto block_601; +lean_object* x_520; +x_520 = lean_box(0); +x_352 = x_520; +goto block_481; } else { -lean_object* x_617; +lean_object* x_521; lean_dec(x_1); -x_617 = lean_box(0); -x_416 = x_617; -goto block_455; +x_521 = lean_box(0); +x_482 = x_521; +goto block_505; } } } } } -block_455: +block_481: { -lean_object* x_417; lean_object* x_418; lean_object* x_435; uint8_t x_451; -lean_dec(x_416); -x_451 = l_Lean_Expr_hasExprMVar(x_2); -if (x_451 == 0) +lean_object* x_353; +lean_dec(x_352); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +x_353 = l_Lean_Meta_CheckAssignment_check(x_2, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +if (lean_obj_tag(x_353) == 0) { -uint8_t x_452; -x_452 = l_Lean_Expr_hasFVar(x_2); -if (x_452 == 0) +lean_object* x_354; lean_object* x_355; lean_object* x_356; size_t x_357; size_t x_358; lean_object* x_359; +x_354 = lean_ctor_get(x_353, 0); +lean_inc(x_354); +x_355 = lean_ctor_get(x_353, 1); +lean_inc(x_355); +lean_dec(x_353); +x_356 = lean_array_get_size(x_3); +x_357 = lean_usize_of_nat(x_356); +x_358 = 0; +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +x_359 = l_Array_mapMUnsafe_map___at_Lean_Meta_CheckAssignment_checkApp___spec__1(x_357, x_358, x_3, x_5, x_6, x_7, x_8, x_9, x_10, x_355); +if (lean_obj_tag(x_359) == 0) { -x_417 = x_2; -x_418 = x_11; -goto block_434; +uint8_t x_360; +lean_dec(x_356); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_1); +x_360 = !lean_is_exclusive(x_359); +if (x_360 == 0) +{ +lean_object* x_361; lean_object* x_362; +x_361 = lean_ctor_get(x_359, 0); +x_362 = l_Lean_mkAppN(x_354, x_361); +lean_ctor_set(x_359, 0, x_362); +return x_359; } else { -lean_object* x_453; -x_453 = lean_box(0); -x_435 = x_453; -goto block_450; +lean_object* x_363; lean_object* x_364; lean_object* x_365; lean_object* x_366; +x_363 = lean_ctor_get(x_359, 0); +x_364 = lean_ctor_get(x_359, 1); +lean_inc(x_364); +lean_inc(x_363); +lean_dec(x_359); +x_365 = l_Lean_mkAppN(x_354, x_363); +x_366 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_366, 0, x_365); +lean_ctor_set(x_366, 1, x_364); +return x_366; } } else { -lean_object* x_454; -x_454 = lean_box(0); -x_435 = x_454; -goto block_450; +lean_object* x_367; +x_367 = lean_ctor_get(x_359, 0); +lean_inc(x_367); +if (lean_obj_tag(x_367) == 0) +{ +uint8_t x_368; +lean_dec(x_356); +lean_dec(x_354); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_1); +x_368 = !lean_is_exclusive(x_359); +if (x_368 == 0) +{ +lean_object* x_369; +x_369 = lean_ctor_get(x_359, 0); +lean_dec(x_369); +return x_359; } -block_434: +else { -lean_object* x_419; size_t x_420; size_t x_421; lean_object* x_422; -x_419 = lean_array_get_size(x_3); -x_420 = lean_usize_of_nat(x_419); -lean_dec(x_419); -x_421 = 0; -x_422 = l_Array_mapMUnsafe_map___at_Lean_Meta_CheckAssignment_checkApp___spec__1(x_420, x_421, x_3, x_5, x_6, x_7, x_8, x_9, x_10, x_418); -if (lean_obj_tag(x_422) == 0) +lean_object* x_370; lean_object* x_371; +x_370 = lean_ctor_get(x_359, 1); +lean_inc(x_370); +lean_dec(x_359); +x_371 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_371, 0, x_367); +lean_ctor_set(x_371, 1, x_370); +return x_371; +} +} +else { -uint8_t x_423; -x_423 = !lean_is_exclusive(x_422); -if (x_423 == 0) +uint8_t x_372; +x_372 = !lean_is_exclusive(x_359); +if (x_372 == 0) +{ +lean_object* x_373; lean_object* x_374; lean_object* x_375; lean_object* x_376; uint8_t x_377; +x_373 = lean_ctor_get(x_359, 1); +x_374 = lean_ctor_get(x_359, 0); +lean_dec(x_374); +x_375 = lean_ctor_get(x_367, 0); +lean_inc(x_375); +x_376 = l_Lean_Meta_CheckAssignment_throwOutOfScopeFVar___rarg___closed__1; +x_377 = lean_nat_dec_eq(x_376, x_375); +lean_dec(x_375); +if (x_377 == 0) +{ +lean_dec(x_356); +lean_dec(x_354); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_1); +return x_359; +} +else +{ +uint8_t x_378; +x_378 = l_Lean_Expr_isMVar(x_354); +if (x_378 == 0) +{ +lean_dec(x_356); +lean_dec(x_354); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_1); +return x_359; +} +else +{ +lean_object* x_379; lean_object* x_380; lean_object* x_381; uint8_t x_382; +lean_free_object(x_359); +lean_inc(x_354); +x_379 = l_Lean_Expr_mvarId_x21(x_354); +x_380 = l_Lean_MVarId_isDelayedAssigned___at_Lean_Meta_CheckAssignment_checkApp___spec__2(x_379, x_5, x_6, x_7, x_8, x_9, x_10, x_373); +x_381 = lean_ctor_get(x_380, 0); +lean_inc(x_381); +x_382 = lean_unbox(x_381); +lean_dec(x_381); +if (x_382 == 0) +{ +lean_object* x_383; lean_object* x_384; +x_383 = lean_ctor_get(x_380, 1); +lean_inc(x_383); +lean_dec(x_380); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +x_384 = lean_infer_type(x_1, x_7, x_8, x_9, x_10, x_383); +if (lean_obj_tag(x_384) == 0) +{ +lean_object* x_385; lean_object* x_386; lean_object* x_387; +x_385 = lean_ctor_get(x_384, 0); +lean_inc(x_385); +x_386 = lean_ctor_get(x_384, 1); +lean_inc(x_386); +lean_dec(x_384); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_5); +x_387 = l_Lean_Meta_CheckAssignment_check(x_385, x_5, x_6, x_7, x_8, x_9, x_10, x_386); +if (lean_obj_tag(x_387) == 0) +{ +lean_object* x_388; lean_object* x_389; lean_object* x_390; lean_object* x_391; lean_object* x_392; uint8_t x_393; lean_object* x_394; lean_object* x_395; lean_object* x_396; lean_object* x_397; lean_object* x_398; lean_object* x_399; +x_388 = lean_ctor_get(x_387, 0); +lean_inc(x_388); +x_389 = lean_ctor_get(x_387, 1); +lean_inc(x_389); +lean_dec(x_387); +x_390 = lean_ctor_get(x_5, 1); +lean_inc(x_390); +lean_dec(x_5); +x_391 = lean_ctor_get(x_390, 1); +lean_inc(x_391); +x_392 = lean_ctor_get(x_390, 4); +lean_inc(x_392); +lean_dec(x_390); +x_393 = 0; +x_394 = lean_box(0); +x_395 = lean_unsigned_to_nat(0u); +x_396 = l_Lean_Meta_mkFreshExprMVarAt(x_391, x_392, x_388, x_393, x_394, x_395, x_7, x_8, x_9, x_10, x_389); +x_397 = lean_ctor_get(x_396, 0); +lean_inc(x_397); +x_398 = lean_ctor_get(x_396, 1); +lean_inc(x_398); +lean_dec(x_396); +lean_inc(x_397); +x_399 = l_Lean_Meta_CheckAssignment_assignToConstFun(x_354, x_356, x_397, x_7, x_8, x_9, x_10, x_398); +if (lean_obj_tag(x_399) == 0) +{ +lean_object* x_400; uint8_t x_401; +x_400 = lean_ctor_get(x_399, 0); +lean_inc(x_400); +x_401 = lean_unbox(x_400); +lean_dec(x_400); +if (x_401 == 0) +{ +uint8_t x_402; +lean_dec(x_397); +x_402 = !lean_is_exclusive(x_399); +if (x_402 == 0) +{ +lean_object* x_403; +x_403 = lean_ctor_get(x_399, 0); +lean_dec(x_403); +lean_ctor_set_tag(x_399, 1); +lean_ctor_set(x_399, 0, x_367); +return x_399; +} +else +{ +lean_object* x_404; lean_object* x_405; +x_404 = lean_ctor_get(x_399, 1); +lean_inc(x_404); +lean_dec(x_399); +x_405 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_405, 0, x_367); +lean_ctor_set(x_405, 1, x_404); +return x_405; +} +} +else +{ +uint8_t x_406; +lean_dec(x_367); +x_406 = !lean_is_exclusive(x_399); +if (x_406 == 0) +{ +lean_object* x_407; +x_407 = lean_ctor_get(x_399, 0); +lean_dec(x_407); +lean_ctor_set(x_399, 0, x_397); +return x_399; +} +else +{ +lean_object* x_408; lean_object* x_409; +x_408 = lean_ctor_get(x_399, 1); +lean_inc(x_408); +lean_dec(x_399); +x_409 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_409, 0, x_397); +lean_ctor_set(x_409, 1, x_408); +return x_409; +} +} +} +else +{ +uint8_t x_410; +lean_dec(x_397); +lean_dec(x_367); +x_410 = !lean_is_exclusive(x_399); +if (x_410 == 0) +{ +return x_399; +} +else +{ +lean_object* x_411; lean_object* x_412; lean_object* x_413; +x_411 = lean_ctor_get(x_399, 0); +x_412 = lean_ctor_get(x_399, 1); +lean_inc(x_412); +lean_inc(x_411); +lean_dec(x_399); +x_413 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_413, 0, x_411); +lean_ctor_set(x_413, 1, x_412); +return x_413; +} +} +} +else +{ +uint8_t x_414; +lean_dec(x_367); +lean_dec(x_356); +lean_dec(x_354); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_5); +x_414 = !lean_is_exclusive(x_387); +if (x_414 == 0) +{ +return x_387; +} +else +{ +lean_object* x_415; lean_object* x_416; lean_object* x_417; +x_415 = lean_ctor_get(x_387, 0); +x_416 = lean_ctor_get(x_387, 1); +lean_inc(x_416); +lean_inc(x_415); +lean_dec(x_387); +x_417 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_417, 0, x_415); +lean_ctor_set(x_417, 1, x_416); +return x_417; +} +} +} +else +{ +uint8_t x_418; +lean_dec(x_367); +lean_dec(x_356); +lean_dec(x_354); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +x_418 = !lean_is_exclusive(x_384); +if (x_418 == 0) +{ +return x_384; +} +else +{ +lean_object* x_419; lean_object* x_420; lean_object* x_421; +x_419 = lean_ctor_get(x_384, 0); +x_420 = lean_ctor_get(x_384, 1); +lean_inc(x_420); +lean_inc(x_419); +lean_dec(x_384); +x_421 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_421, 0, x_419); +lean_ctor_set(x_421, 1, x_420); +return x_421; +} +} +} +else +{ +uint8_t x_422; +lean_dec(x_356); +lean_dec(x_354); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_1); +x_422 = !lean_is_exclusive(x_380); +if (x_422 == 0) +{ +lean_object* x_423; +x_423 = lean_ctor_get(x_380, 0); +lean_dec(x_423); +lean_ctor_set_tag(x_380, 1); +lean_ctor_set(x_380, 0, x_367); +return x_380; +} +else { lean_object* x_424; lean_object* x_425; -x_424 = lean_ctor_get(x_422, 0); -x_425 = l_Lean_mkAppN(x_417, x_424); -lean_ctor_set(x_422, 0, x_425); -return x_422; +x_424 = lean_ctor_get(x_380, 1); +lean_inc(x_424); +lean_dec(x_380); +x_425 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_425, 0, x_367); +lean_ctor_set(x_425, 1, x_424); +return x_425; +} +} +} +} } else { -lean_object* x_426; lean_object* x_427; lean_object* x_428; lean_object* x_429; -x_426 = lean_ctor_get(x_422, 0); -x_427 = lean_ctor_get(x_422, 1); -lean_inc(x_427); +lean_object* x_426; lean_object* x_427; lean_object* x_428; uint8_t x_429; +x_426 = lean_ctor_get(x_359, 1); lean_inc(x_426); -lean_dec(x_422); -x_428 = l_Lean_mkAppN(x_417, x_426); -x_429 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_429, 0, x_428); -lean_ctor_set(x_429, 1, x_427); -return x_429; -} -} -else +lean_dec(x_359); +x_427 = lean_ctor_get(x_367, 0); +lean_inc(x_427); +x_428 = l_Lean_Meta_CheckAssignment_throwOutOfScopeFVar___rarg___closed__1; +x_429 = lean_nat_dec_eq(x_428, x_427); +lean_dec(x_427); +if (x_429 == 0) { -uint8_t x_430; -lean_dec(x_417); -x_430 = !lean_is_exclusive(x_422); -if (x_430 == 0) -{ -return x_422; -} -else -{ -lean_object* x_431; lean_object* x_432; lean_object* x_433; -x_431 = lean_ctor_get(x_422, 0); -x_432 = lean_ctor_get(x_422, 1); -lean_inc(x_432); -lean_inc(x_431); -lean_dec(x_422); -x_433 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_433, 0, x_431); -lean_ctor_set(x_433, 1, x_432); -return x_433; -} -} -} -block_450: -{ -lean_object* x_436; lean_object* x_437; -lean_dec(x_435); -lean_inc(x_2); -x_436 = l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_CheckAssignment_findCached_x3f(x_2, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -x_437 = lean_ctor_get(x_436, 0); -lean_inc(x_437); -if (lean_obj_tag(x_437) == 0) -{ -lean_object* x_438; lean_object* x_439; -x_438 = lean_ctor_get(x_436, 1); -lean_inc(x_438); -lean_dec(x_436); -lean_inc(x_10); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_2); -x_439 = l_Lean_Meta_CheckAssignment_check(x_2, x_5, x_6, x_7, x_8, x_9, x_10, x_438); -if (lean_obj_tag(x_439) == 0) -{ -lean_object* x_440; lean_object* x_441; lean_object* x_442; lean_object* x_443; -x_440 = lean_ctor_get(x_439, 0); -lean_inc(x_440); -x_441 = lean_ctor_get(x_439, 1); -lean_inc(x_441); -lean_dec(x_439); -lean_inc(x_440); -x_442 = l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_CheckAssignment_cache(x_2, x_440, x_5, x_6, x_7, x_8, x_9, x_10, x_441); -x_443 = lean_ctor_get(x_442, 1); -lean_inc(x_443); -lean_dec(x_442); -x_417 = x_440; -x_418 = x_443; -goto block_434; -} -else -{ -uint8_t x_444; -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_3); -lean_dec(x_2); -x_444 = !lean_is_exclusive(x_439); -if (x_444 == 0) -{ -return x_439; -} -else -{ -lean_object* x_445; lean_object* x_446; lean_object* x_447; -x_445 = lean_ctor_get(x_439, 0); -x_446 = lean_ctor_get(x_439, 1); -lean_inc(x_446); -lean_inc(x_445); -lean_dec(x_439); -x_447 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_447, 0, x_445); -lean_ctor_set(x_447, 1, x_446); -return x_447; -} -} -} -else -{ -lean_object* x_448; lean_object* x_449; -lean_dec(x_2); -x_448 = lean_ctor_get(x_436, 1); -lean_inc(x_448); -lean_dec(x_436); -x_449 = lean_ctor_get(x_437, 0); -lean_inc(x_449); -lean_dec(x_437); -x_417 = x_449; -x_418 = x_448; -goto block_434; -} -} -} -block_601: -{ -lean_object* x_457; lean_object* x_458; lean_object* x_581; uint8_t x_597; -lean_dec(x_456); -x_597 = l_Lean_Expr_hasExprMVar(x_2); -if (x_597 == 0) -{ -uint8_t x_598; -x_598 = l_Lean_Expr_hasFVar(x_2); -if (x_598 == 0) -{ -x_457 = x_2; -x_458 = x_11; -goto block_580; -} -else -{ -lean_object* x_599; -x_599 = lean_box(0); -x_581 = x_599; -goto block_596; -} -} -else -{ -lean_object* x_600; -x_600 = lean_box(0); -x_581 = x_600; -goto block_596; -} -block_580: -{ -lean_object* x_459; size_t x_460; size_t x_461; lean_object* x_462; -x_459 = lean_array_get_size(x_3); -x_460 = lean_usize_of_nat(x_459); -x_461 = 0; -lean_inc(x_10); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_6); -lean_inc(x_5); -x_462 = l_Array_mapMUnsafe_map___at_Lean_Meta_CheckAssignment_checkApp___spec__1(x_460, x_461, x_3, x_5, x_6, x_7, x_8, x_9, x_10, x_458); -if (lean_obj_tag(x_462) == 0) -{ -uint8_t x_463; -lean_dec(x_459); +lean_object* x_430; +lean_dec(x_356); +lean_dec(x_354); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); @@ -21245,40 +19958,248 @@ lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_1); -x_463 = !lean_is_exclusive(x_462); -if (x_463 == 0) +x_430 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_430, 0, x_367); +lean_ctor_set(x_430, 1, x_426); +return x_430; +} +else { -lean_object* x_464; lean_object* x_465; -x_464 = lean_ctor_get(x_462, 0); -x_465 = l_Lean_mkAppN(x_457, x_464); -lean_ctor_set(x_462, 0, x_465); -return x_462; +uint8_t x_431; +x_431 = l_Lean_Expr_isMVar(x_354); +if (x_431 == 0) +{ +lean_object* x_432; +lean_dec(x_356); +lean_dec(x_354); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_1); +x_432 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_432, 0, x_367); +lean_ctor_set(x_432, 1, x_426); +return x_432; +} +else +{ +lean_object* x_433; lean_object* x_434; lean_object* x_435; uint8_t x_436; +lean_inc(x_354); +x_433 = l_Lean_Expr_mvarId_x21(x_354); +x_434 = l_Lean_MVarId_isDelayedAssigned___at_Lean_Meta_CheckAssignment_checkApp___spec__2(x_433, x_5, x_6, x_7, x_8, x_9, x_10, x_426); +x_435 = lean_ctor_get(x_434, 0); +lean_inc(x_435); +x_436 = lean_unbox(x_435); +lean_dec(x_435); +if (x_436 == 0) +{ +lean_object* x_437; lean_object* x_438; +x_437 = lean_ctor_get(x_434, 1); +lean_inc(x_437); +lean_dec(x_434); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +x_438 = lean_infer_type(x_1, x_7, x_8, x_9, x_10, x_437); +if (lean_obj_tag(x_438) == 0) +{ +lean_object* x_439; lean_object* x_440; lean_object* x_441; +x_439 = lean_ctor_get(x_438, 0); +lean_inc(x_439); +x_440 = lean_ctor_get(x_438, 1); +lean_inc(x_440); +lean_dec(x_438); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_5); +x_441 = l_Lean_Meta_CheckAssignment_check(x_439, x_5, x_6, x_7, x_8, x_9, x_10, x_440); +if (lean_obj_tag(x_441) == 0) +{ +lean_object* x_442; lean_object* x_443; lean_object* x_444; lean_object* x_445; lean_object* x_446; uint8_t x_447; lean_object* x_448; lean_object* x_449; lean_object* x_450; lean_object* x_451; lean_object* x_452; lean_object* x_453; +x_442 = lean_ctor_get(x_441, 0); +lean_inc(x_442); +x_443 = lean_ctor_get(x_441, 1); +lean_inc(x_443); +lean_dec(x_441); +x_444 = lean_ctor_get(x_5, 1); +lean_inc(x_444); +lean_dec(x_5); +x_445 = lean_ctor_get(x_444, 1); +lean_inc(x_445); +x_446 = lean_ctor_get(x_444, 4); +lean_inc(x_446); +lean_dec(x_444); +x_447 = 0; +x_448 = lean_box(0); +x_449 = lean_unsigned_to_nat(0u); +x_450 = l_Lean_Meta_mkFreshExprMVarAt(x_445, x_446, x_442, x_447, x_448, x_449, x_7, x_8, x_9, x_10, x_443); +x_451 = lean_ctor_get(x_450, 0); +lean_inc(x_451); +x_452 = lean_ctor_get(x_450, 1); +lean_inc(x_452); +lean_dec(x_450); +lean_inc(x_451); +x_453 = l_Lean_Meta_CheckAssignment_assignToConstFun(x_354, x_356, x_451, x_7, x_8, x_9, x_10, x_452); +if (lean_obj_tag(x_453) == 0) +{ +lean_object* x_454; uint8_t x_455; +x_454 = lean_ctor_get(x_453, 0); +lean_inc(x_454); +x_455 = lean_unbox(x_454); +lean_dec(x_454); +if (x_455 == 0) +{ +lean_object* x_456; lean_object* x_457; lean_object* x_458; +lean_dec(x_451); +x_456 = lean_ctor_get(x_453, 1); +lean_inc(x_456); +if (lean_is_exclusive(x_453)) { + lean_ctor_release(x_453, 0); + lean_ctor_release(x_453, 1); + x_457 = x_453; +} else { + lean_dec_ref(x_453); + x_457 = lean_box(0); +} +if (lean_is_scalar(x_457)) { + x_458 = lean_alloc_ctor(1, 2, 0); +} else { + x_458 = x_457; + lean_ctor_set_tag(x_458, 1); +} +lean_ctor_set(x_458, 0, x_367); +lean_ctor_set(x_458, 1, x_456); +return x_458; +} +else +{ +lean_object* x_459; lean_object* x_460; lean_object* x_461; +lean_dec(x_367); +x_459 = lean_ctor_get(x_453, 1); +lean_inc(x_459); +if (lean_is_exclusive(x_453)) { + lean_ctor_release(x_453, 0); + lean_ctor_release(x_453, 1); + x_460 = x_453; +} else { + lean_dec_ref(x_453); + x_460 = lean_box(0); +} +if (lean_is_scalar(x_460)) { + x_461 = lean_alloc_ctor(0, 2, 0); +} else { + x_461 = x_460; +} +lean_ctor_set(x_461, 0, x_451); +lean_ctor_set(x_461, 1, x_459); +return x_461; +} +} +else +{ +lean_object* x_462; lean_object* x_463; lean_object* x_464; lean_object* x_465; +lean_dec(x_451); +lean_dec(x_367); +x_462 = lean_ctor_get(x_453, 0); +lean_inc(x_462); +x_463 = lean_ctor_get(x_453, 1); +lean_inc(x_463); +if (lean_is_exclusive(x_453)) { + lean_ctor_release(x_453, 0); + lean_ctor_release(x_453, 1); + x_464 = x_453; +} else { + lean_dec_ref(x_453); + x_464 = lean_box(0); +} +if (lean_is_scalar(x_464)) { + x_465 = lean_alloc_ctor(1, 2, 0); +} else { + x_465 = x_464; +} +lean_ctor_set(x_465, 0, x_462); +lean_ctor_set(x_465, 1, x_463); +return x_465; +} } else { lean_object* x_466; lean_object* x_467; lean_object* x_468; lean_object* x_469; -x_466 = lean_ctor_get(x_462, 0); -x_467 = lean_ctor_get(x_462, 1); -lean_inc(x_467); +lean_dec(x_367); +lean_dec(x_356); +lean_dec(x_354); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_5); +x_466 = lean_ctor_get(x_441, 0); lean_inc(x_466); -lean_dec(x_462); -x_468 = l_Lean_mkAppN(x_457, x_466); -x_469 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_469, 0, x_468); +x_467 = lean_ctor_get(x_441, 1); +lean_inc(x_467); +if (lean_is_exclusive(x_441)) { + lean_ctor_release(x_441, 0); + lean_ctor_release(x_441, 1); + x_468 = x_441; +} else { + lean_dec_ref(x_441); + x_468 = lean_box(0); +} +if (lean_is_scalar(x_468)) { + x_469 = lean_alloc_ctor(1, 2, 0); +} else { + x_469 = x_468; +} +lean_ctor_set(x_469, 0, x_466); lean_ctor_set(x_469, 1, x_467); return x_469; } } else { -lean_object* x_470; -x_470 = lean_ctor_get(x_462, 0); +lean_object* x_470; lean_object* x_471; lean_object* x_472; lean_object* x_473; +lean_dec(x_367); +lean_dec(x_356); +lean_dec(x_354); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +x_470 = lean_ctor_get(x_438, 0); lean_inc(x_470); -if (lean_obj_tag(x_470) == 0) +x_471 = lean_ctor_get(x_438, 1); +lean_inc(x_471); +if (lean_is_exclusive(x_438)) { + lean_ctor_release(x_438, 0); + lean_ctor_release(x_438, 1); + x_472 = x_438; +} else { + lean_dec_ref(x_438); + x_472 = lean_box(0); +} +if (lean_is_scalar(x_472)) { + x_473 = lean_alloc_ctor(1, 2, 0); +} else { + x_473 = x_472; +} +lean_ctor_set(x_473, 0, x_470); +lean_ctor_set(x_473, 1, x_471); +return x_473; +} +} +else { -uint8_t x_471; -lean_dec(x_459); -lean_dec(x_457); +lean_object* x_474; lean_object* x_475; lean_object* x_476; +lean_dec(x_356); +lean_dec(x_354); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); @@ -21286,658 +20207,35 @@ lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_1); -x_471 = !lean_is_exclusive(x_462); -if (x_471 == 0) -{ -lean_object* x_472; -x_472 = lean_ctor_get(x_462, 0); -lean_dec(x_472); -return x_462; -} -else -{ -lean_object* x_473; lean_object* x_474; -x_473 = lean_ctor_get(x_462, 1); -lean_inc(x_473); -lean_dec(x_462); -x_474 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_474, 0, x_470); -lean_ctor_set(x_474, 1, x_473); -return x_474; -} -} -else -{ -uint8_t x_475; -x_475 = !lean_is_exclusive(x_462); -if (x_475 == 0) -{ -lean_object* x_476; lean_object* x_477; lean_object* x_478; lean_object* x_479; uint8_t x_480; -x_476 = lean_ctor_get(x_462, 1); -x_477 = lean_ctor_get(x_462, 0); -lean_dec(x_477); -x_478 = lean_ctor_get(x_470, 0); -lean_inc(x_478); -x_479 = l_Lean_Meta_CheckAssignment_throwOutOfScopeFVar___rarg___closed__1; -x_480 = lean_nat_dec_eq(x_479, x_478); -lean_dec(x_478); -if (x_480 == 0) -{ -lean_dec(x_459); -lean_dec(x_457); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_1); -return x_462; -} -else -{ -uint8_t x_481; -x_481 = l_Lean_Expr_isMVar(x_457); -if (x_481 == 0) -{ -lean_dec(x_459); -lean_dec(x_457); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_1); -return x_462; -} -else -{ -lean_object* x_482; lean_object* x_483; lean_object* x_484; uint8_t x_485; -lean_free_object(x_462); -lean_inc(x_457); -x_482 = l_Lean_Expr_mvarId_x21(x_457); -x_483 = l_Lean_MVarId_isDelayedAssigned___at_Lean_Meta_CheckAssignment_checkApp___spec__2(x_482, x_5, x_6, x_7, x_8, x_9, x_10, x_476); -x_484 = lean_ctor_get(x_483, 0); -lean_inc(x_484); -x_485 = lean_unbox(x_484); -lean_dec(x_484); -if (x_485 == 0) -{ -lean_object* x_486; lean_object* x_487; -x_486 = lean_ctor_get(x_483, 1); -lean_inc(x_486); -lean_dec(x_483); -lean_inc(x_10); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -x_487 = lean_infer_type(x_1, x_7, x_8, x_9, x_10, x_486); -if (lean_obj_tag(x_487) == 0) -{ -lean_object* x_488; lean_object* x_489; lean_object* x_490; -x_488 = lean_ctor_get(x_487, 0); -lean_inc(x_488); -x_489 = lean_ctor_get(x_487, 1); -lean_inc(x_489); -lean_dec(x_487); -lean_inc(x_10); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_5); -x_490 = l_Lean_Meta_CheckAssignment_check(x_488, x_5, x_6, x_7, x_8, x_9, x_10, x_489); -if (lean_obj_tag(x_490) == 0) -{ -lean_object* x_491; lean_object* x_492; lean_object* x_493; lean_object* x_494; lean_object* x_495; uint8_t x_496; lean_object* x_497; lean_object* x_498; lean_object* x_499; lean_object* x_500; lean_object* x_501; lean_object* x_502; -x_491 = lean_ctor_get(x_490, 0); -lean_inc(x_491); -x_492 = lean_ctor_get(x_490, 1); -lean_inc(x_492); -lean_dec(x_490); -x_493 = lean_ctor_get(x_5, 1); -lean_inc(x_493); -lean_dec(x_5); -x_494 = lean_ctor_get(x_493, 1); -lean_inc(x_494); -x_495 = lean_ctor_get(x_493, 4); -lean_inc(x_495); -lean_dec(x_493); -x_496 = 0; -x_497 = lean_box(0); -x_498 = lean_unsigned_to_nat(0u); -x_499 = l_Lean_Meta_mkFreshExprMVarAt(x_494, x_495, x_491, x_496, x_497, x_498, x_7, x_8, x_9, x_10, x_492); -x_500 = lean_ctor_get(x_499, 0); -lean_inc(x_500); -x_501 = lean_ctor_get(x_499, 1); -lean_inc(x_501); -lean_dec(x_499); -lean_inc(x_500); -x_502 = l_Lean_Meta_CheckAssignment_assignToConstFun(x_457, x_459, x_500, x_7, x_8, x_9, x_10, x_501); -if (lean_obj_tag(x_502) == 0) -{ -lean_object* x_503; uint8_t x_504; -x_503 = lean_ctor_get(x_502, 0); -lean_inc(x_503); -x_504 = lean_unbox(x_503); -lean_dec(x_503); -if (x_504 == 0) -{ -uint8_t x_505; -lean_dec(x_500); -x_505 = !lean_is_exclusive(x_502); -if (x_505 == 0) -{ -lean_object* x_506; -x_506 = lean_ctor_get(x_502, 0); -lean_dec(x_506); -lean_ctor_set_tag(x_502, 1); -lean_ctor_set(x_502, 0, x_470); -return x_502; -} -else -{ -lean_object* x_507; lean_object* x_508; -x_507 = lean_ctor_get(x_502, 1); -lean_inc(x_507); -lean_dec(x_502); -x_508 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_508, 0, x_470); -lean_ctor_set(x_508, 1, x_507); -return x_508; -} -} -else -{ -uint8_t x_509; -lean_dec(x_470); -x_509 = !lean_is_exclusive(x_502); -if (x_509 == 0) -{ -lean_object* x_510; -x_510 = lean_ctor_get(x_502, 0); -lean_dec(x_510); -lean_ctor_set(x_502, 0, x_500); -return x_502; -} -else -{ -lean_object* x_511; lean_object* x_512; -x_511 = lean_ctor_get(x_502, 1); -lean_inc(x_511); -lean_dec(x_502); -x_512 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_512, 0, x_500); -lean_ctor_set(x_512, 1, x_511); -return x_512; -} -} -} -else -{ -uint8_t x_513; -lean_dec(x_500); -lean_dec(x_470); -x_513 = !lean_is_exclusive(x_502); -if (x_513 == 0) -{ -return x_502; -} -else -{ -lean_object* x_514; lean_object* x_515; lean_object* x_516; -x_514 = lean_ctor_get(x_502, 0); -x_515 = lean_ctor_get(x_502, 1); -lean_inc(x_515); -lean_inc(x_514); -lean_dec(x_502); -x_516 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_516, 0, x_514); -lean_ctor_set(x_516, 1, x_515); -return x_516; -} -} -} -else -{ -uint8_t x_517; -lean_dec(x_470); -lean_dec(x_459); -lean_dec(x_457); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_5); -x_517 = !lean_is_exclusive(x_490); -if (x_517 == 0) -{ -return x_490; -} -else -{ -lean_object* x_518; lean_object* x_519; lean_object* x_520; -x_518 = lean_ctor_get(x_490, 0); -x_519 = lean_ctor_get(x_490, 1); -lean_inc(x_519); -lean_inc(x_518); -lean_dec(x_490); -x_520 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_520, 0, x_518); -lean_ctor_set(x_520, 1, x_519); -return x_520; -} -} -} -else -{ -uint8_t x_521; -lean_dec(x_470); -lean_dec(x_459); -lean_dec(x_457); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -x_521 = !lean_is_exclusive(x_487); -if (x_521 == 0) -{ -return x_487; -} -else -{ -lean_object* x_522; lean_object* x_523; lean_object* x_524; -x_522 = lean_ctor_get(x_487, 0); -x_523 = lean_ctor_get(x_487, 1); -lean_inc(x_523); -lean_inc(x_522); -lean_dec(x_487); -x_524 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_524, 0, x_522); -lean_ctor_set(x_524, 1, x_523); -return x_524; -} -} -} -else -{ -uint8_t x_525; -lean_dec(x_459); -lean_dec(x_457); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_1); -x_525 = !lean_is_exclusive(x_483); -if (x_525 == 0) -{ -lean_object* x_526; -x_526 = lean_ctor_get(x_483, 0); -lean_dec(x_526); -lean_ctor_set_tag(x_483, 1); -lean_ctor_set(x_483, 0, x_470); -return x_483; -} -else -{ -lean_object* x_527; lean_object* x_528; -x_527 = lean_ctor_get(x_483, 1); -lean_inc(x_527); -lean_dec(x_483); -x_528 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_528, 0, x_470); -lean_ctor_set(x_528, 1, x_527); -return x_528; -} -} -} -} -} -else -{ -lean_object* x_529; lean_object* x_530; lean_object* x_531; uint8_t x_532; -x_529 = lean_ctor_get(x_462, 1); -lean_inc(x_529); -lean_dec(x_462); -x_530 = lean_ctor_get(x_470, 0); -lean_inc(x_530); -x_531 = l_Lean_Meta_CheckAssignment_throwOutOfScopeFVar___rarg___closed__1; -x_532 = lean_nat_dec_eq(x_531, x_530); -lean_dec(x_530); -if (x_532 == 0) -{ -lean_object* x_533; -lean_dec(x_459); -lean_dec(x_457); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_1); -x_533 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_533, 0, x_470); -lean_ctor_set(x_533, 1, x_529); -return x_533; -} -else -{ -uint8_t x_534; -x_534 = l_Lean_Expr_isMVar(x_457); -if (x_534 == 0) -{ -lean_object* x_535; -lean_dec(x_459); -lean_dec(x_457); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_1); -x_535 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_535, 0, x_470); -lean_ctor_set(x_535, 1, x_529); -return x_535; -} -else -{ -lean_object* x_536; lean_object* x_537; lean_object* x_538; uint8_t x_539; -lean_inc(x_457); -x_536 = l_Lean_Expr_mvarId_x21(x_457); -x_537 = l_Lean_MVarId_isDelayedAssigned___at_Lean_Meta_CheckAssignment_checkApp___spec__2(x_536, x_5, x_6, x_7, x_8, x_9, x_10, x_529); -x_538 = lean_ctor_get(x_537, 0); -lean_inc(x_538); -x_539 = lean_unbox(x_538); -lean_dec(x_538); -if (x_539 == 0) -{ -lean_object* x_540; lean_object* x_541; -x_540 = lean_ctor_get(x_537, 1); -lean_inc(x_540); -lean_dec(x_537); -lean_inc(x_10); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -x_541 = lean_infer_type(x_1, x_7, x_8, x_9, x_10, x_540); -if (lean_obj_tag(x_541) == 0) -{ -lean_object* x_542; lean_object* x_543; lean_object* x_544; -x_542 = lean_ctor_get(x_541, 0); -lean_inc(x_542); -x_543 = lean_ctor_get(x_541, 1); -lean_inc(x_543); -lean_dec(x_541); -lean_inc(x_10); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_5); -x_544 = l_Lean_Meta_CheckAssignment_check(x_542, x_5, x_6, x_7, x_8, x_9, x_10, x_543); -if (lean_obj_tag(x_544) == 0) -{ -lean_object* x_545; lean_object* x_546; lean_object* x_547; lean_object* x_548; lean_object* x_549; uint8_t x_550; lean_object* x_551; lean_object* x_552; lean_object* x_553; lean_object* x_554; lean_object* x_555; lean_object* x_556; -x_545 = lean_ctor_get(x_544, 0); -lean_inc(x_545); -x_546 = lean_ctor_get(x_544, 1); -lean_inc(x_546); -lean_dec(x_544); -x_547 = lean_ctor_get(x_5, 1); -lean_inc(x_547); -lean_dec(x_5); -x_548 = lean_ctor_get(x_547, 1); -lean_inc(x_548); -x_549 = lean_ctor_get(x_547, 4); -lean_inc(x_549); -lean_dec(x_547); -x_550 = 0; -x_551 = lean_box(0); -x_552 = lean_unsigned_to_nat(0u); -x_553 = l_Lean_Meta_mkFreshExprMVarAt(x_548, x_549, x_545, x_550, x_551, x_552, x_7, x_8, x_9, x_10, x_546); -x_554 = lean_ctor_get(x_553, 0); -lean_inc(x_554); -x_555 = lean_ctor_get(x_553, 1); -lean_inc(x_555); -lean_dec(x_553); -lean_inc(x_554); -x_556 = l_Lean_Meta_CheckAssignment_assignToConstFun(x_457, x_459, x_554, x_7, x_8, x_9, x_10, x_555); -if (lean_obj_tag(x_556) == 0) -{ -lean_object* x_557; uint8_t x_558; -x_557 = lean_ctor_get(x_556, 0); -lean_inc(x_557); -x_558 = lean_unbox(x_557); -lean_dec(x_557); -if (x_558 == 0) -{ -lean_object* x_559; lean_object* x_560; lean_object* x_561; -lean_dec(x_554); -x_559 = lean_ctor_get(x_556, 1); -lean_inc(x_559); -if (lean_is_exclusive(x_556)) { - lean_ctor_release(x_556, 0); - lean_ctor_release(x_556, 1); - x_560 = x_556; +x_474 = lean_ctor_get(x_434, 1); +lean_inc(x_474); +if (lean_is_exclusive(x_434)) { + lean_ctor_release(x_434, 0); + lean_ctor_release(x_434, 1); + x_475 = x_434; } else { - lean_dec_ref(x_556); - x_560 = lean_box(0); + lean_dec_ref(x_434); + x_475 = lean_box(0); } -if (lean_is_scalar(x_560)) { - x_561 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_475)) { + x_476 = lean_alloc_ctor(1, 2, 0); } else { - x_561 = x_560; - lean_ctor_set_tag(x_561, 1); + x_476 = x_475; + lean_ctor_set_tag(x_476, 1); +} +lean_ctor_set(x_476, 0, x_367); +lean_ctor_set(x_476, 1, x_474); +return x_476; +} } -lean_ctor_set(x_561, 0, x_470); -lean_ctor_set(x_561, 1, x_559); -return x_561; } -else -{ -lean_object* x_562; lean_object* x_563; lean_object* x_564; -lean_dec(x_470); -x_562 = lean_ctor_get(x_556, 1); -lean_inc(x_562); -if (lean_is_exclusive(x_556)) { - lean_ctor_release(x_556, 0); - lean_ctor_release(x_556, 1); - x_563 = x_556; -} else { - lean_dec_ref(x_556); - x_563 = lean_box(0); } -if (lean_is_scalar(x_563)) { - x_564 = lean_alloc_ctor(0, 2, 0); -} else { - x_564 = x_563; } -lean_ctor_set(x_564, 0, x_554); -lean_ctor_set(x_564, 1, x_562); -return x_564; } } else { -lean_object* x_565; lean_object* x_566; lean_object* x_567; lean_object* x_568; -lean_dec(x_554); -lean_dec(x_470); -x_565 = lean_ctor_get(x_556, 0); -lean_inc(x_565); -x_566 = lean_ctor_get(x_556, 1); -lean_inc(x_566); -if (lean_is_exclusive(x_556)) { - lean_ctor_release(x_556, 0); - lean_ctor_release(x_556, 1); - x_567 = x_556; -} else { - lean_dec_ref(x_556); - x_567 = lean_box(0); -} -if (lean_is_scalar(x_567)) { - x_568 = lean_alloc_ctor(1, 2, 0); -} else { - x_568 = x_567; -} -lean_ctor_set(x_568, 0, x_565); -lean_ctor_set(x_568, 1, x_566); -return x_568; -} -} -else -{ -lean_object* x_569; lean_object* x_570; lean_object* x_571; lean_object* x_572; -lean_dec(x_470); -lean_dec(x_459); -lean_dec(x_457); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_5); -x_569 = lean_ctor_get(x_544, 0); -lean_inc(x_569); -x_570 = lean_ctor_get(x_544, 1); -lean_inc(x_570); -if (lean_is_exclusive(x_544)) { - lean_ctor_release(x_544, 0); - lean_ctor_release(x_544, 1); - x_571 = x_544; -} else { - lean_dec_ref(x_544); - x_571 = lean_box(0); -} -if (lean_is_scalar(x_571)) { - x_572 = lean_alloc_ctor(1, 2, 0); -} else { - x_572 = x_571; -} -lean_ctor_set(x_572, 0, x_569); -lean_ctor_set(x_572, 1, x_570); -return x_572; -} -} -else -{ -lean_object* x_573; lean_object* x_574; lean_object* x_575; lean_object* x_576; -lean_dec(x_470); -lean_dec(x_459); -lean_dec(x_457); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -x_573 = lean_ctor_get(x_541, 0); -lean_inc(x_573); -x_574 = lean_ctor_get(x_541, 1); -lean_inc(x_574); -if (lean_is_exclusive(x_541)) { - lean_ctor_release(x_541, 0); - lean_ctor_release(x_541, 1); - x_575 = x_541; -} else { - lean_dec_ref(x_541); - x_575 = lean_box(0); -} -if (lean_is_scalar(x_575)) { - x_576 = lean_alloc_ctor(1, 2, 0); -} else { - x_576 = x_575; -} -lean_ctor_set(x_576, 0, x_573); -lean_ctor_set(x_576, 1, x_574); -return x_576; -} -} -else -{ -lean_object* x_577; lean_object* x_578; lean_object* x_579; -lean_dec(x_459); -lean_dec(x_457); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_1); -x_577 = lean_ctor_get(x_537, 1); -lean_inc(x_577); -if (lean_is_exclusive(x_537)) { - lean_ctor_release(x_537, 0); - lean_ctor_release(x_537, 1); - x_578 = x_537; -} else { - lean_dec_ref(x_537); - x_578 = lean_box(0); -} -if (lean_is_scalar(x_578)) { - x_579 = lean_alloc_ctor(1, 2, 0); -} else { - x_579 = x_578; - lean_ctor_set_tag(x_579, 1); -} -lean_ctor_set(x_579, 0, x_470); -lean_ctor_set(x_579, 1, x_577); -return x_579; -} -} -} -} -} -} -} -block_596: -{ -lean_object* x_582; lean_object* x_583; -lean_dec(x_581); -lean_inc(x_2); -x_582 = l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_CheckAssignment_findCached_x3f(x_2, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -x_583 = lean_ctor_get(x_582, 0); -lean_inc(x_583); -if (lean_obj_tag(x_583) == 0) -{ -lean_object* x_584; lean_object* x_585; -x_584 = lean_ctor_get(x_582, 1); -lean_inc(x_584); -lean_dec(x_582); -lean_inc(x_10); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_2); -x_585 = l_Lean_Meta_CheckAssignment_checkMVar(x_2, x_5, x_6, x_7, x_8, x_9, x_10, x_584); -if (lean_obj_tag(x_585) == 0) -{ -lean_object* x_586; lean_object* x_587; lean_object* x_588; lean_object* x_589; -x_586 = lean_ctor_get(x_585, 0); -lean_inc(x_586); -x_587 = lean_ctor_get(x_585, 1); -lean_inc(x_587); -lean_dec(x_585); -lean_inc(x_586); -x_588 = l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_CheckAssignment_cache(x_2, x_586, x_5, x_6, x_7, x_8, x_9, x_10, x_587); -x_589 = lean_ctor_get(x_588, 1); -lean_inc(x_589); -lean_dec(x_588); -x_457 = x_586; -x_458 = x_589; -goto block_580; -} -else -{ -uint8_t x_590; +uint8_t x_477; lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); @@ -21945,347 +20243,871 @@ lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_3); -lean_dec(x_2); lean_dec(x_1); -x_590 = !lean_is_exclusive(x_585); -if (x_590 == 0) +x_477 = !lean_is_exclusive(x_353); +if (x_477 == 0) { -return x_585; +return x_353; } else { -lean_object* x_591; lean_object* x_592; lean_object* x_593; -x_591 = lean_ctor_get(x_585, 0); -x_592 = lean_ctor_get(x_585, 1); -lean_inc(x_592); -lean_inc(x_591); -lean_dec(x_585); -x_593 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_593, 0, x_591); -lean_ctor_set(x_593, 1, x_592); -return x_593; +lean_object* x_478; lean_object* x_479; lean_object* x_480; +x_478 = lean_ctor_get(x_353, 0); +x_479 = lean_ctor_get(x_353, 1); +lean_inc(x_479); +lean_inc(x_478); +lean_dec(x_353); +x_480 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_480, 0, x_478); +lean_ctor_set(x_480, 1, x_479); +return x_480; +} +} +} +block_505: +{ +lean_object* x_483; +lean_dec(x_482); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +x_483 = l_Lean_Meta_CheckAssignment_check(x_2, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +if (lean_obj_tag(x_483) == 0) +{ +lean_object* x_484; lean_object* x_485; lean_object* x_486; size_t x_487; size_t x_488; lean_object* x_489; +x_484 = lean_ctor_get(x_483, 0); +lean_inc(x_484); +x_485 = lean_ctor_get(x_483, 1); +lean_inc(x_485); +lean_dec(x_483); +x_486 = lean_array_get_size(x_3); +x_487 = lean_usize_of_nat(x_486); +lean_dec(x_486); +x_488 = 0; +x_489 = l_Array_mapMUnsafe_map___at_Lean_Meta_CheckAssignment_checkApp___spec__1(x_487, x_488, x_3, x_5, x_6, x_7, x_8, x_9, x_10, x_485); +if (lean_obj_tag(x_489) == 0) +{ +uint8_t x_490; +x_490 = !lean_is_exclusive(x_489); +if (x_490 == 0) +{ +lean_object* x_491; lean_object* x_492; +x_491 = lean_ctor_get(x_489, 0); +x_492 = l_Lean_mkAppN(x_484, x_491); +lean_ctor_set(x_489, 0, x_492); +return x_489; +} +else +{ +lean_object* x_493; lean_object* x_494; lean_object* x_495; lean_object* x_496; +x_493 = lean_ctor_get(x_489, 0); +x_494 = lean_ctor_get(x_489, 1); +lean_inc(x_494); +lean_inc(x_493); +lean_dec(x_489); +x_495 = l_Lean_mkAppN(x_484, x_493); +x_496 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_496, 0, x_495); +lean_ctor_set(x_496, 1, x_494); +return x_496; +} +} +else +{ +uint8_t x_497; +lean_dec(x_484); +x_497 = !lean_is_exclusive(x_489); +if (x_497 == 0) +{ +return x_489; +} +else +{ +lean_object* x_498; lean_object* x_499; lean_object* x_500; +x_498 = lean_ctor_get(x_489, 0); +x_499 = lean_ctor_get(x_489, 1); +lean_inc(x_499); +lean_inc(x_498); +lean_dec(x_489); +x_500 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_500, 0, x_498); +lean_ctor_set(x_500, 1, x_499); +return x_500; } } } else { -lean_object* x_594; lean_object* x_595; -lean_dec(x_2); -x_594 = lean_ctor_get(x_582, 1); -lean_inc(x_594); -lean_dec(x_582); -x_595 = lean_ctor_get(x_583, 0); -lean_inc(x_595); -lean_dec(x_583); -x_457 = x_595; -x_458 = x_594; -goto block_580; +uint8_t x_501; +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_3); +x_501 = !lean_is_exclusive(x_483); +if (x_501 == 0) +{ +return x_483; +} +else +{ +lean_object* x_502; lean_object* x_503; lean_object* x_504; +x_502 = lean_ctor_get(x_483, 0); +x_503 = lean_ctor_get(x_483, 1); +lean_inc(x_503); +lean_inc(x_502); +lean_dec(x_483); +x_504 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_504, 0, x_502); +lean_ctor_set(x_504, 1, x_503); +return x_504; } } } } case 3: { -lean_object* x_618; lean_object* x_658; uint8_t x_804; +lean_object* x_522; lean_object* x_652; uint8_t x_676; lean_dec(x_4); -x_804 = l_Lean_Expr_isMVar(x_2); -if (x_804 == 0) +x_676 = l_Lean_Expr_isMVar(x_2); +if (x_676 == 0) { -lean_object* x_805; +lean_object* x_677; lean_dec(x_1); -x_805 = lean_box(0); -x_618 = x_805; -goto block_657; +x_677 = lean_box(0); +x_652 = x_677; +goto block_675; } else { -lean_object* x_806; uint8_t x_807; -x_806 = lean_ctor_get(x_7, 0); -lean_inc(x_806); -x_807 = lean_ctor_get_uint8(x_806, 1); -lean_dec(x_806); -if (x_807 == 0) +lean_object* x_678; uint8_t x_679; +x_678 = lean_ctor_get(x_7, 0); +lean_inc(x_678); +x_679 = lean_ctor_get_uint8(x_678, 1); +lean_dec(x_678); +if (x_679 == 0) { -lean_object* x_808; +lean_object* x_680; lean_dec(x_1); -x_808 = lean_box(0); -x_618 = x_808; -goto block_657; +x_680 = lean_box(0); +x_652 = x_680; +goto block_675; } else { -lean_object* x_809; lean_object* x_810; uint8_t x_811; -x_809 = lean_array_get_size(x_3); -x_810 = lean_unsigned_to_nat(0u); -x_811 = lean_nat_dec_lt(x_810, x_809); -if (x_811 == 0) +lean_object* x_681; lean_object* x_682; uint8_t x_683; +x_681 = lean_array_get_size(x_3); +x_682 = lean_unsigned_to_nat(0u); +x_683 = lean_nat_dec_lt(x_682, x_681); +if (x_683 == 0) { -lean_object* x_812; -lean_dec(x_809); -x_812 = lean_box(0); -x_658 = x_812; -goto block_803; +lean_object* x_684; +lean_dec(x_681); +x_684 = lean_box(0); +x_522 = x_684; +goto block_651; } else { -uint8_t x_813; -x_813 = lean_nat_dec_le(x_809, x_809); -if (x_813 == 0) +uint8_t x_685; +x_685 = lean_nat_dec_le(x_681, x_681); +if (x_685 == 0) { -lean_object* x_814; -lean_dec(x_809); -x_814 = lean_box(0); -x_658 = x_814; -goto block_803; +lean_object* x_686; +lean_dec(x_681); +x_686 = lean_box(0); +x_522 = x_686; +goto block_651; } else { -size_t x_815; size_t x_816; uint8_t x_817; -x_815 = 0; -x_816 = lean_usize_of_nat(x_809); -lean_dec(x_809); -x_817 = l_Array_anyMUnsafe_any___at_Lean_Meta_CheckAssignment_checkApp___spec__3(x_3, x_815, x_816); -if (x_817 == 0) +size_t x_687; size_t x_688; uint8_t x_689; +x_687 = 0; +x_688 = lean_usize_of_nat(x_681); +lean_dec(x_681); +x_689 = l_Array_anyMUnsafe_any___at_Lean_Meta_CheckAssignment_checkApp___spec__3(x_3, x_687, x_688); +if (x_689 == 0) { -lean_object* x_818; -x_818 = lean_box(0); -x_658 = x_818; -goto block_803; +lean_object* x_690; +x_690 = lean_box(0); +x_522 = x_690; +goto block_651; } else { -lean_object* x_819; +lean_object* x_691; lean_dec(x_1); -x_819 = lean_box(0); -x_618 = x_819; -goto block_657; +x_691 = lean_box(0); +x_652 = x_691; +goto block_675; } } } } } -block_657: +block_651: { -lean_object* x_619; lean_object* x_620; lean_object* x_637; uint8_t x_653; -lean_dec(x_618); -x_653 = l_Lean_Expr_hasExprMVar(x_2); -if (x_653 == 0) +lean_object* x_523; +lean_dec(x_522); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +x_523 = l_Lean_Meta_CheckAssignment_check(x_2, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +if (lean_obj_tag(x_523) == 0) { -uint8_t x_654; -x_654 = l_Lean_Expr_hasFVar(x_2); -if (x_654 == 0) +lean_object* x_524; lean_object* x_525; lean_object* x_526; size_t x_527; size_t x_528; lean_object* x_529; +x_524 = lean_ctor_get(x_523, 0); +lean_inc(x_524); +x_525 = lean_ctor_get(x_523, 1); +lean_inc(x_525); +lean_dec(x_523); +x_526 = lean_array_get_size(x_3); +x_527 = lean_usize_of_nat(x_526); +x_528 = 0; +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +x_529 = l_Array_mapMUnsafe_map___at_Lean_Meta_CheckAssignment_checkApp___spec__1(x_527, x_528, x_3, x_5, x_6, x_7, x_8, x_9, x_10, x_525); +if (lean_obj_tag(x_529) == 0) { -x_619 = x_2; -x_620 = x_11; -goto block_636; +uint8_t x_530; +lean_dec(x_526); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_1); +x_530 = !lean_is_exclusive(x_529); +if (x_530 == 0) +{ +lean_object* x_531; lean_object* x_532; +x_531 = lean_ctor_get(x_529, 0); +x_532 = l_Lean_mkAppN(x_524, x_531); +lean_ctor_set(x_529, 0, x_532); +return x_529; } else { -lean_object* x_655; -x_655 = lean_box(0); -x_637 = x_655; -goto block_652; +lean_object* x_533; lean_object* x_534; lean_object* x_535; lean_object* x_536; +x_533 = lean_ctor_get(x_529, 0); +x_534 = lean_ctor_get(x_529, 1); +lean_inc(x_534); +lean_inc(x_533); +lean_dec(x_529); +x_535 = l_Lean_mkAppN(x_524, x_533); +x_536 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_536, 0, x_535); +lean_ctor_set(x_536, 1, x_534); +return x_536; } } else { -lean_object* x_656; -x_656 = lean_box(0); -x_637 = x_656; -goto block_652; +lean_object* x_537; +x_537 = lean_ctor_get(x_529, 0); +lean_inc(x_537); +if (lean_obj_tag(x_537) == 0) +{ +uint8_t x_538; +lean_dec(x_526); +lean_dec(x_524); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_1); +x_538 = !lean_is_exclusive(x_529); +if (x_538 == 0) +{ +lean_object* x_539; +x_539 = lean_ctor_get(x_529, 0); +lean_dec(x_539); +return x_529; } -block_636: +else { -lean_object* x_621; size_t x_622; size_t x_623; lean_object* x_624; -x_621 = lean_array_get_size(x_3); -x_622 = lean_usize_of_nat(x_621); -lean_dec(x_621); -x_623 = 0; -x_624 = l_Array_mapMUnsafe_map___at_Lean_Meta_CheckAssignment_checkApp___spec__1(x_622, x_623, x_3, x_5, x_6, x_7, x_8, x_9, x_10, x_620); -if (lean_obj_tag(x_624) == 0) +lean_object* x_540; lean_object* x_541; +x_540 = lean_ctor_get(x_529, 1); +lean_inc(x_540); +lean_dec(x_529); +x_541 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_541, 0, x_537); +lean_ctor_set(x_541, 1, x_540); +return x_541; +} +} +else { -uint8_t x_625; -x_625 = !lean_is_exclusive(x_624); +uint8_t x_542; +x_542 = !lean_is_exclusive(x_529); +if (x_542 == 0) +{ +lean_object* x_543; lean_object* x_544; lean_object* x_545; lean_object* x_546; uint8_t x_547; +x_543 = lean_ctor_get(x_529, 1); +x_544 = lean_ctor_get(x_529, 0); +lean_dec(x_544); +x_545 = lean_ctor_get(x_537, 0); +lean_inc(x_545); +x_546 = l_Lean_Meta_CheckAssignment_throwOutOfScopeFVar___rarg___closed__1; +x_547 = lean_nat_dec_eq(x_546, x_545); +lean_dec(x_545); +if (x_547 == 0) +{ +lean_dec(x_526); +lean_dec(x_524); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_1); +return x_529; +} +else +{ +uint8_t x_548; +x_548 = l_Lean_Expr_isMVar(x_524); +if (x_548 == 0) +{ +lean_dec(x_526); +lean_dec(x_524); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_1); +return x_529; +} +else +{ +lean_object* x_549; lean_object* x_550; lean_object* x_551; uint8_t x_552; +lean_free_object(x_529); +lean_inc(x_524); +x_549 = l_Lean_Expr_mvarId_x21(x_524); +x_550 = l_Lean_MVarId_isDelayedAssigned___at_Lean_Meta_CheckAssignment_checkApp___spec__2(x_549, x_5, x_6, x_7, x_8, x_9, x_10, x_543); +x_551 = lean_ctor_get(x_550, 0); +lean_inc(x_551); +x_552 = lean_unbox(x_551); +lean_dec(x_551); +if (x_552 == 0) +{ +lean_object* x_553; lean_object* x_554; +x_553 = lean_ctor_get(x_550, 1); +lean_inc(x_553); +lean_dec(x_550); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +x_554 = lean_infer_type(x_1, x_7, x_8, x_9, x_10, x_553); +if (lean_obj_tag(x_554) == 0) +{ +lean_object* x_555; lean_object* x_556; lean_object* x_557; +x_555 = lean_ctor_get(x_554, 0); +lean_inc(x_555); +x_556 = lean_ctor_get(x_554, 1); +lean_inc(x_556); +lean_dec(x_554); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_5); +x_557 = l_Lean_Meta_CheckAssignment_check(x_555, x_5, x_6, x_7, x_8, x_9, x_10, x_556); +if (lean_obj_tag(x_557) == 0) +{ +lean_object* x_558; lean_object* x_559; lean_object* x_560; lean_object* x_561; lean_object* x_562; uint8_t x_563; lean_object* x_564; lean_object* x_565; lean_object* x_566; lean_object* x_567; lean_object* x_568; lean_object* x_569; +x_558 = lean_ctor_get(x_557, 0); +lean_inc(x_558); +x_559 = lean_ctor_get(x_557, 1); +lean_inc(x_559); +lean_dec(x_557); +x_560 = lean_ctor_get(x_5, 1); +lean_inc(x_560); +lean_dec(x_5); +x_561 = lean_ctor_get(x_560, 1); +lean_inc(x_561); +x_562 = lean_ctor_get(x_560, 4); +lean_inc(x_562); +lean_dec(x_560); +x_563 = 0; +x_564 = lean_box(0); +x_565 = lean_unsigned_to_nat(0u); +x_566 = l_Lean_Meta_mkFreshExprMVarAt(x_561, x_562, x_558, x_563, x_564, x_565, x_7, x_8, x_9, x_10, x_559); +x_567 = lean_ctor_get(x_566, 0); +lean_inc(x_567); +x_568 = lean_ctor_get(x_566, 1); +lean_inc(x_568); +lean_dec(x_566); +lean_inc(x_567); +x_569 = l_Lean_Meta_CheckAssignment_assignToConstFun(x_524, x_526, x_567, x_7, x_8, x_9, x_10, x_568); +if (lean_obj_tag(x_569) == 0) +{ +lean_object* x_570; uint8_t x_571; +x_570 = lean_ctor_get(x_569, 0); +lean_inc(x_570); +x_571 = lean_unbox(x_570); +lean_dec(x_570); +if (x_571 == 0) +{ +uint8_t x_572; +lean_dec(x_567); +x_572 = !lean_is_exclusive(x_569); +if (x_572 == 0) +{ +lean_object* x_573; +x_573 = lean_ctor_get(x_569, 0); +lean_dec(x_573); +lean_ctor_set_tag(x_569, 1); +lean_ctor_set(x_569, 0, x_537); +return x_569; +} +else +{ +lean_object* x_574; lean_object* x_575; +x_574 = lean_ctor_get(x_569, 1); +lean_inc(x_574); +lean_dec(x_569); +x_575 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_575, 0, x_537); +lean_ctor_set(x_575, 1, x_574); +return x_575; +} +} +else +{ +uint8_t x_576; +lean_dec(x_537); +x_576 = !lean_is_exclusive(x_569); +if (x_576 == 0) +{ +lean_object* x_577; +x_577 = lean_ctor_get(x_569, 0); +lean_dec(x_577); +lean_ctor_set(x_569, 0, x_567); +return x_569; +} +else +{ +lean_object* x_578; lean_object* x_579; +x_578 = lean_ctor_get(x_569, 1); +lean_inc(x_578); +lean_dec(x_569); +x_579 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_579, 0, x_567); +lean_ctor_set(x_579, 1, x_578); +return x_579; +} +} +} +else +{ +uint8_t x_580; +lean_dec(x_567); +lean_dec(x_537); +x_580 = !lean_is_exclusive(x_569); +if (x_580 == 0) +{ +return x_569; +} +else +{ +lean_object* x_581; lean_object* x_582; lean_object* x_583; +x_581 = lean_ctor_get(x_569, 0); +x_582 = lean_ctor_get(x_569, 1); +lean_inc(x_582); +lean_inc(x_581); +lean_dec(x_569); +x_583 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_583, 0, x_581); +lean_ctor_set(x_583, 1, x_582); +return x_583; +} +} +} +else +{ +uint8_t x_584; +lean_dec(x_537); +lean_dec(x_526); +lean_dec(x_524); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_5); +x_584 = !lean_is_exclusive(x_557); +if (x_584 == 0) +{ +return x_557; +} +else +{ +lean_object* x_585; lean_object* x_586; lean_object* x_587; +x_585 = lean_ctor_get(x_557, 0); +x_586 = lean_ctor_get(x_557, 1); +lean_inc(x_586); +lean_inc(x_585); +lean_dec(x_557); +x_587 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_587, 0, x_585); +lean_ctor_set(x_587, 1, x_586); +return x_587; +} +} +} +else +{ +uint8_t x_588; +lean_dec(x_537); +lean_dec(x_526); +lean_dec(x_524); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +x_588 = !lean_is_exclusive(x_554); +if (x_588 == 0) +{ +return x_554; +} +else +{ +lean_object* x_589; lean_object* x_590; lean_object* x_591; +x_589 = lean_ctor_get(x_554, 0); +x_590 = lean_ctor_get(x_554, 1); +lean_inc(x_590); +lean_inc(x_589); +lean_dec(x_554); +x_591 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_591, 0, x_589); +lean_ctor_set(x_591, 1, x_590); +return x_591; +} +} +} +else +{ +uint8_t x_592; +lean_dec(x_526); +lean_dec(x_524); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_1); +x_592 = !lean_is_exclusive(x_550); +if (x_592 == 0) +{ +lean_object* x_593; +x_593 = lean_ctor_get(x_550, 0); +lean_dec(x_593); +lean_ctor_set_tag(x_550, 1); +lean_ctor_set(x_550, 0, x_537); +return x_550; +} +else +{ +lean_object* x_594; lean_object* x_595; +x_594 = lean_ctor_get(x_550, 1); +lean_inc(x_594); +lean_dec(x_550); +x_595 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_595, 0, x_537); +lean_ctor_set(x_595, 1, x_594); +return x_595; +} +} +} +} +} +else +{ +lean_object* x_596; lean_object* x_597; lean_object* x_598; uint8_t x_599; +x_596 = lean_ctor_get(x_529, 1); +lean_inc(x_596); +lean_dec(x_529); +x_597 = lean_ctor_get(x_537, 0); +lean_inc(x_597); +x_598 = l_Lean_Meta_CheckAssignment_throwOutOfScopeFVar___rarg___closed__1; +x_599 = lean_nat_dec_eq(x_598, x_597); +lean_dec(x_597); +if (x_599 == 0) +{ +lean_object* x_600; +lean_dec(x_526); +lean_dec(x_524); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_1); +x_600 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_600, 0, x_537); +lean_ctor_set(x_600, 1, x_596); +return x_600; +} +else +{ +uint8_t x_601; +x_601 = l_Lean_Expr_isMVar(x_524); +if (x_601 == 0) +{ +lean_object* x_602; +lean_dec(x_526); +lean_dec(x_524); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_1); +x_602 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_602, 0, x_537); +lean_ctor_set(x_602, 1, x_596); +return x_602; +} +else +{ +lean_object* x_603; lean_object* x_604; lean_object* x_605; uint8_t x_606; +lean_inc(x_524); +x_603 = l_Lean_Expr_mvarId_x21(x_524); +x_604 = l_Lean_MVarId_isDelayedAssigned___at_Lean_Meta_CheckAssignment_checkApp___spec__2(x_603, x_5, x_6, x_7, x_8, x_9, x_10, x_596); +x_605 = lean_ctor_get(x_604, 0); +lean_inc(x_605); +x_606 = lean_unbox(x_605); +lean_dec(x_605); +if (x_606 == 0) +{ +lean_object* x_607; lean_object* x_608; +x_607 = lean_ctor_get(x_604, 1); +lean_inc(x_607); +lean_dec(x_604); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +x_608 = lean_infer_type(x_1, x_7, x_8, x_9, x_10, x_607); +if (lean_obj_tag(x_608) == 0) +{ +lean_object* x_609; lean_object* x_610; lean_object* x_611; +x_609 = lean_ctor_get(x_608, 0); +lean_inc(x_609); +x_610 = lean_ctor_get(x_608, 1); +lean_inc(x_610); +lean_dec(x_608); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_5); +x_611 = l_Lean_Meta_CheckAssignment_check(x_609, x_5, x_6, x_7, x_8, x_9, x_10, x_610); +if (lean_obj_tag(x_611) == 0) +{ +lean_object* x_612; lean_object* x_613; lean_object* x_614; lean_object* x_615; lean_object* x_616; uint8_t x_617; lean_object* x_618; lean_object* x_619; lean_object* x_620; lean_object* x_621; lean_object* x_622; lean_object* x_623; +x_612 = lean_ctor_get(x_611, 0); +lean_inc(x_612); +x_613 = lean_ctor_get(x_611, 1); +lean_inc(x_613); +lean_dec(x_611); +x_614 = lean_ctor_get(x_5, 1); +lean_inc(x_614); +lean_dec(x_5); +x_615 = lean_ctor_get(x_614, 1); +lean_inc(x_615); +x_616 = lean_ctor_get(x_614, 4); +lean_inc(x_616); +lean_dec(x_614); +x_617 = 0; +x_618 = lean_box(0); +x_619 = lean_unsigned_to_nat(0u); +x_620 = l_Lean_Meta_mkFreshExprMVarAt(x_615, x_616, x_612, x_617, x_618, x_619, x_7, x_8, x_9, x_10, x_613); +x_621 = lean_ctor_get(x_620, 0); +lean_inc(x_621); +x_622 = lean_ctor_get(x_620, 1); +lean_inc(x_622); +lean_dec(x_620); +lean_inc(x_621); +x_623 = l_Lean_Meta_CheckAssignment_assignToConstFun(x_524, x_526, x_621, x_7, x_8, x_9, x_10, x_622); +if (lean_obj_tag(x_623) == 0) +{ +lean_object* x_624; uint8_t x_625; +x_624 = lean_ctor_get(x_623, 0); +lean_inc(x_624); +x_625 = lean_unbox(x_624); +lean_dec(x_624); if (x_625 == 0) { -lean_object* x_626; lean_object* x_627; -x_626 = lean_ctor_get(x_624, 0); -x_627 = l_Lean_mkAppN(x_619, x_626); -lean_ctor_set(x_624, 0, x_627); -return x_624; +lean_object* x_626; lean_object* x_627; lean_object* x_628; +lean_dec(x_621); +x_626 = lean_ctor_get(x_623, 1); +lean_inc(x_626); +if (lean_is_exclusive(x_623)) { + lean_ctor_release(x_623, 0); + lean_ctor_release(x_623, 1); + x_627 = x_623; +} else { + lean_dec_ref(x_623); + x_627 = lean_box(0); +} +if (lean_is_scalar(x_627)) { + x_628 = lean_alloc_ctor(1, 2, 0); +} else { + x_628 = x_627; + lean_ctor_set_tag(x_628, 1); +} +lean_ctor_set(x_628, 0, x_537); +lean_ctor_set(x_628, 1, x_626); +return x_628; } else { -lean_object* x_628; lean_object* x_629; lean_object* x_630; lean_object* x_631; -x_628 = lean_ctor_get(x_624, 0); -x_629 = lean_ctor_get(x_624, 1); +lean_object* x_629; lean_object* x_630; lean_object* x_631; +lean_dec(x_537); +x_629 = lean_ctor_get(x_623, 1); lean_inc(x_629); -lean_inc(x_628); -lean_dec(x_624); -x_630 = l_Lean_mkAppN(x_619, x_628); -x_631 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_631, 0, x_630); +if (lean_is_exclusive(x_623)) { + lean_ctor_release(x_623, 0); + lean_ctor_release(x_623, 1); + x_630 = x_623; +} else { + lean_dec_ref(x_623); + x_630 = lean_box(0); +} +if (lean_is_scalar(x_630)) { + x_631 = lean_alloc_ctor(0, 2, 0); +} else { + x_631 = x_630; +} +lean_ctor_set(x_631, 0, x_621); lean_ctor_set(x_631, 1, x_629); return x_631; } } else { -uint8_t x_632; -lean_dec(x_619); -x_632 = !lean_is_exclusive(x_624); -if (x_632 == 0) -{ -return x_624; -} -else -{ -lean_object* x_633; lean_object* x_634; lean_object* x_635; -x_633 = lean_ctor_get(x_624, 0); -x_634 = lean_ctor_get(x_624, 1); -lean_inc(x_634); +lean_object* x_632; lean_object* x_633; lean_object* x_634; lean_object* x_635; +lean_dec(x_621); +lean_dec(x_537); +x_632 = lean_ctor_get(x_623, 0); +lean_inc(x_632); +x_633 = lean_ctor_get(x_623, 1); lean_inc(x_633); -lean_dec(x_624); -x_635 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_635, 0, x_633); -lean_ctor_set(x_635, 1, x_634); +if (lean_is_exclusive(x_623)) { + lean_ctor_release(x_623, 0); + lean_ctor_release(x_623, 1); + x_634 = x_623; +} else { + lean_dec_ref(x_623); + x_634 = lean_box(0); +} +if (lean_is_scalar(x_634)) { + x_635 = lean_alloc_ctor(1, 2, 0); +} else { + x_635 = x_634; +} +lean_ctor_set(x_635, 0, x_632); +lean_ctor_set(x_635, 1, x_633); return x_635; } } +else +{ +lean_object* x_636; lean_object* x_637; lean_object* x_638; lean_object* x_639; +lean_dec(x_537); +lean_dec(x_526); +lean_dec(x_524); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_5); +x_636 = lean_ctor_get(x_611, 0); +lean_inc(x_636); +x_637 = lean_ctor_get(x_611, 1); +lean_inc(x_637); +if (lean_is_exclusive(x_611)) { + lean_ctor_release(x_611, 0); + lean_ctor_release(x_611, 1); + x_638 = x_611; +} else { + lean_dec_ref(x_611); + x_638 = lean_box(0); +} +if (lean_is_scalar(x_638)) { + x_639 = lean_alloc_ctor(1, 2, 0); +} else { + x_639 = x_638; +} +lean_ctor_set(x_639, 0, x_636); +lean_ctor_set(x_639, 1, x_637); +return x_639; } -block_652: -{ -lean_object* x_638; lean_object* x_639; -lean_dec(x_637); -lean_inc(x_2); -x_638 = l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_CheckAssignment_findCached_x3f(x_2, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -x_639 = lean_ctor_get(x_638, 0); -lean_inc(x_639); -if (lean_obj_tag(x_639) == 0) -{ -lean_object* x_640; lean_object* x_641; -x_640 = lean_ctor_get(x_638, 1); -lean_inc(x_640); -lean_dec(x_638); -lean_inc(x_10); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_2); -x_641 = l_Lean_Meta_CheckAssignment_check(x_2, x_5, x_6, x_7, x_8, x_9, x_10, x_640); -if (lean_obj_tag(x_641) == 0) -{ -lean_object* x_642; lean_object* x_643; lean_object* x_644; lean_object* x_645; -x_642 = lean_ctor_get(x_641, 0); -lean_inc(x_642); -x_643 = lean_ctor_get(x_641, 1); -lean_inc(x_643); -lean_dec(x_641); -lean_inc(x_642); -x_644 = l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_CheckAssignment_cache(x_2, x_642, x_5, x_6, x_7, x_8, x_9, x_10, x_643); -x_645 = lean_ctor_get(x_644, 1); -lean_inc(x_645); -lean_dec(x_644); -x_619 = x_642; -x_620 = x_645; -goto block_636; } else { -uint8_t x_646; +lean_object* x_640; lean_object* x_641; lean_object* x_642; lean_object* x_643; +lean_dec(x_537); +lean_dec(x_526); +lean_dec(x_524); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); -lean_dec(x_3); -lean_dec(x_2); -x_646 = !lean_is_exclusive(x_641); -if (x_646 == 0) -{ -return x_641; +x_640 = lean_ctor_get(x_608, 0); +lean_inc(x_640); +x_641 = lean_ctor_get(x_608, 1); +lean_inc(x_641); +if (lean_is_exclusive(x_608)) { + lean_ctor_release(x_608, 0); + lean_ctor_release(x_608, 1); + x_642 = x_608; +} else { + lean_dec_ref(x_608); + x_642 = lean_box(0); } -else -{ -lean_object* x_647; lean_object* x_648; lean_object* x_649; -x_647 = lean_ctor_get(x_641, 0); -x_648 = lean_ctor_get(x_641, 1); -lean_inc(x_648); -lean_inc(x_647); -lean_dec(x_641); -x_649 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_649, 0, x_647); -lean_ctor_set(x_649, 1, x_648); -return x_649; +if (lean_is_scalar(x_642)) { + x_643 = lean_alloc_ctor(1, 2, 0); +} else { + x_643 = x_642; } +lean_ctor_set(x_643, 0, x_640); +lean_ctor_set(x_643, 1, x_641); +return x_643; } } else { -lean_object* x_650; lean_object* x_651; -lean_dec(x_2); -x_650 = lean_ctor_get(x_638, 1); -lean_inc(x_650); -lean_dec(x_638); -x_651 = lean_ctor_get(x_639, 0); -lean_inc(x_651); -lean_dec(x_639); -x_619 = x_651; -x_620 = x_650; -goto block_636; -} -} -} -block_803: -{ -lean_object* x_659; lean_object* x_660; lean_object* x_783; uint8_t x_799; -lean_dec(x_658); -x_799 = l_Lean_Expr_hasExprMVar(x_2); -if (x_799 == 0) -{ -uint8_t x_800; -x_800 = l_Lean_Expr_hasFVar(x_2); -if (x_800 == 0) -{ -x_659 = x_2; -x_660 = x_11; -goto block_782; -} -else -{ -lean_object* x_801; -x_801 = lean_box(0); -x_783 = x_801; -goto block_798; -} -} -else -{ -lean_object* x_802; -x_802 = lean_box(0); -x_783 = x_802; -goto block_798; -} -block_782: -{ -lean_object* x_661; size_t x_662; size_t x_663; lean_object* x_664; -x_661 = lean_array_get_size(x_3); -x_662 = lean_usize_of_nat(x_661); -x_663 = 0; -lean_inc(x_10); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_6); -lean_inc(x_5); -x_664 = l_Array_mapMUnsafe_map___at_Lean_Meta_CheckAssignment_checkApp___spec__1(x_662, x_663, x_3, x_5, x_6, x_7, x_8, x_9, x_10, x_660); -if (lean_obj_tag(x_664) == 0) -{ -uint8_t x_665; -lean_dec(x_661); +lean_object* x_644; lean_object* x_645; lean_object* x_646; +lean_dec(x_526); +lean_dec(x_524); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); @@ -22293,699 +21115,141 @@ lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_1); -x_665 = !lean_is_exclusive(x_664); -if (x_665 == 0) -{ -lean_object* x_666; lean_object* x_667; -x_666 = lean_ctor_get(x_664, 0); -x_667 = l_Lean_mkAppN(x_659, x_666); -lean_ctor_set(x_664, 0, x_667); -return x_664; +x_644 = lean_ctor_get(x_604, 1); +lean_inc(x_644); +if (lean_is_exclusive(x_604)) { + lean_ctor_release(x_604, 0); + lean_ctor_release(x_604, 1); + x_645 = x_604; +} else { + lean_dec_ref(x_604); + x_645 = lean_box(0); +} +if (lean_is_scalar(x_645)) { + x_646 = lean_alloc_ctor(1, 2, 0); +} else { + x_646 = x_645; + lean_ctor_set_tag(x_646, 1); +} +lean_ctor_set(x_646, 0, x_537); +lean_ctor_set(x_646, 1, x_644); +return x_646; +} +} +} +} +} +} } else { -lean_object* x_668; lean_object* x_669; lean_object* x_670; lean_object* x_671; -x_668 = lean_ctor_get(x_664, 0); -x_669 = lean_ctor_get(x_664, 1); +uint8_t x_647; +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_3); +lean_dec(x_1); +x_647 = !lean_is_exclusive(x_523); +if (x_647 == 0) +{ +return x_523; +} +else +{ +lean_object* x_648; lean_object* x_649; lean_object* x_650; +x_648 = lean_ctor_get(x_523, 0); +x_649 = lean_ctor_get(x_523, 1); +lean_inc(x_649); +lean_inc(x_648); +lean_dec(x_523); +x_650 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_650, 0, x_648); +lean_ctor_set(x_650, 1, x_649); +return x_650; +} +} +} +block_675: +{ +lean_object* x_653; +lean_dec(x_652); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +x_653 = l_Lean_Meta_CheckAssignment_check(x_2, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +if (lean_obj_tag(x_653) == 0) +{ +lean_object* x_654; lean_object* x_655; lean_object* x_656; size_t x_657; size_t x_658; lean_object* x_659; +x_654 = lean_ctor_get(x_653, 0); +lean_inc(x_654); +x_655 = lean_ctor_get(x_653, 1); +lean_inc(x_655); +lean_dec(x_653); +x_656 = lean_array_get_size(x_3); +x_657 = lean_usize_of_nat(x_656); +lean_dec(x_656); +x_658 = 0; +x_659 = l_Array_mapMUnsafe_map___at_Lean_Meta_CheckAssignment_checkApp___spec__1(x_657, x_658, x_3, x_5, x_6, x_7, x_8, x_9, x_10, x_655); +if (lean_obj_tag(x_659) == 0) +{ +uint8_t x_660; +x_660 = !lean_is_exclusive(x_659); +if (x_660 == 0) +{ +lean_object* x_661; lean_object* x_662; +x_661 = lean_ctor_get(x_659, 0); +x_662 = l_Lean_mkAppN(x_654, x_661); +lean_ctor_set(x_659, 0, x_662); +return x_659; +} +else +{ +lean_object* x_663; lean_object* x_664; lean_object* x_665; lean_object* x_666; +x_663 = lean_ctor_get(x_659, 0); +x_664 = lean_ctor_get(x_659, 1); +lean_inc(x_664); +lean_inc(x_663); +lean_dec(x_659); +x_665 = l_Lean_mkAppN(x_654, x_663); +x_666 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_666, 0, x_665); +lean_ctor_set(x_666, 1, x_664); +return x_666; +} +} +else +{ +uint8_t x_667; +lean_dec(x_654); +x_667 = !lean_is_exclusive(x_659); +if (x_667 == 0) +{ +return x_659; +} +else +{ +lean_object* x_668; lean_object* x_669; lean_object* x_670; +x_668 = lean_ctor_get(x_659, 0); +x_669 = lean_ctor_get(x_659, 1); lean_inc(x_669); lean_inc(x_668); -lean_dec(x_664); -x_670 = l_Lean_mkAppN(x_659, x_668); -x_671 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_671, 0, x_670); -lean_ctor_set(x_671, 1, x_669); -return x_671; -} -} -else -{ -lean_object* x_672; -x_672 = lean_ctor_get(x_664, 0); -lean_inc(x_672); -if (lean_obj_tag(x_672) == 0) -{ -uint8_t x_673; -lean_dec(x_661); lean_dec(x_659); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_1); -x_673 = !lean_is_exclusive(x_664); -if (x_673 == 0) -{ -lean_object* x_674; -x_674 = lean_ctor_get(x_664, 0); -lean_dec(x_674); -return x_664; -} -else -{ -lean_object* x_675; lean_object* x_676; -x_675 = lean_ctor_get(x_664, 1); -lean_inc(x_675); -lean_dec(x_664); -x_676 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_676, 0, x_672); -lean_ctor_set(x_676, 1, x_675); -return x_676; -} -} -else -{ -uint8_t x_677; -x_677 = !lean_is_exclusive(x_664); -if (x_677 == 0) -{ -lean_object* x_678; lean_object* x_679; lean_object* x_680; lean_object* x_681; uint8_t x_682; -x_678 = lean_ctor_get(x_664, 1); -x_679 = lean_ctor_get(x_664, 0); -lean_dec(x_679); -x_680 = lean_ctor_get(x_672, 0); -lean_inc(x_680); -x_681 = l_Lean_Meta_CheckAssignment_throwOutOfScopeFVar___rarg___closed__1; -x_682 = lean_nat_dec_eq(x_681, x_680); -lean_dec(x_680); -if (x_682 == 0) -{ -lean_dec(x_661); -lean_dec(x_659); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_1); -return x_664; -} -else -{ -uint8_t x_683; -x_683 = l_Lean_Expr_isMVar(x_659); -if (x_683 == 0) -{ -lean_dec(x_661); -lean_dec(x_659); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_1); -return x_664; -} -else -{ -lean_object* x_684; lean_object* x_685; lean_object* x_686; uint8_t x_687; -lean_free_object(x_664); -lean_inc(x_659); -x_684 = l_Lean_Expr_mvarId_x21(x_659); -x_685 = l_Lean_MVarId_isDelayedAssigned___at_Lean_Meta_CheckAssignment_checkApp___spec__2(x_684, x_5, x_6, x_7, x_8, x_9, x_10, x_678); -x_686 = lean_ctor_get(x_685, 0); -lean_inc(x_686); -x_687 = lean_unbox(x_686); -lean_dec(x_686); -if (x_687 == 0) -{ -lean_object* x_688; lean_object* x_689; -x_688 = lean_ctor_get(x_685, 1); -lean_inc(x_688); -lean_dec(x_685); -lean_inc(x_10); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -x_689 = lean_infer_type(x_1, x_7, x_8, x_9, x_10, x_688); -if (lean_obj_tag(x_689) == 0) -{ -lean_object* x_690; lean_object* x_691; lean_object* x_692; -x_690 = lean_ctor_get(x_689, 0); -lean_inc(x_690); -x_691 = lean_ctor_get(x_689, 1); -lean_inc(x_691); -lean_dec(x_689); -lean_inc(x_10); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_5); -x_692 = l_Lean_Meta_CheckAssignment_check(x_690, x_5, x_6, x_7, x_8, x_9, x_10, x_691); -if (lean_obj_tag(x_692) == 0) -{ -lean_object* x_693; lean_object* x_694; lean_object* x_695; lean_object* x_696; lean_object* x_697; uint8_t x_698; lean_object* x_699; lean_object* x_700; lean_object* x_701; lean_object* x_702; lean_object* x_703; lean_object* x_704; -x_693 = lean_ctor_get(x_692, 0); -lean_inc(x_693); -x_694 = lean_ctor_get(x_692, 1); -lean_inc(x_694); -lean_dec(x_692); -x_695 = lean_ctor_get(x_5, 1); -lean_inc(x_695); -lean_dec(x_5); -x_696 = lean_ctor_get(x_695, 1); -lean_inc(x_696); -x_697 = lean_ctor_get(x_695, 4); -lean_inc(x_697); -lean_dec(x_695); -x_698 = 0; -x_699 = lean_box(0); -x_700 = lean_unsigned_to_nat(0u); -x_701 = l_Lean_Meta_mkFreshExprMVarAt(x_696, x_697, x_693, x_698, x_699, x_700, x_7, x_8, x_9, x_10, x_694); -x_702 = lean_ctor_get(x_701, 0); -lean_inc(x_702); -x_703 = lean_ctor_get(x_701, 1); -lean_inc(x_703); -lean_dec(x_701); -lean_inc(x_702); -x_704 = l_Lean_Meta_CheckAssignment_assignToConstFun(x_659, x_661, x_702, x_7, x_8, x_9, x_10, x_703); -if (lean_obj_tag(x_704) == 0) -{ -lean_object* x_705; uint8_t x_706; -x_705 = lean_ctor_get(x_704, 0); -lean_inc(x_705); -x_706 = lean_unbox(x_705); -lean_dec(x_705); -if (x_706 == 0) -{ -uint8_t x_707; -lean_dec(x_702); -x_707 = !lean_is_exclusive(x_704); -if (x_707 == 0) -{ -lean_object* x_708; -x_708 = lean_ctor_get(x_704, 0); -lean_dec(x_708); -lean_ctor_set_tag(x_704, 1); -lean_ctor_set(x_704, 0, x_672); -return x_704; -} -else -{ -lean_object* x_709; lean_object* x_710; -x_709 = lean_ctor_get(x_704, 1); -lean_inc(x_709); -lean_dec(x_704); -x_710 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_710, 0, x_672); -lean_ctor_set(x_710, 1, x_709); -return x_710; -} -} -else -{ -uint8_t x_711; -lean_dec(x_672); -x_711 = !lean_is_exclusive(x_704); -if (x_711 == 0) -{ -lean_object* x_712; -x_712 = lean_ctor_get(x_704, 0); -lean_dec(x_712); -lean_ctor_set(x_704, 0, x_702); -return x_704; -} -else -{ -lean_object* x_713; lean_object* x_714; -x_713 = lean_ctor_get(x_704, 1); -lean_inc(x_713); -lean_dec(x_704); -x_714 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_714, 0, x_702); -lean_ctor_set(x_714, 1, x_713); -return x_714; +x_670 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_670, 0, x_668); +lean_ctor_set(x_670, 1, x_669); +return x_670; } } } else { -uint8_t x_715; -lean_dec(x_702); -lean_dec(x_672); -x_715 = !lean_is_exclusive(x_704); -if (x_715 == 0) -{ -return x_704; -} -else -{ -lean_object* x_716; lean_object* x_717; lean_object* x_718; -x_716 = lean_ctor_get(x_704, 0); -x_717 = lean_ctor_get(x_704, 1); -lean_inc(x_717); -lean_inc(x_716); -lean_dec(x_704); -x_718 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_718, 0, x_716); -lean_ctor_set(x_718, 1, x_717); -return x_718; -} -} -} -else -{ -uint8_t x_719; -lean_dec(x_672); -lean_dec(x_661); -lean_dec(x_659); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_5); -x_719 = !lean_is_exclusive(x_692); -if (x_719 == 0) -{ -return x_692; -} -else -{ -lean_object* x_720; lean_object* x_721; lean_object* x_722; -x_720 = lean_ctor_get(x_692, 0); -x_721 = lean_ctor_get(x_692, 1); -lean_inc(x_721); -lean_inc(x_720); -lean_dec(x_692); -x_722 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_722, 0, x_720); -lean_ctor_set(x_722, 1, x_721); -return x_722; -} -} -} -else -{ -uint8_t x_723; -lean_dec(x_672); -lean_dec(x_661); -lean_dec(x_659); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -x_723 = !lean_is_exclusive(x_689); -if (x_723 == 0) -{ -return x_689; -} -else -{ -lean_object* x_724; lean_object* x_725; lean_object* x_726; -x_724 = lean_ctor_get(x_689, 0); -x_725 = lean_ctor_get(x_689, 1); -lean_inc(x_725); -lean_inc(x_724); -lean_dec(x_689); -x_726 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_726, 0, x_724); -lean_ctor_set(x_726, 1, x_725); -return x_726; -} -} -} -else -{ -uint8_t x_727; -lean_dec(x_661); -lean_dec(x_659); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_1); -x_727 = !lean_is_exclusive(x_685); -if (x_727 == 0) -{ -lean_object* x_728; -x_728 = lean_ctor_get(x_685, 0); -lean_dec(x_728); -lean_ctor_set_tag(x_685, 1); -lean_ctor_set(x_685, 0, x_672); -return x_685; -} -else -{ -lean_object* x_729; lean_object* x_730; -x_729 = lean_ctor_get(x_685, 1); -lean_inc(x_729); -lean_dec(x_685); -x_730 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_730, 0, x_672); -lean_ctor_set(x_730, 1, x_729); -return x_730; -} -} -} -} -} -else -{ -lean_object* x_731; lean_object* x_732; lean_object* x_733; uint8_t x_734; -x_731 = lean_ctor_get(x_664, 1); -lean_inc(x_731); -lean_dec(x_664); -x_732 = lean_ctor_get(x_672, 0); -lean_inc(x_732); -x_733 = l_Lean_Meta_CheckAssignment_throwOutOfScopeFVar___rarg___closed__1; -x_734 = lean_nat_dec_eq(x_733, x_732); -lean_dec(x_732); -if (x_734 == 0) -{ -lean_object* x_735; -lean_dec(x_661); -lean_dec(x_659); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_1); -x_735 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_735, 0, x_672); -lean_ctor_set(x_735, 1, x_731); -return x_735; -} -else -{ -uint8_t x_736; -x_736 = l_Lean_Expr_isMVar(x_659); -if (x_736 == 0) -{ -lean_object* x_737; -lean_dec(x_661); -lean_dec(x_659); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_1); -x_737 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_737, 0, x_672); -lean_ctor_set(x_737, 1, x_731); -return x_737; -} -else -{ -lean_object* x_738; lean_object* x_739; lean_object* x_740; uint8_t x_741; -lean_inc(x_659); -x_738 = l_Lean_Expr_mvarId_x21(x_659); -x_739 = l_Lean_MVarId_isDelayedAssigned___at_Lean_Meta_CheckAssignment_checkApp___spec__2(x_738, x_5, x_6, x_7, x_8, x_9, x_10, x_731); -x_740 = lean_ctor_get(x_739, 0); -lean_inc(x_740); -x_741 = lean_unbox(x_740); -lean_dec(x_740); -if (x_741 == 0) -{ -lean_object* x_742; lean_object* x_743; -x_742 = lean_ctor_get(x_739, 1); -lean_inc(x_742); -lean_dec(x_739); -lean_inc(x_10); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -x_743 = lean_infer_type(x_1, x_7, x_8, x_9, x_10, x_742); -if (lean_obj_tag(x_743) == 0) -{ -lean_object* x_744; lean_object* x_745; lean_object* x_746; -x_744 = lean_ctor_get(x_743, 0); -lean_inc(x_744); -x_745 = lean_ctor_get(x_743, 1); -lean_inc(x_745); -lean_dec(x_743); -lean_inc(x_10); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_5); -x_746 = l_Lean_Meta_CheckAssignment_check(x_744, x_5, x_6, x_7, x_8, x_9, x_10, x_745); -if (lean_obj_tag(x_746) == 0) -{ -lean_object* x_747; lean_object* x_748; lean_object* x_749; lean_object* x_750; lean_object* x_751; uint8_t x_752; lean_object* x_753; lean_object* x_754; lean_object* x_755; lean_object* x_756; lean_object* x_757; lean_object* x_758; -x_747 = lean_ctor_get(x_746, 0); -lean_inc(x_747); -x_748 = lean_ctor_get(x_746, 1); -lean_inc(x_748); -lean_dec(x_746); -x_749 = lean_ctor_get(x_5, 1); -lean_inc(x_749); -lean_dec(x_5); -x_750 = lean_ctor_get(x_749, 1); -lean_inc(x_750); -x_751 = lean_ctor_get(x_749, 4); -lean_inc(x_751); -lean_dec(x_749); -x_752 = 0; -x_753 = lean_box(0); -x_754 = lean_unsigned_to_nat(0u); -x_755 = l_Lean_Meta_mkFreshExprMVarAt(x_750, x_751, x_747, x_752, x_753, x_754, x_7, x_8, x_9, x_10, x_748); -x_756 = lean_ctor_get(x_755, 0); -lean_inc(x_756); -x_757 = lean_ctor_get(x_755, 1); -lean_inc(x_757); -lean_dec(x_755); -lean_inc(x_756); -x_758 = l_Lean_Meta_CheckAssignment_assignToConstFun(x_659, x_661, x_756, x_7, x_8, x_9, x_10, x_757); -if (lean_obj_tag(x_758) == 0) -{ -lean_object* x_759; uint8_t x_760; -x_759 = lean_ctor_get(x_758, 0); -lean_inc(x_759); -x_760 = lean_unbox(x_759); -lean_dec(x_759); -if (x_760 == 0) -{ -lean_object* x_761; lean_object* x_762; lean_object* x_763; -lean_dec(x_756); -x_761 = lean_ctor_get(x_758, 1); -lean_inc(x_761); -if (lean_is_exclusive(x_758)) { - lean_ctor_release(x_758, 0); - lean_ctor_release(x_758, 1); - x_762 = x_758; -} else { - lean_dec_ref(x_758); - x_762 = lean_box(0); -} -if (lean_is_scalar(x_762)) { - x_763 = lean_alloc_ctor(1, 2, 0); -} else { - x_763 = x_762; - lean_ctor_set_tag(x_763, 1); -} -lean_ctor_set(x_763, 0, x_672); -lean_ctor_set(x_763, 1, x_761); -return x_763; -} -else -{ -lean_object* x_764; lean_object* x_765; lean_object* x_766; -lean_dec(x_672); -x_764 = lean_ctor_get(x_758, 1); -lean_inc(x_764); -if (lean_is_exclusive(x_758)) { - lean_ctor_release(x_758, 0); - lean_ctor_release(x_758, 1); - x_765 = x_758; -} else { - lean_dec_ref(x_758); - x_765 = lean_box(0); -} -if (lean_is_scalar(x_765)) { - x_766 = lean_alloc_ctor(0, 2, 0); -} else { - x_766 = x_765; -} -lean_ctor_set(x_766, 0, x_756); -lean_ctor_set(x_766, 1, x_764); -return x_766; -} -} -else -{ -lean_object* x_767; lean_object* x_768; lean_object* x_769; lean_object* x_770; -lean_dec(x_756); -lean_dec(x_672); -x_767 = lean_ctor_get(x_758, 0); -lean_inc(x_767); -x_768 = lean_ctor_get(x_758, 1); -lean_inc(x_768); -if (lean_is_exclusive(x_758)) { - lean_ctor_release(x_758, 0); - lean_ctor_release(x_758, 1); - x_769 = x_758; -} else { - lean_dec_ref(x_758); - x_769 = lean_box(0); -} -if (lean_is_scalar(x_769)) { - x_770 = lean_alloc_ctor(1, 2, 0); -} else { - x_770 = x_769; -} -lean_ctor_set(x_770, 0, x_767); -lean_ctor_set(x_770, 1, x_768); -return x_770; -} -} -else -{ -lean_object* x_771; lean_object* x_772; lean_object* x_773; lean_object* x_774; -lean_dec(x_672); -lean_dec(x_661); -lean_dec(x_659); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_5); -x_771 = lean_ctor_get(x_746, 0); -lean_inc(x_771); -x_772 = lean_ctor_get(x_746, 1); -lean_inc(x_772); -if (lean_is_exclusive(x_746)) { - lean_ctor_release(x_746, 0); - lean_ctor_release(x_746, 1); - x_773 = x_746; -} else { - lean_dec_ref(x_746); - x_773 = lean_box(0); -} -if (lean_is_scalar(x_773)) { - x_774 = lean_alloc_ctor(1, 2, 0); -} else { - x_774 = x_773; -} -lean_ctor_set(x_774, 0, x_771); -lean_ctor_set(x_774, 1, x_772); -return x_774; -} -} -else -{ -lean_object* x_775; lean_object* x_776; lean_object* x_777; lean_object* x_778; -lean_dec(x_672); -lean_dec(x_661); -lean_dec(x_659); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -x_775 = lean_ctor_get(x_743, 0); -lean_inc(x_775); -x_776 = lean_ctor_get(x_743, 1); -lean_inc(x_776); -if (lean_is_exclusive(x_743)) { - lean_ctor_release(x_743, 0); - lean_ctor_release(x_743, 1); - x_777 = x_743; -} else { - lean_dec_ref(x_743); - x_777 = lean_box(0); -} -if (lean_is_scalar(x_777)) { - x_778 = lean_alloc_ctor(1, 2, 0); -} else { - x_778 = x_777; -} -lean_ctor_set(x_778, 0, x_775); -lean_ctor_set(x_778, 1, x_776); -return x_778; -} -} -else -{ -lean_object* x_779; lean_object* x_780; lean_object* x_781; -lean_dec(x_661); -lean_dec(x_659); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_1); -x_779 = lean_ctor_get(x_739, 1); -lean_inc(x_779); -if (lean_is_exclusive(x_739)) { - lean_ctor_release(x_739, 0); - lean_ctor_release(x_739, 1); - x_780 = x_739; -} else { - lean_dec_ref(x_739); - x_780 = lean_box(0); -} -if (lean_is_scalar(x_780)) { - x_781 = lean_alloc_ctor(1, 2, 0); -} else { - x_781 = x_780; - lean_ctor_set_tag(x_781, 1); -} -lean_ctor_set(x_781, 0, x_672); -lean_ctor_set(x_781, 1, x_779); -return x_781; -} -} -} -} -} -} -} -block_798: -{ -lean_object* x_784; lean_object* x_785; -lean_dec(x_783); -lean_inc(x_2); -x_784 = l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_CheckAssignment_findCached_x3f(x_2, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -x_785 = lean_ctor_get(x_784, 0); -lean_inc(x_785); -if (lean_obj_tag(x_785) == 0) -{ -lean_object* x_786; lean_object* x_787; -x_786 = lean_ctor_get(x_784, 1); -lean_inc(x_786); -lean_dec(x_784); -lean_inc(x_10); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_2); -x_787 = l_Lean_Meta_CheckAssignment_checkMVar(x_2, x_5, x_6, x_7, x_8, x_9, x_10, x_786); -if (lean_obj_tag(x_787) == 0) -{ -lean_object* x_788; lean_object* x_789; lean_object* x_790; lean_object* x_791; -x_788 = lean_ctor_get(x_787, 0); -lean_inc(x_788); -x_789 = lean_ctor_get(x_787, 1); -lean_inc(x_789); -lean_dec(x_787); -lean_inc(x_788); -x_790 = l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_CheckAssignment_cache(x_2, x_788, x_5, x_6, x_7, x_8, x_9, x_10, x_789); -x_791 = lean_ctor_get(x_790, 1); -lean_inc(x_791); -lean_dec(x_790); -x_659 = x_788; -x_660 = x_791; -goto block_782; -} -else -{ -uint8_t x_792; +uint8_t x_671; lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); @@ -22993,1321 +21257,1726 @@ lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_3); -lean_dec(x_2); -lean_dec(x_1); -x_792 = !lean_is_exclusive(x_787); -if (x_792 == 0) +x_671 = !lean_is_exclusive(x_653); +if (x_671 == 0) { -return x_787; +return x_653; } else { -lean_object* x_793; lean_object* x_794; lean_object* x_795; -x_793 = lean_ctor_get(x_787, 0); -x_794 = lean_ctor_get(x_787, 1); -lean_inc(x_794); -lean_inc(x_793); -lean_dec(x_787); -x_795 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_795, 0, x_793); -lean_ctor_set(x_795, 1, x_794); -return x_795; -} -} -} -else -{ -lean_object* x_796; lean_object* x_797; -lean_dec(x_2); -x_796 = lean_ctor_get(x_784, 1); -lean_inc(x_796); -lean_dec(x_784); -x_797 = lean_ctor_get(x_785, 0); -lean_inc(x_797); -lean_dec(x_785); -x_659 = x_797; -x_660 = x_796; -goto block_782; +lean_object* x_672; lean_object* x_673; lean_object* x_674; +x_672 = lean_ctor_get(x_653, 0); +x_673 = lean_ctor_get(x_653, 1); +lean_inc(x_673); +lean_inc(x_672); +lean_dec(x_653); +x_674 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_674, 0, x_672); +lean_ctor_set(x_674, 1, x_673); +return x_674; } } } } case 4: { -lean_object* x_820; lean_object* x_860; uint8_t x_1006; +lean_object* x_692; lean_object* x_822; uint8_t x_846; lean_dec(x_4); -x_1006 = l_Lean_Expr_isMVar(x_2); -if (x_1006 == 0) +x_846 = l_Lean_Expr_isMVar(x_2); +if (x_846 == 0) { -lean_object* x_1007; +lean_object* x_847; lean_dec(x_1); -x_1007 = lean_box(0); -x_820 = x_1007; -goto block_859; +x_847 = lean_box(0); +x_822 = x_847; +goto block_845; } else { -lean_object* x_1008; uint8_t x_1009; -x_1008 = lean_ctor_get(x_7, 0); -lean_inc(x_1008); -x_1009 = lean_ctor_get_uint8(x_1008, 1); -lean_dec(x_1008); -if (x_1009 == 0) +lean_object* x_848; uint8_t x_849; +x_848 = lean_ctor_get(x_7, 0); +lean_inc(x_848); +x_849 = lean_ctor_get_uint8(x_848, 1); +lean_dec(x_848); +if (x_849 == 0) { -lean_object* x_1010; +lean_object* x_850; lean_dec(x_1); -x_1010 = lean_box(0); -x_820 = x_1010; -goto block_859; +x_850 = lean_box(0); +x_822 = x_850; +goto block_845; } else { -lean_object* x_1011; lean_object* x_1012; uint8_t x_1013; -x_1011 = lean_array_get_size(x_3); -x_1012 = lean_unsigned_to_nat(0u); -x_1013 = lean_nat_dec_lt(x_1012, x_1011); -if (x_1013 == 0) +lean_object* x_851; lean_object* x_852; uint8_t x_853; +x_851 = lean_array_get_size(x_3); +x_852 = lean_unsigned_to_nat(0u); +x_853 = lean_nat_dec_lt(x_852, x_851); +if (x_853 == 0) { -lean_object* x_1014; -lean_dec(x_1011); -x_1014 = lean_box(0); -x_860 = x_1014; -goto block_1005; +lean_object* x_854; +lean_dec(x_851); +x_854 = lean_box(0); +x_692 = x_854; +goto block_821; } else { -uint8_t x_1015; -x_1015 = lean_nat_dec_le(x_1011, x_1011); -if (x_1015 == 0) -{ -lean_object* x_1016; -lean_dec(x_1011); -x_1016 = lean_box(0); -x_860 = x_1016; -goto block_1005; -} -else -{ -size_t x_1017; size_t x_1018; uint8_t x_1019; -x_1017 = 0; -x_1018 = lean_usize_of_nat(x_1011); -lean_dec(x_1011); -x_1019 = l_Array_anyMUnsafe_any___at_Lean_Meta_CheckAssignment_checkApp___spec__3(x_3, x_1017, x_1018); -if (x_1019 == 0) -{ -lean_object* x_1020; -x_1020 = lean_box(0); -x_860 = x_1020; -goto block_1005; -} -else -{ -lean_object* x_1021; -lean_dec(x_1); -x_1021 = lean_box(0); -x_820 = x_1021; -goto block_859; -} -} -} -} -} -block_859: -{ -lean_object* x_821; lean_object* x_822; lean_object* x_839; uint8_t x_855; -lean_dec(x_820); -x_855 = l_Lean_Expr_hasExprMVar(x_2); +uint8_t x_855; +x_855 = lean_nat_dec_le(x_851, x_851); if (x_855 == 0) { -uint8_t x_856; -x_856 = l_Lean_Expr_hasFVar(x_2); -if (x_856 == 0) -{ -x_821 = x_2; -x_822 = x_11; -goto block_838; +lean_object* x_856; +lean_dec(x_851); +x_856 = lean_box(0); +x_692 = x_856; +goto block_821; } else { -lean_object* x_857; -x_857 = lean_box(0); -x_839 = x_857; -goto block_854; +size_t x_857; size_t x_858; uint8_t x_859; +x_857 = 0; +x_858 = lean_usize_of_nat(x_851); +lean_dec(x_851); +x_859 = l_Array_anyMUnsafe_any___at_Lean_Meta_CheckAssignment_checkApp___spec__3(x_3, x_857, x_858); +if (x_859 == 0) +{ +lean_object* x_860; +x_860 = lean_box(0); +x_692 = x_860; +goto block_821; +} +else +{ +lean_object* x_861; +lean_dec(x_1); +x_861 = lean_box(0); +x_822 = x_861; +goto block_845; +} +} +} +} +} +block_821: +{ +lean_object* x_693; +lean_dec(x_692); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +x_693 = l_Lean_Meta_CheckAssignment_check(x_2, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +if (lean_obj_tag(x_693) == 0) +{ +lean_object* x_694; lean_object* x_695; lean_object* x_696; size_t x_697; size_t x_698; lean_object* x_699; +x_694 = lean_ctor_get(x_693, 0); +lean_inc(x_694); +x_695 = lean_ctor_get(x_693, 1); +lean_inc(x_695); +lean_dec(x_693); +x_696 = lean_array_get_size(x_3); +x_697 = lean_usize_of_nat(x_696); +x_698 = 0; +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +x_699 = l_Array_mapMUnsafe_map___at_Lean_Meta_CheckAssignment_checkApp___spec__1(x_697, x_698, x_3, x_5, x_6, x_7, x_8, x_9, x_10, x_695); +if (lean_obj_tag(x_699) == 0) +{ +uint8_t x_700; +lean_dec(x_696); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_1); +x_700 = !lean_is_exclusive(x_699); +if (x_700 == 0) +{ +lean_object* x_701; lean_object* x_702; +x_701 = lean_ctor_get(x_699, 0); +x_702 = l_Lean_mkAppN(x_694, x_701); +lean_ctor_set(x_699, 0, x_702); +return x_699; +} +else +{ +lean_object* x_703; lean_object* x_704; lean_object* x_705; lean_object* x_706; +x_703 = lean_ctor_get(x_699, 0); +x_704 = lean_ctor_get(x_699, 1); +lean_inc(x_704); +lean_inc(x_703); +lean_dec(x_699); +x_705 = l_Lean_mkAppN(x_694, x_703); +x_706 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_706, 0, x_705); +lean_ctor_set(x_706, 1, x_704); +return x_706; } } else { -lean_object* x_858; -x_858 = lean_box(0); -x_839 = x_858; -goto block_854; -} -block_838: +lean_object* x_707; +x_707 = lean_ctor_get(x_699, 0); +lean_inc(x_707); +if (lean_obj_tag(x_707) == 0) { -lean_object* x_823; size_t x_824; size_t x_825; lean_object* x_826; -x_823 = lean_array_get_size(x_3); -x_824 = lean_usize_of_nat(x_823); +uint8_t x_708; +lean_dec(x_696); +lean_dec(x_694); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_1); +x_708 = !lean_is_exclusive(x_699); +if (x_708 == 0) +{ +lean_object* x_709; +x_709 = lean_ctor_get(x_699, 0); +lean_dec(x_709); +return x_699; +} +else +{ +lean_object* x_710; lean_object* x_711; +x_710 = lean_ctor_get(x_699, 1); +lean_inc(x_710); +lean_dec(x_699); +x_711 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_711, 0, x_707); +lean_ctor_set(x_711, 1, x_710); +return x_711; +} +} +else +{ +uint8_t x_712; +x_712 = !lean_is_exclusive(x_699); +if (x_712 == 0) +{ +lean_object* x_713; lean_object* x_714; lean_object* x_715; lean_object* x_716; uint8_t x_717; +x_713 = lean_ctor_get(x_699, 1); +x_714 = lean_ctor_get(x_699, 0); +lean_dec(x_714); +x_715 = lean_ctor_get(x_707, 0); +lean_inc(x_715); +x_716 = l_Lean_Meta_CheckAssignment_throwOutOfScopeFVar___rarg___closed__1; +x_717 = lean_nat_dec_eq(x_716, x_715); +lean_dec(x_715); +if (x_717 == 0) +{ +lean_dec(x_696); +lean_dec(x_694); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_1); +return x_699; +} +else +{ +uint8_t x_718; +x_718 = l_Lean_Expr_isMVar(x_694); +if (x_718 == 0) +{ +lean_dec(x_696); +lean_dec(x_694); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_1); +return x_699; +} +else +{ +lean_object* x_719; lean_object* x_720; lean_object* x_721; uint8_t x_722; +lean_free_object(x_699); +lean_inc(x_694); +x_719 = l_Lean_Expr_mvarId_x21(x_694); +x_720 = l_Lean_MVarId_isDelayedAssigned___at_Lean_Meta_CheckAssignment_checkApp___spec__2(x_719, x_5, x_6, x_7, x_8, x_9, x_10, x_713); +x_721 = lean_ctor_get(x_720, 0); +lean_inc(x_721); +x_722 = lean_unbox(x_721); +lean_dec(x_721); +if (x_722 == 0) +{ +lean_object* x_723; lean_object* x_724; +x_723 = lean_ctor_get(x_720, 1); +lean_inc(x_723); +lean_dec(x_720); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +x_724 = lean_infer_type(x_1, x_7, x_8, x_9, x_10, x_723); +if (lean_obj_tag(x_724) == 0) +{ +lean_object* x_725; lean_object* x_726; lean_object* x_727; +x_725 = lean_ctor_get(x_724, 0); +lean_inc(x_725); +x_726 = lean_ctor_get(x_724, 1); +lean_inc(x_726); +lean_dec(x_724); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_5); +x_727 = l_Lean_Meta_CheckAssignment_check(x_725, x_5, x_6, x_7, x_8, x_9, x_10, x_726); +if (lean_obj_tag(x_727) == 0) +{ +lean_object* x_728; lean_object* x_729; lean_object* x_730; lean_object* x_731; lean_object* x_732; uint8_t x_733; lean_object* x_734; lean_object* x_735; lean_object* x_736; lean_object* x_737; lean_object* x_738; lean_object* x_739; +x_728 = lean_ctor_get(x_727, 0); +lean_inc(x_728); +x_729 = lean_ctor_get(x_727, 1); +lean_inc(x_729); +lean_dec(x_727); +x_730 = lean_ctor_get(x_5, 1); +lean_inc(x_730); +lean_dec(x_5); +x_731 = lean_ctor_get(x_730, 1); +lean_inc(x_731); +x_732 = lean_ctor_get(x_730, 4); +lean_inc(x_732); +lean_dec(x_730); +x_733 = 0; +x_734 = lean_box(0); +x_735 = lean_unsigned_to_nat(0u); +x_736 = l_Lean_Meta_mkFreshExprMVarAt(x_731, x_732, x_728, x_733, x_734, x_735, x_7, x_8, x_9, x_10, x_729); +x_737 = lean_ctor_get(x_736, 0); +lean_inc(x_737); +x_738 = lean_ctor_get(x_736, 1); +lean_inc(x_738); +lean_dec(x_736); +lean_inc(x_737); +x_739 = l_Lean_Meta_CheckAssignment_assignToConstFun(x_694, x_696, x_737, x_7, x_8, x_9, x_10, x_738); +if (lean_obj_tag(x_739) == 0) +{ +lean_object* x_740; uint8_t x_741; +x_740 = lean_ctor_get(x_739, 0); +lean_inc(x_740); +x_741 = lean_unbox(x_740); +lean_dec(x_740); +if (x_741 == 0) +{ +uint8_t x_742; +lean_dec(x_737); +x_742 = !lean_is_exclusive(x_739); +if (x_742 == 0) +{ +lean_object* x_743; +x_743 = lean_ctor_get(x_739, 0); +lean_dec(x_743); +lean_ctor_set_tag(x_739, 1); +lean_ctor_set(x_739, 0, x_707); +return x_739; +} +else +{ +lean_object* x_744; lean_object* x_745; +x_744 = lean_ctor_get(x_739, 1); +lean_inc(x_744); +lean_dec(x_739); +x_745 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_745, 0, x_707); +lean_ctor_set(x_745, 1, x_744); +return x_745; +} +} +else +{ +uint8_t x_746; +lean_dec(x_707); +x_746 = !lean_is_exclusive(x_739); +if (x_746 == 0) +{ +lean_object* x_747; +x_747 = lean_ctor_get(x_739, 0); +lean_dec(x_747); +lean_ctor_set(x_739, 0, x_737); +return x_739; +} +else +{ +lean_object* x_748; lean_object* x_749; +x_748 = lean_ctor_get(x_739, 1); +lean_inc(x_748); +lean_dec(x_739); +x_749 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_749, 0, x_737); +lean_ctor_set(x_749, 1, x_748); +return x_749; +} +} +} +else +{ +uint8_t x_750; +lean_dec(x_737); +lean_dec(x_707); +x_750 = !lean_is_exclusive(x_739); +if (x_750 == 0) +{ +return x_739; +} +else +{ +lean_object* x_751; lean_object* x_752; lean_object* x_753; +x_751 = lean_ctor_get(x_739, 0); +x_752 = lean_ctor_get(x_739, 1); +lean_inc(x_752); +lean_inc(x_751); +lean_dec(x_739); +x_753 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_753, 0, x_751); +lean_ctor_set(x_753, 1, x_752); +return x_753; +} +} +} +else +{ +uint8_t x_754; +lean_dec(x_707); +lean_dec(x_696); +lean_dec(x_694); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_5); +x_754 = !lean_is_exclusive(x_727); +if (x_754 == 0) +{ +return x_727; +} +else +{ +lean_object* x_755; lean_object* x_756; lean_object* x_757; +x_755 = lean_ctor_get(x_727, 0); +x_756 = lean_ctor_get(x_727, 1); +lean_inc(x_756); +lean_inc(x_755); +lean_dec(x_727); +x_757 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_757, 0, x_755); +lean_ctor_set(x_757, 1, x_756); +return x_757; +} +} +} +else +{ +uint8_t x_758; +lean_dec(x_707); +lean_dec(x_696); +lean_dec(x_694); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +x_758 = !lean_is_exclusive(x_724); +if (x_758 == 0) +{ +return x_724; +} +else +{ +lean_object* x_759; lean_object* x_760; lean_object* x_761; +x_759 = lean_ctor_get(x_724, 0); +x_760 = lean_ctor_get(x_724, 1); +lean_inc(x_760); +lean_inc(x_759); +lean_dec(x_724); +x_761 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_761, 0, x_759); +lean_ctor_set(x_761, 1, x_760); +return x_761; +} +} +} +else +{ +uint8_t x_762; +lean_dec(x_696); +lean_dec(x_694); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_1); +x_762 = !lean_is_exclusive(x_720); +if (x_762 == 0) +{ +lean_object* x_763; +x_763 = lean_ctor_get(x_720, 0); +lean_dec(x_763); +lean_ctor_set_tag(x_720, 1); +lean_ctor_set(x_720, 0, x_707); +return x_720; +} +else +{ +lean_object* x_764; lean_object* x_765; +x_764 = lean_ctor_get(x_720, 1); +lean_inc(x_764); +lean_dec(x_720); +x_765 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_765, 0, x_707); +lean_ctor_set(x_765, 1, x_764); +return x_765; +} +} +} +} +} +else +{ +lean_object* x_766; lean_object* x_767; lean_object* x_768; uint8_t x_769; +x_766 = lean_ctor_get(x_699, 1); +lean_inc(x_766); +lean_dec(x_699); +x_767 = lean_ctor_get(x_707, 0); +lean_inc(x_767); +x_768 = l_Lean_Meta_CheckAssignment_throwOutOfScopeFVar___rarg___closed__1; +x_769 = lean_nat_dec_eq(x_768, x_767); +lean_dec(x_767); +if (x_769 == 0) +{ +lean_object* x_770; +lean_dec(x_696); +lean_dec(x_694); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_1); +x_770 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_770, 0, x_707); +lean_ctor_set(x_770, 1, x_766); +return x_770; +} +else +{ +uint8_t x_771; +x_771 = l_Lean_Expr_isMVar(x_694); +if (x_771 == 0) +{ +lean_object* x_772; +lean_dec(x_696); +lean_dec(x_694); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_1); +x_772 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_772, 0, x_707); +lean_ctor_set(x_772, 1, x_766); +return x_772; +} +else +{ +lean_object* x_773; lean_object* x_774; lean_object* x_775; uint8_t x_776; +lean_inc(x_694); +x_773 = l_Lean_Expr_mvarId_x21(x_694); +x_774 = l_Lean_MVarId_isDelayedAssigned___at_Lean_Meta_CheckAssignment_checkApp___spec__2(x_773, x_5, x_6, x_7, x_8, x_9, x_10, x_766); +x_775 = lean_ctor_get(x_774, 0); +lean_inc(x_775); +x_776 = lean_unbox(x_775); +lean_dec(x_775); +if (x_776 == 0) +{ +lean_object* x_777; lean_object* x_778; +x_777 = lean_ctor_get(x_774, 1); +lean_inc(x_777); +lean_dec(x_774); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +x_778 = lean_infer_type(x_1, x_7, x_8, x_9, x_10, x_777); +if (lean_obj_tag(x_778) == 0) +{ +lean_object* x_779; lean_object* x_780; lean_object* x_781; +x_779 = lean_ctor_get(x_778, 0); +lean_inc(x_779); +x_780 = lean_ctor_get(x_778, 1); +lean_inc(x_780); +lean_dec(x_778); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_5); +x_781 = l_Lean_Meta_CheckAssignment_check(x_779, x_5, x_6, x_7, x_8, x_9, x_10, x_780); +if (lean_obj_tag(x_781) == 0) +{ +lean_object* x_782; lean_object* x_783; lean_object* x_784; lean_object* x_785; lean_object* x_786; uint8_t x_787; lean_object* x_788; lean_object* x_789; lean_object* x_790; lean_object* x_791; lean_object* x_792; lean_object* x_793; +x_782 = lean_ctor_get(x_781, 0); +lean_inc(x_782); +x_783 = lean_ctor_get(x_781, 1); +lean_inc(x_783); +lean_dec(x_781); +x_784 = lean_ctor_get(x_5, 1); +lean_inc(x_784); +lean_dec(x_5); +x_785 = lean_ctor_get(x_784, 1); +lean_inc(x_785); +x_786 = lean_ctor_get(x_784, 4); +lean_inc(x_786); +lean_dec(x_784); +x_787 = 0; +x_788 = lean_box(0); +x_789 = lean_unsigned_to_nat(0u); +x_790 = l_Lean_Meta_mkFreshExprMVarAt(x_785, x_786, x_782, x_787, x_788, x_789, x_7, x_8, x_9, x_10, x_783); +x_791 = lean_ctor_get(x_790, 0); +lean_inc(x_791); +x_792 = lean_ctor_get(x_790, 1); +lean_inc(x_792); +lean_dec(x_790); +lean_inc(x_791); +x_793 = l_Lean_Meta_CheckAssignment_assignToConstFun(x_694, x_696, x_791, x_7, x_8, x_9, x_10, x_792); +if (lean_obj_tag(x_793) == 0) +{ +lean_object* x_794; uint8_t x_795; +x_794 = lean_ctor_get(x_793, 0); +lean_inc(x_794); +x_795 = lean_unbox(x_794); +lean_dec(x_794); +if (x_795 == 0) +{ +lean_object* x_796; lean_object* x_797; lean_object* x_798; +lean_dec(x_791); +x_796 = lean_ctor_get(x_793, 1); +lean_inc(x_796); +if (lean_is_exclusive(x_793)) { + lean_ctor_release(x_793, 0); + lean_ctor_release(x_793, 1); + x_797 = x_793; +} else { + lean_dec_ref(x_793); + x_797 = lean_box(0); +} +if (lean_is_scalar(x_797)) { + x_798 = lean_alloc_ctor(1, 2, 0); +} else { + x_798 = x_797; + lean_ctor_set_tag(x_798, 1); +} +lean_ctor_set(x_798, 0, x_707); +lean_ctor_set(x_798, 1, x_796); +return x_798; +} +else +{ +lean_object* x_799; lean_object* x_800; lean_object* x_801; +lean_dec(x_707); +x_799 = lean_ctor_get(x_793, 1); +lean_inc(x_799); +if (lean_is_exclusive(x_793)) { + lean_ctor_release(x_793, 0); + lean_ctor_release(x_793, 1); + x_800 = x_793; +} else { + lean_dec_ref(x_793); + x_800 = lean_box(0); +} +if (lean_is_scalar(x_800)) { + x_801 = lean_alloc_ctor(0, 2, 0); +} else { + x_801 = x_800; +} +lean_ctor_set(x_801, 0, x_791); +lean_ctor_set(x_801, 1, x_799); +return x_801; +} +} +else +{ +lean_object* x_802; lean_object* x_803; lean_object* x_804; lean_object* x_805; +lean_dec(x_791); +lean_dec(x_707); +x_802 = lean_ctor_get(x_793, 0); +lean_inc(x_802); +x_803 = lean_ctor_get(x_793, 1); +lean_inc(x_803); +if (lean_is_exclusive(x_793)) { + lean_ctor_release(x_793, 0); + lean_ctor_release(x_793, 1); + x_804 = x_793; +} else { + lean_dec_ref(x_793); + x_804 = lean_box(0); +} +if (lean_is_scalar(x_804)) { + x_805 = lean_alloc_ctor(1, 2, 0); +} else { + x_805 = x_804; +} +lean_ctor_set(x_805, 0, x_802); +lean_ctor_set(x_805, 1, x_803); +return x_805; +} +} +else +{ +lean_object* x_806; lean_object* x_807; lean_object* x_808; lean_object* x_809; +lean_dec(x_707); +lean_dec(x_696); +lean_dec(x_694); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_5); +x_806 = lean_ctor_get(x_781, 0); +lean_inc(x_806); +x_807 = lean_ctor_get(x_781, 1); +lean_inc(x_807); +if (lean_is_exclusive(x_781)) { + lean_ctor_release(x_781, 0); + lean_ctor_release(x_781, 1); + x_808 = x_781; +} else { + lean_dec_ref(x_781); + x_808 = lean_box(0); +} +if (lean_is_scalar(x_808)) { + x_809 = lean_alloc_ctor(1, 2, 0); +} else { + x_809 = x_808; +} +lean_ctor_set(x_809, 0, x_806); +lean_ctor_set(x_809, 1, x_807); +return x_809; +} +} +else +{ +lean_object* x_810; lean_object* x_811; lean_object* x_812; lean_object* x_813; +lean_dec(x_707); +lean_dec(x_696); +lean_dec(x_694); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +x_810 = lean_ctor_get(x_778, 0); +lean_inc(x_810); +x_811 = lean_ctor_get(x_778, 1); +lean_inc(x_811); +if (lean_is_exclusive(x_778)) { + lean_ctor_release(x_778, 0); + lean_ctor_release(x_778, 1); + x_812 = x_778; +} else { + lean_dec_ref(x_778); + x_812 = lean_box(0); +} +if (lean_is_scalar(x_812)) { + x_813 = lean_alloc_ctor(1, 2, 0); +} else { + x_813 = x_812; +} +lean_ctor_set(x_813, 0, x_810); +lean_ctor_set(x_813, 1, x_811); +return x_813; +} +} +else +{ +lean_object* x_814; lean_object* x_815; lean_object* x_816; +lean_dec(x_696); +lean_dec(x_694); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_1); +x_814 = lean_ctor_get(x_774, 1); +lean_inc(x_814); +if (lean_is_exclusive(x_774)) { + lean_ctor_release(x_774, 0); + lean_ctor_release(x_774, 1); + x_815 = x_774; +} else { + lean_dec_ref(x_774); + x_815 = lean_box(0); +} +if (lean_is_scalar(x_815)) { + x_816 = lean_alloc_ctor(1, 2, 0); +} else { + x_816 = x_815; + lean_ctor_set_tag(x_816, 1); +} +lean_ctor_set(x_816, 0, x_707); +lean_ctor_set(x_816, 1, x_814); +return x_816; +} +} +} +} +} +} +} +else +{ +uint8_t x_817; +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_3); +lean_dec(x_1); +x_817 = !lean_is_exclusive(x_693); +if (x_817 == 0) +{ +return x_693; +} +else +{ +lean_object* x_818; lean_object* x_819; lean_object* x_820; +x_818 = lean_ctor_get(x_693, 0); +x_819 = lean_ctor_get(x_693, 1); +lean_inc(x_819); +lean_inc(x_818); +lean_dec(x_693); +x_820 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_820, 0, x_818); +lean_ctor_set(x_820, 1, x_819); +return x_820; +} +} +} +block_845: +{ +lean_object* x_823; +lean_dec(x_822); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +x_823 = l_Lean_Meta_CheckAssignment_check(x_2, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +if (lean_obj_tag(x_823) == 0) +{ +lean_object* x_824; lean_object* x_825; lean_object* x_826; size_t x_827; size_t x_828; lean_object* x_829; +x_824 = lean_ctor_get(x_823, 0); +lean_inc(x_824); +x_825 = lean_ctor_get(x_823, 1); +lean_inc(x_825); lean_dec(x_823); -x_825 = 0; -x_826 = l_Array_mapMUnsafe_map___at_Lean_Meta_CheckAssignment_checkApp___spec__1(x_824, x_825, x_3, x_5, x_6, x_7, x_8, x_9, x_10, x_822); -if (lean_obj_tag(x_826) == 0) -{ -uint8_t x_827; -x_827 = !lean_is_exclusive(x_826); -if (x_827 == 0) -{ -lean_object* x_828; lean_object* x_829; -x_828 = lean_ctor_get(x_826, 0); -x_829 = l_Lean_mkAppN(x_821, x_828); -lean_ctor_set(x_826, 0, x_829); -return x_826; -} -else -{ -lean_object* x_830; lean_object* x_831; lean_object* x_832; lean_object* x_833; -x_830 = lean_ctor_get(x_826, 0); -x_831 = lean_ctor_get(x_826, 1); -lean_inc(x_831); -lean_inc(x_830); +x_826 = lean_array_get_size(x_3); +x_827 = lean_usize_of_nat(x_826); lean_dec(x_826); -x_832 = l_Lean_mkAppN(x_821, x_830); -x_833 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_833, 0, x_832); -lean_ctor_set(x_833, 1, x_831); -return x_833; +x_828 = 0; +x_829 = l_Array_mapMUnsafe_map___at_Lean_Meta_CheckAssignment_checkApp___spec__1(x_827, x_828, x_3, x_5, x_6, x_7, x_8, x_9, x_10, x_825); +if (lean_obj_tag(x_829) == 0) +{ +uint8_t x_830; +x_830 = !lean_is_exclusive(x_829); +if (x_830 == 0) +{ +lean_object* x_831; lean_object* x_832; +x_831 = lean_ctor_get(x_829, 0); +x_832 = l_Lean_mkAppN(x_824, x_831); +lean_ctor_set(x_829, 0, x_832); +return x_829; +} +else +{ +lean_object* x_833; lean_object* x_834; lean_object* x_835; lean_object* x_836; +x_833 = lean_ctor_get(x_829, 0); +x_834 = lean_ctor_get(x_829, 1); +lean_inc(x_834); +lean_inc(x_833); +lean_dec(x_829); +x_835 = l_Lean_mkAppN(x_824, x_833); +x_836 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_836, 0, x_835); +lean_ctor_set(x_836, 1, x_834); +return x_836; } } else { -uint8_t x_834; -lean_dec(x_821); -x_834 = !lean_is_exclusive(x_826); -if (x_834 == 0) +uint8_t x_837; +lean_dec(x_824); +x_837 = !lean_is_exclusive(x_829); +if (x_837 == 0) { -return x_826; +return x_829; } else { -lean_object* x_835; lean_object* x_836; lean_object* x_837; -x_835 = lean_ctor_get(x_826, 0); -x_836 = lean_ctor_get(x_826, 1); -lean_inc(x_836); -lean_inc(x_835); -lean_dec(x_826); -x_837 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_837, 0, x_835); -lean_ctor_set(x_837, 1, x_836); -return x_837; +lean_object* x_838; lean_object* x_839; lean_object* x_840; +x_838 = lean_ctor_get(x_829, 0); +x_839 = lean_ctor_get(x_829, 1); +lean_inc(x_839); +lean_inc(x_838); +lean_dec(x_829); +x_840 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_840, 0, x_838); +lean_ctor_set(x_840, 1, x_839); +return x_840; } } } -block_854: +else { -lean_object* x_840; lean_object* x_841; -lean_dec(x_839); -lean_inc(x_2); -x_840 = l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_CheckAssignment_findCached_x3f(x_2, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -x_841 = lean_ctor_get(x_840, 0); -lean_inc(x_841); -if (lean_obj_tag(x_841) == 0) +uint8_t x_841; +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_3); +x_841 = !lean_is_exclusive(x_823); +if (x_841 == 0) { -lean_object* x_842; lean_object* x_843; -x_842 = lean_ctor_get(x_840, 1); +return x_823; +} +else +{ +lean_object* x_842; lean_object* x_843; lean_object* x_844; +x_842 = lean_ctor_get(x_823, 0); +x_843 = lean_ctor_get(x_823, 1); +lean_inc(x_843); lean_inc(x_842); -lean_dec(x_840); -lean_inc(x_10); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_2); -x_843 = l_Lean_Meta_CheckAssignment_check(x_2, x_5, x_6, x_7, x_8, x_9, x_10, x_842); -if (lean_obj_tag(x_843) == 0) -{ -lean_object* x_844; lean_object* x_845; lean_object* x_846; lean_object* x_847; -x_844 = lean_ctor_get(x_843, 0); -lean_inc(x_844); -x_845 = lean_ctor_get(x_843, 1); -lean_inc(x_845); -lean_dec(x_843); -lean_inc(x_844); -x_846 = l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_CheckAssignment_cache(x_2, x_844, x_5, x_6, x_7, x_8, x_9, x_10, x_845); -x_847 = lean_ctor_get(x_846, 1); -lean_inc(x_847); -lean_dec(x_846); -x_821 = x_844; -x_822 = x_847; -goto block_838; -} -else -{ -uint8_t x_848; -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_3); -lean_dec(x_2); -x_848 = !lean_is_exclusive(x_843); -if (x_848 == 0) -{ -return x_843; -} -else -{ -lean_object* x_849; lean_object* x_850; lean_object* x_851; -x_849 = lean_ctor_get(x_843, 0); -x_850 = lean_ctor_get(x_843, 1); -lean_inc(x_850); -lean_inc(x_849); -lean_dec(x_843); -x_851 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_851, 0, x_849); -lean_ctor_set(x_851, 1, x_850); -return x_851; -} -} -} -else -{ -lean_object* x_852; lean_object* x_853; -lean_dec(x_2); -x_852 = lean_ctor_get(x_840, 1); -lean_inc(x_852); -lean_dec(x_840); -x_853 = lean_ctor_get(x_841, 0); -lean_inc(x_853); -lean_dec(x_841); -x_821 = x_853; -x_822 = x_852; -goto block_838; -} -} -} -block_1005: -{ -lean_object* x_861; lean_object* x_862; lean_object* x_985; uint8_t x_1001; -lean_dec(x_860); -x_1001 = l_Lean_Expr_hasExprMVar(x_2); -if (x_1001 == 0) -{ -uint8_t x_1002; -x_1002 = l_Lean_Expr_hasFVar(x_2); -if (x_1002 == 0) -{ -x_861 = x_2; -x_862 = x_11; -goto block_984; -} -else -{ -lean_object* x_1003; -x_1003 = lean_box(0); -x_985 = x_1003; -goto block_1000; -} -} -else -{ -lean_object* x_1004; -x_1004 = lean_box(0); -x_985 = x_1004; -goto block_1000; -} -block_984: -{ -lean_object* x_863; size_t x_864; size_t x_865; lean_object* x_866; -x_863 = lean_array_get_size(x_3); -x_864 = lean_usize_of_nat(x_863); -x_865 = 0; -lean_inc(x_10); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_6); -lean_inc(x_5); -x_866 = l_Array_mapMUnsafe_map___at_Lean_Meta_CheckAssignment_checkApp___spec__1(x_864, x_865, x_3, x_5, x_6, x_7, x_8, x_9, x_10, x_862); -if (lean_obj_tag(x_866) == 0) -{ -uint8_t x_867; -lean_dec(x_863); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_1); -x_867 = !lean_is_exclusive(x_866); -if (x_867 == 0) -{ -lean_object* x_868; lean_object* x_869; -x_868 = lean_ctor_get(x_866, 0); -x_869 = l_Lean_mkAppN(x_861, x_868); -lean_ctor_set(x_866, 0, x_869); -return x_866; -} -else -{ -lean_object* x_870; lean_object* x_871; lean_object* x_872; lean_object* x_873; -x_870 = lean_ctor_get(x_866, 0); -x_871 = lean_ctor_get(x_866, 1); -lean_inc(x_871); -lean_inc(x_870); -lean_dec(x_866); -x_872 = l_Lean_mkAppN(x_861, x_870); -x_873 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_873, 0, x_872); -lean_ctor_set(x_873, 1, x_871); -return x_873; -} -} -else -{ -lean_object* x_874; -x_874 = lean_ctor_get(x_866, 0); -lean_inc(x_874); -if (lean_obj_tag(x_874) == 0) -{ -uint8_t x_875; -lean_dec(x_863); -lean_dec(x_861); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_1); -x_875 = !lean_is_exclusive(x_866); -if (x_875 == 0) -{ -lean_object* x_876; -x_876 = lean_ctor_get(x_866, 0); -lean_dec(x_876); -return x_866; -} -else -{ -lean_object* x_877; lean_object* x_878; -x_877 = lean_ctor_get(x_866, 1); -lean_inc(x_877); -lean_dec(x_866); -x_878 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_878, 0, x_874); -lean_ctor_set(x_878, 1, x_877); -return x_878; -} -} -else -{ -uint8_t x_879; -x_879 = !lean_is_exclusive(x_866); -if (x_879 == 0) -{ -lean_object* x_880; lean_object* x_881; lean_object* x_882; lean_object* x_883; uint8_t x_884; -x_880 = lean_ctor_get(x_866, 1); -x_881 = lean_ctor_get(x_866, 0); -lean_dec(x_881); -x_882 = lean_ctor_get(x_874, 0); -lean_inc(x_882); -x_883 = l_Lean_Meta_CheckAssignment_throwOutOfScopeFVar___rarg___closed__1; -x_884 = lean_nat_dec_eq(x_883, x_882); -lean_dec(x_882); -if (x_884 == 0) -{ -lean_dec(x_863); -lean_dec(x_861); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_1); -return x_866; -} -else -{ -uint8_t x_885; -x_885 = l_Lean_Expr_isMVar(x_861); -if (x_885 == 0) -{ -lean_dec(x_863); -lean_dec(x_861); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_1); -return x_866; -} -else -{ -lean_object* x_886; lean_object* x_887; lean_object* x_888; uint8_t x_889; -lean_free_object(x_866); -lean_inc(x_861); -x_886 = l_Lean_Expr_mvarId_x21(x_861); -x_887 = l_Lean_MVarId_isDelayedAssigned___at_Lean_Meta_CheckAssignment_checkApp___spec__2(x_886, x_5, x_6, x_7, x_8, x_9, x_10, x_880); -x_888 = lean_ctor_get(x_887, 0); -lean_inc(x_888); -x_889 = lean_unbox(x_888); -lean_dec(x_888); -if (x_889 == 0) -{ -lean_object* x_890; lean_object* x_891; -x_890 = lean_ctor_get(x_887, 1); -lean_inc(x_890); -lean_dec(x_887); -lean_inc(x_10); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -x_891 = lean_infer_type(x_1, x_7, x_8, x_9, x_10, x_890); -if (lean_obj_tag(x_891) == 0) -{ -lean_object* x_892; lean_object* x_893; lean_object* x_894; -x_892 = lean_ctor_get(x_891, 0); -lean_inc(x_892); -x_893 = lean_ctor_get(x_891, 1); -lean_inc(x_893); -lean_dec(x_891); -lean_inc(x_10); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_5); -x_894 = l_Lean_Meta_CheckAssignment_check(x_892, x_5, x_6, x_7, x_8, x_9, x_10, x_893); -if (lean_obj_tag(x_894) == 0) -{ -lean_object* x_895; lean_object* x_896; lean_object* x_897; lean_object* x_898; lean_object* x_899; uint8_t x_900; lean_object* x_901; lean_object* x_902; lean_object* x_903; lean_object* x_904; lean_object* x_905; lean_object* x_906; -x_895 = lean_ctor_get(x_894, 0); -lean_inc(x_895); -x_896 = lean_ctor_get(x_894, 1); -lean_inc(x_896); -lean_dec(x_894); -x_897 = lean_ctor_get(x_5, 1); -lean_inc(x_897); -lean_dec(x_5); -x_898 = lean_ctor_get(x_897, 1); -lean_inc(x_898); -x_899 = lean_ctor_get(x_897, 4); -lean_inc(x_899); -lean_dec(x_897); -x_900 = 0; -x_901 = lean_box(0); -x_902 = lean_unsigned_to_nat(0u); -x_903 = l_Lean_Meta_mkFreshExprMVarAt(x_898, x_899, x_895, x_900, x_901, x_902, x_7, x_8, x_9, x_10, x_896); -x_904 = lean_ctor_get(x_903, 0); -lean_inc(x_904); -x_905 = lean_ctor_get(x_903, 1); -lean_inc(x_905); -lean_dec(x_903); -lean_inc(x_904); -x_906 = l_Lean_Meta_CheckAssignment_assignToConstFun(x_861, x_863, x_904, x_7, x_8, x_9, x_10, x_905); -if (lean_obj_tag(x_906) == 0) -{ -lean_object* x_907; uint8_t x_908; -x_907 = lean_ctor_get(x_906, 0); -lean_inc(x_907); -x_908 = lean_unbox(x_907); -lean_dec(x_907); -if (x_908 == 0) -{ -uint8_t x_909; -lean_dec(x_904); -x_909 = !lean_is_exclusive(x_906); -if (x_909 == 0) -{ -lean_object* x_910; -x_910 = lean_ctor_get(x_906, 0); -lean_dec(x_910); -lean_ctor_set_tag(x_906, 1); -lean_ctor_set(x_906, 0, x_874); -return x_906; -} -else -{ -lean_object* x_911; lean_object* x_912; -x_911 = lean_ctor_get(x_906, 1); -lean_inc(x_911); -lean_dec(x_906); -x_912 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_912, 0, x_874); -lean_ctor_set(x_912, 1, x_911); -return x_912; -} -} -else -{ -uint8_t x_913; -lean_dec(x_874); -x_913 = !lean_is_exclusive(x_906); -if (x_913 == 0) -{ -lean_object* x_914; -x_914 = lean_ctor_get(x_906, 0); -lean_dec(x_914); -lean_ctor_set(x_906, 0, x_904); -return x_906; -} -else -{ -lean_object* x_915; lean_object* x_916; -x_915 = lean_ctor_get(x_906, 1); -lean_inc(x_915); -lean_dec(x_906); -x_916 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_916, 0, x_904); -lean_ctor_set(x_916, 1, x_915); -return x_916; -} -} -} -else -{ -uint8_t x_917; -lean_dec(x_904); -lean_dec(x_874); -x_917 = !lean_is_exclusive(x_906); -if (x_917 == 0) -{ -return x_906; -} -else -{ -lean_object* x_918; lean_object* x_919; lean_object* x_920; -x_918 = lean_ctor_get(x_906, 0); -x_919 = lean_ctor_get(x_906, 1); -lean_inc(x_919); -lean_inc(x_918); -lean_dec(x_906); -x_920 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_920, 0, x_918); -lean_ctor_set(x_920, 1, x_919); -return x_920; -} -} -} -else -{ -uint8_t x_921; -lean_dec(x_874); -lean_dec(x_863); -lean_dec(x_861); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_5); -x_921 = !lean_is_exclusive(x_894); -if (x_921 == 0) -{ -return x_894; -} -else -{ -lean_object* x_922; lean_object* x_923; lean_object* x_924; -x_922 = lean_ctor_get(x_894, 0); -x_923 = lean_ctor_get(x_894, 1); -lean_inc(x_923); -lean_inc(x_922); -lean_dec(x_894); -x_924 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_924, 0, x_922); -lean_ctor_set(x_924, 1, x_923); -return x_924; -} -} -} -else -{ -uint8_t x_925; -lean_dec(x_874); -lean_dec(x_863); -lean_dec(x_861); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -x_925 = !lean_is_exclusive(x_891); -if (x_925 == 0) -{ -return x_891; -} -else -{ -lean_object* x_926; lean_object* x_927; lean_object* x_928; -x_926 = lean_ctor_get(x_891, 0); -x_927 = lean_ctor_get(x_891, 1); -lean_inc(x_927); -lean_inc(x_926); -lean_dec(x_891); -x_928 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_928, 0, x_926); -lean_ctor_set(x_928, 1, x_927); -return x_928; -} -} -} -else -{ -uint8_t x_929; -lean_dec(x_863); -lean_dec(x_861); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_1); -x_929 = !lean_is_exclusive(x_887); -if (x_929 == 0) -{ -lean_object* x_930; -x_930 = lean_ctor_get(x_887, 0); -lean_dec(x_930); -lean_ctor_set_tag(x_887, 1); -lean_ctor_set(x_887, 0, x_874); -return x_887; -} -else -{ -lean_object* x_931; lean_object* x_932; -x_931 = lean_ctor_get(x_887, 1); -lean_inc(x_931); -lean_dec(x_887); -x_932 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_932, 0, x_874); -lean_ctor_set(x_932, 1, x_931); -return x_932; -} -} -} -} -} -else -{ -lean_object* x_933; lean_object* x_934; lean_object* x_935; uint8_t x_936; -x_933 = lean_ctor_get(x_866, 1); -lean_inc(x_933); -lean_dec(x_866); -x_934 = lean_ctor_get(x_874, 0); -lean_inc(x_934); -x_935 = l_Lean_Meta_CheckAssignment_throwOutOfScopeFVar___rarg___closed__1; -x_936 = lean_nat_dec_eq(x_935, x_934); -lean_dec(x_934); -if (x_936 == 0) -{ -lean_object* x_937; -lean_dec(x_863); -lean_dec(x_861); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_1); -x_937 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_937, 0, x_874); -lean_ctor_set(x_937, 1, x_933); -return x_937; -} -else -{ -uint8_t x_938; -x_938 = l_Lean_Expr_isMVar(x_861); -if (x_938 == 0) -{ -lean_object* x_939; -lean_dec(x_863); -lean_dec(x_861); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_1); -x_939 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_939, 0, x_874); -lean_ctor_set(x_939, 1, x_933); -return x_939; -} -else -{ -lean_object* x_940; lean_object* x_941; lean_object* x_942; uint8_t x_943; -lean_inc(x_861); -x_940 = l_Lean_Expr_mvarId_x21(x_861); -x_941 = l_Lean_MVarId_isDelayedAssigned___at_Lean_Meta_CheckAssignment_checkApp___spec__2(x_940, x_5, x_6, x_7, x_8, x_9, x_10, x_933); -x_942 = lean_ctor_get(x_941, 0); -lean_inc(x_942); -x_943 = lean_unbox(x_942); -lean_dec(x_942); -if (x_943 == 0) -{ -lean_object* x_944; lean_object* x_945; -x_944 = lean_ctor_get(x_941, 1); -lean_inc(x_944); -lean_dec(x_941); -lean_inc(x_10); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -x_945 = lean_infer_type(x_1, x_7, x_8, x_9, x_10, x_944); -if (lean_obj_tag(x_945) == 0) -{ -lean_object* x_946; lean_object* x_947; lean_object* x_948; -x_946 = lean_ctor_get(x_945, 0); -lean_inc(x_946); -x_947 = lean_ctor_get(x_945, 1); -lean_inc(x_947); -lean_dec(x_945); -lean_inc(x_10); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_5); -x_948 = l_Lean_Meta_CheckAssignment_check(x_946, x_5, x_6, x_7, x_8, x_9, x_10, x_947); -if (lean_obj_tag(x_948) == 0) -{ -lean_object* x_949; lean_object* x_950; lean_object* x_951; lean_object* x_952; lean_object* x_953; uint8_t x_954; lean_object* x_955; lean_object* x_956; lean_object* x_957; lean_object* x_958; lean_object* x_959; lean_object* x_960; -x_949 = lean_ctor_get(x_948, 0); -lean_inc(x_949); -x_950 = lean_ctor_get(x_948, 1); -lean_inc(x_950); -lean_dec(x_948); -x_951 = lean_ctor_get(x_5, 1); -lean_inc(x_951); -lean_dec(x_5); -x_952 = lean_ctor_get(x_951, 1); -lean_inc(x_952); -x_953 = lean_ctor_get(x_951, 4); -lean_inc(x_953); -lean_dec(x_951); -x_954 = 0; -x_955 = lean_box(0); -x_956 = lean_unsigned_to_nat(0u); -x_957 = l_Lean_Meta_mkFreshExprMVarAt(x_952, x_953, x_949, x_954, x_955, x_956, x_7, x_8, x_9, x_10, x_950); -x_958 = lean_ctor_get(x_957, 0); -lean_inc(x_958); -x_959 = lean_ctor_get(x_957, 1); -lean_inc(x_959); -lean_dec(x_957); -lean_inc(x_958); -x_960 = l_Lean_Meta_CheckAssignment_assignToConstFun(x_861, x_863, x_958, x_7, x_8, x_9, x_10, x_959); -if (lean_obj_tag(x_960) == 0) -{ -lean_object* x_961; uint8_t x_962; -x_961 = lean_ctor_get(x_960, 0); -lean_inc(x_961); -x_962 = lean_unbox(x_961); -lean_dec(x_961); -if (x_962 == 0) -{ -lean_object* x_963; lean_object* x_964; lean_object* x_965; -lean_dec(x_958); -x_963 = lean_ctor_get(x_960, 1); -lean_inc(x_963); -if (lean_is_exclusive(x_960)) { - lean_ctor_release(x_960, 0); - lean_ctor_release(x_960, 1); - x_964 = x_960; -} else { - lean_dec_ref(x_960); - x_964 = lean_box(0); -} -if (lean_is_scalar(x_964)) { - x_965 = lean_alloc_ctor(1, 2, 0); -} else { - x_965 = x_964; - lean_ctor_set_tag(x_965, 1); -} -lean_ctor_set(x_965, 0, x_874); -lean_ctor_set(x_965, 1, x_963); -return x_965; -} -else -{ -lean_object* x_966; lean_object* x_967; lean_object* x_968; -lean_dec(x_874); -x_966 = lean_ctor_get(x_960, 1); -lean_inc(x_966); -if (lean_is_exclusive(x_960)) { - lean_ctor_release(x_960, 0); - lean_ctor_release(x_960, 1); - x_967 = x_960; -} else { - lean_dec_ref(x_960); - x_967 = lean_box(0); -} -if (lean_is_scalar(x_967)) { - x_968 = lean_alloc_ctor(0, 2, 0); -} else { - x_968 = x_967; -} -lean_ctor_set(x_968, 0, x_958); -lean_ctor_set(x_968, 1, x_966); -return x_968; -} -} -else -{ -lean_object* x_969; lean_object* x_970; lean_object* x_971; lean_object* x_972; -lean_dec(x_958); -lean_dec(x_874); -x_969 = lean_ctor_get(x_960, 0); -lean_inc(x_969); -x_970 = lean_ctor_get(x_960, 1); -lean_inc(x_970); -if (lean_is_exclusive(x_960)) { - lean_ctor_release(x_960, 0); - lean_ctor_release(x_960, 1); - x_971 = x_960; -} else { - lean_dec_ref(x_960); - x_971 = lean_box(0); -} -if (lean_is_scalar(x_971)) { - x_972 = lean_alloc_ctor(1, 2, 0); -} else { - x_972 = x_971; -} -lean_ctor_set(x_972, 0, x_969); -lean_ctor_set(x_972, 1, x_970); -return x_972; -} -} -else -{ -lean_object* x_973; lean_object* x_974; lean_object* x_975; lean_object* x_976; -lean_dec(x_874); -lean_dec(x_863); -lean_dec(x_861); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_5); -x_973 = lean_ctor_get(x_948, 0); -lean_inc(x_973); -x_974 = lean_ctor_get(x_948, 1); -lean_inc(x_974); -if (lean_is_exclusive(x_948)) { - lean_ctor_release(x_948, 0); - lean_ctor_release(x_948, 1); - x_975 = x_948; -} else { - lean_dec_ref(x_948); - x_975 = lean_box(0); -} -if (lean_is_scalar(x_975)) { - x_976 = lean_alloc_ctor(1, 2, 0); -} else { - x_976 = x_975; -} -lean_ctor_set(x_976, 0, x_973); -lean_ctor_set(x_976, 1, x_974); -return x_976; -} -} -else -{ -lean_object* x_977; lean_object* x_978; lean_object* x_979; lean_object* x_980; -lean_dec(x_874); -lean_dec(x_863); -lean_dec(x_861); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -x_977 = lean_ctor_get(x_945, 0); -lean_inc(x_977); -x_978 = lean_ctor_get(x_945, 1); -lean_inc(x_978); -if (lean_is_exclusive(x_945)) { - lean_ctor_release(x_945, 0); - lean_ctor_release(x_945, 1); - x_979 = x_945; -} else { - lean_dec_ref(x_945); - x_979 = lean_box(0); -} -if (lean_is_scalar(x_979)) { - x_980 = lean_alloc_ctor(1, 2, 0); -} else { - x_980 = x_979; -} -lean_ctor_set(x_980, 0, x_977); -lean_ctor_set(x_980, 1, x_978); -return x_980; -} -} -else -{ -lean_object* x_981; lean_object* x_982; lean_object* x_983; -lean_dec(x_863); -lean_dec(x_861); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_1); -x_981 = lean_ctor_get(x_941, 1); -lean_inc(x_981); -if (lean_is_exclusive(x_941)) { - lean_ctor_release(x_941, 0); - lean_ctor_release(x_941, 1); - x_982 = x_941; -} else { - lean_dec_ref(x_941); - x_982 = lean_box(0); -} -if (lean_is_scalar(x_982)) { - x_983 = lean_alloc_ctor(1, 2, 0); -} else { - x_983 = x_982; - lean_ctor_set_tag(x_983, 1); -} -lean_ctor_set(x_983, 0, x_874); -lean_ctor_set(x_983, 1, x_981); -return x_983; -} -} -} -} -} -} -} -block_1000: -{ -lean_object* x_986; lean_object* x_987; -lean_dec(x_985); -lean_inc(x_2); -x_986 = l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_CheckAssignment_findCached_x3f(x_2, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -x_987 = lean_ctor_get(x_986, 0); -lean_inc(x_987); -if (lean_obj_tag(x_987) == 0) -{ -lean_object* x_988; lean_object* x_989; -x_988 = lean_ctor_get(x_986, 1); -lean_inc(x_988); -lean_dec(x_986); -lean_inc(x_10); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_2); -x_989 = l_Lean_Meta_CheckAssignment_checkMVar(x_2, x_5, x_6, x_7, x_8, x_9, x_10, x_988); -if (lean_obj_tag(x_989) == 0) -{ -lean_object* x_990; lean_object* x_991; lean_object* x_992; lean_object* x_993; -x_990 = lean_ctor_get(x_989, 0); -lean_inc(x_990); -x_991 = lean_ctor_get(x_989, 1); -lean_inc(x_991); -lean_dec(x_989); -lean_inc(x_990); -x_992 = l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_CheckAssignment_cache(x_2, x_990, x_5, x_6, x_7, x_8, x_9, x_10, x_991); -x_993 = lean_ctor_get(x_992, 1); -lean_inc(x_993); -lean_dec(x_992); -x_861 = x_990; -x_862 = x_993; -goto block_984; -} -else -{ -uint8_t x_994; -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_3); -lean_dec(x_2); -lean_dec(x_1); -x_994 = !lean_is_exclusive(x_989); -if (x_994 == 0) -{ -return x_989; -} -else -{ -lean_object* x_995; lean_object* x_996; lean_object* x_997; -x_995 = lean_ctor_get(x_989, 0); -x_996 = lean_ctor_get(x_989, 1); -lean_inc(x_996); -lean_inc(x_995); -lean_dec(x_989); -x_997 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_997, 0, x_995); -lean_ctor_set(x_997, 1, x_996); -return x_997; -} -} -} -else -{ -lean_object* x_998; lean_object* x_999; -lean_dec(x_2); -x_998 = lean_ctor_get(x_986, 1); -lean_inc(x_998); -lean_dec(x_986); -x_999 = lean_ctor_get(x_987, 0); -lean_inc(x_999); -lean_dec(x_987); -x_861 = x_999; -x_862 = x_998; -goto block_984; +lean_dec(x_823); +x_844 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_844, 0, x_842); +lean_ctor_set(x_844, 1, x_843); +return x_844; } } } } case 5: { -lean_object* x_1022; lean_object* x_1023; lean_object* x_1024; lean_object* x_1025; lean_object* x_1026; -x_1022 = lean_ctor_get(x_2, 0); -lean_inc(x_1022); -x_1023 = lean_ctor_get(x_2, 1); -lean_inc(x_1023); +lean_object* x_862; lean_object* x_863; lean_object* x_864; lean_object* x_865; lean_object* x_866; +x_862 = lean_ctor_get(x_2, 0); +lean_inc(x_862); +x_863 = lean_ctor_get(x_2, 1); +lean_inc(x_863); lean_dec(x_2); -x_1024 = lean_array_set(x_3, x_4, x_1023); -x_1025 = lean_unsigned_to_nat(1u); -x_1026 = lean_nat_sub(x_4, x_1025); +x_864 = lean_array_set(x_3, x_4, x_863); +x_865 = lean_unsigned_to_nat(1u); +x_866 = lean_nat_sub(x_4, x_865); lean_dec(x_4); -x_2 = x_1022; -x_3 = x_1024; -x_4 = x_1026; +x_2 = x_862; +x_3 = x_864; +x_4 = x_866; goto _start; } case 6: { -lean_object* x_1028; lean_object* x_1068; uint8_t x_1214; +lean_object* x_868; lean_object* x_998; uint8_t x_1022; lean_dec(x_4); -x_1214 = l_Lean_Expr_isMVar(x_2); -if (x_1214 == 0) +x_1022 = l_Lean_Expr_isMVar(x_2); +if (x_1022 == 0) { -lean_object* x_1215; +lean_object* x_1023; lean_dec(x_1); -x_1215 = lean_box(0); -x_1028 = x_1215; -goto block_1067; +x_1023 = lean_box(0); +x_998 = x_1023; +goto block_1021; } else { -lean_object* x_1216; uint8_t x_1217; -x_1216 = lean_ctor_get(x_7, 0); -lean_inc(x_1216); -x_1217 = lean_ctor_get_uint8(x_1216, 1); -lean_dec(x_1216); -if (x_1217 == 0) +lean_object* x_1024; uint8_t x_1025; +x_1024 = lean_ctor_get(x_7, 0); +lean_inc(x_1024); +x_1025 = lean_ctor_get_uint8(x_1024, 1); +lean_dec(x_1024); +if (x_1025 == 0) { -lean_object* x_1218; +lean_object* x_1026; lean_dec(x_1); -x_1218 = lean_box(0); -x_1028 = x_1218; -goto block_1067; +x_1026 = lean_box(0); +x_998 = x_1026; +goto block_1021; } else { -lean_object* x_1219; lean_object* x_1220; uint8_t x_1221; -x_1219 = lean_array_get_size(x_3); -x_1220 = lean_unsigned_to_nat(0u); -x_1221 = lean_nat_dec_lt(x_1220, x_1219); -if (x_1221 == 0) +lean_object* x_1027; lean_object* x_1028; uint8_t x_1029; +x_1027 = lean_array_get_size(x_3); +x_1028 = lean_unsigned_to_nat(0u); +x_1029 = lean_nat_dec_lt(x_1028, x_1027); +if (x_1029 == 0) { -lean_object* x_1222; -lean_dec(x_1219); -x_1222 = lean_box(0); -x_1068 = x_1222; -goto block_1213; +lean_object* x_1030; +lean_dec(x_1027); +x_1030 = lean_box(0); +x_868 = x_1030; +goto block_997; } else { -uint8_t x_1223; -x_1223 = lean_nat_dec_le(x_1219, x_1219); -if (x_1223 == 0) +uint8_t x_1031; +x_1031 = lean_nat_dec_le(x_1027, x_1027); +if (x_1031 == 0) { -lean_object* x_1224; -lean_dec(x_1219); -x_1224 = lean_box(0); -x_1068 = x_1224; -goto block_1213; +lean_object* x_1032; +lean_dec(x_1027); +x_1032 = lean_box(0); +x_868 = x_1032; +goto block_997; } else { -size_t x_1225; size_t x_1226; uint8_t x_1227; -x_1225 = 0; -x_1226 = lean_usize_of_nat(x_1219); -lean_dec(x_1219); -x_1227 = l_Array_anyMUnsafe_any___at_Lean_Meta_CheckAssignment_checkApp___spec__3(x_3, x_1225, x_1226); -if (x_1227 == 0) -{ -lean_object* x_1228; -x_1228 = lean_box(0); -x_1068 = x_1228; -goto block_1213; -} -else -{ -lean_object* x_1229; -lean_dec(x_1); -x_1229 = lean_box(0); -x_1028 = x_1229; -goto block_1067; -} -} -} -} -} -block_1067: -{ -lean_object* x_1029; lean_object* x_1030; lean_object* x_1047; uint8_t x_1063; -lean_dec(x_1028); -x_1063 = l_Lean_Expr_hasExprMVar(x_2); -if (x_1063 == 0) -{ -uint8_t x_1064; -x_1064 = l_Lean_Expr_hasFVar(x_2); -if (x_1064 == 0) -{ -x_1029 = x_2; -x_1030 = x_11; -goto block_1046; -} -else -{ -lean_object* x_1065; -x_1065 = lean_box(0); -x_1047 = x_1065; -goto block_1062; -} -} -else -{ -lean_object* x_1066; -x_1066 = lean_box(0); -x_1047 = x_1066; -goto block_1062; -} -block_1046: -{ -lean_object* x_1031; size_t x_1032; size_t x_1033; lean_object* x_1034; -x_1031 = lean_array_get_size(x_3); -x_1032 = lean_usize_of_nat(x_1031); -lean_dec(x_1031); +size_t x_1033; size_t x_1034; uint8_t x_1035; x_1033 = 0; -x_1034 = l_Array_mapMUnsafe_map___at_Lean_Meta_CheckAssignment_checkApp___spec__1(x_1032, x_1033, x_3, x_5, x_6, x_7, x_8, x_9, x_10, x_1030); -if (lean_obj_tag(x_1034) == 0) -{ -uint8_t x_1035; -x_1035 = !lean_is_exclusive(x_1034); +x_1034 = lean_usize_of_nat(x_1027); +lean_dec(x_1027); +x_1035 = l_Array_anyMUnsafe_any___at_Lean_Meta_CheckAssignment_checkApp___spec__3(x_3, x_1033, x_1034); if (x_1035 == 0) { -lean_object* x_1036; lean_object* x_1037; -x_1036 = lean_ctor_get(x_1034, 0); -x_1037 = l_Lean_mkAppN(x_1029, x_1036); -lean_ctor_set(x_1034, 0, x_1037); -return x_1034; +lean_object* x_1036; +x_1036 = lean_box(0); +x_868 = x_1036; +goto block_997; } else { -lean_object* x_1038; lean_object* x_1039; lean_object* x_1040; lean_object* x_1041; -x_1038 = lean_ctor_get(x_1034, 0); -x_1039 = lean_ctor_get(x_1034, 1); -lean_inc(x_1039); -lean_inc(x_1038); -lean_dec(x_1034); -x_1040 = l_Lean_mkAppN(x_1029, x_1038); -x_1041 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1041, 0, x_1040); -lean_ctor_set(x_1041, 1, x_1039); -return x_1041; +lean_object* x_1037; +lean_dec(x_1); +x_1037 = lean_box(0); +x_998 = x_1037; +goto block_1021; } } -else +} +} +} +block_997: { -uint8_t x_1042; -lean_dec(x_1029); -x_1042 = !lean_is_exclusive(x_1034); -if (x_1042 == 0) -{ -return x_1034; -} -else -{ -lean_object* x_1043; lean_object* x_1044; lean_object* x_1045; -x_1043 = lean_ctor_get(x_1034, 0); -x_1044 = lean_ctor_get(x_1034, 1); -lean_inc(x_1044); -lean_inc(x_1043); -lean_dec(x_1034); -x_1045 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1045, 0, x_1043); -lean_ctor_set(x_1045, 1, x_1044); -return x_1045; -} -} -} -block_1062: -{ -lean_object* x_1048; lean_object* x_1049; -lean_dec(x_1047); -lean_inc(x_2); -x_1048 = l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_CheckAssignment_findCached_x3f(x_2, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -x_1049 = lean_ctor_get(x_1048, 0); -lean_inc(x_1049); -if (lean_obj_tag(x_1049) == 0) -{ -lean_object* x_1050; lean_object* x_1051; -x_1050 = lean_ctor_get(x_1048, 1); -lean_inc(x_1050); -lean_dec(x_1048); +lean_object* x_869; +lean_dec(x_868); lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); lean_inc(x_5); -lean_inc(x_2); -x_1051 = l_Lean_Meta_CheckAssignment_check(x_2, x_5, x_6, x_7, x_8, x_9, x_10, x_1050); -if (lean_obj_tag(x_1051) == 0) +x_869 = l_Lean_Meta_CheckAssignment_check(x_2, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +if (lean_obj_tag(x_869) == 0) { -lean_object* x_1052; lean_object* x_1053; lean_object* x_1054; lean_object* x_1055; -x_1052 = lean_ctor_get(x_1051, 0); -lean_inc(x_1052); -x_1053 = lean_ctor_get(x_1051, 1); -lean_inc(x_1053); -lean_dec(x_1051); -lean_inc(x_1052); -x_1054 = l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_CheckAssignment_cache(x_2, x_1052, x_5, x_6, x_7, x_8, x_9, x_10, x_1053); -x_1055 = lean_ctor_get(x_1054, 1); -lean_inc(x_1055); -lean_dec(x_1054); -x_1029 = x_1052; -x_1030 = x_1055; -goto block_1046; +lean_object* x_870; lean_object* x_871; lean_object* x_872; size_t x_873; size_t x_874; lean_object* x_875; +x_870 = lean_ctor_get(x_869, 0); +lean_inc(x_870); +x_871 = lean_ctor_get(x_869, 1); +lean_inc(x_871); +lean_dec(x_869); +x_872 = lean_array_get_size(x_3); +x_873 = lean_usize_of_nat(x_872); +x_874 = 0; +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +x_875 = l_Array_mapMUnsafe_map___at_Lean_Meta_CheckAssignment_checkApp___spec__1(x_873, x_874, x_3, x_5, x_6, x_7, x_8, x_9, x_10, x_871); +if (lean_obj_tag(x_875) == 0) +{ +uint8_t x_876; +lean_dec(x_872); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_1); +x_876 = !lean_is_exclusive(x_875); +if (x_876 == 0) +{ +lean_object* x_877; lean_object* x_878; +x_877 = lean_ctor_get(x_875, 0); +x_878 = l_Lean_mkAppN(x_870, x_877); +lean_ctor_set(x_875, 0, x_878); +return x_875; } else { -uint8_t x_1056; +lean_object* x_879; lean_object* x_880; lean_object* x_881; lean_object* x_882; +x_879 = lean_ctor_get(x_875, 0); +x_880 = lean_ctor_get(x_875, 1); +lean_inc(x_880); +lean_inc(x_879); +lean_dec(x_875); +x_881 = l_Lean_mkAppN(x_870, x_879); +x_882 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_882, 0, x_881); +lean_ctor_set(x_882, 1, x_880); +return x_882; +} +} +else +{ +lean_object* x_883; +x_883 = lean_ctor_get(x_875, 0); +lean_inc(x_883); +if (lean_obj_tag(x_883) == 0) +{ +uint8_t x_884; +lean_dec(x_872); +lean_dec(x_870); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_1); +x_884 = !lean_is_exclusive(x_875); +if (x_884 == 0) +{ +lean_object* x_885; +x_885 = lean_ctor_get(x_875, 0); +lean_dec(x_885); +return x_875; +} +else +{ +lean_object* x_886; lean_object* x_887; +x_886 = lean_ctor_get(x_875, 1); +lean_inc(x_886); +lean_dec(x_875); +x_887 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_887, 0, x_883); +lean_ctor_set(x_887, 1, x_886); +return x_887; +} +} +else +{ +uint8_t x_888; +x_888 = !lean_is_exclusive(x_875); +if (x_888 == 0) +{ +lean_object* x_889; lean_object* x_890; lean_object* x_891; lean_object* x_892; uint8_t x_893; +x_889 = lean_ctor_get(x_875, 1); +x_890 = lean_ctor_get(x_875, 0); +lean_dec(x_890); +x_891 = lean_ctor_get(x_883, 0); +lean_inc(x_891); +x_892 = l_Lean_Meta_CheckAssignment_throwOutOfScopeFVar___rarg___closed__1; +x_893 = lean_nat_dec_eq(x_892, x_891); +lean_dec(x_891); +if (x_893 == 0) +{ +lean_dec(x_872); +lean_dec(x_870); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_1); +return x_875; +} +else +{ +uint8_t x_894; +x_894 = l_Lean_Expr_isMVar(x_870); +if (x_894 == 0) +{ +lean_dec(x_872); +lean_dec(x_870); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_1); +return x_875; +} +else +{ +lean_object* x_895; lean_object* x_896; lean_object* x_897; uint8_t x_898; +lean_free_object(x_875); +lean_inc(x_870); +x_895 = l_Lean_Expr_mvarId_x21(x_870); +x_896 = l_Lean_MVarId_isDelayedAssigned___at_Lean_Meta_CheckAssignment_checkApp___spec__2(x_895, x_5, x_6, x_7, x_8, x_9, x_10, x_889); +x_897 = lean_ctor_get(x_896, 0); +lean_inc(x_897); +x_898 = lean_unbox(x_897); +lean_dec(x_897); +if (x_898 == 0) +{ +lean_object* x_899; lean_object* x_900; +x_899 = lean_ctor_get(x_896, 1); +lean_inc(x_899); +lean_dec(x_896); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +x_900 = lean_infer_type(x_1, x_7, x_8, x_9, x_10, x_899); +if (lean_obj_tag(x_900) == 0) +{ +lean_object* x_901; lean_object* x_902; lean_object* x_903; +x_901 = lean_ctor_get(x_900, 0); +lean_inc(x_901); +x_902 = lean_ctor_get(x_900, 1); +lean_inc(x_902); +lean_dec(x_900); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_5); +x_903 = l_Lean_Meta_CheckAssignment_check(x_901, x_5, x_6, x_7, x_8, x_9, x_10, x_902); +if (lean_obj_tag(x_903) == 0) +{ +lean_object* x_904; lean_object* x_905; lean_object* x_906; lean_object* x_907; lean_object* x_908; uint8_t x_909; lean_object* x_910; lean_object* x_911; lean_object* x_912; lean_object* x_913; lean_object* x_914; lean_object* x_915; +x_904 = lean_ctor_get(x_903, 0); +lean_inc(x_904); +x_905 = lean_ctor_get(x_903, 1); +lean_inc(x_905); +lean_dec(x_903); +x_906 = lean_ctor_get(x_5, 1); +lean_inc(x_906); +lean_dec(x_5); +x_907 = lean_ctor_get(x_906, 1); +lean_inc(x_907); +x_908 = lean_ctor_get(x_906, 4); +lean_inc(x_908); +lean_dec(x_906); +x_909 = 0; +x_910 = lean_box(0); +x_911 = lean_unsigned_to_nat(0u); +x_912 = l_Lean_Meta_mkFreshExprMVarAt(x_907, x_908, x_904, x_909, x_910, x_911, x_7, x_8, x_9, x_10, x_905); +x_913 = lean_ctor_get(x_912, 0); +lean_inc(x_913); +x_914 = lean_ctor_get(x_912, 1); +lean_inc(x_914); +lean_dec(x_912); +lean_inc(x_913); +x_915 = l_Lean_Meta_CheckAssignment_assignToConstFun(x_870, x_872, x_913, x_7, x_8, x_9, x_10, x_914); +if (lean_obj_tag(x_915) == 0) +{ +lean_object* x_916; uint8_t x_917; +x_916 = lean_ctor_get(x_915, 0); +lean_inc(x_916); +x_917 = lean_unbox(x_916); +lean_dec(x_916); +if (x_917 == 0) +{ +uint8_t x_918; +lean_dec(x_913); +x_918 = !lean_is_exclusive(x_915); +if (x_918 == 0) +{ +lean_object* x_919; +x_919 = lean_ctor_get(x_915, 0); +lean_dec(x_919); +lean_ctor_set_tag(x_915, 1); +lean_ctor_set(x_915, 0, x_883); +return x_915; +} +else +{ +lean_object* x_920; lean_object* x_921; +x_920 = lean_ctor_get(x_915, 1); +lean_inc(x_920); +lean_dec(x_915); +x_921 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_921, 0, x_883); +lean_ctor_set(x_921, 1, x_920); +return x_921; +} +} +else +{ +uint8_t x_922; +lean_dec(x_883); +x_922 = !lean_is_exclusive(x_915); +if (x_922 == 0) +{ +lean_object* x_923; +x_923 = lean_ctor_get(x_915, 0); +lean_dec(x_923); +lean_ctor_set(x_915, 0, x_913); +return x_915; +} +else +{ +lean_object* x_924; lean_object* x_925; +x_924 = lean_ctor_get(x_915, 1); +lean_inc(x_924); +lean_dec(x_915); +x_925 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_925, 0, x_913); +lean_ctor_set(x_925, 1, x_924); +return x_925; +} +} +} +else +{ +uint8_t x_926; +lean_dec(x_913); +lean_dec(x_883); +x_926 = !lean_is_exclusive(x_915); +if (x_926 == 0) +{ +return x_915; +} +else +{ +lean_object* x_927; lean_object* x_928; lean_object* x_929; +x_927 = lean_ctor_get(x_915, 0); +x_928 = lean_ctor_get(x_915, 1); +lean_inc(x_928); +lean_inc(x_927); +lean_dec(x_915); +x_929 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_929, 0, x_927); +lean_ctor_set(x_929, 1, x_928); +return x_929; +} +} +} +else +{ +uint8_t x_930; +lean_dec(x_883); +lean_dec(x_872); +lean_dec(x_870); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_5); +x_930 = !lean_is_exclusive(x_903); +if (x_930 == 0) +{ +return x_903; +} +else +{ +lean_object* x_931; lean_object* x_932; lean_object* x_933; +x_931 = lean_ctor_get(x_903, 0); +x_932 = lean_ctor_get(x_903, 1); +lean_inc(x_932); +lean_inc(x_931); +lean_dec(x_903); +x_933 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_933, 0, x_931); +lean_ctor_set(x_933, 1, x_932); +return x_933; +} +} +} +else +{ +uint8_t x_934; +lean_dec(x_883); +lean_dec(x_872); +lean_dec(x_870); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +x_934 = !lean_is_exclusive(x_900); +if (x_934 == 0) +{ +return x_900; +} +else +{ +lean_object* x_935; lean_object* x_936; lean_object* x_937; +x_935 = lean_ctor_get(x_900, 0); +x_936 = lean_ctor_get(x_900, 1); +lean_inc(x_936); +lean_inc(x_935); +lean_dec(x_900); +x_937 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_937, 0, x_935); +lean_ctor_set(x_937, 1, x_936); +return x_937; +} +} +} +else +{ +uint8_t x_938; +lean_dec(x_872); +lean_dec(x_870); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_1); +x_938 = !lean_is_exclusive(x_896); +if (x_938 == 0) +{ +lean_object* x_939; +x_939 = lean_ctor_get(x_896, 0); +lean_dec(x_939); +lean_ctor_set_tag(x_896, 1); +lean_ctor_set(x_896, 0, x_883); +return x_896; +} +else +{ +lean_object* x_940; lean_object* x_941; +x_940 = lean_ctor_get(x_896, 1); +lean_inc(x_940); +lean_dec(x_896); +x_941 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_941, 0, x_883); +lean_ctor_set(x_941, 1, x_940); +return x_941; +} +} +} +} +} +else +{ +lean_object* x_942; lean_object* x_943; lean_object* x_944; uint8_t x_945; +x_942 = lean_ctor_get(x_875, 1); +lean_inc(x_942); +lean_dec(x_875); +x_943 = lean_ctor_get(x_883, 0); +lean_inc(x_943); +x_944 = l_Lean_Meta_CheckAssignment_throwOutOfScopeFVar___rarg___closed__1; +x_945 = lean_nat_dec_eq(x_944, x_943); +lean_dec(x_943); +if (x_945 == 0) +{ +lean_object* x_946; +lean_dec(x_872); +lean_dec(x_870); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_1); +x_946 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_946, 0, x_883); +lean_ctor_set(x_946, 1, x_942); +return x_946; +} +else +{ +uint8_t x_947; +x_947 = l_Lean_Expr_isMVar(x_870); +if (x_947 == 0) +{ +lean_object* x_948; +lean_dec(x_872); +lean_dec(x_870); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_1); +x_948 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_948, 0, x_883); +lean_ctor_set(x_948, 1, x_942); +return x_948; +} +else +{ +lean_object* x_949; lean_object* x_950; lean_object* x_951; uint8_t x_952; +lean_inc(x_870); +x_949 = l_Lean_Expr_mvarId_x21(x_870); +x_950 = l_Lean_MVarId_isDelayedAssigned___at_Lean_Meta_CheckAssignment_checkApp___spec__2(x_949, x_5, x_6, x_7, x_8, x_9, x_10, x_942); +x_951 = lean_ctor_get(x_950, 0); +lean_inc(x_951); +x_952 = lean_unbox(x_951); +lean_dec(x_951); +if (x_952 == 0) +{ +lean_object* x_953; lean_object* x_954; +x_953 = lean_ctor_get(x_950, 1); +lean_inc(x_953); +lean_dec(x_950); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +x_954 = lean_infer_type(x_1, x_7, x_8, x_9, x_10, x_953); +if (lean_obj_tag(x_954) == 0) +{ +lean_object* x_955; lean_object* x_956; lean_object* x_957; +x_955 = lean_ctor_get(x_954, 0); +lean_inc(x_955); +x_956 = lean_ctor_get(x_954, 1); +lean_inc(x_956); +lean_dec(x_954); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_5); +x_957 = l_Lean_Meta_CheckAssignment_check(x_955, x_5, x_6, x_7, x_8, x_9, x_10, x_956); +if (lean_obj_tag(x_957) == 0) +{ +lean_object* x_958; lean_object* x_959; lean_object* x_960; lean_object* x_961; lean_object* x_962; uint8_t x_963; lean_object* x_964; lean_object* x_965; lean_object* x_966; lean_object* x_967; lean_object* x_968; lean_object* x_969; +x_958 = lean_ctor_get(x_957, 0); +lean_inc(x_958); +x_959 = lean_ctor_get(x_957, 1); +lean_inc(x_959); +lean_dec(x_957); +x_960 = lean_ctor_get(x_5, 1); +lean_inc(x_960); +lean_dec(x_5); +x_961 = lean_ctor_get(x_960, 1); +lean_inc(x_961); +x_962 = lean_ctor_get(x_960, 4); +lean_inc(x_962); +lean_dec(x_960); +x_963 = 0; +x_964 = lean_box(0); +x_965 = lean_unsigned_to_nat(0u); +x_966 = l_Lean_Meta_mkFreshExprMVarAt(x_961, x_962, x_958, x_963, x_964, x_965, x_7, x_8, x_9, x_10, x_959); +x_967 = lean_ctor_get(x_966, 0); +lean_inc(x_967); +x_968 = lean_ctor_get(x_966, 1); +lean_inc(x_968); +lean_dec(x_966); +lean_inc(x_967); +x_969 = l_Lean_Meta_CheckAssignment_assignToConstFun(x_870, x_872, x_967, x_7, x_8, x_9, x_10, x_968); +if (lean_obj_tag(x_969) == 0) +{ +lean_object* x_970; uint8_t x_971; +x_970 = lean_ctor_get(x_969, 0); +lean_inc(x_970); +x_971 = lean_unbox(x_970); +lean_dec(x_970); +if (x_971 == 0) +{ +lean_object* x_972; lean_object* x_973; lean_object* x_974; +lean_dec(x_967); +x_972 = lean_ctor_get(x_969, 1); +lean_inc(x_972); +if (lean_is_exclusive(x_969)) { + lean_ctor_release(x_969, 0); + lean_ctor_release(x_969, 1); + x_973 = x_969; +} else { + lean_dec_ref(x_969); + x_973 = lean_box(0); +} +if (lean_is_scalar(x_973)) { + x_974 = lean_alloc_ctor(1, 2, 0); +} else { + x_974 = x_973; + lean_ctor_set_tag(x_974, 1); +} +lean_ctor_set(x_974, 0, x_883); +lean_ctor_set(x_974, 1, x_972); +return x_974; +} +else +{ +lean_object* x_975; lean_object* x_976; lean_object* x_977; +lean_dec(x_883); +x_975 = lean_ctor_get(x_969, 1); +lean_inc(x_975); +if (lean_is_exclusive(x_969)) { + lean_ctor_release(x_969, 0); + lean_ctor_release(x_969, 1); + x_976 = x_969; +} else { + lean_dec_ref(x_969); + x_976 = lean_box(0); +} +if (lean_is_scalar(x_976)) { + x_977 = lean_alloc_ctor(0, 2, 0); +} else { + x_977 = x_976; +} +lean_ctor_set(x_977, 0, x_967); +lean_ctor_set(x_977, 1, x_975); +return x_977; +} +} +else +{ +lean_object* x_978; lean_object* x_979; lean_object* x_980; lean_object* x_981; +lean_dec(x_967); +lean_dec(x_883); +x_978 = lean_ctor_get(x_969, 0); +lean_inc(x_978); +x_979 = lean_ctor_get(x_969, 1); +lean_inc(x_979); +if (lean_is_exclusive(x_969)) { + lean_ctor_release(x_969, 0); + lean_ctor_release(x_969, 1); + x_980 = x_969; +} else { + lean_dec_ref(x_969); + x_980 = lean_box(0); +} +if (lean_is_scalar(x_980)) { + x_981 = lean_alloc_ctor(1, 2, 0); +} else { + x_981 = x_980; +} +lean_ctor_set(x_981, 0, x_978); +lean_ctor_set(x_981, 1, x_979); +return x_981; +} +} +else +{ +lean_object* x_982; lean_object* x_983; lean_object* x_984; lean_object* x_985; +lean_dec(x_883); +lean_dec(x_872); +lean_dec(x_870); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_5); +x_982 = lean_ctor_get(x_957, 0); +lean_inc(x_982); +x_983 = lean_ctor_get(x_957, 1); +lean_inc(x_983); +if (lean_is_exclusive(x_957)) { + lean_ctor_release(x_957, 0); + lean_ctor_release(x_957, 1); + x_984 = x_957; +} else { + lean_dec_ref(x_957); + x_984 = lean_box(0); +} +if (lean_is_scalar(x_984)) { + x_985 = lean_alloc_ctor(1, 2, 0); +} else { + x_985 = x_984; +} +lean_ctor_set(x_985, 0, x_982); +lean_ctor_set(x_985, 1, x_983); +return x_985; +} +} +else +{ +lean_object* x_986; lean_object* x_987; lean_object* x_988; lean_object* x_989; +lean_dec(x_883); +lean_dec(x_872); +lean_dec(x_870); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +x_986 = lean_ctor_get(x_954, 0); +lean_inc(x_986); +x_987 = lean_ctor_get(x_954, 1); +lean_inc(x_987); +if (lean_is_exclusive(x_954)) { + lean_ctor_release(x_954, 0); + lean_ctor_release(x_954, 1); + x_988 = x_954; +} else { + lean_dec_ref(x_954); + x_988 = lean_box(0); +} +if (lean_is_scalar(x_988)) { + x_989 = lean_alloc_ctor(1, 2, 0); +} else { + x_989 = x_988; +} +lean_ctor_set(x_989, 0, x_986); +lean_ctor_set(x_989, 1, x_987); +return x_989; +} +} +else +{ +lean_object* x_990; lean_object* x_991; lean_object* x_992; +lean_dec(x_872); +lean_dec(x_870); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_1); +x_990 = lean_ctor_get(x_950, 1); +lean_inc(x_990); +if (lean_is_exclusive(x_950)) { + lean_ctor_release(x_950, 0); + lean_ctor_release(x_950, 1); + x_991 = x_950; +} else { + lean_dec_ref(x_950); + x_991 = lean_box(0); +} +if (lean_is_scalar(x_991)) { + x_992 = lean_alloc_ctor(1, 2, 0); +} else { + x_992 = x_991; + lean_ctor_set_tag(x_992, 1); +} +lean_ctor_set(x_992, 0, x_883); +lean_ctor_set(x_992, 1, x_990); +return x_992; +} +} +} +} +} +} +} +else +{ +uint8_t x_993; lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); @@ -24315,790 +22984,105 @@ lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_3); -lean_dec(x_2); -x_1056 = !lean_is_exclusive(x_1051); -if (x_1056 == 0) +lean_dec(x_1); +x_993 = !lean_is_exclusive(x_869); +if (x_993 == 0) { -return x_1051; +return x_869; } else { -lean_object* x_1057; lean_object* x_1058; lean_object* x_1059; -x_1057 = lean_ctor_get(x_1051, 0); -x_1058 = lean_ctor_get(x_1051, 1); -lean_inc(x_1058); -lean_inc(x_1057); -lean_dec(x_1051); -x_1059 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1059, 0, x_1057); -lean_ctor_set(x_1059, 1, x_1058); -return x_1059; +lean_object* x_994; lean_object* x_995; lean_object* x_996; +x_994 = lean_ctor_get(x_869, 0); +x_995 = lean_ctor_get(x_869, 1); +lean_inc(x_995); +lean_inc(x_994); +lean_dec(x_869); +x_996 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_996, 0, x_994); +lean_ctor_set(x_996, 1, x_995); +return x_996; } } } -else +block_1021: { -lean_object* x_1060; lean_object* x_1061; -lean_dec(x_2); -x_1060 = lean_ctor_get(x_1048, 1); -lean_inc(x_1060); -lean_dec(x_1048); -x_1061 = lean_ctor_get(x_1049, 0); -lean_inc(x_1061); -lean_dec(x_1049); -x_1029 = x_1061; -x_1030 = x_1060; -goto block_1046; -} -} -} -block_1213: -{ -lean_object* x_1069; lean_object* x_1070; lean_object* x_1193; uint8_t x_1209; -lean_dec(x_1068); -x_1209 = l_Lean_Expr_hasExprMVar(x_2); -if (x_1209 == 0) -{ -uint8_t x_1210; -x_1210 = l_Lean_Expr_hasFVar(x_2); -if (x_1210 == 0) -{ -x_1069 = x_2; -x_1070 = x_11; -goto block_1192; -} -else -{ -lean_object* x_1211; -x_1211 = lean_box(0); -x_1193 = x_1211; -goto block_1208; -} -} -else -{ -lean_object* x_1212; -x_1212 = lean_box(0); -x_1193 = x_1212; -goto block_1208; -} -block_1192: -{ -lean_object* x_1071; size_t x_1072; size_t x_1073; lean_object* x_1074; -x_1071 = lean_array_get_size(x_3); -x_1072 = lean_usize_of_nat(x_1071); -x_1073 = 0; +lean_object* x_999; +lean_dec(x_998); lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); lean_inc(x_5); -x_1074 = l_Array_mapMUnsafe_map___at_Lean_Meta_CheckAssignment_checkApp___spec__1(x_1072, x_1073, x_3, x_5, x_6, x_7, x_8, x_9, x_10, x_1070); -if (lean_obj_tag(x_1074) == 0) +x_999 = l_Lean_Meta_CheckAssignment_check(x_2, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +if (lean_obj_tag(x_999) == 0) { -uint8_t x_1075; -lean_dec(x_1071); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_1); -x_1075 = !lean_is_exclusive(x_1074); -if (x_1075 == 0) +lean_object* x_1000; lean_object* x_1001; lean_object* x_1002; size_t x_1003; size_t x_1004; lean_object* x_1005; +x_1000 = lean_ctor_get(x_999, 0); +lean_inc(x_1000); +x_1001 = lean_ctor_get(x_999, 1); +lean_inc(x_1001); +lean_dec(x_999); +x_1002 = lean_array_get_size(x_3); +x_1003 = lean_usize_of_nat(x_1002); +lean_dec(x_1002); +x_1004 = 0; +x_1005 = l_Array_mapMUnsafe_map___at_Lean_Meta_CheckAssignment_checkApp___spec__1(x_1003, x_1004, x_3, x_5, x_6, x_7, x_8, x_9, x_10, x_1001); +if (lean_obj_tag(x_1005) == 0) { -lean_object* x_1076; lean_object* x_1077; -x_1076 = lean_ctor_get(x_1074, 0); -x_1077 = l_Lean_mkAppN(x_1069, x_1076); -lean_ctor_set(x_1074, 0, x_1077); -return x_1074; +uint8_t x_1006; +x_1006 = !lean_is_exclusive(x_1005); +if (x_1006 == 0) +{ +lean_object* x_1007; lean_object* x_1008; +x_1007 = lean_ctor_get(x_1005, 0); +x_1008 = l_Lean_mkAppN(x_1000, x_1007); +lean_ctor_set(x_1005, 0, x_1008); +return x_1005; } else { -lean_object* x_1078; lean_object* x_1079; lean_object* x_1080; lean_object* x_1081; -x_1078 = lean_ctor_get(x_1074, 0); -x_1079 = lean_ctor_get(x_1074, 1); -lean_inc(x_1079); -lean_inc(x_1078); -lean_dec(x_1074); -x_1080 = l_Lean_mkAppN(x_1069, x_1078); -x_1081 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1081, 0, x_1080); -lean_ctor_set(x_1081, 1, x_1079); -return x_1081; +lean_object* x_1009; lean_object* x_1010; lean_object* x_1011; lean_object* x_1012; +x_1009 = lean_ctor_get(x_1005, 0); +x_1010 = lean_ctor_get(x_1005, 1); +lean_inc(x_1010); +lean_inc(x_1009); +lean_dec(x_1005); +x_1011 = l_Lean_mkAppN(x_1000, x_1009); +x_1012 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1012, 0, x_1011); +lean_ctor_set(x_1012, 1, x_1010); +return x_1012; } } else { -lean_object* x_1082; -x_1082 = lean_ctor_get(x_1074, 0); -lean_inc(x_1082); -if (lean_obj_tag(x_1082) == 0) +uint8_t x_1013; +lean_dec(x_1000); +x_1013 = !lean_is_exclusive(x_1005); +if (x_1013 == 0) { -uint8_t x_1083; -lean_dec(x_1071); -lean_dec(x_1069); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_1); -x_1083 = !lean_is_exclusive(x_1074); -if (x_1083 == 0) -{ -lean_object* x_1084; -x_1084 = lean_ctor_get(x_1074, 0); -lean_dec(x_1084); -return x_1074; +return x_1005; } else { -lean_object* x_1085; lean_object* x_1086; -x_1085 = lean_ctor_get(x_1074, 1); -lean_inc(x_1085); -lean_dec(x_1074); -x_1086 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1086, 0, x_1082); -lean_ctor_set(x_1086, 1, x_1085); -return x_1086; -} -} -else -{ -uint8_t x_1087; -x_1087 = !lean_is_exclusive(x_1074); -if (x_1087 == 0) -{ -lean_object* x_1088; lean_object* x_1089; lean_object* x_1090; lean_object* x_1091; uint8_t x_1092; -x_1088 = lean_ctor_get(x_1074, 1); -x_1089 = lean_ctor_get(x_1074, 0); -lean_dec(x_1089); -x_1090 = lean_ctor_get(x_1082, 0); -lean_inc(x_1090); -x_1091 = l_Lean_Meta_CheckAssignment_throwOutOfScopeFVar___rarg___closed__1; -x_1092 = lean_nat_dec_eq(x_1091, x_1090); -lean_dec(x_1090); -if (x_1092 == 0) -{ -lean_dec(x_1071); -lean_dec(x_1069); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_1); -return x_1074; -} -else -{ -uint8_t x_1093; -x_1093 = l_Lean_Expr_isMVar(x_1069); -if (x_1093 == 0) -{ -lean_dec(x_1071); -lean_dec(x_1069); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_1); -return x_1074; -} -else -{ -lean_object* x_1094; lean_object* x_1095; lean_object* x_1096; uint8_t x_1097; -lean_free_object(x_1074); -lean_inc(x_1069); -x_1094 = l_Lean_Expr_mvarId_x21(x_1069); -x_1095 = l_Lean_MVarId_isDelayedAssigned___at_Lean_Meta_CheckAssignment_checkApp___spec__2(x_1094, x_5, x_6, x_7, x_8, x_9, x_10, x_1088); -x_1096 = lean_ctor_get(x_1095, 0); -lean_inc(x_1096); -x_1097 = lean_unbox(x_1096); -lean_dec(x_1096); -if (x_1097 == 0) -{ -lean_object* x_1098; lean_object* x_1099; -x_1098 = lean_ctor_get(x_1095, 1); -lean_inc(x_1098); -lean_dec(x_1095); -lean_inc(x_10); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -x_1099 = lean_infer_type(x_1, x_7, x_8, x_9, x_10, x_1098); -if (lean_obj_tag(x_1099) == 0) -{ -lean_object* x_1100; lean_object* x_1101; lean_object* x_1102; -x_1100 = lean_ctor_get(x_1099, 0); -lean_inc(x_1100); -x_1101 = lean_ctor_get(x_1099, 1); -lean_inc(x_1101); -lean_dec(x_1099); -lean_inc(x_10); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_5); -x_1102 = l_Lean_Meta_CheckAssignment_check(x_1100, x_5, x_6, x_7, x_8, x_9, x_10, x_1101); -if (lean_obj_tag(x_1102) == 0) -{ -lean_object* x_1103; lean_object* x_1104; lean_object* x_1105; lean_object* x_1106; lean_object* x_1107; uint8_t x_1108; lean_object* x_1109; lean_object* x_1110; lean_object* x_1111; lean_object* x_1112; lean_object* x_1113; lean_object* x_1114; -x_1103 = lean_ctor_get(x_1102, 0); -lean_inc(x_1103); -x_1104 = lean_ctor_get(x_1102, 1); -lean_inc(x_1104); -lean_dec(x_1102); -x_1105 = lean_ctor_get(x_5, 1); -lean_inc(x_1105); -lean_dec(x_5); -x_1106 = lean_ctor_get(x_1105, 1); -lean_inc(x_1106); -x_1107 = lean_ctor_get(x_1105, 4); -lean_inc(x_1107); -lean_dec(x_1105); -x_1108 = 0; -x_1109 = lean_box(0); -x_1110 = lean_unsigned_to_nat(0u); -x_1111 = l_Lean_Meta_mkFreshExprMVarAt(x_1106, x_1107, x_1103, x_1108, x_1109, x_1110, x_7, x_8, x_9, x_10, x_1104); -x_1112 = lean_ctor_get(x_1111, 0); -lean_inc(x_1112); -x_1113 = lean_ctor_get(x_1111, 1); -lean_inc(x_1113); -lean_dec(x_1111); -lean_inc(x_1112); -x_1114 = l_Lean_Meta_CheckAssignment_assignToConstFun(x_1069, x_1071, x_1112, x_7, x_8, x_9, x_10, x_1113); -if (lean_obj_tag(x_1114) == 0) -{ -lean_object* x_1115; uint8_t x_1116; -x_1115 = lean_ctor_get(x_1114, 0); -lean_inc(x_1115); -x_1116 = lean_unbox(x_1115); -lean_dec(x_1115); -if (x_1116 == 0) -{ -uint8_t x_1117; -lean_dec(x_1112); -x_1117 = !lean_is_exclusive(x_1114); -if (x_1117 == 0) -{ -lean_object* x_1118; -x_1118 = lean_ctor_get(x_1114, 0); -lean_dec(x_1118); -lean_ctor_set_tag(x_1114, 1); -lean_ctor_set(x_1114, 0, x_1082); -return x_1114; -} -else -{ -lean_object* x_1119; lean_object* x_1120; -x_1119 = lean_ctor_get(x_1114, 1); -lean_inc(x_1119); -lean_dec(x_1114); -x_1120 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1120, 0, x_1082); -lean_ctor_set(x_1120, 1, x_1119); -return x_1120; -} -} -else -{ -uint8_t x_1121; -lean_dec(x_1082); -x_1121 = !lean_is_exclusive(x_1114); -if (x_1121 == 0) -{ -lean_object* x_1122; -x_1122 = lean_ctor_get(x_1114, 0); -lean_dec(x_1122); -lean_ctor_set(x_1114, 0, x_1112); -return x_1114; -} -else -{ -lean_object* x_1123; lean_object* x_1124; -x_1123 = lean_ctor_get(x_1114, 1); -lean_inc(x_1123); -lean_dec(x_1114); -x_1124 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1124, 0, x_1112); -lean_ctor_set(x_1124, 1, x_1123); -return x_1124; +lean_object* x_1014; lean_object* x_1015; lean_object* x_1016; +x_1014 = lean_ctor_get(x_1005, 0); +x_1015 = lean_ctor_get(x_1005, 1); +lean_inc(x_1015); +lean_inc(x_1014); +lean_dec(x_1005); +x_1016 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1016, 0, x_1014); +lean_ctor_set(x_1016, 1, x_1015); +return x_1016; } } } else { -uint8_t x_1125; -lean_dec(x_1112); -lean_dec(x_1082); -x_1125 = !lean_is_exclusive(x_1114); -if (x_1125 == 0) -{ -return x_1114; -} -else -{ -lean_object* x_1126; lean_object* x_1127; lean_object* x_1128; -x_1126 = lean_ctor_get(x_1114, 0); -x_1127 = lean_ctor_get(x_1114, 1); -lean_inc(x_1127); -lean_inc(x_1126); -lean_dec(x_1114); -x_1128 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1128, 0, x_1126); -lean_ctor_set(x_1128, 1, x_1127); -return x_1128; -} -} -} -else -{ -uint8_t x_1129; -lean_dec(x_1082); -lean_dec(x_1071); -lean_dec(x_1069); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_5); -x_1129 = !lean_is_exclusive(x_1102); -if (x_1129 == 0) -{ -return x_1102; -} -else -{ -lean_object* x_1130; lean_object* x_1131; lean_object* x_1132; -x_1130 = lean_ctor_get(x_1102, 0); -x_1131 = lean_ctor_get(x_1102, 1); -lean_inc(x_1131); -lean_inc(x_1130); -lean_dec(x_1102); -x_1132 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1132, 0, x_1130); -lean_ctor_set(x_1132, 1, x_1131); -return x_1132; -} -} -} -else -{ -uint8_t x_1133; -lean_dec(x_1082); -lean_dec(x_1071); -lean_dec(x_1069); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -x_1133 = !lean_is_exclusive(x_1099); -if (x_1133 == 0) -{ -return x_1099; -} -else -{ -lean_object* x_1134; lean_object* x_1135; lean_object* x_1136; -x_1134 = lean_ctor_get(x_1099, 0); -x_1135 = lean_ctor_get(x_1099, 1); -lean_inc(x_1135); -lean_inc(x_1134); -lean_dec(x_1099); -x_1136 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1136, 0, x_1134); -lean_ctor_set(x_1136, 1, x_1135); -return x_1136; -} -} -} -else -{ -uint8_t x_1137; -lean_dec(x_1071); -lean_dec(x_1069); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_1); -x_1137 = !lean_is_exclusive(x_1095); -if (x_1137 == 0) -{ -lean_object* x_1138; -x_1138 = lean_ctor_get(x_1095, 0); -lean_dec(x_1138); -lean_ctor_set_tag(x_1095, 1); -lean_ctor_set(x_1095, 0, x_1082); -return x_1095; -} -else -{ -lean_object* x_1139; lean_object* x_1140; -x_1139 = lean_ctor_get(x_1095, 1); -lean_inc(x_1139); -lean_dec(x_1095); -x_1140 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1140, 0, x_1082); -lean_ctor_set(x_1140, 1, x_1139); -return x_1140; -} -} -} -} -} -else -{ -lean_object* x_1141; lean_object* x_1142; lean_object* x_1143; uint8_t x_1144; -x_1141 = lean_ctor_get(x_1074, 1); -lean_inc(x_1141); -lean_dec(x_1074); -x_1142 = lean_ctor_get(x_1082, 0); -lean_inc(x_1142); -x_1143 = l_Lean_Meta_CheckAssignment_throwOutOfScopeFVar___rarg___closed__1; -x_1144 = lean_nat_dec_eq(x_1143, x_1142); -lean_dec(x_1142); -if (x_1144 == 0) -{ -lean_object* x_1145; -lean_dec(x_1071); -lean_dec(x_1069); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_1); -x_1145 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1145, 0, x_1082); -lean_ctor_set(x_1145, 1, x_1141); -return x_1145; -} -else -{ -uint8_t x_1146; -x_1146 = l_Lean_Expr_isMVar(x_1069); -if (x_1146 == 0) -{ -lean_object* x_1147; -lean_dec(x_1071); -lean_dec(x_1069); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_1); -x_1147 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1147, 0, x_1082); -lean_ctor_set(x_1147, 1, x_1141); -return x_1147; -} -else -{ -lean_object* x_1148; lean_object* x_1149; lean_object* x_1150; uint8_t x_1151; -lean_inc(x_1069); -x_1148 = l_Lean_Expr_mvarId_x21(x_1069); -x_1149 = l_Lean_MVarId_isDelayedAssigned___at_Lean_Meta_CheckAssignment_checkApp___spec__2(x_1148, x_5, x_6, x_7, x_8, x_9, x_10, x_1141); -x_1150 = lean_ctor_get(x_1149, 0); -lean_inc(x_1150); -x_1151 = lean_unbox(x_1150); -lean_dec(x_1150); -if (x_1151 == 0) -{ -lean_object* x_1152; lean_object* x_1153; -x_1152 = lean_ctor_get(x_1149, 1); -lean_inc(x_1152); -lean_dec(x_1149); -lean_inc(x_10); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -x_1153 = lean_infer_type(x_1, x_7, x_8, x_9, x_10, x_1152); -if (lean_obj_tag(x_1153) == 0) -{ -lean_object* x_1154; lean_object* x_1155; lean_object* x_1156; -x_1154 = lean_ctor_get(x_1153, 0); -lean_inc(x_1154); -x_1155 = lean_ctor_get(x_1153, 1); -lean_inc(x_1155); -lean_dec(x_1153); -lean_inc(x_10); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_5); -x_1156 = l_Lean_Meta_CheckAssignment_check(x_1154, x_5, x_6, x_7, x_8, x_9, x_10, x_1155); -if (lean_obj_tag(x_1156) == 0) -{ -lean_object* x_1157; lean_object* x_1158; lean_object* x_1159; lean_object* x_1160; lean_object* x_1161; uint8_t x_1162; lean_object* x_1163; lean_object* x_1164; lean_object* x_1165; lean_object* x_1166; lean_object* x_1167; lean_object* x_1168; -x_1157 = lean_ctor_get(x_1156, 0); -lean_inc(x_1157); -x_1158 = lean_ctor_get(x_1156, 1); -lean_inc(x_1158); -lean_dec(x_1156); -x_1159 = lean_ctor_get(x_5, 1); -lean_inc(x_1159); -lean_dec(x_5); -x_1160 = lean_ctor_get(x_1159, 1); -lean_inc(x_1160); -x_1161 = lean_ctor_get(x_1159, 4); -lean_inc(x_1161); -lean_dec(x_1159); -x_1162 = 0; -x_1163 = lean_box(0); -x_1164 = lean_unsigned_to_nat(0u); -x_1165 = l_Lean_Meta_mkFreshExprMVarAt(x_1160, x_1161, x_1157, x_1162, x_1163, x_1164, x_7, x_8, x_9, x_10, x_1158); -x_1166 = lean_ctor_get(x_1165, 0); -lean_inc(x_1166); -x_1167 = lean_ctor_get(x_1165, 1); -lean_inc(x_1167); -lean_dec(x_1165); -lean_inc(x_1166); -x_1168 = l_Lean_Meta_CheckAssignment_assignToConstFun(x_1069, x_1071, x_1166, x_7, x_8, x_9, x_10, x_1167); -if (lean_obj_tag(x_1168) == 0) -{ -lean_object* x_1169; uint8_t x_1170; -x_1169 = lean_ctor_get(x_1168, 0); -lean_inc(x_1169); -x_1170 = lean_unbox(x_1169); -lean_dec(x_1169); -if (x_1170 == 0) -{ -lean_object* x_1171; lean_object* x_1172; lean_object* x_1173; -lean_dec(x_1166); -x_1171 = lean_ctor_get(x_1168, 1); -lean_inc(x_1171); -if (lean_is_exclusive(x_1168)) { - lean_ctor_release(x_1168, 0); - lean_ctor_release(x_1168, 1); - x_1172 = x_1168; -} else { - lean_dec_ref(x_1168); - x_1172 = lean_box(0); -} -if (lean_is_scalar(x_1172)) { - x_1173 = lean_alloc_ctor(1, 2, 0); -} else { - x_1173 = x_1172; - lean_ctor_set_tag(x_1173, 1); -} -lean_ctor_set(x_1173, 0, x_1082); -lean_ctor_set(x_1173, 1, x_1171); -return x_1173; -} -else -{ -lean_object* x_1174; lean_object* x_1175; lean_object* x_1176; -lean_dec(x_1082); -x_1174 = lean_ctor_get(x_1168, 1); -lean_inc(x_1174); -if (lean_is_exclusive(x_1168)) { - lean_ctor_release(x_1168, 0); - lean_ctor_release(x_1168, 1); - x_1175 = x_1168; -} else { - lean_dec_ref(x_1168); - x_1175 = lean_box(0); -} -if (lean_is_scalar(x_1175)) { - x_1176 = lean_alloc_ctor(0, 2, 0); -} else { - x_1176 = x_1175; -} -lean_ctor_set(x_1176, 0, x_1166); -lean_ctor_set(x_1176, 1, x_1174); -return x_1176; -} -} -else -{ -lean_object* x_1177; lean_object* x_1178; lean_object* x_1179; lean_object* x_1180; -lean_dec(x_1166); -lean_dec(x_1082); -x_1177 = lean_ctor_get(x_1168, 0); -lean_inc(x_1177); -x_1178 = lean_ctor_get(x_1168, 1); -lean_inc(x_1178); -if (lean_is_exclusive(x_1168)) { - lean_ctor_release(x_1168, 0); - lean_ctor_release(x_1168, 1); - x_1179 = x_1168; -} else { - lean_dec_ref(x_1168); - x_1179 = lean_box(0); -} -if (lean_is_scalar(x_1179)) { - x_1180 = lean_alloc_ctor(1, 2, 0); -} else { - x_1180 = x_1179; -} -lean_ctor_set(x_1180, 0, x_1177); -lean_ctor_set(x_1180, 1, x_1178); -return x_1180; -} -} -else -{ -lean_object* x_1181; lean_object* x_1182; lean_object* x_1183; lean_object* x_1184; -lean_dec(x_1082); -lean_dec(x_1071); -lean_dec(x_1069); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_5); -x_1181 = lean_ctor_get(x_1156, 0); -lean_inc(x_1181); -x_1182 = lean_ctor_get(x_1156, 1); -lean_inc(x_1182); -if (lean_is_exclusive(x_1156)) { - lean_ctor_release(x_1156, 0); - lean_ctor_release(x_1156, 1); - x_1183 = x_1156; -} else { - lean_dec_ref(x_1156); - x_1183 = lean_box(0); -} -if (lean_is_scalar(x_1183)) { - x_1184 = lean_alloc_ctor(1, 2, 0); -} else { - x_1184 = x_1183; -} -lean_ctor_set(x_1184, 0, x_1181); -lean_ctor_set(x_1184, 1, x_1182); -return x_1184; -} -} -else -{ -lean_object* x_1185; lean_object* x_1186; lean_object* x_1187; lean_object* x_1188; -lean_dec(x_1082); -lean_dec(x_1071); -lean_dec(x_1069); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -x_1185 = lean_ctor_get(x_1153, 0); -lean_inc(x_1185); -x_1186 = lean_ctor_get(x_1153, 1); -lean_inc(x_1186); -if (lean_is_exclusive(x_1153)) { - lean_ctor_release(x_1153, 0); - lean_ctor_release(x_1153, 1); - x_1187 = x_1153; -} else { - lean_dec_ref(x_1153); - x_1187 = lean_box(0); -} -if (lean_is_scalar(x_1187)) { - x_1188 = lean_alloc_ctor(1, 2, 0); -} else { - x_1188 = x_1187; -} -lean_ctor_set(x_1188, 0, x_1185); -lean_ctor_set(x_1188, 1, x_1186); -return x_1188; -} -} -else -{ -lean_object* x_1189; lean_object* x_1190; lean_object* x_1191; -lean_dec(x_1071); -lean_dec(x_1069); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_1); -x_1189 = lean_ctor_get(x_1149, 1); -lean_inc(x_1189); -if (lean_is_exclusive(x_1149)) { - lean_ctor_release(x_1149, 0); - lean_ctor_release(x_1149, 1); - x_1190 = x_1149; -} else { - lean_dec_ref(x_1149); - x_1190 = lean_box(0); -} -if (lean_is_scalar(x_1190)) { - x_1191 = lean_alloc_ctor(1, 2, 0); -} else { - x_1191 = x_1190; - lean_ctor_set_tag(x_1191, 1); -} -lean_ctor_set(x_1191, 0, x_1082); -lean_ctor_set(x_1191, 1, x_1189); -return x_1191; -} -} -} -} -} -} -} -block_1208: -{ -lean_object* x_1194; lean_object* x_1195; -lean_dec(x_1193); -lean_inc(x_2); -x_1194 = l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_CheckAssignment_findCached_x3f(x_2, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -x_1195 = lean_ctor_get(x_1194, 0); -lean_inc(x_1195); -if (lean_obj_tag(x_1195) == 0) -{ -lean_object* x_1196; lean_object* x_1197; -x_1196 = lean_ctor_get(x_1194, 1); -lean_inc(x_1196); -lean_dec(x_1194); -lean_inc(x_10); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_2); -x_1197 = l_Lean_Meta_CheckAssignment_checkMVar(x_2, x_5, x_6, x_7, x_8, x_9, x_10, x_1196); -if (lean_obj_tag(x_1197) == 0) -{ -lean_object* x_1198; lean_object* x_1199; lean_object* x_1200; lean_object* x_1201; -x_1198 = lean_ctor_get(x_1197, 0); -lean_inc(x_1198); -x_1199 = lean_ctor_get(x_1197, 1); -lean_inc(x_1199); -lean_dec(x_1197); -lean_inc(x_1198); -x_1200 = l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_CheckAssignment_cache(x_2, x_1198, x_5, x_6, x_7, x_8, x_9, x_10, x_1199); -x_1201 = lean_ctor_get(x_1200, 1); -lean_inc(x_1201); -lean_dec(x_1200); -x_1069 = x_1198; -x_1070 = x_1201; -goto block_1192; -} -else -{ -uint8_t x_1202; +uint8_t x_1017; lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); @@ -25106,256 +23090,801 @@ lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_3); -lean_dec(x_2); -lean_dec(x_1); -x_1202 = !lean_is_exclusive(x_1197); -if (x_1202 == 0) +x_1017 = !lean_is_exclusive(x_999); +if (x_1017 == 0) { -return x_1197; +return x_999; } else { -lean_object* x_1203; lean_object* x_1204; lean_object* x_1205; -x_1203 = lean_ctor_get(x_1197, 0); -x_1204 = lean_ctor_get(x_1197, 1); -lean_inc(x_1204); -lean_inc(x_1203); -lean_dec(x_1197); -x_1205 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1205, 0, x_1203); -lean_ctor_set(x_1205, 1, x_1204); -return x_1205; -} -} -} -else -{ -lean_object* x_1206; lean_object* x_1207; -lean_dec(x_2); -x_1206 = lean_ctor_get(x_1194, 1); -lean_inc(x_1206); -lean_dec(x_1194); -x_1207 = lean_ctor_get(x_1195, 0); -lean_inc(x_1207); -lean_dec(x_1195); -x_1069 = x_1207; -x_1070 = x_1206; -goto block_1192; +lean_object* x_1018; lean_object* x_1019; lean_object* x_1020; +x_1018 = lean_ctor_get(x_999, 0); +x_1019 = lean_ctor_get(x_999, 1); +lean_inc(x_1019); +lean_inc(x_1018); +lean_dec(x_999); +x_1020 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1020, 0, x_1018); +lean_ctor_set(x_1020, 1, x_1019); +return x_1020; } } } } case 7: { -lean_object* x_1230; lean_object* x_1270; uint8_t x_1416; +lean_object* x_1038; lean_object* x_1168; uint8_t x_1192; lean_dec(x_4); -x_1416 = l_Lean_Expr_isMVar(x_2); -if (x_1416 == 0) +x_1192 = l_Lean_Expr_isMVar(x_2); +if (x_1192 == 0) { -lean_object* x_1417; +lean_object* x_1193; lean_dec(x_1); -x_1417 = lean_box(0); -x_1230 = x_1417; -goto block_1269; +x_1193 = lean_box(0); +x_1168 = x_1193; +goto block_1191; } else { -lean_object* x_1418; uint8_t x_1419; -x_1418 = lean_ctor_get(x_7, 0); -lean_inc(x_1418); -x_1419 = lean_ctor_get_uint8(x_1418, 1); -lean_dec(x_1418); -if (x_1419 == 0) +lean_object* x_1194; uint8_t x_1195; +x_1194 = lean_ctor_get(x_7, 0); +lean_inc(x_1194); +x_1195 = lean_ctor_get_uint8(x_1194, 1); +lean_dec(x_1194); +if (x_1195 == 0) { -lean_object* x_1420; +lean_object* x_1196; lean_dec(x_1); -x_1420 = lean_box(0); -x_1230 = x_1420; -goto block_1269; +x_1196 = lean_box(0); +x_1168 = x_1196; +goto block_1191; } else { -lean_object* x_1421; lean_object* x_1422; uint8_t x_1423; -x_1421 = lean_array_get_size(x_3); -x_1422 = lean_unsigned_to_nat(0u); -x_1423 = lean_nat_dec_lt(x_1422, x_1421); -if (x_1423 == 0) +lean_object* x_1197; lean_object* x_1198; uint8_t x_1199; +x_1197 = lean_array_get_size(x_3); +x_1198 = lean_unsigned_to_nat(0u); +x_1199 = lean_nat_dec_lt(x_1198, x_1197); +if (x_1199 == 0) { -lean_object* x_1424; -lean_dec(x_1421); -x_1424 = lean_box(0); -x_1270 = x_1424; -goto block_1415; +lean_object* x_1200; +lean_dec(x_1197); +x_1200 = lean_box(0); +x_1038 = x_1200; +goto block_1167; } else { -uint8_t x_1425; -x_1425 = lean_nat_dec_le(x_1421, x_1421); -if (x_1425 == 0) +uint8_t x_1201; +x_1201 = lean_nat_dec_le(x_1197, x_1197); +if (x_1201 == 0) { -lean_object* x_1426; -lean_dec(x_1421); -x_1426 = lean_box(0); -x_1270 = x_1426; -goto block_1415; +lean_object* x_1202; +lean_dec(x_1197); +x_1202 = lean_box(0); +x_1038 = x_1202; +goto block_1167; } else { -size_t x_1427; size_t x_1428; uint8_t x_1429; -x_1427 = 0; -x_1428 = lean_usize_of_nat(x_1421); -lean_dec(x_1421); -x_1429 = l_Array_anyMUnsafe_any___at_Lean_Meta_CheckAssignment_checkApp___spec__3(x_3, x_1427, x_1428); -if (x_1429 == 0) +size_t x_1203; size_t x_1204; uint8_t x_1205; +x_1203 = 0; +x_1204 = lean_usize_of_nat(x_1197); +lean_dec(x_1197); +x_1205 = l_Array_anyMUnsafe_any___at_Lean_Meta_CheckAssignment_checkApp___spec__3(x_3, x_1203, x_1204); +if (x_1205 == 0) { -lean_object* x_1430; -x_1430 = lean_box(0); -x_1270 = x_1430; -goto block_1415; +lean_object* x_1206; +x_1206 = lean_box(0); +x_1038 = x_1206; +goto block_1167; } else { -lean_object* x_1431; +lean_object* x_1207; lean_dec(x_1); -x_1431 = lean_box(0); -x_1230 = x_1431; -goto block_1269; +x_1207 = lean_box(0); +x_1168 = x_1207; +goto block_1191; } } } } } -block_1269: +block_1167: { -lean_object* x_1231; lean_object* x_1232; lean_object* x_1249; uint8_t x_1265; -lean_dec(x_1230); -x_1265 = l_Lean_Expr_hasExprMVar(x_2); -if (x_1265 == 0) -{ -uint8_t x_1266; -x_1266 = l_Lean_Expr_hasFVar(x_2); -if (x_1266 == 0) -{ -x_1231 = x_2; -x_1232 = x_11; -goto block_1248; -} -else -{ -lean_object* x_1267; -x_1267 = lean_box(0); -x_1249 = x_1267; -goto block_1264; -} -} -else -{ -lean_object* x_1268; -x_1268 = lean_box(0); -x_1249 = x_1268; -goto block_1264; -} -block_1248: -{ -lean_object* x_1233; size_t x_1234; size_t x_1235; lean_object* x_1236; -x_1233 = lean_array_get_size(x_3); -x_1234 = lean_usize_of_nat(x_1233); -lean_dec(x_1233); -x_1235 = 0; -x_1236 = l_Array_mapMUnsafe_map___at_Lean_Meta_CheckAssignment_checkApp___spec__1(x_1234, x_1235, x_3, x_5, x_6, x_7, x_8, x_9, x_10, x_1232); -if (lean_obj_tag(x_1236) == 0) -{ -uint8_t x_1237; -x_1237 = !lean_is_exclusive(x_1236); -if (x_1237 == 0) -{ -lean_object* x_1238; lean_object* x_1239; -x_1238 = lean_ctor_get(x_1236, 0); -x_1239 = l_Lean_mkAppN(x_1231, x_1238); -lean_ctor_set(x_1236, 0, x_1239); -return x_1236; -} -else -{ -lean_object* x_1240; lean_object* x_1241; lean_object* x_1242; lean_object* x_1243; -x_1240 = lean_ctor_get(x_1236, 0); -x_1241 = lean_ctor_get(x_1236, 1); -lean_inc(x_1241); -lean_inc(x_1240); -lean_dec(x_1236); -x_1242 = l_Lean_mkAppN(x_1231, x_1240); -x_1243 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1243, 0, x_1242); -lean_ctor_set(x_1243, 1, x_1241); -return x_1243; -} -} -else -{ -uint8_t x_1244; -lean_dec(x_1231); -x_1244 = !lean_is_exclusive(x_1236); -if (x_1244 == 0) -{ -return x_1236; -} -else -{ -lean_object* x_1245; lean_object* x_1246; lean_object* x_1247; -x_1245 = lean_ctor_get(x_1236, 0); -x_1246 = lean_ctor_get(x_1236, 1); -lean_inc(x_1246); -lean_inc(x_1245); -lean_dec(x_1236); -x_1247 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1247, 0, x_1245); -lean_ctor_set(x_1247, 1, x_1246); -return x_1247; -} -} -} -block_1264: -{ -lean_object* x_1250; lean_object* x_1251; -lean_dec(x_1249); -lean_inc(x_2); -x_1250 = l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_CheckAssignment_findCached_x3f(x_2, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -x_1251 = lean_ctor_get(x_1250, 0); -lean_inc(x_1251); -if (lean_obj_tag(x_1251) == 0) -{ -lean_object* x_1252; lean_object* x_1253; -x_1252 = lean_ctor_get(x_1250, 1); -lean_inc(x_1252); -lean_dec(x_1250); +lean_object* x_1039; +lean_dec(x_1038); lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); lean_inc(x_5); -lean_inc(x_2); -x_1253 = l_Lean_Meta_CheckAssignment_check(x_2, x_5, x_6, x_7, x_8, x_9, x_10, x_1252); -if (lean_obj_tag(x_1253) == 0) +x_1039 = l_Lean_Meta_CheckAssignment_check(x_2, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +if (lean_obj_tag(x_1039) == 0) { -lean_object* x_1254; lean_object* x_1255; lean_object* x_1256; lean_object* x_1257; -x_1254 = lean_ctor_get(x_1253, 0); -lean_inc(x_1254); -x_1255 = lean_ctor_get(x_1253, 1); -lean_inc(x_1255); -lean_dec(x_1253); -lean_inc(x_1254); -x_1256 = l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_CheckAssignment_cache(x_2, x_1254, x_5, x_6, x_7, x_8, x_9, x_10, x_1255); -x_1257 = lean_ctor_get(x_1256, 1); -lean_inc(x_1257); -lean_dec(x_1256); -x_1231 = x_1254; -x_1232 = x_1257; -goto block_1248; +lean_object* x_1040; lean_object* x_1041; lean_object* x_1042; size_t x_1043; size_t x_1044; lean_object* x_1045; +x_1040 = lean_ctor_get(x_1039, 0); +lean_inc(x_1040); +x_1041 = lean_ctor_get(x_1039, 1); +lean_inc(x_1041); +lean_dec(x_1039); +x_1042 = lean_array_get_size(x_3); +x_1043 = lean_usize_of_nat(x_1042); +x_1044 = 0; +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +x_1045 = l_Array_mapMUnsafe_map___at_Lean_Meta_CheckAssignment_checkApp___spec__1(x_1043, x_1044, x_3, x_5, x_6, x_7, x_8, x_9, x_10, x_1041); +if (lean_obj_tag(x_1045) == 0) +{ +uint8_t x_1046; +lean_dec(x_1042); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_1); +x_1046 = !lean_is_exclusive(x_1045); +if (x_1046 == 0) +{ +lean_object* x_1047; lean_object* x_1048; +x_1047 = lean_ctor_get(x_1045, 0); +x_1048 = l_Lean_mkAppN(x_1040, x_1047); +lean_ctor_set(x_1045, 0, x_1048); +return x_1045; } else { -uint8_t x_1258; +lean_object* x_1049; lean_object* x_1050; lean_object* x_1051; lean_object* x_1052; +x_1049 = lean_ctor_get(x_1045, 0); +x_1050 = lean_ctor_get(x_1045, 1); +lean_inc(x_1050); +lean_inc(x_1049); +lean_dec(x_1045); +x_1051 = l_Lean_mkAppN(x_1040, x_1049); +x_1052 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1052, 0, x_1051); +lean_ctor_set(x_1052, 1, x_1050); +return x_1052; +} +} +else +{ +lean_object* x_1053; +x_1053 = lean_ctor_get(x_1045, 0); +lean_inc(x_1053); +if (lean_obj_tag(x_1053) == 0) +{ +uint8_t x_1054; +lean_dec(x_1042); +lean_dec(x_1040); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_1); +x_1054 = !lean_is_exclusive(x_1045); +if (x_1054 == 0) +{ +lean_object* x_1055; +x_1055 = lean_ctor_get(x_1045, 0); +lean_dec(x_1055); +return x_1045; +} +else +{ +lean_object* x_1056; lean_object* x_1057; +x_1056 = lean_ctor_get(x_1045, 1); +lean_inc(x_1056); +lean_dec(x_1045); +x_1057 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1057, 0, x_1053); +lean_ctor_set(x_1057, 1, x_1056); +return x_1057; +} +} +else +{ +uint8_t x_1058; +x_1058 = !lean_is_exclusive(x_1045); +if (x_1058 == 0) +{ +lean_object* x_1059; lean_object* x_1060; lean_object* x_1061; lean_object* x_1062; uint8_t x_1063; +x_1059 = lean_ctor_get(x_1045, 1); +x_1060 = lean_ctor_get(x_1045, 0); +lean_dec(x_1060); +x_1061 = lean_ctor_get(x_1053, 0); +lean_inc(x_1061); +x_1062 = l_Lean_Meta_CheckAssignment_throwOutOfScopeFVar___rarg___closed__1; +x_1063 = lean_nat_dec_eq(x_1062, x_1061); +lean_dec(x_1061); +if (x_1063 == 0) +{ +lean_dec(x_1042); +lean_dec(x_1040); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_1); +return x_1045; +} +else +{ +uint8_t x_1064; +x_1064 = l_Lean_Expr_isMVar(x_1040); +if (x_1064 == 0) +{ +lean_dec(x_1042); +lean_dec(x_1040); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_1); +return x_1045; +} +else +{ +lean_object* x_1065; lean_object* x_1066; lean_object* x_1067; uint8_t x_1068; +lean_free_object(x_1045); +lean_inc(x_1040); +x_1065 = l_Lean_Expr_mvarId_x21(x_1040); +x_1066 = l_Lean_MVarId_isDelayedAssigned___at_Lean_Meta_CheckAssignment_checkApp___spec__2(x_1065, x_5, x_6, x_7, x_8, x_9, x_10, x_1059); +x_1067 = lean_ctor_get(x_1066, 0); +lean_inc(x_1067); +x_1068 = lean_unbox(x_1067); +lean_dec(x_1067); +if (x_1068 == 0) +{ +lean_object* x_1069; lean_object* x_1070; +x_1069 = lean_ctor_get(x_1066, 1); +lean_inc(x_1069); +lean_dec(x_1066); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +x_1070 = lean_infer_type(x_1, x_7, x_8, x_9, x_10, x_1069); +if (lean_obj_tag(x_1070) == 0) +{ +lean_object* x_1071; lean_object* x_1072; lean_object* x_1073; +x_1071 = lean_ctor_get(x_1070, 0); +lean_inc(x_1071); +x_1072 = lean_ctor_get(x_1070, 1); +lean_inc(x_1072); +lean_dec(x_1070); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_5); +x_1073 = l_Lean_Meta_CheckAssignment_check(x_1071, x_5, x_6, x_7, x_8, x_9, x_10, x_1072); +if (lean_obj_tag(x_1073) == 0) +{ +lean_object* x_1074; lean_object* x_1075; lean_object* x_1076; lean_object* x_1077; lean_object* x_1078; uint8_t x_1079; lean_object* x_1080; lean_object* x_1081; lean_object* x_1082; lean_object* x_1083; lean_object* x_1084; lean_object* x_1085; +x_1074 = lean_ctor_get(x_1073, 0); +lean_inc(x_1074); +x_1075 = lean_ctor_get(x_1073, 1); +lean_inc(x_1075); +lean_dec(x_1073); +x_1076 = lean_ctor_get(x_5, 1); +lean_inc(x_1076); +lean_dec(x_5); +x_1077 = lean_ctor_get(x_1076, 1); +lean_inc(x_1077); +x_1078 = lean_ctor_get(x_1076, 4); +lean_inc(x_1078); +lean_dec(x_1076); +x_1079 = 0; +x_1080 = lean_box(0); +x_1081 = lean_unsigned_to_nat(0u); +x_1082 = l_Lean_Meta_mkFreshExprMVarAt(x_1077, x_1078, x_1074, x_1079, x_1080, x_1081, x_7, x_8, x_9, x_10, x_1075); +x_1083 = lean_ctor_get(x_1082, 0); +lean_inc(x_1083); +x_1084 = lean_ctor_get(x_1082, 1); +lean_inc(x_1084); +lean_dec(x_1082); +lean_inc(x_1083); +x_1085 = l_Lean_Meta_CheckAssignment_assignToConstFun(x_1040, x_1042, x_1083, x_7, x_8, x_9, x_10, x_1084); +if (lean_obj_tag(x_1085) == 0) +{ +lean_object* x_1086; uint8_t x_1087; +x_1086 = lean_ctor_get(x_1085, 0); +lean_inc(x_1086); +x_1087 = lean_unbox(x_1086); +lean_dec(x_1086); +if (x_1087 == 0) +{ +uint8_t x_1088; +lean_dec(x_1083); +x_1088 = !lean_is_exclusive(x_1085); +if (x_1088 == 0) +{ +lean_object* x_1089; +x_1089 = lean_ctor_get(x_1085, 0); +lean_dec(x_1089); +lean_ctor_set_tag(x_1085, 1); +lean_ctor_set(x_1085, 0, x_1053); +return x_1085; +} +else +{ +lean_object* x_1090; lean_object* x_1091; +x_1090 = lean_ctor_get(x_1085, 1); +lean_inc(x_1090); +lean_dec(x_1085); +x_1091 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1091, 0, x_1053); +lean_ctor_set(x_1091, 1, x_1090); +return x_1091; +} +} +else +{ +uint8_t x_1092; +lean_dec(x_1053); +x_1092 = !lean_is_exclusive(x_1085); +if (x_1092 == 0) +{ +lean_object* x_1093; +x_1093 = lean_ctor_get(x_1085, 0); +lean_dec(x_1093); +lean_ctor_set(x_1085, 0, x_1083); +return x_1085; +} +else +{ +lean_object* x_1094; lean_object* x_1095; +x_1094 = lean_ctor_get(x_1085, 1); +lean_inc(x_1094); +lean_dec(x_1085); +x_1095 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1095, 0, x_1083); +lean_ctor_set(x_1095, 1, x_1094); +return x_1095; +} +} +} +else +{ +uint8_t x_1096; +lean_dec(x_1083); +lean_dec(x_1053); +x_1096 = !lean_is_exclusive(x_1085); +if (x_1096 == 0) +{ +return x_1085; +} +else +{ +lean_object* x_1097; lean_object* x_1098; lean_object* x_1099; +x_1097 = lean_ctor_get(x_1085, 0); +x_1098 = lean_ctor_get(x_1085, 1); +lean_inc(x_1098); +lean_inc(x_1097); +lean_dec(x_1085); +x_1099 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1099, 0, x_1097); +lean_ctor_set(x_1099, 1, x_1098); +return x_1099; +} +} +} +else +{ +uint8_t x_1100; +lean_dec(x_1053); +lean_dec(x_1042); +lean_dec(x_1040); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_5); +x_1100 = !lean_is_exclusive(x_1073); +if (x_1100 == 0) +{ +return x_1073; +} +else +{ +lean_object* x_1101; lean_object* x_1102; lean_object* x_1103; +x_1101 = lean_ctor_get(x_1073, 0); +x_1102 = lean_ctor_get(x_1073, 1); +lean_inc(x_1102); +lean_inc(x_1101); +lean_dec(x_1073); +x_1103 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1103, 0, x_1101); +lean_ctor_set(x_1103, 1, x_1102); +return x_1103; +} +} +} +else +{ +uint8_t x_1104; +lean_dec(x_1053); +lean_dec(x_1042); +lean_dec(x_1040); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +x_1104 = !lean_is_exclusive(x_1070); +if (x_1104 == 0) +{ +return x_1070; +} +else +{ +lean_object* x_1105; lean_object* x_1106; lean_object* x_1107; +x_1105 = lean_ctor_get(x_1070, 0); +x_1106 = lean_ctor_get(x_1070, 1); +lean_inc(x_1106); +lean_inc(x_1105); +lean_dec(x_1070); +x_1107 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1107, 0, x_1105); +lean_ctor_set(x_1107, 1, x_1106); +return x_1107; +} +} +} +else +{ +uint8_t x_1108; +lean_dec(x_1042); +lean_dec(x_1040); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_1); +x_1108 = !lean_is_exclusive(x_1066); +if (x_1108 == 0) +{ +lean_object* x_1109; +x_1109 = lean_ctor_get(x_1066, 0); +lean_dec(x_1109); +lean_ctor_set_tag(x_1066, 1); +lean_ctor_set(x_1066, 0, x_1053); +return x_1066; +} +else +{ +lean_object* x_1110; lean_object* x_1111; +x_1110 = lean_ctor_get(x_1066, 1); +lean_inc(x_1110); +lean_dec(x_1066); +x_1111 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1111, 0, x_1053); +lean_ctor_set(x_1111, 1, x_1110); +return x_1111; +} +} +} +} +} +else +{ +lean_object* x_1112; lean_object* x_1113; lean_object* x_1114; uint8_t x_1115; +x_1112 = lean_ctor_get(x_1045, 1); +lean_inc(x_1112); +lean_dec(x_1045); +x_1113 = lean_ctor_get(x_1053, 0); +lean_inc(x_1113); +x_1114 = l_Lean_Meta_CheckAssignment_throwOutOfScopeFVar___rarg___closed__1; +x_1115 = lean_nat_dec_eq(x_1114, x_1113); +lean_dec(x_1113); +if (x_1115 == 0) +{ +lean_object* x_1116; +lean_dec(x_1042); +lean_dec(x_1040); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_1); +x_1116 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1116, 0, x_1053); +lean_ctor_set(x_1116, 1, x_1112); +return x_1116; +} +else +{ +uint8_t x_1117; +x_1117 = l_Lean_Expr_isMVar(x_1040); +if (x_1117 == 0) +{ +lean_object* x_1118; +lean_dec(x_1042); +lean_dec(x_1040); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_1); +x_1118 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1118, 0, x_1053); +lean_ctor_set(x_1118, 1, x_1112); +return x_1118; +} +else +{ +lean_object* x_1119; lean_object* x_1120; lean_object* x_1121; uint8_t x_1122; +lean_inc(x_1040); +x_1119 = l_Lean_Expr_mvarId_x21(x_1040); +x_1120 = l_Lean_MVarId_isDelayedAssigned___at_Lean_Meta_CheckAssignment_checkApp___spec__2(x_1119, x_5, x_6, x_7, x_8, x_9, x_10, x_1112); +x_1121 = lean_ctor_get(x_1120, 0); +lean_inc(x_1121); +x_1122 = lean_unbox(x_1121); +lean_dec(x_1121); +if (x_1122 == 0) +{ +lean_object* x_1123; lean_object* x_1124; +x_1123 = lean_ctor_get(x_1120, 1); +lean_inc(x_1123); +lean_dec(x_1120); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +x_1124 = lean_infer_type(x_1, x_7, x_8, x_9, x_10, x_1123); +if (lean_obj_tag(x_1124) == 0) +{ +lean_object* x_1125; lean_object* x_1126; lean_object* x_1127; +x_1125 = lean_ctor_get(x_1124, 0); +lean_inc(x_1125); +x_1126 = lean_ctor_get(x_1124, 1); +lean_inc(x_1126); +lean_dec(x_1124); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_5); +x_1127 = l_Lean_Meta_CheckAssignment_check(x_1125, x_5, x_6, x_7, x_8, x_9, x_10, x_1126); +if (lean_obj_tag(x_1127) == 0) +{ +lean_object* x_1128; lean_object* x_1129; lean_object* x_1130; lean_object* x_1131; lean_object* x_1132; uint8_t x_1133; lean_object* x_1134; lean_object* x_1135; lean_object* x_1136; lean_object* x_1137; lean_object* x_1138; lean_object* x_1139; +x_1128 = lean_ctor_get(x_1127, 0); +lean_inc(x_1128); +x_1129 = lean_ctor_get(x_1127, 1); +lean_inc(x_1129); +lean_dec(x_1127); +x_1130 = lean_ctor_get(x_5, 1); +lean_inc(x_1130); +lean_dec(x_5); +x_1131 = lean_ctor_get(x_1130, 1); +lean_inc(x_1131); +x_1132 = lean_ctor_get(x_1130, 4); +lean_inc(x_1132); +lean_dec(x_1130); +x_1133 = 0; +x_1134 = lean_box(0); +x_1135 = lean_unsigned_to_nat(0u); +x_1136 = l_Lean_Meta_mkFreshExprMVarAt(x_1131, x_1132, x_1128, x_1133, x_1134, x_1135, x_7, x_8, x_9, x_10, x_1129); +x_1137 = lean_ctor_get(x_1136, 0); +lean_inc(x_1137); +x_1138 = lean_ctor_get(x_1136, 1); +lean_inc(x_1138); +lean_dec(x_1136); +lean_inc(x_1137); +x_1139 = l_Lean_Meta_CheckAssignment_assignToConstFun(x_1040, x_1042, x_1137, x_7, x_8, x_9, x_10, x_1138); +if (lean_obj_tag(x_1139) == 0) +{ +lean_object* x_1140; uint8_t x_1141; +x_1140 = lean_ctor_get(x_1139, 0); +lean_inc(x_1140); +x_1141 = lean_unbox(x_1140); +lean_dec(x_1140); +if (x_1141 == 0) +{ +lean_object* x_1142; lean_object* x_1143; lean_object* x_1144; +lean_dec(x_1137); +x_1142 = lean_ctor_get(x_1139, 1); +lean_inc(x_1142); +if (lean_is_exclusive(x_1139)) { + lean_ctor_release(x_1139, 0); + lean_ctor_release(x_1139, 1); + x_1143 = x_1139; +} else { + lean_dec_ref(x_1139); + x_1143 = lean_box(0); +} +if (lean_is_scalar(x_1143)) { + x_1144 = lean_alloc_ctor(1, 2, 0); +} else { + x_1144 = x_1143; + lean_ctor_set_tag(x_1144, 1); +} +lean_ctor_set(x_1144, 0, x_1053); +lean_ctor_set(x_1144, 1, x_1142); +return x_1144; +} +else +{ +lean_object* x_1145; lean_object* x_1146; lean_object* x_1147; +lean_dec(x_1053); +x_1145 = lean_ctor_get(x_1139, 1); +lean_inc(x_1145); +if (lean_is_exclusive(x_1139)) { + lean_ctor_release(x_1139, 0); + lean_ctor_release(x_1139, 1); + x_1146 = x_1139; +} else { + lean_dec_ref(x_1139); + x_1146 = lean_box(0); +} +if (lean_is_scalar(x_1146)) { + x_1147 = lean_alloc_ctor(0, 2, 0); +} else { + x_1147 = x_1146; +} +lean_ctor_set(x_1147, 0, x_1137); +lean_ctor_set(x_1147, 1, x_1145); +return x_1147; +} +} +else +{ +lean_object* x_1148; lean_object* x_1149; lean_object* x_1150; lean_object* x_1151; +lean_dec(x_1137); +lean_dec(x_1053); +x_1148 = lean_ctor_get(x_1139, 0); +lean_inc(x_1148); +x_1149 = lean_ctor_get(x_1139, 1); +lean_inc(x_1149); +if (lean_is_exclusive(x_1139)) { + lean_ctor_release(x_1139, 0); + lean_ctor_release(x_1139, 1); + x_1150 = x_1139; +} else { + lean_dec_ref(x_1139); + x_1150 = lean_box(0); +} +if (lean_is_scalar(x_1150)) { + x_1151 = lean_alloc_ctor(1, 2, 0); +} else { + x_1151 = x_1150; +} +lean_ctor_set(x_1151, 0, x_1148); +lean_ctor_set(x_1151, 1, x_1149); +return x_1151; +} +} +else +{ +lean_object* x_1152; lean_object* x_1153; lean_object* x_1154; lean_object* x_1155; +lean_dec(x_1053); +lean_dec(x_1042); +lean_dec(x_1040); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_5); +x_1152 = lean_ctor_get(x_1127, 0); +lean_inc(x_1152); +x_1153 = lean_ctor_get(x_1127, 1); +lean_inc(x_1153); +if (lean_is_exclusive(x_1127)) { + lean_ctor_release(x_1127, 0); + lean_ctor_release(x_1127, 1); + x_1154 = x_1127; +} else { + lean_dec_ref(x_1127); + x_1154 = lean_box(0); +} +if (lean_is_scalar(x_1154)) { + x_1155 = lean_alloc_ctor(1, 2, 0); +} else { + x_1155 = x_1154; +} +lean_ctor_set(x_1155, 0, x_1152); +lean_ctor_set(x_1155, 1, x_1153); +return x_1155; +} +} +else +{ +lean_object* x_1156; lean_object* x_1157; lean_object* x_1158; lean_object* x_1159; +lean_dec(x_1053); +lean_dec(x_1042); +lean_dec(x_1040); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +x_1156 = lean_ctor_get(x_1124, 0); +lean_inc(x_1156); +x_1157 = lean_ctor_get(x_1124, 1); +lean_inc(x_1157); +if (lean_is_exclusive(x_1124)) { + lean_ctor_release(x_1124, 0); + lean_ctor_release(x_1124, 1); + x_1158 = x_1124; +} else { + lean_dec_ref(x_1124); + x_1158 = lean_box(0); +} +if (lean_is_scalar(x_1158)) { + x_1159 = lean_alloc_ctor(1, 2, 0); +} else { + x_1159 = x_1158; +} +lean_ctor_set(x_1159, 0, x_1156); +lean_ctor_set(x_1159, 1, x_1157); +return x_1159; +} +} +else +{ +lean_object* x_1160; lean_object* x_1161; lean_object* x_1162; +lean_dec(x_1042); +lean_dec(x_1040); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_1); +x_1160 = lean_ctor_get(x_1120, 1); +lean_inc(x_1160); +if (lean_is_exclusive(x_1120)) { + lean_ctor_release(x_1120, 0); + lean_ctor_release(x_1120, 1); + x_1161 = x_1120; +} else { + lean_dec_ref(x_1120); + x_1161 = lean_box(0); +} +if (lean_is_scalar(x_1161)) { + x_1162 = lean_alloc_ctor(1, 2, 0); +} else { + x_1162 = x_1161; + lean_ctor_set_tag(x_1162, 1); +} +lean_ctor_set(x_1162, 0, x_1053); +lean_ctor_set(x_1162, 1, x_1160); +return x_1162; +} +} +} +} +} +} +} +else +{ +uint8_t x_1163; lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); @@ -25363,790 +23892,105 @@ lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_3); -lean_dec(x_2); -x_1258 = !lean_is_exclusive(x_1253); -if (x_1258 == 0) +lean_dec(x_1); +x_1163 = !lean_is_exclusive(x_1039); +if (x_1163 == 0) { -return x_1253; +return x_1039; } else { -lean_object* x_1259; lean_object* x_1260; lean_object* x_1261; -x_1259 = lean_ctor_get(x_1253, 0); -x_1260 = lean_ctor_get(x_1253, 1); -lean_inc(x_1260); -lean_inc(x_1259); -lean_dec(x_1253); -x_1261 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1261, 0, x_1259); -lean_ctor_set(x_1261, 1, x_1260); -return x_1261; +lean_object* x_1164; lean_object* x_1165; lean_object* x_1166; +x_1164 = lean_ctor_get(x_1039, 0); +x_1165 = lean_ctor_get(x_1039, 1); +lean_inc(x_1165); +lean_inc(x_1164); +lean_dec(x_1039); +x_1166 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1166, 0, x_1164); +lean_ctor_set(x_1166, 1, x_1165); +return x_1166; } } } -else +block_1191: { -lean_object* x_1262; lean_object* x_1263; -lean_dec(x_2); -x_1262 = lean_ctor_get(x_1250, 1); -lean_inc(x_1262); -lean_dec(x_1250); -x_1263 = lean_ctor_get(x_1251, 0); -lean_inc(x_1263); -lean_dec(x_1251); -x_1231 = x_1263; -x_1232 = x_1262; -goto block_1248; -} -} -} -block_1415: -{ -lean_object* x_1271; lean_object* x_1272; lean_object* x_1395; uint8_t x_1411; -lean_dec(x_1270); -x_1411 = l_Lean_Expr_hasExprMVar(x_2); -if (x_1411 == 0) -{ -uint8_t x_1412; -x_1412 = l_Lean_Expr_hasFVar(x_2); -if (x_1412 == 0) -{ -x_1271 = x_2; -x_1272 = x_11; -goto block_1394; -} -else -{ -lean_object* x_1413; -x_1413 = lean_box(0); -x_1395 = x_1413; -goto block_1410; -} -} -else -{ -lean_object* x_1414; -x_1414 = lean_box(0); -x_1395 = x_1414; -goto block_1410; -} -block_1394: -{ -lean_object* x_1273; size_t x_1274; size_t x_1275; lean_object* x_1276; -x_1273 = lean_array_get_size(x_3); -x_1274 = lean_usize_of_nat(x_1273); -x_1275 = 0; +lean_object* x_1169; +lean_dec(x_1168); lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); lean_inc(x_5); -x_1276 = l_Array_mapMUnsafe_map___at_Lean_Meta_CheckAssignment_checkApp___spec__1(x_1274, x_1275, x_3, x_5, x_6, x_7, x_8, x_9, x_10, x_1272); -if (lean_obj_tag(x_1276) == 0) +x_1169 = l_Lean_Meta_CheckAssignment_check(x_2, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +if (lean_obj_tag(x_1169) == 0) { -uint8_t x_1277; -lean_dec(x_1273); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_1); -x_1277 = !lean_is_exclusive(x_1276); -if (x_1277 == 0) +lean_object* x_1170; lean_object* x_1171; lean_object* x_1172; size_t x_1173; size_t x_1174; lean_object* x_1175; +x_1170 = lean_ctor_get(x_1169, 0); +lean_inc(x_1170); +x_1171 = lean_ctor_get(x_1169, 1); +lean_inc(x_1171); +lean_dec(x_1169); +x_1172 = lean_array_get_size(x_3); +x_1173 = lean_usize_of_nat(x_1172); +lean_dec(x_1172); +x_1174 = 0; +x_1175 = l_Array_mapMUnsafe_map___at_Lean_Meta_CheckAssignment_checkApp___spec__1(x_1173, x_1174, x_3, x_5, x_6, x_7, x_8, x_9, x_10, x_1171); +if (lean_obj_tag(x_1175) == 0) { -lean_object* x_1278; lean_object* x_1279; -x_1278 = lean_ctor_get(x_1276, 0); -x_1279 = l_Lean_mkAppN(x_1271, x_1278); -lean_ctor_set(x_1276, 0, x_1279); -return x_1276; +uint8_t x_1176; +x_1176 = !lean_is_exclusive(x_1175); +if (x_1176 == 0) +{ +lean_object* x_1177; lean_object* x_1178; +x_1177 = lean_ctor_get(x_1175, 0); +x_1178 = l_Lean_mkAppN(x_1170, x_1177); +lean_ctor_set(x_1175, 0, x_1178); +return x_1175; } else { -lean_object* x_1280; lean_object* x_1281; lean_object* x_1282; lean_object* x_1283; -x_1280 = lean_ctor_get(x_1276, 0); -x_1281 = lean_ctor_get(x_1276, 1); -lean_inc(x_1281); -lean_inc(x_1280); -lean_dec(x_1276); -x_1282 = l_Lean_mkAppN(x_1271, x_1280); -x_1283 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1283, 0, x_1282); -lean_ctor_set(x_1283, 1, x_1281); -return x_1283; +lean_object* x_1179; lean_object* x_1180; lean_object* x_1181; lean_object* x_1182; +x_1179 = lean_ctor_get(x_1175, 0); +x_1180 = lean_ctor_get(x_1175, 1); +lean_inc(x_1180); +lean_inc(x_1179); +lean_dec(x_1175); +x_1181 = l_Lean_mkAppN(x_1170, x_1179); +x_1182 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1182, 0, x_1181); +lean_ctor_set(x_1182, 1, x_1180); +return x_1182; } } else { -lean_object* x_1284; -x_1284 = lean_ctor_get(x_1276, 0); -lean_inc(x_1284); -if (lean_obj_tag(x_1284) == 0) +uint8_t x_1183; +lean_dec(x_1170); +x_1183 = !lean_is_exclusive(x_1175); +if (x_1183 == 0) { -uint8_t x_1285; -lean_dec(x_1273); -lean_dec(x_1271); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_1); -x_1285 = !lean_is_exclusive(x_1276); -if (x_1285 == 0) -{ -lean_object* x_1286; -x_1286 = lean_ctor_get(x_1276, 0); -lean_dec(x_1286); -return x_1276; +return x_1175; } else { -lean_object* x_1287; lean_object* x_1288; -x_1287 = lean_ctor_get(x_1276, 1); -lean_inc(x_1287); -lean_dec(x_1276); -x_1288 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1288, 0, x_1284); -lean_ctor_set(x_1288, 1, x_1287); -return x_1288; -} -} -else -{ -uint8_t x_1289; -x_1289 = !lean_is_exclusive(x_1276); -if (x_1289 == 0) -{ -lean_object* x_1290; lean_object* x_1291; lean_object* x_1292; lean_object* x_1293; uint8_t x_1294; -x_1290 = lean_ctor_get(x_1276, 1); -x_1291 = lean_ctor_get(x_1276, 0); -lean_dec(x_1291); -x_1292 = lean_ctor_get(x_1284, 0); -lean_inc(x_1292); -x_1293 = l_Lean_Meta_CheckAssignment_throwOutOfScopeFVar___rarg___closed__1; -x_1294 = lean_nat_dec_eq(x_1293, x_1292); -lean_dec(x_1292); -if (x_1294 == 0) -{ -lean_dec(x_1273); -lean_dec(x_1271); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_1); -return x_1276; -} -else -{ -uint8_t x_1295; -x_1295 = l_Lean_Expr_isMVar(x_1271); -if (x_1295 == 0) -{ -lean_dec(x_1273); -lean_dec(x_1271); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_1); -return x_1276; -} -else -{ -lean_object* x_1296; lean_object* x_1297; lean_object* x_1298; uint8_t x_1299; -lean_free_object(x_1276); -lean_inc(x_1271); -x_1296 = l_Lean_Expr_mvarId_x21(x_1271); -x_1297 = l_Lean_MVarId_isDelayedAssigned___at_Lean_Meta_CheckAssignment_checkApp___spec__2(x_1296, x_5, x_6, x_7, x_8, x_9, x_10, x_1290); -x_1298 = lean_ctor_get(x_1297, 0); -lean_inc(x_1298); -x_1299 = lean_unbox(x_1298); -lean_dec(x_1298); -if (x_1299 == 0) -{ -lean_object* x_1300; lean_object* x_1301; -x_1300 = lean_ctor_get(x_1297, 1); -lean_inc(x_1300); -lean_dec(x_1297); -lean_inc(x_10); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -x_1301 = lean_infer_type(x_1, x_7, x_8, x_9, x_10, x_1300); -if (lean_obj_tag(x_1301) == 0) -{ -lean_object* x_1302; lean_object* x_1303; lean_object* x_1304; -x_1302 = lean_ctor_get(x_1301, 0); -lean_inc(x_1302); -x_1303 = lean_ctor_get(x_1301, 1); -lean_inc(x_1303); -lean_dec(x_1301); -lean_inc(x_10); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_5); -x_1304 = l_Lean_Meta_CheckAssignment_check(x_1302, x_5, x_6, x_7, x_8, x_9, x_10, x_1303); -if (lean_obj_tag(x_1304) == 0) -{ -lean_object* x_1305; lean_object* x_1306; lean_object* x_1307; lean_object* x_1308; lean_object* x_1309; uint8_t x_1310; lean_object* x_1311; lean_object* x_1312; lean_object* x_1313; lean_object* x_1314; lean_object* x_1315; lean_object* x_1316; -x_1305 = lean_ctor_get(x_1304, 0); -lean_inc(x_1305); -x_1306 = lean_ctor_get(x_1304, 1); -lean_inc(x_1306); -lean_dec(x_1304); -x_1307 = lean_ctor_get(x_5, 1); -lean_inc(x_1307); -lean_dec(x_5); -x_1308 = lean_ctor_get(x_1307, 1); -lean_inc(x_1308); -x_1309 = lean_ctor_get(x_1307, 4); -lean_inc(x_1309); -lean_dec(x_1307); -x_1310 = 0; -x_1311 = lean_box(0); -x_1312 = lean_unsigned_to_nat(0u); -x_1313 = l_Lean_Meta_mkFreshExprMVarAt(x_1308, x_1309, x_1305, x_1310, x_1311, x_1312, x_7, x_8, x_9, x_10, x_1306); -x_1314 = lean_ctor_get(x_1313, 0); -lean_inc(x_1314); -x_1315 = lean_ctor_get(x_1313, 1); -lean_inc(x_1315); -lean_dec(x_1313); -lean_inc(x_1314); -x_1316 = l_Lean_Meta_CheckAssignment_assignToConstFun(x_1271, x_1273, x_1314, x_7, x_8, x_9, x_10, x_1315); -if (lean_obj_tag(x_1316) == 0) -{ -lean_object* x_1317; uint8_t x_1318; -x_1317 = lean_ctor_get(x_1316, 0); -lean_inc(x_1317); -x_1318 = lean_unbox(x_1317); -lean_dec(x_1317); -if (x_1318 == 0) -{ -uint8_t x_1319; -lean_dec(x_1314); -x_1319 = !lean_is_exclusive(x_1316); -if (x_1319 == 0) -{ -lean_object* x_1320; -x_1320 = lean_ctor_get(x_1316, 0); -lean_dec(x_1320); -lean_ctor_set_tag(x_1316, 1); -lean_ctor_set(x_1316, 0, x_1284); -return x_1316; -} -else -{ -lean_object* x_1321; lean_object* x_1322; -x_1321 = lean_ctor_get(x_1316, 1); -lean_inc(x_1321); -lean_dec(x_1316); -x_1322 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1322, 0, x_1284); -lean_ctor_set(x_1322, 1, x_1321); -return x_1322; -} -} -else -{ -uint8_t x_1323; -lean_dec(x_1284); -x_1323 = !lean_is_exclusive(x_1316); -if (x_1323 == 0) -{ -lean_object* x_1324; -x_1324 = lean_ctor_get(x_1316, 0); -lean_dec(x_1324); -lean_ctor_set(x_1316, 0, x_1314); -return x_1316; -} -else -{ -lean_object* x_1325; lean_object* x_1326; -x_1325 = lean_ctor_get(x_1316, 1); -lean_inc(x_1325); -lean_dec(x_1316); -x_1326 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1326, 0, x_1314); -lean_ctor_set(x_1326, 1, x_1325); -return x_1326; +lean_object* x_1184; lean_object* x_1185; lean_object* x_1186; +x_1184 = lean_ctor_get(x_1175, 0); +x_1185 = lean_ctor_get(x_1175, 1); +lean_inc(x_1185); +lean_inc(x_1184); +lean_dec(x_1175); +x_1186 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1186, 0, x_1184); +lean_ctor_set(x_1186, 1, x_1185); +return x_1186; } } } else { -uint8_t x_1327; -lean_dec(x_1314); -lean_dec(x_1284); -x_1327 = !lean_is_exclusive(x_1316); -if (x_1327 == 0) -{ -return x_1316; -} -else -{ -lean_object* x_1328; lean_object* x_1329; lean_object* x_1330; -x_1328 = lean_ctor_get(x_1316, 0); -x_1329 = lean_ctor_get(x_1316, 1); -lean_inc(x_1329); -lean_inc(x_1328); -lean_dec(x_1316); -x_1330 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1330, 0, x_1328); -lean_ctor_set(x_1330, 1, x_1329); -return x_1330; -} -} -} -else -{ -uint8_t x_1331; -lean_dec(x_1284); -lean_dec(x_1273); -lean_dec(x_1271); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_5); -x_1331 = !lean_is_exclusive(x_1304); -if (x_1331 == 0) -{ -return x_1304; -} -else -{ -lean_object* x_1332; lean_object* x_1333; lean_object* x_1334; -x_1332 = lean_ctor_get(x_1304, 0); -x_1333 = lean_ctor_get(x_1304, 1); -lean_inc(x_1333); -lean_inc(x_1332); -lean_dec(x_1304); -x_1334 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1334, 0, x_1332); -lean_ctor_set(x_1334, 1, x_1333); -return x_1334; -} -} -} -else -{ -uint8_t x_1335; -lean_dec(x_1284); -lean_dec(x_1273); -lean_dec(x_1271); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -x_1335 = !lean_is_exclusive(x_1301); -if (x_1335 == 0) -{ -return x_1301; -} -else -{ -lean_object* x_1336; lean_object* x_1337; lean_object* x_1338; -x_1336 = lean_ctor_get(x_1301, 0); -x_1337 = lean_ctor_get(x_1301, 1); -lean_inc(x_1337); -lean_inc(x_1336); -lean_dec(x_1301); -x_1338 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1338, 0, x_1336); -lean_ctor_set(x_1338, 1, x_1337); -return x_1338; -} -} -} -else -{ -uint8_t x_1339; -lean_dec(x_1273); -lean_dec(x_1271); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_1); -x_1339 = !lean_is_exclusive(x_1297); -if (x_1339 == 0) -{ -lean_object* x_1340; -x_1340 = lean_ctor_get(x_1297, 0); -lean_dec(x_1340); -lean_ctor_set_tag(x_1297, 1); -lean_ctor_set(x_1297, 0, x_1284); -return x_1297; -} -else -{ -lean_object* x_1341; lean_object* x_1342; -x_1341 = lean_ctor_get(x_1297, 1); -lean_inc(x_1341); -lean_dec(x_1297); -x_1342 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1342, 0, x_1284); -lean_ctor_set(x_1342, 1, x_1341); -return x_1342; -} -} -} -} -} -else -{ -lean_object* x_1343; lean_object* x_1344; lean_object* x_1345; uint8_t x_1346; -x_1343 = lean_ctor_get(x_1276, 1); -lean_inc(x_1343); -lean_dec(x_1276); -x_1344 = lean_ctor_get(x_1284, 0); -lean_inc(x_1344); -x_1345 = l_Lean_Meta_CheckAssignment_throwOutOfScopeFVar___rarg___closed__1; -x_1346 = lean_nat_dec_eq(x_1345, x_1344); -lean_dec(x_1344); -if (x_1346 == 0) -{ -lean_object* x_1347; -lean_dec(x_1273); -lean_dec(x_1271); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_1); -x_1347 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1347, 0, x_1284); -lean_ctor_set(x_1347, 1, x_1343); -return x_1347; -} -else -{ -uint8_t x_1348; -x_1348 = l_Lean_Expr_isMVar(x_1271); -if (x_1348 == 0) -{ -lean_object* x_1349; -lean_dec(x_1273); -lean_dec(x_1271); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_1); -x_1349 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1349, 0, x_1284); -lean_ctor_set(x_1349, 1, x_1343); -return x_1349; -} -else -{ -lean_object* x_1350; lean_object* x_1351; lean_object* x_1352; uint8_t x_1353; -lean_inc(x_1271); -x_1350 = l_Lean_Expr_mvarId_x21(x_1271); -x_1351 = l_Lean_MVarId_isDelayedAssigned___at_Lean_Meta_CheckAssignment_checkApp___spec__2(x_1350, x_5, x_6, x_7, x_8, x_9, x_10, x_1343); -x_1352 = lean_ctor_get(x_1351, 0); -lean_inc(x_1352); -x_1353 = lean_unbox(x_1352); -lean_dec(x_1352); -if (x_1353 == 0) -{ -lean_object* x_1354; lean_object* x_1355; -x_1354 = lean_ctor_get(x_1351, 1); -lean_inc(x_1354); -lean_dec(x_1351); -lean_inc(x_10); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -x_1355 = lean_infer_type(x_1, x_7, x_8, x_9, x_10, x_1354); -if (lean_obj_tag(x_1355) == 0) -{ -lean_object* x_1356; lean_object* x_1357; lean_object* x_1358; -x_1356 = lean_ctor_get(x_1355, 0); -lean_inc(x_1356); -x_1357 = lean_ctor_get(x_1355, 1); -lean_inc(x_1357); -lean_dec(x_1355); -lean_inc(x_10); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_5); -x_1358 = l_Lean_Meta_CheckAssignment_check(x_1356, x_5, x_6, x_7, x_8, x_9, x_10, x_1357); -if (lean_obj_tag(x_1358) == 0) -{ -lean_object* x_1359; lean_object* x_1360; lean_object* x_1361; lean_object* x_1362; lean_object* x_1363; uint8_t x_1364; lean_object* x_1365; lean_object* x_1366; lean_object* x_1367; lean_object* x_1368; lean_object* x_1369; lean_object* x_1370; -x_1359 = lean_ctor_get(x_1358, 0); -lean_inc(x_1359); -x_1360 = lean_ctor_get(x_1358, 1); -lean_inc(x_1360); -lean_dec(x_1358); -x_1361 = lean_ctor_get(x_5, 1); -lean_inc(x_1361); -lean_dec(x_5); -x_1362 = lean_ctor_get(x_1361, 1); -lean_inc(x_1362); -x_1363 = lean_ctor_get(x_1361, 4); -lean_inc(x_1363); -lean_dec(x_1361); -x_1364 = 0; -x_1365 = lean_box(0); -x_1366 = lean_unsigned_to_nat(0u); -x_1367 = l_Lean_Meta_mkFreshExprMVarAt(x_1362, x_1363, x_1359, x_1364, x_1365, x_1366, x_7, x_8, x_9, x_10, x_1360); -x_1368 = lean_ctor_get(x_1367, 0); -lean_inc(x_1368); -x_1369 = lean_ctor_get(x_1367, 1); -lean_inc(x_1369); -lean_dec(x_1367); -lean_inc(x_1368); -x_1370 = l_Lean_Meta_CheckAssignment_assignToConstFun(x_1271, x_1273, x_1368, x_7, x_8, x_9, x_10, x_1369); -if (lean_obj_tag(x_1370) == 0) -{ -lean_object* x_1371; uint8_t x_1372; -x_1371 = lean_ctor_get(x_1370, 0); -lean_inc(x_1371); -x_1372 = lean_unbox(x_1371); -lean_dec(x_1371); -if (x_1372 == 0) -{ -lean_object* x_1373; lean_object* x_1374; lean_object* x_1375; -lean_dec(x_1368); -x_1373 = lean_ctor_get(x_1370, 1); -lean_inc(x_1373); -if (lean_is_exclusive(x_1370)) { - lean_ctor_release(x_1370, 0); - lean_ctor_release(x_1370, 1); - x_1374 = x_1370; -} else { - lean_dec_ref(x_1370); - x_1374 = lean_box(0); -} -if (lean_is_scalar(x_1374)) { - x_1375 = lean_alloc_ctor(1, 2, 0); -} else { - x_1375 = x_1374; - lean_ctor_set_tag(x_1375, 1); -} -lean_ctor_set(x_1375, 0, x_1284); -lean_ctor_set(x_1375, 1, x_1373); -return x_1375; -} -else -{ -lean_object* x_1376; lean_object* x_1377; lean_object* x_1378; -lean_dec(x_1284); -x_1376 = lean_ctor_get(x_1370, 1); -lean_inc(x_1376); -if (lean_is_exclusive(x_1370)) { - lean_ctor_release(x_1370, 0); - lean_ctor_release(x_1370, 1); - x_1377 = x_1370; -} else { - lean_dec_ref(x_1370); - x_1377 = lean_box(0); -} -if (lean_is_scalar(x_1377)) { - x_1378 = lean_alloc_ctor(0, 2, 0); -} else { - x_1378 = x_1377; -} -lean_ctor_set(x_1378, 0, x_1368); -lean_ctor_set(x_1378, 1, x_1376); -return x_1378; -} -} -else -{ -lean_object* x_1379; lean_object* x_1380; lean_object* x_1381; lean_object* x_1382; -lean_dec(x_1368); -lean_dec(x_1284); -x_1379 = lean_ctor_get(x_1370, 0); -lean_inc(x_1379); -x_1380 = lean_ctor_get(x_1370, 1); -lean_inc(x_1380); -if (lean_is_exclusive(x_1370)) { - lean_ctor_release(x_1370, 0); - lean_ctor_release(x_1370, 1); - x_1381 = x_1370; -} else { - lean_dec_ref(x_1370); - x_1381 = lean_box(0); -} -if (lean_is_scalar(x_1381)) { - x_1382 = lean_alloc_ctor(1, 2, 0); -} else { - x_1382 = x_1381; -} -lean_ctor_set(x_1382, 0, x_1379); -lean_ctor_set(x_1382, 1, x_1380); -return x_1382; -} -} -else -{ -lean_object* x_1383; lean_object* x_1384; lean_object* x_1385; lean_object* x_1386; -lean_dec(x_1284); -lean_dec(x_1273); -lean_dec(x_1271); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_5); -x_1383 = lean_ctor_get(x_1358, 0); -lean_inc(x_1383); -x_1384 = lean_ctor_get(x_1358, 1); -lean_inc(x_1384); -if (lean_is_exclusive(x_1358)) { - lean_ctor_release(x_1358, 0); - lean_ctor_release(x_1358, 1); - x_1385 = x_1358; -} else { - lean_dec_ref(x_1358); - x_1385 = lean_box(0); -} -if (lean_is_scalar(x_1385)) { - x_1386 = lean_alloc_ctor(1, 2, 0); -} else { - x_1386 = x_1385; -} -lean_ctor_set(x_1386, 0, x_1383); -lean_ctor_set(x_1386, 1, x_1384); -return x_1386; -} -} -else -{ -lean_object* x_1387; lean_object* x_1388; lean_object* x_1389; lean_object* x_1390; -lean_dec(x_1284); -lean_dec(x_1273); -lean_dec(x_1271); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -x_1387 = lean_ctor_get(x_1355, 0); -lean_inc(x_1387); -x_1388 = lean_ctor_get(x_1355, 1); -lean_inc(x_1388); -if (lean_is_exclusive(x_1355)) { - lean_ctor_release(x_1355, 0); - lean_ctor_release(x_1355, 1); - x_1389 = x_1355; -} else { - lean_dec_ref(x_1355); - x_1389 = lean_box(0); -} -if (lean_is_scalar(x_1389)) { - x_1390 = lean_alloc_ctor(1, 2, 0); -} else { - x_1390 = x_1389; -} -lean_ctor_set(x_1390, 0, x_1387); -lean_ctor_set(x_1390, 1, x_1388); -return x_1390; -} -} -else -{ -lean_object* x_1391; lean_object* x_1392; lean_object* x_1393; -lean_dec(x_1273); -lean_dec(x_1271); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_1); -x_1391 = lean_ctor_get(x_1351, 1); -lean_inc(x_1391); -if (lean_is_exclusive(x_1351)) { - lean_ctor_release(x_1351, 0); - lean_ctor_release(x_1351, 1); - x_1392 = x_1351; -} else { - lean_dec_ref(x_1351); - x_1392 = lean_box(0); -} -if (lean_is_scalar(x_1392)) { - x_1393 = lean_alloc_ctor(1, 2, 0); -} else { - x_1393 = x_1392; - lean_ctor_set_tag(x_1393, 1); -} -lean_ctor_set(x_1393, 0, x_1284); -lean_ctor_set(x_1393, 1, x_1391); -return x_1393; -} -} -} -} -} -} -} -block_1410: -{ -lean_object* x_1396; lean_object* x_1397; -lean_dec(x_1395); -lean_inc(x_2); -x_1396 = l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_CheckAssignment_findCached_x3f(x_2, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -x_1397 = lean_ctor_get(x_1396, 0); -lean_inc(x_1397); -if (lean_obj_tag(x_1397) == 0) -{ -lean_object* x_1398; lean_object* x_1399; -x_1398 = lean_ctor_get(x_1396, 1); -lean_inc(x_1398); -lean_dec(x_1396); -lean_inc(x_10); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_2); -x_1399 = l_Lean_Meta_CheckAssignment_checkMVar(x_2, x_5, x_6, x_7, x_8, x_9, x_10, x_1398); -if (lean_obj_tag(x_1399) == 0) -{ -lean_object* x_1400; lean_object* x_1401; lean_object* x_1402; lean_object* x_1403; -x_1400 = lean_ctor_get(x_1399, 0); -lean_inc(x_1400); -x_1401 = lean_ctor_get(x_1399, 1); -lean_inc(x_1401); -lean_dec(x_1399); -lean_inc(x_1400); -x_1402 = l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_CheckAssignment_cache(x_2, x_1400, x_5, x_6, x_7, x_8, x_9, x_10, x_1401); -x_1403 = lean_ctor_get(x_1402, 1); -lean_inc(x_1403); -lean_dec(x_1402); -x_1271 = x_1400; -x_1272 = x_1403; -goto block_1394; -} -else -{ -uint8_t x_1404; +uint8_t x_1187; lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); @@ -26154,256 +23998,801 @@ lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_3); -lean_dec(x_2); -lean_dec(x_1); -x_1404 = !lean_is_exclusive(x_1399); -if (x_1404 == 0) +x_1187 = !lean_is_exclusive(x_1169); +if (x_1187 == 0) { -return x_1399; +return x_1169; } else { -lean_object* x_1405; lean_object* x_1406; lean_object* x_1407; -x_1405 = lean_ctor_get(x_1399, 0); -x_1406 = lean_ctor_get(x_1399, 1); -lean_inc(x_1406); -lean_inc(x_1405); -lean_dec(x_1399); -x_1407 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1407, 0, x_1405); -lean_ctor_set(x_1407, 1, x_1406); -return x_1407; -} -} -} -else -{ -lean_object* x_1408; lean_object* x_1409; -lean_dec(x_2); -x_1408 = lean_ctor_get(x_1396, 1); -lean_inc(x_1408); -lean_dec(x_1396); -x_1409 = lean_ctor_get(x_1397, 0); -lean_inc(x_1409); -lean_dec(x_1397); -x_1271 = x_1409; -x_1272 = x_1408; -goto block_1394; +lean_object* x_1188; lean_object* x_1189; lean_object* x_1190; +x_1188 = lean_ctor_get(x_1169, 0); +x_1189 = lean_ctor_get(x_1169, 1); +lean_inc(x_1189); +lean_inc(x_1188); +lean_dec(x_1169); +x_1190 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1190, 0, x_1188); +lean_ctor_set(x_1190, 1, x_1189); +return x_1190; } } } } case 8: { -lean_object* x_1432; lean_object* x_1472; uint8_t x_1618; +lean_object* x_1208; lean_object* x_1338; uint8_t x_1362; lean_dec(x_4); -x_1618 = l_Lean_Expr_isMVar(x_2); -if (x_1618 == 0) +x_1362 = l_Lean_Expr_isMVar(x_2); +if (x_1362 == 0) { -lean_object* x_1619; +lean_object* x_1363; lean_dec(x_1); -x_1619 = lean_box(0); -x_1432 = x_1619; -goto block_1471; +x_1363 = lean_box(0); +x_1338 = x_1363; +goto block_1361; } else { -lean_object* x_1620; uint8_t x_1621; -x_1620 = lean_ctor_get(x_7, 0); -lean_inc(x_1620); -x_1621 = lean_ctor_get_uint8(x_1620, 1); -lean_dec(x_1620); -if (x_1621 == 0) +lean_object* x_1364; uint8_t x_1365; +x_1364 = lean_ctor_get(x_7, 0); +lean_inc(x_1364); +x_1365 = lean_ctor_get_uint8(x_1364, 1); +lean_dec(x_1364); +if (x_1365 == 0) { -lean_object* x_1622; +lean_object* x_1366; lean_dec(x_1); -x_1622 = lean_box(0); -x_1432 = x_1622; -goto block_1471; +x_1366 = lean_box(0); +x_1338 = x_1366; +goto block_1361; } else { -lean_object* x_1623; lean_object* x_1624; uint8_t x_1625; -x_1623 = lean_array_get_size(x_3); -x_1624 = lean_unsigned_to_nat(0u); -x_1625 = lean_nat_dec_lt(x_1624, x_1623); -if (x_1625 == 0) +lean_object* x_1367; lean_object* x_1368; uint8_t x_1369; +x_1367 = lean_array_get_size(x_3); +x_1368 = lean_unsigned_to_nat(0u); +x_1369 = lean_nat_dec_lt(x_1368, x_1367); +if (x_1369 == 0) { -lean_object* x_1626; -lean_dec(x_1623); -x_1626 = lean_box(0); -x_1472 = x_1626; -goto block_1617; +lean_object* x_1370; +lean_dec(x_1367); +x_1370 = lean_box(0); +x_1208 = x_1370; +goto block_1337; } else { -uint8_t x_1627; -x_1627 = lean_nat_dec_le(x_1623, x_1623); -if (x_1627 == 0) +uint8_t x_1371; +x_1371 = lean_nat_dec_le(x_1367, x_1367); +if (x_1371 == 0) { -lean_object* x_1628; -lean_dec(x_1623); -x_1628 = lean_box(0); -x_1472 = x_1628; -goto block_1617; +lean_object* x_1372; +lean_dec(x_1367); +x_1372 = lean_box(0); +x_1208 = x_1372; +goto block_1337; } else { -size_t x_1629; size_t x_1630; uint8_t x_1631; -x_1629 = 0; -x_1630 = lean_usize_of_nat(x_1623); -lean_dec(x_1623); -x_1631 = l_Array_anyMUnsafe_any___at_Lean_Meta_CheckAssignment_checkApp___spec__3(x_3, x_1629, x_1630); -if (x_1631 == 0) +size_t x_1373; size_t x_1374; uint8_t x_1375; +x_1373 = 0; +x_1374 = lean_usize_of_nat(x_1367); +lean_dec(x_1367); +x_1375 = l_Array_anyMUnsafe_any___at_Lean_Meta_CheckAssignment_checkApp___spec__3(x_3, x_1373, x_1374); +if (x_1375 == 0) { -lean_object* x_1632; -x_1632 = lean_box(0); -x_1472 = x_1632; -goto block_1617; +lean_object* x_1376; +x_1376 = lean_box(0); +x_1208 = x_1376; +goto block_1337; } else { -lean_object* x_1633; +lean_object* x_1377; lean_dec(x_1); -x_1633 = lean_box(0); -x_1432 = x_1633; -goto block_1471; +x_1377 = lean_box(0); +x_1338 = x_1377; +goto block_1361; } } } } } -block_1471: +block_1337: { -lean_object* x_1433; lean_object* x_1434; lean_object* x_1451; uint8_t x_1467; -lean_dec(x_1432); -x_1467 = l_Lean_Expr_hasExprMVar(x_2); -if (x_1467 == 0) -{ -uint8_t x_1468; -x_1468 = l_Lean_Expr_hasFVar(x_2); -if (x_1468 == 0) -{ -x_1433 = x_2; -x_1434 = x_11; -goto block_1450; -} -else -{ -lean_object* x_1469; -x_1469 = lean_box(0); -x_1451 = x_1469; -goto block_1466; -} -} -else -{ -lean_object* x_1470; -x_1470 = lean_box(0); -x_1451 = x_1470; -goto block_1466; -} -block_1450: -{ -lean_object* x_1435; size_t x_1436; size_t x_1437; lean_object* x_1438; -x_1435 = lean_array_get_size(x_3); -x_1436 = lean_usize_of_nat(x_1435); -lean_dec(x_1435); -x_1437 = 0; -x_1438 = l_Array_mapMUnsafe_map___at_Lean_Meta_CheckAssignment_checkApp___spec__1(x_1436, x_1437, x_3, x_5, x_6, x_7, x_8, x_9, x_10, x_1434); -if (lean_obj_tag(x_1438) == 0) -{ -uint8_t x_1439; -x_1439 = !lean_is_exclusive(x_1438); -if (x_1439 == 0) -{ -lean_object* x_1440; lean_object* x_1441; -x_1440 = lean_ctor_get(x_1438, 0); -x_1441 = l_Lean_mkAppN(x_1433, x_1440); -lean_ctor_set(x_1438, 0, x_1441); -return x_1438; -} -else -{ -lean_object* x_1442; lean_object* x_1443; lean_object* x_1444; lean_object* x_1445; -x_1442 = lean_ctor_get(x_1438, 0); -x_1443 = lean_ctor_get(x_1438, 1); -lean_inc(x_1443); -lean_inc(x_1442); -lean_dec(x_1438); -x_1444 = l_Lean_mkAppN(x_1433, x_1442); -x_1445 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1445, 0, x_1444); -lean_ctor_set(x_1445, 1, x_1443); -return x_1445; -} -} -else -{ -uint8_t x_1446; -lean_dec(x_1433); -x_1446 = !lean_is_exclusive(x_1438); -if (x_1446 == 0) -{ -return x_1438; -} -else -{ -lean_object* x_1447; lean_object* x_1448; lean_object* x_1449; -x_1447 = lean_ctor_get(x_1438, 0); -x_1448 = lean_ctor_get(x_1438, 1); -lean_inc(x_1448); -lean_inc(x_1447); -lean_dec(x_1438); -x_1449 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1449, 0, x_1447); -lean_ctor_set(x_1449, 1, x_1448); -return x_1449; -} -} -} -block_1466: -{ -lean_object* x_1452; lean_object* x_1453; -lean_dec(x_1451); -lean_inc(x_2); -x_1452 = l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_CheckAssignment_findCached_x3f(x_2, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -x_1453 = lean_ctor_get(x_1452, 0); -lean_inc(x_1453); -if (lean_obj_tag(x_1453) == 0) -{ -lean_object* x_1454; lean_object* x_1455; -x_1454 = lean_ctor_get(x_1452, 1); -lean_inc(x_1454); -lean_dec(x_1452); +lean_object* x_1209; +lean_dec(x_1208); lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); lean_inc(x_5); -lean_inc(x_2); -x_1455 = l_Lean_Meta_CheckAssignment_check(x_2, x_5, x_6, x_7, x_8, x_9, x_10, x_1454); -if (lean_obj_tag(x_1455) == 0) +x_1209 = l_Lean_Meta_CheckAssignment_check(x_2, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +if (lean_obj_tag(x_1209) == 0) { -lean_object* x_1456; lean_object* x_1457; lean_object* x_1458; lean_object* x_1459; -x_1456 = lean_ctor_get(x_1455, 0); -lean_inc(x_1456); -x_1457 = lean_ctor_get(x_1455, 1); -lean_inc(x_1457); -lean_dec(x_1455); -lean_inc(x_1456); -x_1458 = l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_CheckAssignment_cache(x_2, x_1456, x_5, x_6, x_7, x_8, x_9, x_10, x_1457); -x_1459 = lean_ctor_get(x_1458, 1); -lean_inc(x_1459); -lean_dec(x_1458); -x_1433 = x_1456; -x_1434 = x_1459; -goto block_1450; +lean_object* x_1210; lean_object* x_1211; lean_object* x_1212; size_t x_1213; size_t x_1214; lean_object* x_1215; +x_1210 = lean_ctor_get(x_1209, 0); +lean_inc(x_1210); +x_1211 = lean_ctor_get(x_1209, 1); +lean_inc(x_1211); +lean_dec(x_1209); +x_1212 = lean_array_get_size(x_3); +x_1213 = lean_usize_of_nat(x_1212); +x_1214 = 0; +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +x_1215 = l_Array_mapMUnsafe_map___at_Lean_Meta_CheckAssignment_checkApp___spec__1(x_1213, x_1214, x_3, x_5, x_6, x_7, x_8, x_9, x_10, x_1211); +if (lean_obj_tag(x_1215) == 0) +{ +uint8_t x_1216; +lean_dec(x_1212); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_1); +x_1216 = !lean_is_exclusive(x_1215); +if (x_1216 == 0) +{ +lean_object* x_1217; lean_object* x_1218; +x_1217 = lean_ctor_get(x_1215, 0); +x_1218 = l_Lean_mkAppN(x_1210, x_1217); +lean_ctor_set(x_1215, 0, x_1218); +return x_1215; } else { -uint8_t x_1460; +lean_object* x_1219; lean_object* x_1220; lean_object* x_1221; lean_object* x_1222; +x_1219 = lean_ctor_get(x_1215, 0); +x_1220 = lean_ctor_get(x_1215, 1); +lean_inc(x_1220); +lean_inc(x_1219); +lean_dec(x_1215); +x_1221 = l_Lean_mkAppN(x_1210, x_1219); +x_1222 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1222, 0, x_1221); +lean_ctor_set(x_1222, 1, x_1220); +return x_1222; +} +} +else +{ +lean_object* x_1223; +x_1223 = lean_ctor_get(x_1215, 0); +lean_inc(x_1223); +if (lean_obj_tag(x_1223) == 0) +{ +uint8_t x_1224; +lean_dec(x_1212); +lean_dec(x_1210); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_1); +x_1224 = !lean_is_exclusive(x_1215); +if (x_1224 == 0) +{ +lean_object* x_1225; +x_1225 = lean_ctor_get(x_1215, 0); +lean_dec(x_1225); +return x_1215; +} +else +{ +lean_object* x_1226; lean_object* x_1227; +x_1226 = lean_ctor_get(x_1215, 1); +lean_inc(x_1226); +lean_dec(x_1215); +x_1227 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1227, 0, x_1223); +lean_ctor_set(x_1227, 1, x_1226); +return x_1227; +} +} +else +{ +uint8_t x_1228; +x_1228 = !lean_is_exclusive(x_1215); +if (x_1228 == 0) +{ +lean_object* x_1229; lean_object* x_1230; lean_object* x_1231; lean_object* x_1232; uint8_t x_1233; +x_1229 = lean_ctor_get(x_1215, 1); +x_1230 = lean_ctor_get(x_1215, 0); +lean_dec(x_1230); +x_1231 = lean_ctor_get(x_1223, 0); +lean_inc(x_1231); +x_1232 = l_Lean_Meta_CheckAssignment_throwOutOfScopeFVar___rarg___closed__1; +x_1233 = lean_nat_dec_eq(x_1232, x_1231); +lean_dec(x_1231); +if (x_1233 == 0) +{ +lean_dec(x_1212); +lean_dec(x_1210); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_1); +return x_1215; +} +else +{ +uint8_t x_1234; +x_1234 = l_Lean_Expr_isMVar(x_1210); +if (x_1234 == 0) +{ +lean_dec(x_1212); +lean_dec(x_1210); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_1); +return x_1215; +} +else +{ +lean_object* x_1235; lean_object* x_1236; lean_object* x_1237; uint8_t x_1238; +lean_free_object(x_1215); +lean_inc(x_1210); +x_1235 = l_Lean_Expr_mvarId_x21(x_1210); +x_1236 = l_Lean_MVarId_isDelayedAssigned___at_Lean_Meta_CheckAssignment_checkApp___spec__2(x_1235, x_5, x_6, x_7, x_8, x_9, x_10, x_1229); +x_1237 = lean_ctor_get(x_1236, 0); +lean_inc(x_1237); +x_1238 = lean_unbox(x_1237); +lean_dec(x_1237); +if (x_1238 == 0) +{ +lean_object* x_1239; lean_object* x_1240; +x_1239 = lean_ctor_get(x_1236, 1); +lean_inc(x_1239); +lean_dec(x_1236); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +x_1240 = lean_infer_type(x_1, x_7, x_8, x_9, x_10, x_1239); +if (lean_obj_tag(x_1240) == 0) +{ +lean_object* x_1241; lean_object* x_1242; lean_object* x_1243; +x_1241 = lean_ctor_get(x_1240, 0); +lean_inc(x_1241); +x_1242 = lean_ctor_get(x_1240, 1); +lean_inc(x_1242); +lean_dec(x_1240); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_5); +x_1243 = l_Lean_Meta_CheckAssignment_check(x_1241, x_5, x_6, x_7, x_8, x_9, x_10, x_1242); +if (lean_obj_tag(x_1243) == 0) +{ +lean_object* x_1244; lean_object* x_1245; lean_object* x_1246; lean_object* x_1247; lean_object* x_1248; uint8_t x_1249; lean_object* x_1250; lean_object* x_1251; lean_object* x_1252; lean_object* x_1253; lean_object* x_1254; lean_object* x_1255; +x_1244 = lean_ctor_get(x_1243, 0); +lean_inc(x_1244); +x_1245 = lean_ctor_get(x_1243, 1); +lean_inc(x_1245); +lean_dec(x_1243); +x_1246 = lean_ctor_get(x_5, 1); +lean_inc(x_1246); +lean_dec(x_5); +x_1247 = lean_ctor_get(x_1246, 1); +lean_inc(x_1247); +x_1248 = lean_ctor_get(x_1246, 4); +lean_inc(x_1248); +lean_dec(x_1246); +x_1249 = 0; +x_1250 = lean_box(0); +x_1251 = lean_unsigned_to_nat(0u); +x_1252 = l_Lean_Meta_mkFreshExprMVarAt(x_1247, x_1248, x_1244, x_1249, x_1250, x_1251, x_7, x_8, x_9, x_10, x_1245); +x_1253 = lean_ctor_get(x_1252, 0); +lean_inc(x_1253); +x_1254 = lean_ctor_get(x_1252, 1); +lean_inc(x_1254); +lean_dec(x_1252); +lean_inc(x_1253); +x_1255 = l_Lean_Meta_CheckAssignment_assignToConstFun(x_1210, x_1212, x_1253, x_7, x_8, x_9, x_10, x_1254); +if (lean_obj_tag(x_1255) == 0) +{ +lean_object* x_1256; uint8_t x_1257; +x_1256 = lean_ctor_get(x_1255, 0); +lean_inc(x_1256); +x_1257 = lean_unbox(x_1256); +lean_dec(x_1256); +if (x_1257 == 0) +{ +uint8_t x_1258; +lean_dec(x_1253); +x_1258 = !lean_is_exclusive(x_1255); +if (x_1258 == 0) +{ +lean_object* x_1259; +x_1259 = lean_ctor_get(x_1255, 0); +lean_dec(x_1259); +lean_ctor_set_tag(x_1255, 1); +lean_ctor_set(x_1255, 0, x_1223); +return x_1255; +} +else +{ +lean_object* x_1260; lean_object* x_1261; +x_1260 = lean_ctor_get(x_1255, 1); +lean_inc(x_1260); +lean_dec(x_1255); +x_1261 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1261, 0, x_1223); +lean_ctor_set(x_1261, 1, x_1260); +return x_1261; +} +} +else +{ +uint8_t x_1262; +lean_dec(x_1223); +x_1262 = !lean_is_exclusive(x_1255); +if (x_1262 == 0) +{ +lean_object* x_1263; +x_1263 = lean_ctor_get(x_1255, 0); +lean_dec(x_1263); +lean_ctor_set(x_1255, 0, x_1253); +return x_1255; +} +else +{ +lean_object* x_1264; lean_object* x_1265; +x_1264 = lean_ctor_get(x_1255, 1); +lean_inc(x_1264); +lean_dec(x_1255); +x_1265 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1265, 0, x_1253); +lean_ctor_set(x_1265, 1, x_1264); +return x_1265; +} +} +} +else +{ +uint8_t x_1266; +lean_dec(x_1253); +lean_dec(x_1223); +x_1266 = !lean_is_exclusive(x_1255); +if (x_1266 == 0) +{ +return x_1255; +} +else +{ +lean_object* x_1267; lean_object* x_1268; lean_object* x_1269; +x_1267 = lean_ctor_get(x_1255, 0); +x_1268 = lean_ctor_get(x_1255, 1); +lean_inc(x_1268); +lean_inc(x_1267); +lean_dec(x_1255); +x_1269 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1269, 0, x_1267); +lean_ctor_set(x_1269, 1, x_1268); +return x_1269; +} +} +} +else +{ +uint8_t x_1270; +lean_dec(x_1223); +lean_dec(x_1212); +lean_dec(x_1210); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_5); +x_1270 = !lean_is_exclusive(x_1243); +if (x_1270 == 0) +{ +return x_1243; +} +else +{ +lean_object* x_1271; lean_object* x_1272; lean_object* x_1273; +x_1271 = lean_ctor_get(x_1243, 0); +x_1272 = lean_ctor_get(x_1243, 1); +lean_inc(x_1272); +lean_inc(x_1271); +lean_dec(x_1243); +x_1273 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1273, 0, x_1271); +lean_ctor_set(x_1273, 1, x_1272); +return x_1273; +} +} +} +else +{ +uint8_t x_1274; +lean_dec(x_1223); +lean_dec(x_1212); +lean_dec(x_1210); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +x_1274 = !lean_is_exclusive(x_1240); +if (x_1274 == 0) +{ +return x_1240; +} +else +{ +lean_object* x_1275; lean_object* x_1276; lean_object* x_1277; +x_1275 = lean_ctor_get(x_1240, 0); +x_1276 = lean_ctor_get(x_1240, 1); +lean_inc(x_1276); +lean_inc(x_1275); +lean_dec(x_1240); +x_1277 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1277, 0, x_1275); +lean_ctor_set(x_1277, 1, x_1276); +return x_1277; +} +} +} +else +{ +uint8_t x_1278; +lean_dec(x_1212); +lean_dec(x_1210); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_1); +x_1278 = !lean_is_exclusive(x_1236); +if (x_1278 == 0) +{ +lean_object* x_1279; +x_1279 = lean_ctor_get(x_1236, 0); +lean_dec(x_1279); +lean_ctor_set_tag(x_1236, 1); +lean_ctor_set(x_1236, 0, x_1223); +return x_1236; +} +else +{ +lean_object* x_1280; lean_object* x_1281; +x_1280 = lean_ctor_get(x_1236, 1); +lean_inc(x_1280); +lean_dec(x_1236); +x_1281 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1281, 0, x_1223); +lean_ctor_set(x_1281, 1, x_1280); +return x_1281; +} +} +} +} +} +else +{ +lean_object* x_1282; lean_object* x_1283; lean_object* x_1284; uint8_t x_1285; +x_1282 = lean_ctor_get(x_1215, 1); +lean_inc(x_1282); +lean_dec(x_1215); +x_1283 = lean_ctor_get(x_1223, 0); +lean_inc(x_1283); +x_1284 = l_Lean_Meta_CheckAssignment_throwOutOfScopeFVar___rarg___closed__1; +x_1285 = lean_nat_dec_eq(x_1284, x_1283); +lean_dec(x_1283); +if (x_1285 == 0) +{ +lean_object* x_1286; +lean_dec(x_1212); +lean_dec(x_1210); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_1); +x_1286 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1286, 0, x_1223); +lean_ctor_set(x_1286, 1, x_1282); +return x_1286; +} +else +{ +uint8_t x_1287; +x_1287 = l_Lean_Expr_isMVar(x_1210); +if (x_1287 == 0) +{ +lean_object* x_1288; +lean_dec(x_1212); +lean_dec(x_1210); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_1); +x_1288 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1288, 0, x_1223); +lean_ctor_set(x_1288, 1, x_1282); +return x_1288; +} +else +{ +lean_object* x_1289; lean_object* x_1290; lean_object* x_1291; uint8_t x_1292; +lean_inc(x_1210); +x_1289 = l_Lean_Expr_mvarId_x21(x_1210); +x_1290 = l_Lean_MVarId_isDelayedAssigned___at_Lean_Meta_CheckAssignment_checkApp___spec__2(x_1289, x_5, x_6, x_7, x_8, x_9, x_10, x_1282); +x_1291 = lean_ctor_get(x_1290, 0); +lean_inc(x_1291); +x_1292 = lean_unbox(x_1291); +lean_dec(x_1291); +if (x_1292 == 0) +{ +lean_object* x_1293; lean_object* x_1294; +x_1293 = lean_ctor_get(x_1290, 1); +lean_inc(x_1293); +lean_dec(x_1290); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +x_1294 = lean_infer_type(x_1, x_7, x_8, x_9, x_10, x_1293); +if (lean_obj_tag(x_1294) == 0) +{ +lean_object* x_1295; lean_object* x_1296; lean_object* x_1297; +x_1295 = lean_ctor_get(x_1294, 0); +lean_inc(x_1295); +x_1296 = lean_ctor_get(x_1294, 1); +lean_inc(x_1296); +lean_dec(x_1294); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_5); +x_1297 = l_Lean_Meta_CheckAssignment_check(x_1295, x_5, x_6, x_7, x_8, x_9, x_10, x_1296); +if (lean_obj_tag(x_1297) == 0) +{ +lean_object* x_1298; lean_object* x_1299; lean_object* x_1300; lean_object* x_1301; lean_object* x_1302; uint8_t x_1303; lean_object* x_1304; lean_object* x_1305; lean_object* x_1306; lean_object* x_1307; lean_object* x_1308; lean_object* x_1309; +x_1298 = lean_ctor_get(x_1297, 0); +lean_inc(x_1298); +x_1299 = lean_ctor_get(x_1297, 1); +lean_inc(x_1299); +lean_dec(x_1297); +x_1300 = lean_ctor_get(x_5, 1); +lean_inc(x_1300); +lean_dec(x_5); +x_1301 = lean_ctor_get(x_1300, 1); +lean_inc(x_1301); +x_1302 = lean_ctor_get(x_1300, 4); +lean_inc(x_1302); +lean_dec(x_1300); +x_1303 = 0; +x_1304 = lean_box(0); +x_1305 = lean_unsigned_to_nat(0u); +x_1306 = l_Lean_Meta_mkFreshExprMVarAt(x_1301, x_1302, x_1298, x_1303, x_1304, x_1305, x_7, x_8, x_9, x_10, x_1299); +x_1307 = lean_ctor_get(x_1306, 0); +lean_inc(x_1307); +x_1308 = lean_ctor_get(x_1306, 1); +lean_inc(x_1308); +lean_dec(x_1306); +lean_inc(x_1307); +x_1309 = l_Lean_Meta_CheckAssignment_assignToConstFun(x_1210, x_1212, x_1307, x_7, x_8, x_9, x_10, x_1308); +if (lean_obj_tag(x_1309) == 0) +{ +lean_object* x_1310; uint8_t x_1311; +x_1310 = lean_ctor_get(x_1309, 0); +lean_inc(x_1310); +x_1311 = lean_unbox(x_1310); +lean_dec(x_1310); +if (x_1311 == 0) +{ +lean_object* x_1312; lean_object* x_1313; lean_object* x_1314; +lean_dec(x_1307); +x_1312 = lean_ctor_get(x_1309, 1); +lean_inc(x_1312); +if (lean_is_exclusive(x_1309)) { + lean_ctor_release(x_1309, 0); + lean_ctor_release(x_1309, 1); + x_1313 = x_1309; +} else { + lean_dec_ref(x_1309); + x_1313 = lean_box(0); +} +if (lean_is_scalar(x_1313)) { + x_1314 = lean_alloc_ctor(1, 2, 0); +} else { + x_1314 = x_1313; + lean_ctor_set_tag(x_1314, 1); +} +lean_ctor_set(x_1314, 0, x_1223); +lean_ctor_set(x_1314, 1, x_1312); +return x_1314; +} +else +{ +lean_object* x_1315; lean_object* x_1316; lean_object* x_1317; +lean_dec(x_1223); +x_1315 = lean_ctor_get(x_1309, 1); +lean_inc(x_1315); +if (lean_is_exclusive(x_1309)) { + lean_ctor_release(x_1309, 0); + lean_ctor_release(x_1309, 1); + x_1316 = x_1309; +} else { + lean_dec_ref(x_1309); + x_1316 = lean_box(0); +} +if (lean_is_scalar(x_1316)) { + x_1317 = lean_alloc_ctor(0, 2, 0); +} else { + x_1317 = x_1316; +} +lean_ctor_set(x_1317, 0, x_1307); +lean_ctor_set(x_1317, 1, x_1315); +return x_1317; +} +} +else +{ +lean_object* x_1318; lean_object* x_1319; lean_object* x_1320; lean_object* x_1321; +lean_dec(x_1307); +lean_dec(x_1223); +x_1318 = lean_ctor_get(x_1309, 0); +lean_inc(x_1318); +x_1319 = lean_ctor_get(x_1309, 1); +lean_inc(x_1319); +if (lean_is_exclusive(x_1309)) { + lean_ctor_release(x_1309, 0); + lean_ctor_release(x_1309, 1); + x_1320 = x_1309; +} else { + lean_dec_ref(x_1309); + x_1320 = lean_box(0); +} +if (lean_is_scalar(x_1320)) { + x_1321 = lean_alloc_ctor(1, 2, 0); +} else { + x_1321 = x_1320; +} +lean_ctor_set(x_1321, 0, x_1318); +lean_ctor_set(x_1321, 1, x_1319); +return x_1321; +} +} +else +{ +lean_object* x_1322; lean_object* x_1323; lean_object* x_1324; lean_object* x_1325; +lean_dec(x_1223); +lean_dec(x_1212); +lean_dec(x_1210); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_5); +x_1322 = lean_ctor_get(x_1297, 0); +lean_inc(x_1322); +x_1323 = lean_ctor_get(x_1297, 1); +lean_inc(x_1323); +if (lean_is_exclusive(x_1297)) { + lean_ctor_release(x_1297, 0); + lean_ctor_release(x_1297, 1); + x_1324 = x_1297; +} else { + lean_dec_ref(x_1297); + x_1324 = lean_box(0); +} +if (lean_is_scalar(x_1324)) { + x_1325 = lean_alloc_ctor(1, 2, 0); +} else { + x_1325 = x_1324; +} +lean_ctor_set(x_1325, 0, x_1322); +lean_ctor_set(x_1325, 1, x_1323); +return x_1325; +} +} +else +{ +lean_object* x_1326; lean_object* x_1327; lean_object* x_1328; lean_object* x_1329; +lean_dec(x_1223); +lean_dec(x_1212); +lean_dec(x_1210); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +x_1326 = lean_ctor_get(x_1294, 0); +lean_inc(x_1326); +x_1327 = lean_ctor_get(x_1294, 1); +lean_inc(x_1327); +if (lean_is_exclusive(x_1294)) { + lean_ctor_release(x_1294, 0); + lean_ctor_release(x_1294, 1); + x_1328 = x_1294; +} else { + lean_dec_ref(x_1294); + x_1328 = lean_box(0); +} +if (lean_is_scalar(x_1328)) { + x_1329 = lean_alloc_ctor(1, 2, 0); +} else { + x_1329 = x_1328; +} +lean_ctor_set(x_1329, 0, x_1326); +lean_ctor_set(x_1329, 1, x_1327); +return x_1329; +} +} +else +{ +lean_object* x_1330; lean_object* x_1331; lean_object* x_1332; +lean_dec(x_1212); +lean_dec(x_1210); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_1); +x_1330 = lean_ctor_get(x_1290, 1); +lean_inc(x_1330); +if (lean_is_exclusive(x_1290)) { + lean_ctor_release(x_1290, 0); + lean_ctor_release(x_1290, 1); + x_1331 = x_1290; +} else { + lean_dec_ref(x_1290); + x_1331 = lean_box(0); +} +if (lean_is_scalar(x_1331)) { + x_1332 = lean_alloc_ctor(1, 2, 0); +} else { + x_1332 = x_1331; + lean_ctor_set_tag(x_1332, 1); +} +lean_ctor_set(x_1332, 0, x_1223); +lean_ctor_set(x_1332, 1, x_1330); +return x_1332; +} +} +} +} +} +} +} +else +{ +uint8_t x_1333; lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); @@ -26411,790 +24800,907 @@ lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_3); -lean_dec(x_2); -x_1460 = !lean_is_exclusive(x_1455); -if (x_1460 == 0) +lean_dec(x_1); +x_1333 = !lean_is_exclusive(x_1209); +if (x_1333 == 0) { -return x_1455; +return x_1209; } else { -lean_object* x_1461; lean_object* x_1462; lean_object* x_1463; -x_1461 = lean_ctor_get(x_1455, 0); -x_1462 = lean_ctor_get(x_1455, 1); -lean_inc(x_1462); -lean_inc(x_1461); -lean_dec(x_1455); -x_1463 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1463, 0, x_1461); -lean_ctor_set(x_1463, 1, x_1462); -return x_1463; +lean_object* x_1334; lean_object* x_1335; lean_object* x_1336; +x_1334 = lean_ctor_get(x_1209, 0); +x_1335 = lean_ctor_get(x_1209, 1); +lean_inc(x_1335); +lean_inc(x_1334); +lean_dec(x_1209); +x_1336 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1336, 0, x_1334); +lean_ctor_set(x_1336, 1, x_1335); +return x_1336; } } } -else +block_1361: { -lean_object* x_1464; lean_object* x_1465; -lean_dec(x_2); -x_1464 = lean_ctor_get(x_1452, 1); -lean_inc(x_1464); -lean_dec(x_1452); -x_1465 = lean_ctor_get(x_1453, 0); -lean_inc(x_1465); -lean_dec(x_1453); -x_1433 = x_1465; -x_1434 = x_1464; -goto block_1450; -} -} -} -block_1617: -{ -lean_object* x_1473; lean_object* x_1474; lean_object* x_1597; uint8_t x_1613; -lean_dec(x_1472); -x_1613 = l_Lean_Expr_hasExprMVar(x_2); -if (x_1613 == 0) -{ -uint8_t x_1614; -x_1614 = l_Lean_Expr_hasFVar(x_2); -if (x_1614 == 0) -{ -x_1473 = x_2; -x_1474 = x_11; -goto block_1596; -} -else -{ -lean_object* x_1615; -x_1615 = lean_box(0); -x_1597 = x_1615; -goto block_1612; -} -} -else -{ -lean_object* x_1616; -x_1616 = lean_box(0); -x_1597 = x_1616; -goto block_1612; -} -block_1596: -{ -lean_object* x_1475; size_t x_1476; size_t x_1477; lean_object* x_1478; -x_1475 = lean_array_get_size(x_3); -x_1476 = lean_usize_of_nat(x_1475); -x_1477 = 0; +lean_object* x_1339; +lean_dec(x_1338); lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); lean_inc(x_5); -x_1478 = l_Array_mapMUnsafe_map___at_Lean_Meta_CheckAssignment_checkApp___spec__1(x_1476, x_1477, x_3, x_5, x_6, x_7, x_8, x_9, x_10, x_1474); -if (lean_obj_tag(x_1478) == 0) +x_1339 = l_Lean_Meta_CheckAssignment_check(x_2, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +if (lean_obj_tag(x_1339) == 0) { -uint8_t x_1479; -lean_dec(x_1475); +lean_object* x_1340; lean_object* x_1341; lean_object* x_1342; size_t x_1343; size_t x_1344; lean_object* x_1345; +x_1340 = lean_ctor_get(x_1339, 0); +lean_inc(x_1340); +x_1341 = lean_ctor_get(x_1339, 1); +lean_inc(x_1341); +lean_dec(x_1339); +x_1342 = lean_array_get_size(x_3); +x_1343 = lean_usize_of_nat(x_1342); +lean_dec(x_1342); +x_1344 = 0; +x_1345 = l_Array_mapMUnsafe_map___at_Lean_Meta_CheckAssignment_checkApp___spec__1(x_1343, x_1344, x_3, x_5, x_6, x_7, x_8, x_9, x_10, x_1341); +if (lean_obj_tag(x_1345) == 0) +{ +uint8_t x_1346; +x_1346 = !lean_is_exclusive(x_1345); +if (x_1346 == 0) +{ +lean_object* x_1347; lean_object* x_1348; +x_1347 = lean_ctor_get(x_1345, 0); +x_1348 = l_Lean_mkAppN(x_1340, x_1347); +lean_ctor_set(x_1345, 0, x_1348); +return x_1345; +} +else +{ +lean_object* x_1349; lean_object* x_1350; lean_object* x_1351; lean_object* x_1352; +x_1349 = lean_ctor_get(x_1345, 0); +x_1350 = lean_ctor_get(x_1345, 1); +lean_inc(x_1350); +lean_inc(x_1349); +lean_dec(x_1345); +x_1351 = l_Lean_mkAppN(x_1340, x_1349); +x_1352 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1352, 0, x_1351); +lean_ctor_set(x_1352, 1, x_1350); +return x_1352; +} +} +else +{ +uint8_t x_1353; +lean_dec(x_1340); +x_1353 = !lean_is_exclusive(x_1345); +if (x_1353 == 0) +{ +return x_1345; +} +else +{ +lean_object* x_1354; lean_object* x_1355; lean_object* x_1356; +x_1354 = lean_ctor_get(x_1345, 0); +x_1355 = lean_ctor_get(x_1345, 1); +lean_inc(x_1355); +lean_inc(x_1354); +lean_dec(x_1345); +x_1356 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1356, 0, x_1354); +lean_ctor_set(x_1356, 1, x_1355); +return x_1356; +} +} +} +else +{ +uint8_t x_1357; lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); +lean_dec(x_3); +x_1357 = !lean_is_exclusive(x_1339); +if (x_1357 == 0) +{ +return x_1339; +} +else +{ +lean_object* x_1358; lean_object* x_1359; lean_object* x_1360; +x_1358 = lean_ctor_get(x_1339, 0); +x_1359 = lean_ctor_get(x_1339, 1); +lean_inc(x_1359); +lean_inc(x_1358); +lean_dec(x_1339); +x_1360 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1360, 0, x_1358); +lean_ctor_set(x_1360, 1, x_1359); +return x_1360; +} +} +} +} +case 9: +{ +lean_object* x_1378; lean_object* x_1508; uint8_t x_1532; +lean_dec(x_4); +x_1532 = l_Lean_Expr_isMVar(x_2); +if (x_1532 == 0) +{ +lean_object* x_1533; lean_dec(x_1); -x_1479 = !lean_is_exclusive(x_1478); -if (x_1479 == 0) -{ -lean_object* x_1480; lean_object* x_1481; -x_1480 = lean_ctor_get(x_1478, 0); -x_1481 = l_Lean_mkAppN(x_1473, x_1480); -lean_ctor_set(x_1478, 0, x_1481); -return x_1478; +x_1533 = lean_box(0); +x_1508 = x_1533; +goto block_1531; } else { -lean_object* x_1482; lean_object* x_1483; lean_object* x_1484; lean_object* x_1485; -x_1482 = lean_ctor_get(x_1478, 0); -x_1483 = lean_ctor_get(x_1478, 1); -lean_inc(x_1483); -lean_inc(x_1482); -lean_dec(x_1478); -x_1484 = l_Lean_mkAppN(x_1473, x_1482); -x_1485 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1485, 0, x_1484); -lean_ctor_set(x_1485, 1, x_1483); -return x_1485; -} -} -else -{ -lean_object* x_1486; -x_1486 = lean_ctor_get(x_1478, 0); -lean_inc(x_1486); -if (lean_obj_tag(x_1486) == 0) -{ -uint8_t x_1487; -lean_dec(x_1475); -lean_dec(x_1473); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_1); -x_1487 = !lean_is_exclusive(x_1478); -if (x_1487 == 0) -{ -lean_object* x_1488; -x_1488 = lean_ctor_get(x_1478, 0); -lean_dec(x_1488); -return x_1478; -} -else -{ -lean_object* x_1489; lean_object* x_1490; -x_1489 = lean_ctor_get(x_1478, 1); -lean_inc(x_1489); -lean_dec(x_1478); -x_1490 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1490, 0, x_1486); -lean_ctor_set(x_1490, 1, x_1489); -return x_1490; -} -} -else -{ -uint8_t x_1491; -x_1491 = !lean_is_exclusive(x_1478); -if (x_1491 == 0) -{ -lean_object* x_1492; lean_object* x_1493; lean_object* x_1494; lean_object* x_1495; uint8_t x_1496; -x_1492 = lean_ctor_get(x_1478, 1); -x_1493 = lean_ctor_get(x_1478, 0); -lean_dec(x_1493); -x_1494 = lean_ctor_get(x_1486, 0); -lean_inc(x_1494); -x_1495 = l_Lean_Meta_CheckAssignment_throwOutOfScopeFVar___rarg___closed__1; -x_1496 = lean_nat_dec_eq(x_1495, x_1494); -lean_dec(x_1494); -if (x_1496 == 0) -{ -lean_dec(x_1475); -lean_dec(x_1473); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_1); -return x_1478; -} -else -{ -uint8_t x_1497; -x_1497 = l_Lean_Expr_isMVar(x_1473); -if (x_1497 == 0) -{ -lean_dec(x_1475); -lean_dec(x_1473); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_1); -return x_1478; -} -else -{ -lean_object* x_1498; lean_object* x_1499; lean_object* x_1500; uint8_t x_1501; -lean_free_object(x_1478); -lean_inc(x_1473); -x_1498 = l_Lean_Expr_mvarId_x21(x_1473); -x_1499 = l_Lean_MVarId_isDelayedAssigned___at_Lean_Meta_CheckAssignment_checkApp___spec__2(x_1498, x_5, x_6, x_7, x_8, x_9, x_10, x_1492); -x_1500 = lean_ctor_get(x_1499, 0); -lean_inc(x_1500); -x_1501 = lean_unbox(x_1500); -lean_dec(x_1500); -if (x_1501 == 0) -{ -lean_object* x_1502; lean_object* x_1503; -x_1502 = lean_ctor_get(x_1499, 1); -lean_inc(x_1502); -lean_dec(x_1499); -lean_inc(x_10); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -x_1503 = lean_infer_type(x_1, x_7, x_8, x_9, x_10, x_1502); -if (lean_obj_tag(x_1503) == 0) -{ -lean_object* x_1504; lean_object* x_1505; lean_object* x_1506; -x_1504 = lean_ctor_get(x_1503, 0); -lean_inc(x_1504); -x_1505 = lean_ctor_get(x_1503, 1); -lean_inc(x_1505); -lean_dec(x_1503); -lean_inc(x_10); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_5); -x_1506 = l_Lean_Meta_CheckAssignment_check(x_1504, x_5, x_6, x_7, x_8, x_9, x_10, x_1505); -if (lean_obj_tag(x_1506) == 0) -{ -lean_object* x_1507; lean_object* x_1508; lean_object* x_1509; lean_object* x_1510; lean_object* x_1511; uint8_t x_1512; lean_object* x_1513; lean_object* x_1514; lean_object* x_1515; lean_object* x_1516; lean_object* x_1517; lean_object* x_1518; -x_1507 = lean_ctor_get(x_1506, 0); -lean_inc(x_1507); -x_1508 = lean_ctor_get(x_1506, 1); -lean_inc(x_1508); -lean_dec(x_1506); -x_1509 = lean_ctor_get(x_5, 1); -lean_inc(x_1509); -lean_dec(x_5); -x_1510 = lean_ctor_get(x_1509, 1); -lean_inc(x_1510); -x_1511 = lean_ctor_get(x_1509, 4); -lean_inc(x_1511); -lean_dec(x_1509); -x_1512 = 0; -x_1513 = lean_box(0); -x_1514 = lean_unsigned_to_nat(0u); -x_1515 = l_Lean_Meta_mkFreshExprMVarAt(x_1510, x_1511, x_1507, x_1512, x_1513, x_1514, x_7, x_8, x_9, x_10, x_1508); -x_1516 = lean_ctor_get(x_1515, 0); -lean_inc(x_1516); -x_1517 = lean_ctor_get(x_1515, 1); -lean_inc(x_1517); -lean_dec(x_1515); -lean_inc(x_1516); -x_1518 = l_Lean_Meta_CheckAssignment_assignToConstFun(x_1473, x_1475, x_1516, x_7, x_8, x_9, x_10, x_1517); -if (lean_obj_tag(x_1518) == 0) -{ -lean_object* x_1519; uint8_t x_1520; -x_1519 = lean_ctor_get(x_1518, 0); -lean_inc(x_1519); -x_1520 = lean_unbox(x_1519); -lean_dec(x_1519); -if (x_1520 == 0) -{ -uint8_t x_1521; -lean_dec(x_1516); -x_1521 = !lean_is_exclusive(x_1518); -if (x_1521 == 0) -{ -lean_object* x_1522; -x_1522 = lean_ctor_get(x_1518, 0); -lean_dec(x_1522); -lean_ctor_set_tag(x_1518, 1); -lean_ctor_set(x_1518, 0, x_1486); -return x_1518; -} -else -{ -lean_object* x_1523; lean_object* x_1524; -x_1523 = lean_ctor_get(x_1518, 1); -lean_inc(x_1523); -lean_dec(x_1518); -x_1524 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1524, 0, x_1486); -lean_ctor_set(x_1524, 1, x_1523); -return x_1524; -} -} -else -{ -uint8_t x_1525; -lean_dec(x_1486); -x_1525 = !lean_is_exclusive(x_1518); -if (x_1525 == 0) -{ -lean_object* x_1526; -x_1526 = lean_ctor_get(x_1518, 0); -lean_dec(x_1526); -lean_ctor_set(x_1518, 0, x_1516); -return x_1518; -} -else -{ -lean_object* x_1527; lean_object* x_1528; -x_1527 = lean_ctor_get(x_1518, 1); -lean_inc(x_1527); -lean_dec(x_1518); -x_1528 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1528, 0, x_1516); -lean_ctor_set(x_1528, 1, x_1527); -return x_1528; -} -} -} -else -{ -uint8_t x_1529; -lean_dec(x_1516); -lean_dec(x_1486); -x_1529 = !lean_is_exclusive(x_1518); -if (x_1529 == 0) -{ -return x_1518; -} -else -{ -lean_object* x_1530; lean_object* x_1531; lean_object* x_1532; -x_1530 = lean_ctor_get(x_1518, 0); -x_1531 = lean_ctor_get(x_1518, 1); -lean_inc(x_1531); -lean_inc(x_1530); -lean_dec(x_1518); -x_1532 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1532, 0, x_1530); -lean_ctor_set(x_1532, 1, x_1531); -return x_1532; -} -} -} -else -{ -uint8_t x_1533; -lean_dec(x_1486); -lean_dec(x_1475); -lean_dec(x_1473); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_5); -x_1533 = !lean_is_exclusive(x_1506); -if (x_1533 == 0) -{ -return x_1506; -} -else -{ -lean_object* x_1534; lean_object* x_1535; lean_object* x_1536; -x_1534 = lean_ctor_get(x_1506, 0); -x_1535 = lean_ctor_get(x_1506, 1); -lean_inc(x_1535); +lean_object* x_1534; uint8_t x_1535; +x_1534 = lean_ctor_get(x_7, 0); lean_inc(x_1534); -lean_dec(x_1506); -x_1536 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1536, 0, x_1534); -lean_ctor_set(x_1536, 1, x_1535); -return x_1536; -} -} +x_1535 = lean_ctor_get_uint8(x_1534, 1); +lean_dec(x_1534); +if (x_1535 == 0) +{ +lean_object* x_1536; +lean_dec(x_1); +x_1536 = lean_box(0); +x_1508 = x_1536; +goto block_1531; } else { -uint8_t x_1537; -lean_dec(x_1486); -lean_dec(x_1475); -lean_dec(x_1473); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -x_1537 = !lean_is_exclusive(x_1503); -if (x_1537 == 0) +lean_object* x_1537; lean_object* x_1538; uint8_t x_1539; +x_1537 = lean_array_get_size(x_3); +x_1538 = lean_unsigned_to_nat(0u); +x_1539 = lean_nat_dec_lt(x_1538, x_1537); +if (x_1539 == 0) { -return x_1503; -} -else -{ -lean_object* x_1538; lean_object* x_1539; lean_object* x_1540; -x_1538 = lean_ctor_get(x_1503, 0); -x_1539 = lean_ctor_get(x_1503, 1); -lean_inc(x_1539); -lean_inc(x_1538); -lean_dec(x_1503); -x_1540 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1540, 0, x_1538); -lean_ctor_set(x_1540, 1, x_1539); -return x_1540; -} -} +lean_object* x_1540; +lean_dec(x_1537); +x_1540 = lean_box(0); +x_1378 = x_1540; +goto block_1507; } else { uint8_t x_1541; -lean_dec(x_1475); -lean_dec(x_1473); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_1); -x_1541 = !lean_is_exclusive(x_1499); +x_1541 = lean_nat_dec_le(x_1537, x_1537); if (x_1541 == 0) { lean_object* x_1542; -x_1542 = lean_ctor_get(x_1499, 0); -lean_dec(x_1542); -lean_ctor_set_tag(x_1499, 1); -lean_ctor_set(x_1499, 0, x_1486); -return x_1499; +lean_dec(x_1537); +x_1542 = lean_box(0); +x_1378 = x_1542; +goto block_1507; } else { -lean_object* x_1543; lean_object* x_1544; -x_1543 = lean_ctor_get(x_1499, 1); -lean_inc(x_1543); -lean_dec(x_1499); -x_1544 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1544, 0, x_1486); -lean_ctor_set(x_1544, 1, x_1543); -return x_1544; -} -} -} -} +size_t x_1543; size_t x_1544; uint8_t x_1545; +x_1543 = 0; +x_1544 = lean_usize_of_nat(x_1537); +lean_dec(x_1537); +x_1545 = l_Array_anyMUnsafe_any___at_Lean_Meta_CheckAssignment_checkApp___spec__3(x_3, x_1543, x_1544); +if (x_1545 == 0) +{ +lean_object* x_1546; +x_1546 = lean_box(0); +x_1378 = x_1546; +goto block_1507; } else { -lean_object* x_1545; lean_object* x_1546; lean_object* x_1547; uint8_t x_1548; -x_1545 = lean_ctor_get(x_1478, 1); -lean_inc(x_1545); -lean_dec(x_1478); -x_1546 = lean_ctor_get(x_1486, 0); -lean_inc(x_1546); -x_1547 = l_Lean_Meta_CheckAssignment_throwOutOfScopeFVar___rarg___closed__1; -x_1548 = lean_nat_dec_eq(x_1547, x_1546); -lean_dec(x_1546); -if (x_1548 == 0) -{ -lean_object* x_1549; -lean_dec(x_1475); -lean_dec(x_1473); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); +lean_object* x_1547; lean_dec(x_1); -x_1549 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1549, 0, x_1486); -lean_ctor_set(x_1549, 1, x_1545); -return x_1549; +x_1547 = lean_box(0); +x_1508 = x_1547; +goto block_1531; } -else +} +} +} +} +block_1507: { -uint8_t x_1550; -x_1550 = l_Lean_Expr_isMVar(x_1473); -if (x_1550 == 0) -{ -lean_object* x_1551; -lean_dec(x_1475); -lean_dec(x_1473); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_1); -x_1551 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1551, 0, x_1486); -lean_ctor_set(x_1551, 1, x_1545); -return x_1551; -} -else -{ -lean_object* x_1552; lean_object* x_1553; lean_object* x_1554; uint8_t x_1555; -lean_inc(x_1473); -x_1552 = l_Lean_Expr_mvarId_x21(x_1473); -x_1553 = l_Lean_MVarId_isDelayedAssigned___at_Lean_Meta_CheckAssignment_checkApp___spec__2(x_1552, x_5, x_6, x_7, x_8, x_9, x_10, x_1545); -x_1554 = lean_ctor_get(x_1553, 0); -lean_inc(x_1554); -x_1555 = lean_unbox(x_1554); -lean_dec(x_1554); -if (x_1555 == 0) -{ -lean_object* x_1556; lean_object* x_1557; -x_1556 = lean_ctor_get(x_1553, 1); -lean_inc(x_1556); -lean_dec(x_1553); -lean_inc(x_10); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -x_1557 = lean_infer_type(x_1, x_7, x_8, x_9, x_10, x_1556); -if (lean_obj_tag(x_1557) == 0) -{ -lean_object* x_1558; lean_object* x_1559; lean_object* x_1560; -x_1558 = lean_ctor_get(x_1557, 0); -lean_inc(x_1558); -x_1559 = lean_ctor_get(x_1557, 1); -lean_inc(x_1559); -lean_dec(x_1557); -lean_inc(x_10); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_5); -x_1560 = l_Lean_Meta_CheckAssignment_check(x_1558, x_5, x_6, x_7, x_8, x_9, x_10, x_1559); -if (lean_obj_tag(x_1560) == 0) -{ -lean_object* x_1561; lean_object* x_1562; lean_object* x_1563; lean_object* x_1564; lean_object* x_1565; uint8_t x_1566; lean_object* x_1567; lean_object* x_1568; lean_object* x_1569; lean_object* x_1570; lean_object* x_1571; lean_object* x_1572; -x_1561 = lean_ctor_get(x_1560, 0); -lean_inc(x_1561); -x_1562 = lean_ctor_get(x_1560, 1); -lean_inc(x_1562); -lean_dec(x_1560); -x_1563 = lean_ctor_get(x_5, 1); -lean_inc(x_1563); -lean_dec(x_5); -x_1564 = lean_ctor_get(x_1563, 1); -lean_inc(x_1564); -x_1565 = lean_ctor_get(x_1563, 4); -lean_inc(x_1565); -lean_dec(x_1563); -x_1566 = 0; -x_1567 = lean_box(0); -x_1568 = lean_unsigned_to_nat(0u); -x_1569 = l_Lean_Meta_mkFreshExprMVarAt(x_1564, x_1565, x_1561, x_1566, x_1567, x_1568, x_7, x_8, x_9, x_10, x_1562); -x_1570 = lean_ctor_get(x_1569, 0); -lean_inc(x_1570); -x_1571 = lean_ctor_get(x_1569, 1); -lean_inc(x_1571); -lean_dec(x_1569); -lean_inc(x_1570); -x_1572 = l_Lean_Meta_CheckAssignment_assignToConstFun(x_1473, x_1475, x_1570, x_7, x_8, x_9, x_10, x_1571); -if (lean_obj_tag(x_1572) == 0) -{ -lean_object* x_1573; uint8_t x_1574; -x_1573 = lean_ctor_get(x_1572, 0); -lean_inc(x_1573); -x_1574 = lean_unbox(x_1573); -lean_dec(x_1573); -if (x_1574 == 0) -{ -lean_object* x_1575; lean_object* x_1576; lean_object* x_1577; -lean_dec(x_1570); -x_1575 = lean_ctor_get(x_1572, 1); -lean_inc(x_1575); -if (lean_is_exclusive(x_1572)) { - lean_ctor_release(x_1572, 0); - lean_ctor_release(x_1572, 1); - x_1576 = x_1572; -} else { - lean_dec_ref(x_1572); - x_1576 = lean_box(0); -} -if (lean_is_scalar(x_1576)) { - x_1577 = lean_alloc_ctor(1, 2, 0); -} else { - x_1577 = x_1576; - lean_ctor_set_tag(x_1577, 1); -} -lean_ctor_set(x_1577, 0, x_1486); -lean_ctor_set(x_1577, 1, x_1575); -return x_1577; -} -else -{ -lean_object* x_1578; lean_object* x_1579; lean_object* x_1580; -lean_dec(x_1486); -x_1578 = lean_ctor_get(x_1572, 1); -lean_inc(x_1578); -if (lean_is_exclusive(x_1572)) { - lean_ctor_release(x_1572, 0); - lean_ctor_release(x_1572, 1); - x_1579 = x_1572; -} else { - lean_dec_ref(x_1572); - x_1579 = lean_box(0); -} -if (lean_is_scalar(x_1579)) { - x_1580 = lean_alloc_ctor(0, 2, 0); -} else { - x_1580 = x_1579; -} -lean_ctor_set(x_1580, 0, x_1570); -lean_ctor_set(x_1580, 1, x_1578); -return x_1580; -} -} -else -{ -lean_object* x_1581; lean_object* x_1582; lean_object* x_1583; lean_object* x_1584; -lean_dec(x_1570); -lean_dec(x_1486); -x_1581 = lean_ctor_get(x_1572, 0); -lean_inc(x_1581); -x_1582 = lean_ctor_get(x_1572, 1); -lean_inc(x_1582); -if (lean_is_exclusive(x_1572)) { - lean_ctor_release(x_1572, 0); - lean_ctor_release(x_1572, 1); - x_1583 = x_1572; -} else { - lean_dec_ref(x_1572); - x_1583 = lean_box(0); -} -if (lean_is_scalar(x_1583)) { - x_1584 = lean_alloc_ctor(1, 2, 0); -} else { - x_1584 = x_1583; -} -lean_ctor_set(x_1584, 0, x_1581); -lean_ctor_set(x_1584, 1, x_1582); -return x_1584; -} -} -else -{ -lean_object* x_1585; lean_object* x_1586; lean_object* x_1587; lean_object* x_1588; -lean_dec(x_1486); -lean_dec(x_1475); -lean_dec(x_1473); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_5); -x_1585 = lean_ctor_get(x_1560, 0); -lean_inc(x_1585); -x_1586 = lean_ctor_get(x_1560, 1); -lean_inc(x_1586); -if (lean_is_exclusive(x_1560)) { - lean_ctor_release(x_1560, 0); - lean_ctor_release(x_1560, 1); - x_1587 = x_1560; -} else { - lean_dec_ref(x_1560); - x_1587 = lean_box(0); -} -if (lean_is_scalar(x_1587)) { - x_1588 = lean_alloc_ctor(1, 2, 0); -} else { - x_1588 = x_1587; -} -lean_ctor_set(x_1588, 0, x_1585); -lean_ctor_set(x_1588, 1, x_1586); -return x_1588; -} -} -else -{ -lean_object* x_1589; lean_object* x_1590; lean_object* x_1591; lean_object* x_1592; -lean_dec(x_1486); -lean_dec(x_1475); -lean_dec(x_1473); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -x_1589 = lean_ctor_get(x_1557, 0); -lean_inc(x_1589); -x_1590 = lean_ctor_get(x_1557, 1); -lean_inc(x_1590); -if (lean_is_exclusive(x_1557)) { - lean_ctor_release(x_1557, 0); - lean_ctor_release(x_1557, 1); - x_1591 = x_1557; -} else { - lean_dec_ref(x_1557); - x_1591 = lean_box(0); -} -if (lean_is_scalar(x_1591)) { - x_1592 = lean_alloc_ctor(1, 2, 0); -} else { - x_1592 = x_1591; -} -lean_ctor_set(x_1592, 0, x_1589); -lean_ctor_set(x_1592, 1, x_1590); -return x_1592; -} -} -else -{ -lean_object* x_1593; lean_object* x_1594; lean_object* x_1595; -lean_dec(x_1475); -lean_dec(x_1473); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_1); -x_1593 = lean_ctor_get(x_1553, 1); -lean_inc(x_1593); -if (lean_is_exclusive(x_1553)) { - lean_ctor_release(x_1553, 0); - lean_ctor_release(x_1553, 1); - x_1594 = x_1553; -} else { - lean_dec_ref(x_1553); - x_1594 = lean_box(0); -} -if (lean_is_scalar(x_1594)) { - x_1595 = lean_alloc_ctor(1, 2, 0); -} else { - x_1595 = x_1594; - lean_ctor_set_tag(x_1595, 1); -} -lean_ctor_set(x_1595, 0, x_1486); -lean_ctor_set(x_1595, 1, x_1593); -return x_1595; -} -} -} -} -} -} -} -block_1612: -{ -lean_object* x_1598; lean_object* x_1599; -lean_dec(x_1597); -lean_inc(x_2); -x_1598 = l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_CheckAssignment_findCached_x3f(x_2, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -x_1599 = lean_ctor_get(x_1598, 0); -lean_inc(x_1599); -if (lean_obj_tag(x_1599) == 0) -{ -lean_object* x_1600; lean_object* x_1601; -x_1600 = lean_ctor_get(x_1598, 1); -lean_inc(x_1600); -lean_dec(x_1598); +lean_object* x_1379; +lean_dec(x_1378); lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); lean_inc(x_5); -lean_inc(x_2); -x_1601 = l_Lean_Meta_CheckAssignment_checkMVar(x_2, x_5, x_6, x_7, x_8, x_9, x_10, x_1600); -if (lean_obj_tag(x_1601) == 0) +x_1379 = l_Lean_Meta_CheckAssignment_check(x_2, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +if (lean_obj_tag(x_1379) == 0) { -lean_object* x_1602; lean_object* x_1603; lean_object* x_1604; lean_object* x_1605; -x_1602 = lean_ctor_get(x_1601, 0); -lean_inc(x_1602); -x_1603 = lean_ctor_get(x_1601, 1); -lean_inc(x_1603); -lean_dec(x_1601); -lean_inc(x_1602); -x_1604 = l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_CheckAssignment_cache(x_2, x_1602, x_5, x_6, x_7, x_8, x_9, x_10, x_1603); -x_1605 = lean_ctor_get(x_1604, 1); -lean_inc(x_1605); -lean_dec(x_1604); -x_1473 = x_1602; -x_1474 = x_1605; -goto block_1596; +lean_object* x_1380; lean_object* x_1381; lean_object* x_1382; size_t x_1383; size_t x_1384; lean_object* x_1385; +x_1380 = lean_ctor_get(x_1379, 0); +lean_inc(x_1380); +x_1381 = lean_ctor_get(x_1379, 1); +lean_inc(x_1381); +lean_dec(x_1379); +x_1382 = lean_array_get_size(x_3); +x_1383 = lean_usize_of_nat(x_1382); +x_1384 = 0; +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +x_1385 = l_Array_mapMUnsafe_map___at_Lean_Meta_CheckAssignment_checkApp___spec__1(x_1383, x_1384, x_3, x_5, x_6, x_7, x_8, x_9, x_10, x_1381); +if (lean_obj_tag(x_1385) == 0) +{ +uint8_t x_1386; +lean_dec(x_1382); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_1); +x_1386 = !lean_is_exclusive(x_1385); +if (x_1386 == 0) +{ +lean_object* x_1387; lean_object* x_1388; +x_1387 = lean_ctor_get(x_1385, 0); +x_1388 = l_Lean_mkAppN(x_1380, x_1387); +lean_ctor_set(x_1385, 0, x_1388); +return x_1385; } else { -uint8_t x_1606; +lean_object* x_1389; lean_object* x_1390; lean_object* x_1391; lean_object* x_1392; +x_1389 = lean_ctor_get(x_1385, 0); +x_1390 = lean_ctor_get(x_1385, 1); +lean_inc(x_1390); +lean_inc(x_1389); +lean_dec(x_1385); +x_1391 = l_Lean_mkAppN(x_1380, x_1389); +x_1392 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1392, 0, x_1391); +lean_ctor_set(x_1392, 1, x_1390); +return x_1392; +} +} +else +{ +lean_object* x_1393; +x_1393 = lean_ctor_get(x_1385, 0); +lean_inc(x_1393); +if (lean_obj_tag(x_1393) == 0) +{ +uint8_t x_1394; +lean_dec(x_1382); +lean_dec(x_1380); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_1); +x_1394 = !lean_is_exclusive(x_1385); +if (x_1394 == 0) +{ +lean_object* x_1395; +x_1395 = lean_ctor_get(x_1385, 0); +lean_dec(x_1395); +return x_1385; +} +else +{ +lean_object* x_1396; lean_object* x_1397; +x_1396 = lean_ctor_get(x_1385, 1); +lean_inc(x_1396); +lean_dec(x_1385); +x_1397 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1397, 0, x_1393); +lean_ctor_set(x_1397, 1, x_1396); +return x_1397; +} +} +else +{ +uint8_t x_1398; +x_1398 = !lean_is_exclusive(x_1385); +if (x_1398 == 0) +{ +lean_object* x_1399; lean_object* x_1400; lean_object* x_1401; lean_object* x_1402; uint8_t x_1403; +x_1399 = lean_ctor_get(x_1385, 1); +x_1400 = lean_ctor_get(x_1385, 0); +lean_dec(x_1400); +x_1401 = lean_ctor_get(x_1393, 0); +lean_inc(x_1401); +x_1402 = l_Lean_Meta_CheckAssignment_throwOutOfScopeFVar___rarg___closed__1; +x_1403 = lean_nat_dec_eq(x_1402, x_1401); +lean_dec(x_1401); +if (x_1403 == 0) +{ +lean_dec(x_1382); +lean_dec(x_1380); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_1); +return x_1385; +} +else +{ +uint8_t x_1404; +x_1404 = l_Lean_Expr_isMVar(x_1380); +if (x_1404 == 0) +{ +lean_dec(x_1382); +lean_dec(x_1380); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_1); +return x_1385; +} +else +{ +lean_object* x_1405; lean_object* x_1406; lean_object* x_1407; uint8_t x_1408; +lean_free_object(x_1385); +lean_inc(x_1380); +x_1405 = l_Lean_Expr_mvarId_x21(x_1380); +x_1406 = l_Lean_MVarId_isDelayedAssigned___at_Lean_Meta_CheckAssignment_checkApp___spec__2(x_1405, x_5, x_6, x_7, x_8, x_9, x_10, x_1399); +x_1407 = lean_ctor_get(x_1406, 0); +lean_inc(x_1407); +x_1408 = lean_unbox(x_1407); +lean_dec(x_1407); +if (x_1408 == 0) +{ +lean_object* x_1409; lean_object* x_1410; +x_1409 = lean_ctor_get(x_1406, 1); +lean_inc(x_1409); +lean_dec(x_1406); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +x_1410 = lean_infer_type(x_1, x_7, x_8, x_9, x_10, x_1409); +if (lean_obj_tag(x_1410) == 0) +{ +lean_object* x_1411; lean_object* x_1412; lean_object* x_1413; +x_1411 = lean_ctor_get(x_1410, 0); +lean_inc(x_1411); +x_1412 = lean_ctor_get(x_1410, 1); +lean_inc(x_1412); +lean_dec(x_1410); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_5); +x_1413 = l_Lean_Meta_CheckAssignment_check(x_1411, x_5, x_6, x_7, x_8, x_9, x_10, x_1412); +if (lean_obj_tag(x_1413) == 0) +{ +lean_object* x_1414; lean_object* x_1415; lean_object* x_1416; lean_object* x_1417; lean_object* x_1418; uint8_t x_1419; lean_object* x_1420; lean_object* x_1421; lean_object* x_1422; lean_object* x_1423; lean_object* x_1424; lean_object* x_1425; +x_1414 = lean_ctor_get(x_1413, 0); +lean_inc(x_1414); +x_1415 = lean_ctor_get(x_1413, 1); +lean_inc(x_1415); +lean_dec(x_1413); +x_1416 = lean_ctor_get(x_5, 1); +lean_inc(x_1416); +lean_dec(x_5); +x_1417 = lean_ctor_get(x_1416, 1); +lean_inc(x_1417); +x_1418 = lean_ctor_get(x_1416, 4); +lean_inc(x_1418); +lean_dec(x_1416); +x_1419 = 0; +x_1420 = lean_box(0); +x_1421 = lean_unsigned_to_nat(0u); +x_1422 = l_Lean_Meta_mkFreshExprMVarAt(x_1417, x_1418, x_1414, x_1419, x_1420, x_1421, x_7, x_8, x_9, x_10, x_1415); +x_1423 = lean_ctor_get(x_1422, 0); +lean_inc(x_1423); +x_1424 = lean_ctor_get(x_1422, 1); +lean_inc(x_1424); +lean_dec(x_1422); +lean_inc(x_1423); +x_1425 = l_Lean_Meta_CheckAssignment_assignToConstFun(x_1380, x_1382, x_1423, x_7, x_8, x_9, x_10, x_1424); +if (lean_obj_tag(x_1425) == 0) +{ +lean_object* x_1426; uint8_t x_1427; +x_1426 = lean_ctor_get(x_1425, 0); +lean_inc(x_1426); +x_1427 = lean_unbox(x_1426); +lean_dec(x_1426); +if (x_1427 == 0) +{ +uint8_t x_1428; +lean_dec(x_1423); +x_1428 = !lean_is_exclusive(x_1425); +if (x_1428 == 0) +{ +lean_object* x_1429; +x_1429 = lean_ctor_get(x_1425, 0); +lean_dec(x_1429); +lean_ctor_set_tag(x_1425, 1); +lean_ctor_set(x_1425, 0, x_1393); +return x_1425; +} +else +{ +lean_object* x_1430; lean_object* x_1431; +x_1430 = lean_ctor_get(x_1425, 1); +lean_inc(x_1430); +lean_dec(x_1425); +x_1431 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1431, 0, x_1393); +lean_ctor_set(x_1431, 1, x_1430); +return x_1431; +} +} +else +{ +uint8_t x_1432; +lean_dec(x_1393); +x_1432 = !lean_is_exclusive(x_1425); +if (x_1432 == 0) +{ +lean_object* x_1433; +x_1433 = lean_ctor_get(x_1425, 0); +lean_dec(x_1433); +lean_ctor_set(x_1425, 0, x_1423); +return x_1425; +} +else +{ +lean_object* x_1434; lean_object* x_1435; +x_1434 = lean_ctor_get(x_1425, 1); +lean_inc(x_1434); +lean_dec(x_1425); +x_1435 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1435, 0, x_1423); +lean_ctor_set(x_1435, 1, x_1434); +return x_1435; +} +} +} +else +{ +uint8_t x_1436; +lean_dec(x_1423); +lean_dec(x_1393); +x_1436 = !lean_is_exclusive(x_1425); +if (x_1436 == 0) +{ +return x_1425; +} +else +{ +lean_object* x_1437; lean_object* x_1438; lean_object* x_1439; +x_1437 = lean_ctor_get(x_1425, 0); +x_1438 = lean_ctor_get(x_1425, 1); +lean_inc(x_1438); +lean_inc(x_1437); +lean_dec(x_1425); +x_1439 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1439, 0, x_1437); +lean_ctor_set(x_1439, 1, x_1438); +return x_1439; +} +} +} +else +{ +uint8_t x_1440; +lean_dec(x_1393); +lean_dec(x_1382); +lean_dec(x_1380); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_5); +x_1440 = !lean_is_exclusive(x_1413); +if (x_1440 == 0) +{ +return x_1413; +} +else +{ +lean_object* x_1441; lean_object* x_1442; lean_object* x_1443; +x_1441 = lean_ctor_get(x_1413, 0); +x_1442 = lean_ctor_get(x_1413, 1); +lean_inc(x_1442); +lean_inc(x_1441); +lean_dec(x_1413); +x_1443 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1443, 0, x_1441); +lean_ctor_set(x_1443, 1, x_1442); +return x_1443; +} +} +} +else +{ +uint8_t x_1444; +lean_dec(x_1393); +lean_dec(x_1382); +lean_dec(x_1380); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +x_1444 = !lean_is_exclusive(x_1410); +if (x_1444 == 0) +{ +return x_1410; +} +else +{ +lean_object* x_1445; lean_object* x_1446; lean_object* x_1447; +x_1445 = lean_ctor_get(x_1410, 0); +x_1446 = lean_ctor_get(x_1410, 1); +lean_inc(x_1446); +lean_inc(x_1445); +lean_dec(x_1410); +x_1447 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1447, 0, x_1445); +lean_ctor_set(x_1447, 1, x_1446); +return x_1447; +} +} +} +else +{ +uint8_t x_1448; +lean_dec(x_1382); +lean_dec(x_1380); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_1); +x_1448 = !lean_is_exclusive(x_1406); +if (x_1448 == 0) +{ +lean_object* x_1449; +x_1449 = lean_ctor_get(x_1406, 0); +lean_dec(x_1449); +lean_ctor_set_tag(x_1406, 1); +lean_ctor_set(x_1406, 0, x_1393); +return x_1406; +} +else +{ +lean_object* x_1450; lean_object* x_1451; +x_1450 = lean_ctor_get(x_1406, 1); +lean_inc(x_1450); +lean_dec(x_1406); +x_1451 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1451, 0, x_1393); +lean_ctor_set(x_1451, 1, x_1450); +return x_1451; +} +} +} +} +} +else +{ +lean_object* x_1452; lean_object* x_1453; lean_object* x_1454; uint8_t x_1455; +x_1452 = lean_ctor_get(x_1385, 1); +lean_inc(x_1452); +lean_dec(x_1385); +x_1453 = lean_ctor_get(x_1393, 0); +lean_inc(x_1453); +x_1454 = l_Lean_Meta_CheckAssignment_throwOutOfScopeFVar___rarg___closed__1; +x_1455 = lean_nat_dec_eq(x_1454, x_1453); +lean_dec(x_1453); +if (x_1455 == 0) +{ +lean_object* x_1456; +lean_dec(x_1382); +lean_dec(x_1380); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_1); +x_1456 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1456, 0, x_1393); +lean_ctor_set(x_1456, 1, x_1452); +return x_1456; +} +else +{ +uint8_t x_1457; +x_1457 = l_Lean_Expr_isMVar(x_1380); +if (x_1457 == 0) +{ +lean_object* x_1458; +lean_dec(x_1382); +lean_dec(x_1380); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_1); +x_1458 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1458, 0, x_1393); +lean_ctor_set(x_1458, 1, x_1452); +return x_1458; +} +else +{ +lean_object* x_1459; lean_object* x_1460; lean_object* x_1461; uint8_t x_1462; +lean_inc(x_1380); +x_1459 = l_Lean_Expr_mvarId_x21(x_1380); +x_1460 = l_Lean_MVarId_isDelayedAssigned___at_Lean_Meta_CheckAssignment_checkApp___spec__2(x_1459, x_5, x_6, x_7, x_8, x_9, x_10, x_1452); +x_1461 = lean_ctor_get(x_1460, 0); +lean_inc(x_1461); +x_1462 = lean_unbox(x_1461); +lean_dec(x_1461); +if (x_1462 == 0) +{ +lean_object* x_1463; lean_object* x_1464; +x_1463 = lean_ctor_get(x_1460, 1); +lean_inc(x_1463); +lean_dec(x_1460); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +x_1464 = lean_infer_type(x_1, x_7, x_8, x_9, x_10, x_1463); +if (lean_obj_tag(x_1464) == 0) +{ +lean_object* x_1465; lean_object* x_1466; lean_object* x_1467; +x_1465 = lean_ctor_get(x_1464, 0); +lean_inc(x_1465); +x_1466 = lean_ctor_get(x_1464, 1); +lean_inc(x_1466); +lean_dec(x_1464); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_5); +x_1467 = l_Lean_Meta_CheckAssignment_check(x_1465, x_5, x_6, x_7, x_8, x_9, x_10, x_1466); +if (lean_obj_tag(x_1467) == 0) +{ +lean_object* x_1468; lean_object* x_1469; lean_object* x_1470; lean_object* x_1471; lean_object* x_1472; uint8_t x_1473; lean_object* x_1474; lean_object* x_1475; lean_object* x_1476; lean_object* x_1477; lean_object* x_1478; lean_object* x_1479; +x_1468 = lean_ctor_get(x_1467, 0); +lean_inc(x_1468); +x_1469 = lean_ctor_get(x_1467, 1); +lean_inc(x_1469); +lean_dec(x_1467); +x_1470 = lean_ctor_get(x_5, 1); +lean_inc(x_1470); +lean_dec(x_5); +x_1471 = lean_ctor_get(x_1470, 1); +lean_inc(x_1471); +x_1472 = lean_ctor_get(x_1470, 4); +lean_inc(x_1472); +lean_dec(x_1470); +x_1473 = 0; +x_1474 = lean_box(0); +x_1475 = lean_unsigned_to_nat(0u); +x_1476 = l_Lean_Meta_mkFreshExprMVarAt(x_1471, x_1472, x_1468, x_1473, x_1474, x_1475, x_7, x_8, x_9, x_10, x_1469); +x_1477 = lean_ctor_get(x_1476, 0); +lean_inc(x_1477); +x_1478 = lean_ctor_get(x_1476, 1); +lean_inc(x_1478); +lean_dec(x_1476); +lean_inc(x_1477); +x_1479 = l_Lean_Meta_CheckAssignment_assignToConstFun(x_1380, x_1382, x_1477, x_7, x_8, x_9, x_10, x_1478); +if (lean_obj_tag(x_1479) == 0) +{ +lean_object* x_1480; uint8_t x_1481; +x_1480 = lean_ctor_get(x_1479, 0); +lean_inc(x_1480); +x_1481 = lean_unbox(x_1480); +lean_dec(x_1480); +if (x_1481 == 0) +{ +lean_object* x_1482; lean_object* x_1483; lean_object* x_1484; +lean_dec(x_1477); +x_1482 = lean_ctor_get(x_1479, 1); +lean_inc(x_1482); +if (lean_is_exclusive(x_1479)) { + lean_ctor_release(x_1479, 0); + lean_ctor_release(x_1479, 1); + x_1483 = x_1479; +} else { + lean_dec_ref(x_1479); + x_1483 = lean_box(0); +} +if (lean_is_scalar(x_1483)) { + x_1484 = lean_alloc_ctor(1, 2, 0); +} else { + x_1484 = x_1483; + lean_ctor_set_tag(x_1484, 1); +} +lean_ctor_set(x_1484, 0, x_1393); +lean_ctor_set(x_1484, 1, x_1482); +return x_1484; +} +else +{ +lean_object* x_1485; lean_object* x_1486; lean_object* x_1487; +lean_dec(x_1393); +x_1485 = lean_ctor_get(x_1479, 1); +lean_inc(x_1485); +if (lean_is_exclusive(x_1479)) { + lean_ctor_release(x_1479, 0); + lean_ctor_release(x_1479, 1); + x_1486 = x_1479; +} else { + lean_dec_ref(x_1479); + x_1486 = lean_box(0); +} +if (lean_is_scalar(x_1486)) { + x_1487 = lean_alloc_ctor(0, 2, 0); +} else { + x_1487 = x_1486; +} +lean_ctor_set(x_1487, 0, x_1477); +lean_ctor_set(x_1487, 1, x_1485); +return x_1487; +} +} +else +{ +lean_object* x_1488; lean_object* x_1489; lean_object* x_1490; lean_object* x_1491; +lean_dec(x_1477); +lean_dec(x_1393); +x_1488 = lean_ctor_get(x_1479, 0); +lean_inc(x_1488); +x_1489 = lean_ctor_get(x_1479, 1); +lean_inc(x_1489); +if (lean_is_exclusive(x_1479)) { + lean_ctor_release(x_1479, 0); + lean_ctor_release(x_1479, 1); + x_1490 = x_1479; +} else { + lean_dec_ref(x_1479); + x_1490 = lean_box(0); +} +if (lean_is_scalar(x_1490)) { + x_1491 = lean_alloc_ctor(1, 2, 0); +} else { + x_1491 = x_1490; +} +lean_ctor_set(x_1491, 0, x_1488); +lean_ctor_set(x_1491, 1, x_1489); +return x_1491; +} +} +else +{ +lean_object* x_1492; lean_object* x_1493; lean_object* x_1494; lean_object* x_1495; +lean_dec(x_1393); +lean_dec(x_1382); +lean_dec(x_1380); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_5); +x_1492 = lean_ctor_get(x_1467, 0); +lean_inc(x_1492); +x_1493 = lean_ctor_get(x_1467, 1); +lean_inc(x_1493); +if (lean_is_exclusive(x_1467)) { + lean_ctor_release(x_1467, 0); + lean_ctor_release(x_1467, 1); + x_1494 = x_1467; +} else { + lean_dec_ref(x_1467); + x_1494 = lean_box(0); +} +if (lean_is_scalar(x_1494)) { + x_1495 = lean_alloc_ctor(1, 2, 0); +} else { + x_1495 = x_1494; +} +lean_ctor_set(x_1495, 0, x_1492); +lean_ctor_set(x_1495, 1, x_1493); +return x_1495; +} +} +else +{ +lean_object* x_1496; lean_object* x_1497; lean_object* x_1498; lean_object* x_1499; +lean_dec(x_1393); +lean_dec(x_1382); +lean_dec(x_1380); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +x_1496 = lean_ctor_get(x_1464, 0); +lean_inc(x_1496); +x_1497 = lean_ctor_get(x_1464, 1); +lean_inc(x_1497); +if (lean_is_exclusive(x_1464)) { + lean_ctor_release(x_1464, 0); + lean_ctor_release(x_1464, 1); + x_1498 = x_1464; +} else { + lean_dec_ref(x_1464); + x_1498 = lean_box(0); +} +if (lean_is_scalar(x_1498)) { + x_1499 = lean_alloc_ctor(1, 2, 0); +} else { + x_1499 = x_1498; +} +lean_ctor_set(x_1499, 0, x_1496); +lean_ctor_set(x_1499, 1, x_1497); +return x_1499; +} +} +else +{ +lean_object* x_1500; lean_object* x_1501; lean_object* x_1502; +lean_dec(x_1382); +lean_dec(x_1380); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_1); +x_1500 = lean_ctor_get(x_1460, 1); +lean_inc(x_1500); +if (lean_is_exclusive(x_1460)) { + lean_ctor_release(x_1460, 0); + lean_ctor_release(x_1460, 1); + x_1501 = x_1460; +} else { + lean_dec_ref(x_1460); + x_1501 = lean_box(0); +} +if (lean_is_scalar(x_1501)) { + x_1502 = lean_alloc_ctor(1, 2, 0); +} else { + x_1502 = x_1501; + lean_ctor_set_tag(x_1502, 1); +} +lean_ctor_set(x_1502, 0, x_1393); +lean_ctor_set(x_1502, 1, x_1500); +return x_1502; +} +} +} +} +} +} +} +else +{ +uint8_t x_1503; lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); @@ -27202,21 +25708,499 @@ lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_3); -lean_dec(x_2); lean_dec(x_1); -x_1606 = !lean_is_exclusive(x_1601); +x_1503 = !lean_is_exclusive(x_1379); +if (x_1503 == 0) +{ +return x_1379; +} +else +{ +lean_object* x_1504; lean_object* x_1505; lean_object* x_1506; +x_1504 = lean_ctor_get(x_1379, 0); +x_1505 = lean_ctor_get(x_1379, 1); +lean_inc(x_1505); +lean_inc(x_1504); +lean_dec(x_1379); +x_1506 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1506, 0, x_1504); +lean_ctor_set(x_1506, 1, x_1505); +return x_1506; +} +} +} +block_1531: +{ +lean_object* x_1509; +lean_dec(x_1508); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +x_1509 = l_Lean_Meta_CheckAssignment_check(x_2, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +if (lean_obj_tag(x_1509) == 0) +{ +lean_object* x_1510; lean_object* x_1511; lean_object* x_1512; size_t x_1513; size_t x_1514; lean_object* x_1515; +x_1510 = lean_ctor_get(x_1509, 0); +lean_inc(x_1510); +x_1511 = lean_ctor_get(x_1509, 1); +lean_inc(x_1511); +lean_dec(x_1509); +x_1512 = lean_array_get_size(x_3); +x_1513 = lean_usize_of_nat(x_1512); +lean_dec(x_1512); +x_1514 = 0; +x_1515 = l_Array_mapMUnsafe_map___at_Lean_Meta_CheckAssignment_checkApp___spec__1(x_1513, x_1514, x_3, x_5, x_6, x_7, x_8, x_9, x_10, x_1511); +if (lean_obj_tag(x_1515) == 0) +{ +uint8_t x_1516; +x_1516 = !lean_is_exclusive(x_1515); +if (x_1516 == 0) +{ +lean_object* x_1517; lean_object* x_1518; +x_1517 = lean_ctor_get(x_1515, 0); +x_1518 = l_Lean_mkAppN(x_1510, x_1517); +lean_ctor_set(x_1515, 0, x_1518); +return x_1515; +} +else +{ +lean_object* x_1519; lean_object* x_1520; lean_object* x_1521; lean_object* x_1522; +x_1519 = lean_ctor_get(x_1515, 0); +x_1520 = lean_ctor_get(x_1515, 1); +lean_inc(x_1520); +lean_inc(x_1519); +lean_dec(x_1515); +x_1521 = l_Lean_mkAppN(x_1510, x_1519); +x_1522 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1522, 0, x_1521); +lean_ctor_set(x_1522, 1, x_1520); +return x_1522; +} +} +else +{ +uint8_t x_1523; +lean_dec(x_1510); +x_1523 = !lean_is_exclusive(x_1515); +if (x_1523 == 0) +{ +return x_1515; +} +else +{ +lean_object* x_1524; lean_object* x_1525; lean_object* x_1526; +x_1524 = lean_ctor_get(x_1515, 0); +x_1525 = lean_ctor_get(x_1515, 1); +lean_inc(x_1525); +lean_inc(x_1524); +lean_dec(x_1515); +x_1526 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1526, 0, x_1524); +lean_ctor_set(x_1526, 1, x_1525); +return x_1526; +} +} +} +else +{ +uint8_t x_1527; +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_3); +x_1527 = !lean_is_exclusive(x_1509); +if (x_1527 == 0) +{ +return x_1509; +} +else +{ +lean_object* x_1528; lean_object* x_1529; lean_object* x_1530; +x_1528 = lean_ctor_get(x_1509, 0); +x_1529 = lean_ctor_get(x_1509, 1); +lean_inc(x_1529); +lean_inc(x_1528); +lean_dec(x_1509); +x_1530 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1530, 0, x_1528); +lean_ctor_set(x_1530, 1, x_1529); +return x_1530; +} +} +} +} +case 10: +{ +lean_object* x_1548; lean_object* x_1678; uint8_t x_1702; +lean_dec(x_4); +x_1702 = l_Lean_Expr_isMVar(x_2); +if (x_1702 == 0) +{ +lean_object* x_1703; +lean_dec(x_1); +x_1703 = lean_box(0); +x_1678 = x_1703; +goto block_1701; +} +else +{ +lean_object* x_1704; uint8_t x_1705; +x_1704 = lean_ctor_get(x_7, 0); +lean_inc(x_1704); +x_1705 = lean_ctor_get_uint8(x_1704, 1); +lean_dec(x_1704); +if (x_1705 == 0) +{ +lean_object* x_1706; +lean_dec(x_1); +x_1706 = lean_box(0); +x_1678 = x_1706; +goto block_1701; +} +else +{ +lean_object* x_1707; lean_object* x_1708; uint8_t x_1709; +x_1707 = lean_array_get_size(x_3); +x_1708 = lean_unsigned_to_nat(0u); +x_1709 = lean_nat_dec_lt(x_1708, x_1707); +if (x_1709 == 0) +{ +lean_object* x_1710; +lean_dec(x_1707); +x_1710 = lean_box(0); +x_1548 = x_1710; +goto block_1677; +} +else +{ +uint8_t x_1711; +x_1711 = lean_nat_dec_le(x_1707, x_1707); +if (x_1711 == 0) +{ +lean_object* x_1712; +lean_dec(x_1707); +x_1712 = lean_box(0); +x_1548 = x_1712; +goto block_1677; +} +else +{ +size_t x_1713; size_t x_1714; uint8_t x_1715; +x_1713 = 0; +x_1714 = lean_usize_of_nat(x_1707); +lean_dec(x_1707); +x_1715 = l_Array_anyMUnsafe_any___at_Lean_Meta_CheckAssignment_checkApp___spec__3(x_3, x_1713, x_1714); +if (x_1715 == 0) +{ +lean_object* x_1716; +x_1716 = lean_box(0); +x_1548 = x_1716; +goto block_1677; +} +else +{ +lean_object* x_1717; +lean_dec(x_1); +x_1717 = lean_box(0); +x_1678 = x_1717; +goto block_1701; +} +} +} +} +} +block_1677: +{ +lean_object* x_1549; +lean_dec(x_1548); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +x_1549 = l_Lean_Meta_CheckAssignment_check(x_2, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +if (lean_obj_tag(x_1549) == 0) +{ +lean_object* x_1550; lean_object* x_1551; lean_object* x_1552; size_t x_1553; size_t x_1554; lean_object* x_1555; +x_1550 = lean_ctor_get(x_1549, 0); +lean_inc(x_1550); +x_1551 = lean_ctor_get(x_1549, 1); +lean_inc(x_1551); +lean_dec(x_1549); +x_1552 = lean_array_get_size(x_3); +x_1553 = lean_usize_of_nat(x_1552); +x_1554 = 0; +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +x_1555 = l_Array_mapMUnsafe_map___at_Lean_Meta_CheckAssignment_checkApp___spec__1(x_1553, x_1554, x_3, x_5, x_6, x_7, x_8, x_9, x_10, x_1551); +if (lean_obj_tag(x_1555) == 0) +{ +uint8_t x_1556; +lean_dec(x_1552); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_1); +x_1556 = !lean_is_exclusive(x_1555); +if (x_1556 == 0) +{ +lean_object* x_1557; lean_object* x_1558; +x_1557 = lean_ctor_get(x_1555, 0); +x_1558 = l_Lean_mkAppN(x_1550, x_1557); +lean_ctor_set(x_1555, 0, x_1558); +return x_1555; +} +else +{ +lean_object* x_1559; lean_object* x_1560; lean_object* x_1561; lean_object* x_1562; +x_1559 = lean_ctor_get(x_1555, 0); +x_1560 = lean_ctor_get(x_1555, 1); +lean_inc(x_1560); +lean_inc(x_1559); +lean_dec(x_1555); +x_1561 = l_Lean_mkAppN(x_1550, x_1559); +x_1562 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1562, 0, x_1561); +lean_ctor_set(x_1562, 1, x_1560); +return x_1562; +} +} +else +{ +lean_object* x_1563; +x_1563 = lean_ctor_get(x_1555, 0); +lean_inc(x_1563); +if (lean_obj_tag(x_1563) == 0) +{ +uint8_t x_1564; +lean_dec(x_1552); +lean_dec(x_1550); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_1); +x_1564 = !lean_is_exclusive(x_1555); +if (x_1564 == 0) +{ +lean_object* x_1565; +x_1565 = lean_ctor_get(x_1555, 0); +lean_dec(x_1565); +return x_1555; +} +else +{ +lean_object* x_1566; lean_object* x_1567; +x_1566 = lean_ctor_get(x_1555, 1); +lean_inc(x_1566); +lean_dec(x_1555); +x_1567 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1567, 0, x_1563); +lean_ctor_set(x_1567, 1, x_1566); +return x_1567; +} +} +else +{ +uint8_t x_1568; +x_1568 = !lean_is_exclusive(x_1555); +if (x_1568 == 0) +{ +lean_object* x_1569; lean_object* x_1570; lean_object* x_1571; lean_object* x_1572; uint8_t x_1573; +x_1569 = lean_ctor_get(x_1555, 1); +x_1570 = lean_ctor_get(x_1555, 0); +lean_dec(x_1570); +x_1571 = lean_ctor_get(x_1563, 0); +lean_inc(x_1571); +x_1572 = l_Lean_Meta_CheckAssignment_throwOutOfScopeFVar___rarg___closed__1; +x_1573 = lean_nat_dec_eq(x_1572, x_1571); +lean_dec(x_1571); +if (x_1573 == 0) +{ +lean_dec(x_1552); +lean_dec(x_1550); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_1); +return x_1555; +} +else +{ +uint8_t x_1574; +x_1574 = l_Lean_Expr_isMVar(x_1550); +if (x_1574 == 0) +{ +lean_dec(x_1552); +lean_dec(x_1550); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_1); +return x_1555; +} +else +{ +lean_object* x_1575; lean_object* x_1576; lean_object* x_1577; uint8_t x_1578; +lean_free_object(x_1555); +lean_inc(x_1550); +x_1575 = l_Lean_Expr_mvarId_x21(x_1550); +x_1576 = l_Lean_MVarId_isDelayedAssigned___at_Lean_Meta_CheckAssignment_checkApp___spec__2(x_1575, x_5, x_6, x_7, x_8, x_9, x_10, x_1569); +x_1577 = lean_ctor_get(x_1576, 0); +lean_inc(x_1577); +x_1578 = lean_unbox(x_1577); +lean_dec(x_1577); +if (x_1578 == 0) +{ +lean_object* x_1579; lean_object* x_1580; +x_1579 = lean_ctor_get(x_1576, 1); +lean_inc(x_1579); +lean_dec(x_1576); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +x_1580 = lean_infer_type(x_1, x_7, x_8, x_9, x_10, x_1579); +if (lean_obj_tag(x_1580) == 0) +{ +lean_object* x_1581; lean_object* x_1582; lean_object* x_1583; +x_1581 = lean_ctor_get(x_1580, 0); +lean_inc(x_1581); +x_1582 = lean_ctor_get(x_1580, 1); +lean_inc(x_1582); +lean_dec(x_1580); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_5); +x_1583 = l_Lean_Meta_CheckAssignment_check(x_1581, x_5, x_6, x_7, x_8, x_9, x_10, x_1582); +if (lean_obj_tag(x_1583) == 0) +{ +lean_object* x_1584; lean_object* x_1585; lean_object* x_1586; lean_object* x_1587; lean_object* x_1588; uint8_t x_1589; lean_object* x_1590; lean_object* x_1591; lean_object* x_1592; lean_object* x_1593; lean_object* x_1594; lean_object* x_1595; +x_1584 = lean_ctor_get(x_1583, 0); +lean_inc(x_1584); +x_1585 = lean_ctor_get(x_1583, 1); +lean_inc(x_1585); +lean_dec(x_1583); +x_1586 = lean_ctor_get(x_5, 1); +lean_inc(x_1586); +lean_dec(x_5); +x_1587 = lean_ctor_get(x_1586, 1); +lean_inc(x_1587); +x_1588 = lean_ctor_get(x_1586, 4); +lean_inc(x_1588); +lean_dec(x_1586); +x_1589 = 0; +x_1590 = lean_box(0); +x_1591 = lean_unsigned_to_nat(0u); +x_1592 = l_Lean_Meta_mkFreshExprMVarAt(x_1587, x_1588, x_1584, x_1589, x_1590, x_1591, x_7, x_8, x_9, x_10, x_1585); +x_1593 = lean_ctor_get(x_1592, 0); +lean_inc(x_1593); +x_1594 = lean_ctor_get(x_1592, 1); +lean_inc(x_1594); +lean_dec(x_1592); +lean_inc(x_1593); +x_1595 = l_Lean_Meta_CheckAssignment_assignToConstFun(x_1550, x_1552, x_1593, x_7, x_8, x_9, x_10, x_1594); +if (lean_obj_tag(x_1595) == 0) +{ +lean_object* x_1596; uint8_t x_1597; +x_1596 = lean_ctor_get(x_1595, 0); +lean_inc(x_1596); +x_1597 = lean_unbox(x_1596); +lean_dec(x_1596); +if (x_1597 == 0) +{ +uint8_t x_1598; +lean_dec(x_1593); +x_1598 = !lean_is_exclusive(x_1595); +if (x_1598 == 0) +{ +lean_object* x_1599; +x_1599 = lean_ctor_get(x_1595, 0); +lean_dec(x_1599); +lean_ctor_set_tag(x_1595, 1); +lean_ctor_set(x_1595, 0, x_1563); +return x_1595; +} +else +{ +lean_object* x_1600; lean_object* x_1601; +x_1600 = lean_ctor_get(x_1595, 1); +lean_inc(x_1600); +lean_dec(x_1595); +x_1601 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1601, 0, x_1563); +lean_ctor_set(x_1601, 1, x_1600); +return x_1601; +} +} +else +{ +uint8_t x_1602; +lean_dec(x_1563); +x_1602 = !lean_is_exclusive(x_1595); +if (x_1602 == 0) +{ +lean_object* x_1603; +x_1603 = lean_ctor_get(x_1595, 0); +lean_dec(x_1603); +lean_ctor_set(x_1595, 0, x_1593); +return x_1595; +} +else +{ +lean_object* x_1604; lean_object* x_1605; +x_1604 = lean_ctor_get(x_1595, 1); +lean_inc(x_1604); +lean_dec(x_1595); +x_1605 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1605, 0, x_1593); +lean_ctor_set(x_1605, 1, x_1604); +return x_1605; +} +} +} +else +{ +uint8_t x_1606; +lean_dec(x_1593); +lean_dec(x_1563); +x_1606 = !lean_is_exclusive(x_1595); if (x_1606 == 0) { -return x_1601; +return x_1595; } else { lean_object* x_1607; lean_object* x_1608; lean_object* x_1609; -x_1607 = lean_ctor_get(x_1601, 0); -x_1608 = lean_ctor_get(x_1601, 1); +x_1607 = lean_ctor_get(x_1595, 0); +x_1608 = lean_ctor_get(x_1595, 1); lean_inc(x_1608); lean_inc(x_1607); -lean_dec(x_1601); +lean_dec(x_1595); x_1609 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1609, 0, x_1607); lean_ctor_set(x_1609, 1, x_1608); @@ -27226,232 +26210,405 @@ return x_1609; } else { -lean_object* x_1610; lean_object* x_1611; -lean_dec(x_2); -x_1610 = lean_ctor_get(x_1598, 1); -lean_inc(x_1610); -lean_dec(x_1598); -x_1611 = lean_ctor_get(x_1599, 0); +uint8_t x_1610; +lean_dec(x_1563); +lean_dec(x_1552); +lean_dec(x_1550); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_5); +x_1610 = !lean_is_exclusive(x_1583); +if (x_1610 == 0) +{ +return x_1583; +} +else +{ +lean_object* x_1611; lean_object* x_1612; lean_object* x_1613; +x_1611 = lean_ctor_get(x_1583, 0); +x_1612 = lean_ctor_get(x_1583, 1); +lean_inc(x_1612); lean_inc(x_1611); -lean_dec(x_1599); -x_1473 = x_1611; -x_1474 = x_1610; -goto block_1596; +lean_dec(x_1583); +x_1613 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1613, 0, x_1611); +lean_ctor_set(x_1613, 1, x_1612); +return x_1613; } } } -} -case 9: +else { -lean_object* x_1634; lean_object* x_1674; uint8_t x_1820; -lean_dec(x_4); -x_1820 = l_Lean_Expr_isMVar(x_2); -if (x_1820 == 0) +uint8_t x_1614; +lean_dec(x_1563); +lean_dec(x_1552); +lean_dec(x_1550); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +x_1614 = !lean_is_exclusive(x_1580); +if (x_1614 == 0) { -lean_object* x_1821; +return x_1580; +} +else +{ +lean_object* x_1615; lean_object* x_1616; lean_object* x_1617; +x_1615 = lean_ctor_get(x_1580, 0); +x_1616 = lean_ctor_get(x_1580, 1); +lean_inc(x_1616); +lean_inc(x_1615); +lean_dec(x_1580); +x_1617 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1617, 0, x_1615); +lean_ctor_set(x_1617, 1, x_1616); +return x_1617; +} +} +} +else +{ +uint8_t x_1618; +lean_dec(x_1552); +lean_dec(x_1550); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); lean_dec(x_1); -x_1821 = lean_box(0); -x_1634 = x_1821; -goto block_1673; +x_1618 = !lean_is_exclusive(x_1576); +if (x_1618 == 0) +{ +lean_object* x_1619; +x_1619 = lean_ctor_get(x_1576, 0); +lean_dec(x_1619); +lean_ctor_set_tag(x_1576, 1); +lean_ctor_set(x_1576, 0, x_1563); +return x_1576; } else { -lean_object* x_1822; uint8_t x_1823; -x_1822 = lean_ctor_get(x_7, 0); -lean_inc(x_1822); -x_1823 = lean_ctor_get_uint8(x_1822, 1); -lean_dec(x_1822); -if (x_1823 == 0) +lean_object* x_1620; lean_object* x_1621; +x_1620 = lean_ctor_get(x_1576, 1); +lean_inc(x_1620); +lean_dec(x_1576); +x_1621 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1621, 0, x_1563); +lean_ctor_set(x_1621, 1, x_1620); +return x_1621; +} +} +} +} +} +else { -lean_object* x_1824; +lean_object* x_1622; lean_object* x_1623; lean_object* x_1624; uint8_t x_1625; +x_1622 = lean_ctor_get(x_1555, 1); +lean_inc(x_1622); +lean_dec(x_1555); +x_1623 = lean_ctor_get(x_1563, 0); +lean_inc(x_1623); +x_1624 = l_Lean_Meta_CheckAssignment_throwOutOfScopeFVar___rarg___closed__1; +x_1625 = lean_nat_dec_eq(x_1624, x_1623); +lean_dec(x_1623); +if (x_1625 == 0) +{ +lean_object* x_1626; +lean_dec(x_1552); +lean_dec(x_1550); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); lean_dec(x_1); -x_1824 = lean_box(0); -x_1634 = x_1824; -goto block_1673; +x_1626 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1626, 0, x_1563); +lean_ctor_set(x_1626, 1, x_1622); +return x_1626; } else { -lean_object* x_1825; lean_object* x_1826; uint8_t x_1827; -x_1825 = lean_array_get_size(x_3); -x_1826 = lean_unsigned_to_nat(0u); -x_1827 = lean_nat_dec_lt(x_1826, x_1825); -if (x_1827 == 0) +uint8_t x_1627; +x_1627 = l_Lean_Expr_isMVar(x_1550); +if (x_1627 == 0) { -lean_object* x_1828; -lean_dec(x_1825); -x_1828 = lean_box(0); -x_1674 = x_1828; -goto block_1819; -} -else -{ -uint8_t x_1829; -x_1829 = lean_nat_dec_le(x_1825, x_1825); -if (x_1829 == 0) -{ -lean_object* x_1830; -lean_dec(x_1825); -x_1830 = lean_box(0); -x_1674 = x_1830; -goto block_1819; -} -else -{ -size_t x_1831; size_t x_1832; uint8_t x_1833; -x_1831 = 0; -x_1832 = lean_usize_of_nat(x_1825); -lean_dec(x_1825); -x_1833 = l_Array_anyMUnsafe_any___at_Lean_Meta_CheckAssignment_checkApp___spec__3(x_3, x_1831, x_1832); -if (x_1833 == 0) -{ -lean_object* x_1834; -x_1834 = lean_box(0); -x_1674 = x_1834; -goto block_1819; -} -else -{ -lean_object* x_1835; +lean_object* x_1628; +lean_dec(x_1552); +lean_dec(x_1550); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); lean_dec(x_1); -x_1835 = lean_box(0); -x_1634 = x_1835; -goto block_1673; -} -} -} -} -} -block_1673: -{ -lean_object* x_1635; lean_object* x_1636; lean_object* x_1653; uint8_t x_1669; -lean_dec(x_1634); -x_1669 = l_Lean_Expr_hasExprMVar(x_2); -if (x_1669 == 0) -{ -uint8_t x_1670; -x_1670 = l_Lean_Expr_hasFVar(x_2); -if (x_1670 == 0) -{ -x_1635 = x_2; -x_1636 = x_11; -goto block_1652; +x_1628 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1628, 0, x_1563); +lean_ctor_set(x_1628, 1, x_1622); +return x_1628; } else { -lean_object* x_1671; -x_1671 = lean_box(0); -x_1653 = x_1671; -goto block_1668; -} -} -else +lean_object* x_1629; lean_object* x_1630; lean_object* x_1631; uint8_t x_1632; +lean_inc(x_1550); +x_1629 = l_Lean_Expr_mvarId_x21(x_1550); +x_1630 = l_Lean_MVarId_isDelayedAssigned___at_Lean_Meta_CheckAssignment_checkApp___spec__2(x_1629, x_5, x_6, x_7, x_8, x_9, x_10, x_1622); +x_1631 = lean_ctor_get(x_1630, 0); +lean_inc(x_1631); +x_1632 = lean_unbox(x_1631); +lean_dec(x_1631); +if (x_1632 == 0) { -lean_object* x_1672; -x_1672 = lean_box(0); -x_1653 = x_1672; -goto block_1668; -} -block_1652: -{ -lean_object* x_1637; size_t x_1638; size_t x_1639; lean_object* x_1640; -x_1637 = lean_array_get_size(x_3); -x_1638 = lean_usize_of_nat(x_1637); -lean_dec(x_1637); -x_1639 = 0; -x_1640 = l_Array_mapMUnsafe_map___at_Lean_Meta_CheckAssignment_checkApp___spec__1(x_1638, x_1639, x_3, x_5, x_6, x_7, x_8, x_9, x_10, x_1636); -if (lean_obj_tag(x_1640) == 0) -{ -uint8_t x_1641; -x_1641 = !lean_is_exclusive(x_1640); -if (x_1641 == 0) -{ -lean_object* x_1642; lean_object* x_1643; -x_1642 = lean_ctor_get(x_1640, 0); -x_1643 = l_Lean_mkAppN(x_1635, x_1642); -lean_ctor_set(x_1640, 0, x_1643); -return x_1640; -} -else -{ -lean_object* x_1644; lean_object* x_1645; lean_object* x_1646; lean_object* x_1647; -x_1644 = lean_ctor_get(x_1640, 0); -x_1645 = lean_ctor_get(x_1640, 1); -lean_inc(x_1645); -lean_inc(x_1644); -lean_dec(x_1640); -x_1646 = l_Lean_mkAppN(x_1635, x_1644); -x_1647 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1647, 0, x_1646); -lean_ctor_set(x_1647, 1, x_1645); -return x_1647; -} -} -else -{ -uint8_t x_1648; -lean_dec(x_1635); -x_1648 = !lean_is_exclusive(x_1640); -if (x_1648 == 0) -{ -return x_1640; -} -else -{ -lean_object* x_1649; lean_object* x_1650; lean_object* x_1651; -x_1649 = lean_ctor_get(x_1640, 0); -x_1650 = lean_ctor_get(x_1640, 1); -lean_inc(x_1650); -lean_inc(x_1649); -lean_dec(x_1640); -x_1651 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1651, 0, x_1649); -lean_ctor_set(x_1651, 1, x_1650); -return x_1651; -} -} -} -block_1668: -{ -lean_object* x_1654; lean_object* x_1655; -lean_dec(x_1653); -lean_inc(x_2); -x_1654 = l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_CheckAssignment_findCached_x3f(x_2, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -x_1655 = lean_ctor_get(x_1654, 0); -lean_inc(x_1655); -if (lean_obj_tag(x_1655) == 0) -{ -lean_object* x_1656; lean_object* x_1657; -x_1656 = lean_ctor_get(x_1654, 1); -lean_inc(x_1656); -lean_dec(x_1654); +lean_object* x_1633; lean_object* x_1634; +x_1633 = lean_ctor_get(x_1630, 1); +lean_inc(x_1633); +lean_dec(x_1630); lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_2); -x_1657 = l_Lean_Meta_CheckAssignment_check(x_2, x_5, x_6, x_7, x_8, x_9, x_10, x_1656); -if (lean_obj_tag(x_1657) == 0) +x_1634 = lean_infer_type(x_1, x_7, x_8, x_9, x_10, x_1633); +if (lean_obj_tag(x_1634) == 0) { -lean_object* x_1658; lean_object* x_1659; lean_object* x_1660; lean_object* x_1661; -x_1658 = lean_ctor_get(x_1657, 0); -lean_inc(x_1658); -x_1659 = lean_ctor_get(x_1657, 1); -lean_inc(x_1659); -lean_dec(x_1657); -lean_inc(x_1658); -x_1660 = l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_CheckAssignment_cache(x_2, x_1658, x_5, x_6, x_7, x_8, x_9, x_10, x_1659); -x_1661 = lean_ctor_get(x_1660, 1); -lean_inc(x_1661); -lean_dec(x_1660); -x_1635 = x_1658; -x_1636 = x_1661; -goto block_1652; +lean_object* x_1635; lean_object* x_1636; lean_object* x_1637; +x_1635 = lean_ctor_get(x_1634, 0); +lean_inc(x_1635); +x_1636 = lean_ctor_get(x_1634, 1); +lean_inc(x_1636); +lean_dec(x_1634); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_5); +x_1637 = l_Lean_Meta_CheckAssignment_check(x_1635, x_5, x_6, x_7, x_8, x_9, x_10, x_1636); +if (lean_obj_tag(x_1637) == 0) +{ +lean_object* x_1638; lean_object* x_1639; lean_object* x_1640; lean_object* x_1641; lean_object* x_1642; uint8_t x_1643; lean_object* x_1644; lean_object* x_1645; lean_object* x_1646; lean_object* x_1647; lean_object* x_1648; lean_object* x_1649; +x_1638 = lean_ctor_get(x_1637, 0); +lean_inc(x_1638); +x_1639 = lean_ctor_get(x_1637, 1); +lean_inc(x_1639); +lean_dec(x_1637); +x_1640 = lean_ctor_get(x_5, 1); +lean_inc(x_1640); +lean_dec(x_5); +x_1641 = lean_ctor_get(x_1640, 1); +lean_inc(x_1641); +x_1642 = lean_ctor_get(x_1640, 4); +lean_inc(x_1642); +lean_dec(x_1640); +x_1643 = 0; +x_1644 = lean_box(0); +x_1645 = lean_unsigned_to_nat(0u); +x_1646 = l_Lean_Meta_mkFreshExprMVarAt(x_1641, x_1642, x_1638, x_1643, x_1644, x_1645, x_7, x_8, x_9, x_10, x_1639); +x_1647 = lean_ctor_get(x_1646, 0); +lean_inc(x_1647); +x_1648 = lean_ctor_get(x_1646, 1); +lean_inc(x_1648); +lean_dec(x_1646); +lean_inc(x_1647); +x_1649 = l_Lean_Meta_CheckAssignment_assignToConstFun(x_1550, x_1552, x_1647, x_7, x_8, x_9, x_10, x_1648); +if (lean_obj_tag(x_1649) == 0) +{ +lean_object* x_1650; uint8_t x_1651; +x_1650 = lean_ctor_get(x_1649, 0); +lean_inc(x_1650); +x_1651 = lean_unbox(x_1650); +lean_dec(x_1650); +if (x_1651 == 0) +{ +lean_object* x_1652; lean_object* x_1653; lean_object* x_1654; +lean_dec(x_1647); +x_1652 = lean_ctor_get(x_1649, 1); +lean_inc(x_1652); +if (lean_is_exclusive(x_1649)) { + lean_ctor_release(x_1649, 0); + lean_ctor_release(x_1649, 1); + x_1653 = x_1649; +} else { + lean_dec_ref(x_1649); + x_1653 = lean_box(0); +} +if (lean_is_scalar(x_1653)) { + x_1654 = lean_alloc_ctor(1, 2, 0); +} else { + x_1654 = x_1653; + lean_ctor_set_tag(x_1654, 1); +} +lean_ctor_set(x_1654, 0, x_1563); +lean_ctor_set(x_1654, 1, x_1652); +return x_1654; } else { -uint8_t x_1662; +lean_object* x_1655; lean_object* x_1656; lean_object* x_1657; +lean_dec(x_1563); +x_1655 = lean_ctor_get(x_1649, 1); +lean_inc(x_1655); +if (lean_is_exclusive(x_1649)) { + lean_ctor_release(x_1649, 0); + lean_ctor_release(x_1649, 1); + x_1656 = x_1649; +} else { + lean_dec_ref(x_1649); + x_1656 = lean_box(0); +} +if (lean_is_scalar(x_1656)) { + x_1657 = lean_alloc_ctor(0, 2, 0); +} else { + x_1657 = x_1656; +} +lean_ctor_set(x_1657, 0, x_1647); +lean_ctor_set(x_1657, 1, x_1655); +return x_1657; +} +} +else +{ +lean_object* x_1658; lean_object* x_1659; lean_object* x_1660; lean_object* x_1661; +lean_dec(x_1647); +lean_dec(x_1563); +x_1658 = lean_ctor_get(x_1649, 0); +lean_inc(x_1658); +x_1659 = lean_ctor_get(x_1649, 1); +lean_inc(x_1659); +if (lean_is_exclusive(x_1649)) { + lean_ctor_release(x_1649, 0); + lean_ctor_release(x_1649, 1); + x_1660 = x_1649; +} else { + lean_dec_ref(x_1649); + x_1660 = lean_box(0); +} +if (lean_is_scalar(x_1660)) { + x_1661 = lean_alloc_ctor(1, 2, 0); +} else { + x_1661 = x_1660; +} +lean_ctor_set(x_1661, 0, x_1658); +lean_ctor_set(x_1661, 1, x_1659); +return x_1661; +} +} +else +{ +lean_object* x_1662; lean_object* x_1663; lean_object* x_1664; lean_object* x_1665; +lean_dec(x_1563); +lean_dec(x_1552); +lean_dec(x_1550); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_5); +x_1662 = lean_ctor_get(x_1637, 0); +lean_inc(x_1662); +x_1663 = lean_ctor_get(x_1637, 1); +lean_inc(x_1663); +if (lean_is_exclusive(x_1637)) { + lean_ctor_release(x_1637, 0); + lean_ctor_release(x_1637, 1); + x_1664 = x_1637; +} else { + lean_dec_ref(x_1637); + x_1664 = lean_box(0); +} +if (lean_is_scalar(x_1664)) { + x_1665 = lean_alloc_ctor(1, 2, 0); +} else { + x_1665 = x_1664; +} +lean_ctor_set(x_1665, 0, x_1662); +lean_ctor_set(x_1665, 1, x_1663); +return x_1665; +} +} +else +{ +lean_object* x_1666; lean_object* x_1667; lean_object* x_1668; lean_object* x_1669; +lean_dec(x_1563); +lean_dec(x_1552); +lean_dec(x_1550); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +x_1666 = lean_ctor_get(x_1634, 0); +lean_inc(x_1666); +x_1667 = lean_ctor_get(x_1634, 1); +lean_inc(x_1667); +if (lean_is_exclusive(x_1634)) { + lean_ctor_release(x_1634, 0); + lean_ctor_release(x_1634, 1); + x_1668 = x_1634; +} else { + lean_dec_ref(x_1634); + x_1668 = lean_box(0); +} +if (lean_is_scalar(x_1668)) { + x_1669 = lean_alloc_ctor(1, 2, 0); +} else { + x_1669 = x_1668; +} +lean_ctor_set(x_1669, 0, x_1666); +lean_ctor_set(x_1669, 1, x_1667); +return x_1669; +} +} +else +{ +lean_object* x_1670; lean_object* x_1671; lean_object* x_1672; +lean_dec(x_1552); +lean_dec(x_1550); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_1); +x_1670 = lean_ctor_get(x_1630, 1); +lean_inc(x_1670); +if (lean_is_exclusive(x_1630)) { + lean_ctor_release(x_1630, 0); + lean_ctor_release(x_1630, 1); + x_1671 = x_1630; +} else { + lean_dec_ref(x_1630); + x_1671 = lean_box(0); +} +if (lean_is_scalar(x_1671)) { + x_1672 = lean_alloc_ctor(1, 2, 0); +} else { + x_1672 = x_1671; + lean_ctor_set_tag(x_1672, 1); +} +lean_ctor_set(x_1672, 0, x_1563); +lean_ctor_set(x_1672, 1, x_1670); +return x_1672; +} +} +} +} +} +} +} +else +{ +uint8_t x_1673; lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); @@ -27459,790 +26616,105 @@ lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_3); -lean_dec(x_2); -x_1662 = !lean_is_exclusive(x_1657); -if (x_1662 == 0) +lean_dec(x_1); +x_1673 = !lean_is_exclusive(x_1549); +if (x_1673 == 0) { -return x_1657; +return x_1549; } else { -lean_object* x_1663; lean_object* x_1664; lean_object* x_1665; -x_1663 = lean_ctor_get(x_1657, 0); -x_1664 = lean_ctor_get(x_1657, 1); -lean_inc(x_1664); -lean_inc(x_1663); -lean_dec(x_1657); -x_1665 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1665, 0, x_1663); -lean_ctor_set(x_1665, 1, x_1664); -return x_1665; +lean_object* x_1674; lean_object* x_1675; lean_object* x_1676; +x_1674 = lean_ctor_get(x_1549, 0); +x_1675 = lean_ctor_get(x_1549, 1); +lean_inc(x_1675); +lean_inc(x_1674); +lean_dec(x_1549); +x_1676 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1676, 0, x_1674); +lean_ctor_set(x_1676, 1, x_1675); +return x_1676; } } } -else +block_1701: { -lean_object* x_1666; lean_object* x_1667; -lean_dec(x_2); -x_1666 = lean_ctor_get(x_1654, 1); -lean_inc(x_1666); -lean_dec(x_1654); -x_1667 = lean_ctor_get(x_1655, 0); -lean_inc(x_1667); -lean_dec(x_1655); -x_1635 = x_1667; -x_1636 = x_1666; -goto block_1652; -} -} -} -block_1819: -{ -lean_object* x_1675; lean_object* x_1676; lean_object* x_1799; uint8_t x_1815; -lean_dec(x_1674); -x_1815 = l_Lean_Expr_hasExprMVar(x_2); -if (x_1815 == 0) -{ -uint8_t x_1816; -x_1816 = l_Lean_Expr_hasFVar(x_2); -if (x_1816 == 0) -{ -x_1675 = x_2; -x_1676 = x_11; -goto block_1798; -} -else -{ -lean_object* x_1817; -x_1817 = lean_box(0); -x_1799 = x_1817; -goto block_1814; -} -} -else -{ -lean_object* x_1818; -x_1818 = lean_box(0); -x_1799 = x_1818; -goto block_1814; -} -block_1798: -{ -lean_object* x_1677; size_t x_1678; size_t x_1679; lean_object* x_1680; -x_1677 = lean_array_get_size(x_3); -x_1678 = lean_usize_of_nat(x_1677); -x_1679 = 0; +lean_object* x_1679; +lean_dec(x_1678); lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); lean_inc(x_5); -x_1680 = l_Array_mapMUnsafe_map___at_Lean_Meta_CheckAssignment_checkApp___spec__1(x_1678, x_1679, x_3, x_5, x_6, x_7, x_8, x_9, x_10, x_1676); -if (lean_obj_tag(x_1680) == 0) +x_1679 = l_Lean_Meta_CheckAssignment_check(x_2, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +if (lean_obj_tag(x_1679) == 0) { -uint8_t x_1681; -lean_dec(x_1677); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_1); -x_1681 = !lean_is_exclusive(x_1680); -if (x_1681 == 0) +lean_object* x_1680; lean_object* x_1681; lean_object* x_1682; size_t x_1683; size_t x_1684; lean_object* x_1685; +x_1680 = lean_ctor_get(x_1679, 0); +lean_inc(x_1680); +x_1681 = lean_ctor_get(x_1679, 1); +lean_inc(x_1681); +lean_dec(x_1679); +x_1682 = lean_array_get_size(x_3); +x_1683 = lean_usize_of_nat(x_1682); +lean_dec(x_1682); +x_1684 = 0; +x_1685 = l_Array_mapMUnsafe_map___at_Lean_Meta_CheckAssignment_checkApp___spec__1(x_1683, x_1684, x_3, x_5, x_6, x_7, x_8, x_9, x_10, x_1681); +if (lean_obj_tag(x_1685) == 0) { -lean_object* x_1682; lean_object* x_1683; -x_1682 = lean_ctor_get(x_1680, 0); -x_1683 = l_Lean_mkAppN(x_1675, x_1682); -lean_ctor_set(x_1680, 0, x_1683); -return x_1680; +uint8_t x_1686; +x_1686 = !lean_is_exclusive(x_1685); +if (x_1686 == 0) +{ +lean_object* x_1687; lean_object* x_1688; +x_1687 = lean_ctor_get(x_1685, 0); +x_1688 = l_Lean_mkAppN(x_1680, x_1687); +lean_ctor_set(x_1685, 0, x_1688); +return x_1685; } else { -lean_object* x_1684; lean_object* x_1685; lean_object* x_1686; lean_object* x_1687; -x_1684 = lean_ctor_get(x_1680, 0); -x_1685 = lean_ctor_get(x_1680, 1); -lean_inc(x_1685); -lean_inc(x_1684); -lean_dec(x_1680); -x_1686 = l_Lean_mkAppN(x_1675, x_1684); -x_1687 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1687, 0, x_1686); -lean_ctor_set(x_1687, 1, x_1685); -return x_1687; -} -} -else -{ -lean_object* x_1688; -x_1688 = lean_ctor_get(x_1680, 0); -lean_inc(x_1688); -if (lean_obj_tag(x_1688) == 0) -{ -uint8_t x_1689; -lean_dec(x_1677); -lean_dec(x_1675); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_1); -x_1689 = !lean_is_exclusive(x_1680); -if (x_1689 == 0) -{ -lean_object* x_1690; -x_1690 = lean_ctor_get(x_1680, 0); -lean_dec(x_1690); -return x_1680; -} -else -{ -lean_object* x_1691; lean_object* x_1692; -x_1691 = lean_ctor_get(x_1680, 1); -lean_inc(x_1691); -lean_dec(x_1680); -x_1692 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1692, 0, x_1688); -lean_ctor_set(x_1692, 1, x_1691); +lean_object* x_1689; lean_object* x_1690; lean_object* x_1691; lean_object* x_1692; +x_1689 = lean_ctor_get(x_1685, 0); +x_1690 = lean_ctor_get(x_1685, 1); +lean_inc(x_1690); +lean_inc(x_1689); +lean_dec(x_1685); +x_1691 = l_Lean_mkAppN(x_1680, x_1689); +x_1692 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1692, 0, x_1691); +lean_ctor_set(x_1692, 1, x_1690); return x_1692; } } else { uint8_t x_1693; -x_1693 = !lean_is_exclusive(x_1680); +lean_dec(x_1680); +x_1693 = !lean_is_exclusive(x_1685); if (x_1693 == 0) { -lean_object* x_1694; lean_object* x_1695; lean_object* x_1696; lean_object* x_1697; uint8_t x_1698; -x_1694 = lean_ctor_get(x_1680, 1); -x_1695 = lean_ctor_get(x_1680, 0); -lean_dec(x_1695); -x_1696 = lean_ctor_get(x_1688, 0); -lean_inc(x_1696); -x_1697 = l_Lean_Meta_CheckAssignment_throwOutOfScopeFVar___rarg___closed__1; -x_1698 = lean_nat_dec_eq(x_1697, x_1696); -lean_dec(x_1696); -if (x_1698 == 0) -{ -lean_dec(x_1677); -lean_dec(x_1675); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_1); -return x_1680; +return x_1685; } else { -uint8_t x_1699; -x_1699 = l_Lean_Expr_isMVar(x_1675); -if (x_1699 == 0) -{ -lean_dec(x_1677); -lean_dec(x_1675); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_1); -return x_1680; -} -else -{ -lean_object* x_1700; lean_object* x_1701; lean_object* x_1702; uint8_t x_1703; -lean_free_object(x_1680); -lean_inc(x_1675); -x_1700 = l_Lean_Expr_mvarId_x21(x_1675); -x_1701 = l_Lean_MVarId_isDelayedAssigned___at_Lean_Meta_CheckAssignment_checkApp___spec__2(x_1700, x_5, x_6, x_7, x_8, x_9, x_10, x_1694); -x_1702 = lean_ctor_get(x_1701, 0); -lean_inc(x_1702); -x_1703 = lean_unbox(x_1702); -lean_dec(x_1702); -if (x_1703 == 0) -{ -lean_object* x_1704; lean_object* x_1705; -x_1704 = lean_ctor_get(x_1701, 1); -lean_inc(x_1704); -lean_dec(x_1701); -lean_inc(x_10); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -x_1705 = lean_infer_type(x_1, x_7, x_8, x_9, x_10, x_1704); -if (lean_obj_tag(x_1705) == 0) -{ -lean_object* x_1706; lean_object* x_1707; lean_object* x_1708; -x_1706 = lean_ctor_get(x_1705, 0); -lean_inc(x_1706); -x_1707 = lean_ctor_get(x_1705, 1); -lean_inc(x_1707); -lean_dec(x_1705); -lean_inc(x_10); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_5); -x_1708 = l_Lean_Meta_CheckAssignment_check(x_1706, x_5, x_6, x_7, x_8, x_9, x_10, x_1707); -if (lean_obj_tag(x_1708) == 0) -{ -lean_object* x_1709; lean_object* x_1710; lean_object* x_1711; lean_object* x_1712; lean_object* x_1713; uint8_t x_1714; lean_object* x_1715; lean_object* x_1716; lean_object* x_1717; lean_object* x_1718; lean_object* x_1719; lean_object* x_1720; -x_1709 = lean_ctor_get(x_1708, 0); -lean_inc(x_1709); -x_1710 = lean_ctor_get(x_1708, 1); -lean_inc(x_1710); -lean_dec(x_1708); -x_1711 = lean_ctor_get(x_5, 1); -lean_inc(x_1711); -lean_dec(x_5); -x_1712 = lean_ctor_get(x_1711, 1); -lean_inc(x_1712); -x_1713 = lean_ctor_get(x_1711, 4); -lean_inc(x_1713); -lean_dec(x_1711); -x_1714 = 0; -x_1715 = lean_box(0); -x_1716 = lean_unsigned_to_nat(0u); -x_1717 = l_Lean_Meta_mkFreshExprMVarAt(x_1712, x_1713, x_1709, x_1714, x_1715, x_1716, x_7, x_8, x_9, x_10, x_1710); -x_1718 = lean_ctor_get(x_1717, 0); -lean_inc(x_1718); -x_1719 = lean_ctor_get(x_1717, 1); -lean_inc(x_1719); -lean_dec(x_1717); -lean_inc(x_1718); -x_1720 = l_Lean_Meta_CheckAssignment_assignToConstFun(x_1675, x_1677, x_1718, x_7, x_8, x_9, x_10, x_1719); -if (lean_obj_tag(x_1720) == 0) -{ -lean_object* x_1721; uint8_t x_1722; -x_1721 = lean_ctor_get(x_1720, 0); -lean_inc(x_1721); -x_1722 = lean_unbox(x_1721); -lean_dec(x_1721); -if (x_1722 == 0) -{ -uint8_t x_1723; -lean_dec(x_1718); -x_1723 = !lean_is_exclusive(x_1720); -if (x_1723 == 0) -{ -lean_object* x_1724; -x_1724 = lean_ctor_get(x_1720, 0); -lean_dec(x_1724); -lean_ctor_set_tag(x_1720, 1); -lean_ctor_set(x_1720, 0, x_1688); -return x_1720; -} -else -{ -lean_object* x_1725; lean_object* x_1726; -x_1725 = lean_ctor_get(x_1720, 1); -lean_inc(x_1725); -lean_dec(x_1720); -x_1726 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1726, 0, x_1688); -lean_ctor_set(x_1726, 1, x_1725); -return x_1726; -} -} -else -{ -uint8_t x_1727; -lean_dec(x_1688); -x_1727 = !lean_is_exclusive(x_1720); -if (x_1727 == 0) -{ -lean_object* x_1728; -x_1728 = lean_ctor_get(x_1720, 0); -lean_dec(x_1728); -lean_ctor_set(x_1720, 0, x_1718); -return x_1720; -} -else -{ -lean_object* x_1729; lean_object* x_1730; -x_1729 = lean_ctor_get(x_1720, 1); -lean_inc(x_1729); -lean_dec(x_1720); -x_1730 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1730, 0, x_1718); -lean_ctor_set(x_1730, 1, x_1729); -return x_1730; +lean_object* x_1694; lean_object* x_1695; lean_object* x_1696; +x_1694 = lean_ctor_get(x_1685, 0); +x_1695 = lean_ctor_get(x_1685, 1); +lean_inc(x_1695); +lean_inc(x_1694); +lean_dec(x_1685); +x_1696 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1696, 0, x_1694); +lean_ctor_set(x_1696, 1, x_1695); +return x_1696; } } } else { -uint8_t x_1731; -lean_dec(x_1718); -lean_dec(x_1688); -x_1731 = !lean_is_exclusive(x_1720); -if (x_1731 == 0) -{ -return x_1720; -} -else -{ -lean_object* x_1732; lean_object* x_1733; lean_object* x_1734; -x_1732 = lean_ctor_get(x_1720, 0); -x_1733 = lean_ctor_get(x_1720, 1); -lean_inc(x_1733); -lean_inc(x_1732); -lean_dec(x_1720); -x_1734 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1734, 0, x_1732); -lean_ctor_set(x_1734, 1, x_1733); -return x_1734; -} -} -} -else -{ -uint8_t x_1735; -lean_dec(x_1688); -lean_dec(x_1677); -lean_dec(x_1675); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_5); -x_1735 = !lean_is_exclusive(x_1708); -if (x_1735 == 0) -{ -return x_1708; -} -else -{ -lean_object* x_1736; lean_object* x_1737; lean_object* x_1738; -x_1736 = lean_ctor_get(x_1708, 0); -x_1737 = lean_ctor_get(x_1708, 1); -lean_inc(x_1737); -lean_inc(x_1736); -lean_dec(x_1708); -x_1738 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1738, 0, x_1736); -lean_ctor_set(x_1738, 1, x_1737); -return x_1738; -} -} -} -else -{ -uint8_t x_1739; -lean_dec(x_1688); -lean_dec(x_1677); -lean_dec(x_1675); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -x_1739 = !lean_is_exclusive(x_1705); -if (x_1739 == 0) -{ -return x_1705; -} -else -{ -lean_object* x_1740; lean_object* x_1741; lean_object* x_1742; -x_1740 = lean_ctor_get(x_1705, 0); -x_1741 = lean_ctor_get(x_1705, 1); -lean_inc(x_1741); -lean_inc(x_1740); -lean_dec(x_1705); -x_1742 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1742, 0, x_1740); -lean_ctor_set(x_1742, 1, x_1741); -return x_1742; -} -} -} -else -{ -uint8_t x_1743; -lean_dec(x_1677); -lean_dec(x_1675); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_1); -x_1743 = !lean_is_exclusive(x_1701); -if (x_1743 == 0) -{ -lean_object* x_1744; -x_1744 = lean_ctor_get(x_1701, 0); -lean_dec(x_1744); -lean_ctor_set_tag(x_1701, 1); -lean_ctor_set(x_1701, 0, x_1688); -return x_1701; -} -else -{ -lean_object* x_1745; lean_object* x_1746; -x_1745 = lean_ctor_get(x_1701, 1); -lean_inc(x_1745); -lean_dec(x_1701); -x_1746 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1746, 0, x_1688); -lean_ctor_set(x_1746, 1, x_1745); -return x_1746; -} -} -} -} -} -else -{ -lean_object* x_1747; lean_object* x_1748; lean_object* x_1749; uint8_t x_1750; -x_1747 = lean_ctor_get(x_1680, 1); -lean_inc(x_1747); -lean_dec(x_1680); -x_1748 = lean_ctor_get(x_1688, 0); -lean_inc(x_1748); -x_1749 = l_Lean_Meta_CheckAssignment_throwOutOfScopeFVar___rarg___closed__1; -x_1750 = lean_nat_dec_eq(x_1749, x_1748); -lean_dec(x_1748); -if (x_1750 == 0) -{ -lean_object* x_1751; -lean_dec(x_1677); -lean_dec(x_1675); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_1); -x_1751 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1751, 0, x_1688); -lean_ctor_set(x_1751, 1, x_1747); -return x_1751; -} -else -{ -uint8_t x_1752; -x_1752 = l_Lean_Expr_isMVar(x_1675); -if (x_1752 == 0) -{ -lean_object* x_1753; -lean_dec(x_1677); -lean_dec(x_1675); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_1); -x_1753 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1753, 0, x_1688); -lean_ctor_set(x_1753, 1, x_1747); -return x_1753; -} -else -{ -lean_object* x_1754; lean_object* x_1755; lean_object* x_1756; uint8_t x_1757; -lean_inc(x_1675); -x_1754 = l_Lean_Expr_mvarId_x21(x_1675); -x_1755 = l_Lean_MVarId_isDelayedAssigned___at_Lean_Meta_CheckAssignment_checkApp___spec__2(x_1754, x_5, x_6, x_7, x_8, x_9, x_10, x_1747); -x_1756 = lean_ctor_get(x_1755, 0); -lean_inc(x_1756); -x_1757 = lean_unbox(x_1756); -lean_dec(x_1756); -if (x_1757 == 0) -{ -lean_object* x_1758; lean_object* x_1759; -x_1758 = lean_ctor_get(x_1755, 1); -lean_inc(x_1758); -lean_dec(x_1755); -lean_inc(x_10); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -x_1759 = lean_infer_type(x_1, x_7, x_8, x_9, x_10, x_1758); -if (lean_obj_tag(x_1759) == 0) -{ -lean_object* x_1760; lean_object* x_1761; lean_object* x_1762; -x_1760 = lean_ctor_get(x_1759, 0); -lean_inc(x_1760); -x_1761 = lean_ctor_get(x_1759, 1); -lean_inc(x_1761); -lean_dec(x_1759); -lean_inc(x_10); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_5); -x_1762 = l_Lean_Meta_CheckAssignment_check(x_1760, x_5, x_6, x_7, x_8, x_9, x_10, x_1761); -if (lean_obj_tag(x_1762) == 0) -{ -lean_object* x_1763; lean_object* x_1764; lean_object* x_1765; lean_object* x_1766; lean_object* x_1767; uint8_t x_1768; lean_object* x_1769; lean_object* x_1770; lean_object* x_1771; lean_object* x_1772; lean_object* x_1773; lean_object* x_1774; -x_1763 = lean_ctor_get(x_1762, 0); -lean_inc(x_1763); -x_1764 = lean_ctor_get(x_1762, 1); -lean_inc(x_1764); -lean_dec(x_1762); -x_1765 = lean_ctor_get(x_5, 1); -lean_inc(x_1765); -lean_dec(x_5); -x_1766 = lean_ctor_get(x_1765, 1); -lean_inc(x_1766); -x_1767 = lean_ctor_get(x_1765, 4); -lean_inc(x_1767); -lean_dec(x_1765); -x_1768 = 0; -x_1769 = lean_box(0); -x_1770 = lean_unsigned_to_nat(0u); -x_1771 = l_Lean_Meta_mkFreshExprMVarAt(x_1766, x_1767, x_1763, x_1768, x_1769, x_1770, x_7, x_8, x_9, x_10, x_1764); -x_1772 = lean_ctor_get(x_1771, 0); -lean_inc(x_1772); -x_1773 = lean_ctor_get(x_1771, 1); -lean_inc(x_1773); -lean_dec(x_1771); -lean_inc(x_1772); -x_1774 = l_Lean_Meta_CheckAssignment_assignToConstFun(x_1675, x_1677, x_1772, x_7, x_8, x_9, x_10, x_1773); -if (lean_obj_tag(x_1774) == 0) -{ -lean_object* x_1775; uint8_t x_1776; -x_1775 = lean_ctor_get(x_1774, 0); -lean_inc(x_1775); -x_1776 = lean_unbox(x_1775); -lean_dec(x_1775); -if (x_1776 == 0) -{ -lean_object* x_1777; lean_object* x_1778; lean_object* x_1779; -lean_dec(x_1772); -x_1777 = lean_ctor_get(x_1774, 1); -lean_inc(x_1777); -if (lean_is_exclusive(x_1774)) { - lean_ctor_release(x_1774, 0); - lean_ctor_release(x_1774, 1); - x_1778 = x_1774; -} else { - lean_dec_ref(x_1774); - x_1778 = lean_box(0); -} -if (lean_is_scalar(x_1778)) { - x_1779 = lean_alloc_ctor(1, 2, 0); -} else { - x_1779 = x_1778; - lean_ctor_set_tag(x_1779, 1); -} -lean_ctor_set(x_1779, 0, x_1688); -lean_ctor_set(x_1779, 1, x_1777); -return x_1779; -} -else -{ -lean_object* x_1780; lean_object* x_1781; lean_object* x_1782; -lean_dec(x_1688); -x_1780 = lean_ctor_get(x_1774, 1); -lean_inc(x_1780); -if (lean_is_exclusive(x_1774)) { - lean_ctor_release(x_1774, 0); - lean_ctor_release(x_1774, 1); - x_1781 = x_1774; -} else { - lean_dec_ref(x_1774); - x_1781 = lean_box(0); -} -if (lean_is_scalar(x_1781)) { - x_1782 = lean_alloc_ctor(0, 2, 0); -} else { - x_1782 = x_1781; -} -lean_ctor_set(x_1782, 0, x_1772); -lean_ctor_set(x_1782, 1, x_1780); -return x_1782; -} -} -else -{ -lean_object* x_1783; lean_object* x_1784; lean_object* x_1785; lean_object* x_1786; -lean_dec(x_1772); -lean_dec(x_1688); -x_1783 = lean_ctor_get(x_1774, 0); -lean_inc(x_1783); -x_1784 = lean_ctor_get(x_1774, 1); -lean_inc(x_1784); -if (lean_is_exclusive(x_1774)) { - lean_ctor_release(x_1774, 0); - lean_ctor_release(x_1774, 1); - x_1785 = x_1774; -} else { - lean_dec_ref(x_1774); - x_1785 = lean_box(0); -} -if (lean_is_scalar(x_1785)) { - x_1786 = lean_alloc_ctor(1, 2, 0); -} else { - x_1786 = x_1785; -} -lean_ctor_set(x_1786, 0, x_1783); -lean_ctor_set(x_1786, 1, x_1784); -return x_1786; -} -} -else -{ -lean_object* x_1787; lean_object* x_1788; lean_object* x_1789; lean_object* x_1790; -lean_dec(x_1688); -lean_dec(x_1677); -lean_dec(x_1675); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_5); -x_1787 = lean_ctor_get(x_1762, 0); -lean_inc(x_1787); -x_1788 = lean_ctor_get(x_1762, 1); -lean_inc(x_1788); -if (lean_is_exclusive(x_1762)) { - lean_ctor_release(x_1762, 0); - lean_ctor_release(x_1762, 1); - x_1789 = x_1762; -} else { - lean_dec_ref(x_1762); - x_1789 = lean_box(0); -} -if (lean_is_scalar(x_1789)) { - x_1790 = lean_alloc_ctor(1, 2, 0); -} else { - x_1790 = x_1789; -} -lean_ctor_set(x_1790, 0, x_1787); -lean_ctor_set(x_1790, 1, x_1788); -return x_1790; -} -} -else -{ -lean_object* x_1791; lean_object* x_1792; lean_object* x_1793; lean_object* x_1794; -lean_dec(x_1688); -lean_dec(x_1677); -lean_dec(x_1675); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -x_1791 = lean_ctor_get(x_1759, 0); -lean_inc(x_1791); -x_1792 = lean_ctor_get(x_1759, 1); -lean_inc(x_1792); -if (lean_is_exclusive(x_1759)) { - lean_ctor_release(x_1759, 0); - lean_ctor_release(x_1759, 1); - x_1793 = x_1759; -} else { - lean_dec_ref(x_1759); - x_1793 = lean_box(0); -} -if (lean_is_scalar(x_1793)) { - x_1794 = lean_alloc_ctor(1, 2, 0); -} else { - x_1794 = x_1793; -} -lean_ctor_set(x_1794, 0, x_1791); -lean_ctor_set(x_1794, 1, x_1792); -return x_1794; -} -} -else -{ -lean_object* x_1795; lean_object* x_1796; lean_object* x_1797; -lean_dec(x_1677); -lean_dec(x_1675); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_1); -x_1795 = lean_ctor_get(x_1755, 1); -lean_inc(x_1795); -if (lean_is_exclusive(x_1755)) { - lean_ctor_release(x_1755, 0); - lean_ctor_release(x_1755, 1); - x_1796 = x_1755; -} else { - lean_dec_ref(x_1755); - x_1796 = lean_box(0); -} -if (lean_is_scalar(x_1796)) { - x_1797 = lean_alloc_ctor(1, 2, 0); -} else { - x_1797 = x_1796; - lean_ctor_set_tag(x_1797, 1); -} -lean_ctor_set(x_1797, 0, x_1688); -lean_ctor_set(x_1797, 1, x_1795); -return x_1797; -} -} -} -} -} -} -} -block_1814: -{ -lean_object* x_1800; lean_object* x_1801; -lean_dec(x_1799); -lean_inc(x_2); -x_1800 = l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_CheckAssignment_findCached_x3f(x_2, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -x_1801 = lean_ctor_get(x_1800, 0); -lean_inc(x_1801); -if (lean_obj_tag(x_1801) == 0) -{ -lean_object* x_1802; lean_object* x_1803; -x_1802 = lean_ctor_get(x_1800, 1); -lean_inc(x_1802); -lean_dec(x_1800); -lean_inc(x_10); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_2); -x_1803 = l_Lean_Meta_CheckAssignment_checkMVar(x_2, x_5, x_6, x_7, x_8, x_9, x_10, x_1802); -if (lean_obj_tag(x_1803) == 0) -{ -lean_object* x_1804; lean_object* x_1805; lean_object* x_1806; lean_object* x_1807; -x_1804 = lean_ctor_get(x_1803, 0); -lean_inc(x_1804); -x_1805 = lean_ctor_get(x_1803, 1); -lean_inc(x_1805); -lean_dec(x_1803); -lean_inc(x_1804); -x_1806 = l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_CheckAssignment_cache(x_2, x_1804, x_5, x_6, x_7, x_8, x_9, x_10, x_1805); -x_1807 = lean_ctor_get(x_1806, 1); -lean_inc(x_1807); -lean_dec(x_1806); -x_1675 = x_1804; -x_1676 = x_1807; -goto block_1798; -} -else -{ -uint8_t x_1808; +uint8_t x_1697; lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); @@ -28250,1304 +26722,801 @@ lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_3); -lean_dec(x_2); -lean_dec(x_1); -x_1808 = !lean_is_exclusive(x_1803); -if (x_1808 == 0) +x_1697 = !lean_is_exclusive(x_1679); +if (x_1697 == 0) { -return x_1803; +return x_1679; } else { -lean_object* x_1809; lean_object* x_1810; lean_object* x_1811; -x_1809 = lean_ctor_get(x_1803, 0); -x_1810 = lean_ctor_get(x_1803, 1); -lean_inc(x_1810); -lean_inc(x_1809); -lean_dec(x_1803); -x_1811 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1811, 0, x_1809); -lean_ctor_set(x_1811, 1, x_1810); -return x_1811; -} -} -} -else -{ -lean_object* x_1812; lean_object* x_1813; -lean_dec(x_2); -x_1812 = lean_ctor_get(x_1800, 1); -lean_inc(x_1812); -lean_dec(x_1800); -x_1813 = lean_ctor_get(x_1801, 0); -lean_inc(x_1813); -lean_dec(x_1801); -x_1675 = x_1813; -x_1676 = x_1812; -goto block_1798; -} -} -} -} -case 10: -{ -lean_object* x_1836; lean_object* x_1876; uint8_t x_2022; -lean_dec(x_4); -x_2022 = l_Lean_Expr_isMVar(x_2); -if (x_2022 == 0) -{ -lean_object* x_2023; -lean_dec(x_1); -x_2023 = lean_box(0); -x_1836 = x_2023; -goto block_1875; -} -else -{ -lean_object* x_2024; uint8_t x_2025; -x_2024 = lean_ctor_get(x_7, 0); -lean_inc(x_2024); -x_2025 = lean_ctor_get_uint8(x_2024, 1); -lean_dec(x_2024); -if (x_2025 == 0) -{ -lean_object* x_2026; -lean_dec(x_1); -x_2026 = lean_box(0); -x_1836 = x_2026; -goto block_1875; -} -else -{ -lean_object* x_2027; lean_object* x_2028; uint8_t x_2029; -x_2027 = lean_array_get_size(x_3); -x_2028 = lean_unsigned_to_nat(0u); -x_2029 = lean_nat_dec_lt(x_2028, x_2027); -if (x_2029 == 0) -{ -lean_object* x_2030; -lean_dec(x_2027); -x_2030 = lean_box(0); -x_1876 = x_2030; -goto block_2021; -} -else -{ -uint8_t x_2031; -x_2031 = lean_nat_dec_le(x_2027, x_2027); -if (x_2031 == 0) -{ -lean_object* x_2032; -lean_dec(x_2027); -x_2032 = lean_box(0); -x_1876 = x_2032; -goto block_2021; -} -else -{ -size_t x_2033; size_t x_2034; uint8_t x_2035; -x_2033 = 0; -x_2034 = lean_usize_of_nat(x_2027); -lean_dec(x_2027); -x_2035 = l_Array_anyMUnsafe_any___at_Lean_Meta_CheckAssignment_checkApp___spec__3(x_3, x_2033, x_2034); -if (x_2035 == 0) -{ -lean_object* x_2036; -x_2036 = lean_box(0); -x_1876 = x_2036; -goto block_2021; -} -else -{ -lean_object* x_2037; -lean_dec(x_1); -x_2037 = lean_box(0); -x_1836 = x_2037; -goto block_1875; -} -} -} -} -} -block_1875: -{ -lean_object* x_1837; lean_object* x_1838; lean_object* x_1855; uint8_t x_1871; -lean_dec(x_1836); -x_1871 = l_Lean_Expr_hasExprMVar(x_2); -if (x_1871 == 0) -{ -uint8_t x_1872; -x_1872 = l_Lean_Expr_hasFVar(x_2); -if (x_1872 == 0) -{ -x_1837 = x_2; -x_1838 = x_11; -goto block_1854; -} -else -{ -lean_object* x_1873; -x_1873 = lean_box(0); -x_1855 = x_1873; -goto block_1870; -} -} -else -{ -lean_object* x_1874; -x_1874 = lean_box(0); -x_1855 = x_1874; -goto block_1870; -} -block_1854: -{ -lean_object* x_1839; size_t x_1840; size_t x_1841; lean_object* x_1842; -x_1839 = lean_array_get_size(x_3); -x_1840 = lean_usize_of_nat(x_1839); -lean_dec(x_1839); -x_1841 = 0; -x_1842 = l_Array_mapMUnsafe_map___at_Lean_Meta_CheckAssignment_checkApp___spec__1(x_1840, x_1841, x_3, x_5, x_6, x_7, x_8, x_9, x_10, x_1838); -if (lean_obj_tag(x_1842) == 0) -{ -uint8_t x_1843; -x_1843 = !lean_is_exclusive(x_1842); -if (x_1843 == 0) -{ -lean_object* x_1844; lean_object* x_1845; -x_1844 = lean_ctor_get(x_1842, 0); -x_1845 = l_Lean_mkAppN(x_1837, x_1844); -lean_ctor_set(x_1842, 0, x_1845); -return x_1842; -} -else -{ -lean_object* x_1846; lean_object* x_1847; lean_object* x_1848; lean_object* x_1849; -x_1846 = lean_ctor_get(x_1842, 0); -x_1847 = lean_ctor_get(x_1842, 1); -lean_inc(x_1847); -lean_inc(x_1846); -lean_dec(x_1842); -x_1848 = l_Lean_mkAppN(x_1837, x_1846); -x_1849 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1849, 0, x_1848); -lean_ctor_set(x_1849, 1, x_1847); -return x_1849; -} -} -else -{ -uint8_t x_1850; -lean_dec(x_1837); -x_1850 = !lean_is_exclusive(x_1842); -if (x_1850 == 0) -{ -return x_1842; -} -else -{ -lean_object* x_1851; lean_object* x_1852; lean_object* x_1853; -x_1851 = lean_ctor_get(x_1842, 0); -x_1852 = lean_ctor_get(x_1842, 1); -lean_inc(x_1852); -lean_inc(x_1851); -lean_dec(x_1842); -x_1853 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1853, 0, x_1851); -lean_ctor_set(x_1853, 1, x_1852); -return x_1853; -} -} -} -block_1870: -{ -lean_object* x_1856; lean_object* x_1857; -lean_dec(x_1855); -lean_inc(x_2); -x_1856 = l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_CheckAssignment_findCached_x3f(x_2, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -x_1857 = lean_ctor_get(x_1856, 0); -lean_inc(x_1857); -if (lean_obj_tag(x_1857) == 0) -{ -lean_object* x_1858; lean_object* x_1859; -x_1858 = lean_ctor_get(x_1856, 1); -lean_inc(x_1858); -lean_dec(x_1856); -lean_inc(x_10); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_2); -x_1859 = l_Lean_Meta_CheckAssignment_check(x_2, x_5, x_6, x_7, x_8, x_9, x_10, x_1858); -if (lean_obj_tag(x_1859) == 0) -{ -lean_object* x_1860; lean_object* x_1861; lean_object* x_1862; lean_object* x_1863; -x_1860 = lean_ctor_get(x_1859, 0); -lean_inc(x_1860); -x_1861 = lean_ctor_get(x_1859, 1); -lean_inc(x_1861); -lean_dec(x_1859); -lean_inc(x_1860); -x_1862 = l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_CheckAssignment_cache(x_2, x_1860, x_5, x_6, x_7, x_8, x_9, x_10, x_1861); -x_1863 = lean_ctor_get(x_1862, 1); -lean_inc(x_1863); -lean_dec(x_1862); -x_1837 = x_1860; -x_1838 = x_1863; -goto block_1854; -} -else -{ -uint8_t x_1864; -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_3); -lean_dec(x_2); -x_1864 = !lean_is_exclusive(x_1859); -if (x_1864 == 0) -{ -return x_1859; -} -else -{ -lean_object* x_1865; lean_object* x_1866; lean_object* x_1867; -x_1865 = lean_ctor_get(x_1859, 0); -x_1866 = lean_ctor_get(x_1859, 1); -lean_inc(x_1866); -lean_inc(x_1865); -lean_dec(x_1859); -x_1867 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1867, 0, x_1865); -lean_ctor_set(x_1867, 1, x_1866); -return x_1867; -} -} -} -else -{ -lean_object* x_1868; lean_object* x_1869; -lean_dec(x_2); -x_1868 = lean_ctor_get(x_1856, 1); -lean_inc(x_1868); -lean_dec(x_1856); -x_1869 = lean_ctor_get(x_1857, 0); -lean_inc(x_1869); -lean_dec(x_1857); -x_1837 = x_1869; -x_1838 = x_1868; -goto block_1854; -} -} -} -block_2021: -{ -lean_object* x_1877; lean_object* x_1878; lean_object* x_2001; uint8_t x_2017; -lean_dec(x_1876); -x_2017 = l_Lean_Expr_hasExprMVar(x_2); -if (x_2017 == 0) -{ -uint8_t x_2018; -x_2018 = l_Lean_Expr_hasFVar(x_2); -if (x_2018 == 0) -{ -x_1877 = x_2; -x_1878 = x_11; -goto block_2000; -} -else -{ -lean_object* x_2019; -x_2019 = lean_box(0); -x_2001 = x_2019; -goto block_2016; -} -} -else -{ -lean_object* x_2020; -x_2020 = lean_box(0); -x_2001 = x_2020; -goto block_2016; -} -block_2000: -{ -lean_object* x_1879; size_t x_1880; size_t x_1881; lean_object* x_1882; -x_1879 = lean_array_get_size(x_3); -x_1880 = lean_usize_of_nat(x_1879); -x_1881 = 0; -lean_inc(x_10); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_6); -lean_inc(x_5); -x_1882 = l_Array_mapMUnsafe_map___at_Lean_Meta_CheckAssignment_checkApp___spec__1(x_1880, x_1881, x_3, x_5, x_6, x_7, x_8, x_9, x_10, x_1878); -if (lean_obj_tag(x_1882) == 0) -{ -uint8_t x_1883; -lean_dec(x_1879); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_1); -x_1883 = !lean_is_exclusive(x_1882); -if (x_1883 == 0) -{ -lean_object* x_1884; lean_object* x_1885; -x_1884 = lean_ctor_get(x_1882, 0); -x_1885 = l_Lean_mkAppN(x_1877, x_1884); -lean_ctor_set(x_1882, 0, x_1885); -return x_1882; -} -else -{ -lean_object* x_1886; lean_object* x_1887; lean_object* x_1888; lean_object* x_1889; -x_1886 = lean_ctor_get(x_1882, 0); -x_1887 = lean_ctor_get(x_1882, 1); -lean_inc(x_1887); -lean_inc(x_1886); -lean_dec(x_1882); -x_1888 = l_Lean_mkAppN(x_1877, x_1886); -x_1889 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1889, 0, x_1888); -lean_ctor_set(x_1889, 1, x_1887); -return x_1889; -} -} -else -{ -lean_object* x_1890; -x_1890 = lean_ctor_get(x_1882, 0); -lean_inc(x_1890); -if (lean_obj_tag(x_1890) == 0) -{ -uint8_t x_1891; -lean_dec(x_1879); -lean_dec(x_1877); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_1); -x_1891 = !lean_is_exclusive(x_1882); -if (x_1891 == 0) -{ -lean_object* x_1892; -x_1892 = lean_ctor_get(x_1882, 0); -lean_dec(x_1892); -return x_1882; -} -else -{ -lean_object* x_1893; lean_object* x_1894; -x_1893 = lean_ctor_get(x_1882, 1); -lean_inc(x_1893); -lean_dec(x_1882); -x_1894 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1894, 0, x_1890); -lean_ctor_set(x_1894, 1, x_1893); -return x_1894; -} -} -else -{ -uint8_t x_1895; -x_1895 = !lean_is_exclusive(x_1882); -if (x_1895 == 0) -{ -lean_object* x_1896; lean_object* x_1897; lean_object* x_1898; lean_object* x_1899; uint8_t x_1900; -x_1896 = lean_ctor_get(x_1882, 1); -x_1897 = lean_ctor_get(x_1882, 0); -lean_dec(x_1897); -x_1898 = lean_ctor_get(x_1890, 0); -lean_inc(x_1898); -x_1899 = l_Lean_Meta_CheckAssignment_throwOutOfScopeFVar___rarg___closed__1; -x_1900 = lean_nat_dec_eq(x_1899, x_1898); -lean_dec(x_1898); -if (x_1900 == 0) -{ -lean_dec(x_1879); -lean_dec(x_1877); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_1); -return x_1882; -} -else -{ -uint8_t x_1901; -x_1901 = l_Lean_Expr_isMVar(x_1877); -if (x_1901 == 0) -{ -lean_dec(x_1879); -lean_dec(x_1877); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_1); -return x_1882; -} -else -{ -lean_object* x_1902; lean_object* x_1903; lean_object* x_1904; uint8_t x_1905; -lean_free_object(x_1882); -lean_inc(x_1877); -x_1902 = l_Lean_Expr_mvarId_x21(x_1877); -x_1903 = l_Lean_MVarId_isDelayedAssigned___at_Lean_Meta_CheckAssignment_checkApp___spec__2(x_1902, x_5, x_6, x_7, x_8, x_9, x_10, x_1896); -x_1904 = lean_ctor_get(x_1903, 0); -lean_inc(x_1904); -x_1905 = lean_unbox(x_1904); -lean_dec(x_1904); -if (x_1905 == 0) -{ -lean_object* x_1906; lean_object* x_1907; -x_1906 = lean_ctor_get(x_1903, 1); -lean_inc(x_1906); -lean_dec(x_1903); -lean_inc(x_10); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -x_1907 = lean_infer_type(x_1, x_7, x_8, x_9, x_10, x_1906); -if (lean_obj_tag(x_1907) == 0) -{ -lean_object* x_1908; lean_object* x_1909; lean_object* x_1910; -x_1908 = lean_ctor_get(x_1907, 0); -lean_inc(x_1908); -x_1909 = lean_ctor_get(x_1907, 1); -lean_inc(x_1909); -lean_dec(x_1907); -lean_inc(x_10); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_5); -x_1910 = l_Lean_Meta_CheckAssignment_check(x_1908, x_5, x_6, x_7, x_8, x_9, x_10, x_1909); -if (lean_obj_tag(x_1910) == 0) -{ -lean_object* x_1911; lean_object* x_1912; lean_object* x_1913; lean_object* x_1914; lean_object* x_1915; uint8_t x_1916; lean_object* x_1917; lean_object* x_1918; lean_object* x_1919; lean_object* x_1920; lean_object* x_1921; lean_object* x_1922; -x_1911 = lean_ctor_get(x_1910, 0); -lean_inc(x_1911); -x_1912 = lean_ctor_get(x_1910, 1); -lean_inc(x_1912); -lean_dec(x_1910); -x_1913 = lean_ctor_get(x_5, 1); -lean_inc(x_1913); -lean_dec(x_5); -x_1914 = lean_ctor_get(x_1913, 1); -lean_inc(x_1914); -x_1915 = lean_ctor_get(x_1913, 4); -lean_inc(x_1915); -lean_dec(x_1913); -x_1916 = 0; -x_1917 = lean_box(0); -x_1918 = lean_unsigned_to_nat(0u); -x_1919 = l_Lean_Meta_mkFreshExprMVarAt(x_1914, x_1915, x_1911, x_1916, x_1917, x_1918, x_7, x_8, x_9, x_10, x_1912); -x_1920 = lean_ctor_get(x_1919, 0); -lean_inc(x_1920); -x_1921 = lean_ctor_get(x_1919, 1); -lean_inc(x_1921); -lean_dec(x_1919); -lean_inc(x_1920); -x_1922 = l_Lean_Meta_CheckAssignment_assignToConstFun(x_1877, x_1879, x_1920, x_7, x_8, x_9, x_10, x_1921); -if (lean_obj_tag(x_1922) == 0) -{ -lean_object* x_1923; uint8_t x_1924; -x_1923 = lean_ctor_get(x_1922, 0); -lean_inc(x_1923); -x_1924 = lean_unbox(x_1923); -lean_dec(x_1923); -if (x_1924 == 0) -{ -uint8_t x_1925; -lean_dec(x_1920); -x_1925 = !lean_is_exclusive(x_1922); -if (x_1925 == 0) -{ -lean_object* x_1926; -x_1926 = lean_ctor_get(x_1922, 0); -lean_dec(x_1926); -lean_ctor_set_tag(x_1922, 1); -lean_ctor_set(x_1922, 0, x_1890); -return x_1922; -} -else -{ -lean_object* x_1927; lean_object* x_1928; -x_1927 = lean_ctor_get(x_1922, 1); -lean_inc(x_1927); -lean_dec(x_1922); -x_1928 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1928, 0, x_1890); -lean_ctor_set(x_1928, 1, x_1927); -return x_1928; -} -} -else -{ -uint8_t x_1929; -lean_dec(x_1890); -x_1929 = !lean_is_exclusive(x_1922); -if (x_1929 == 0) -{ -lean_object* x_1930; -x_1930 = lean_ctor_get(x_1922, 0); -lean_dec(x_1930); -lean_ctor_set(x_1922, 0, x_1920); -return x_1922; -} -else -{ -lean_object* x_1931; lean_object* x_1932; -x_1931 = lean_ctor_get(x_1922, 1); -lean_inc(x_1931); -lean_dec(x_1922); -x_1932 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1932, 0, x_1920); -lean_ctor_set(x_1932, 1, x_1931); -return x_1932; -} -} -} -else -{ -uint8_t x_1933; -lean_dec(x_1920); -lean_dec(x_1890); -x_1933 = !lean_is_exclusive(x_1922); -if (x_1933 == 0) -{ -return x_1922; -} -else -{ -lean_object* x_1934; lean_object* x_1935; lean_object* x_1936; -x_1934 = lean_ctor_get(x_1922, 0); -x_1935 = lean_ctor_get(x_1922, 1); -lean_inc(x_1935); -lean_inc(x_1934); -lean_dec(x_1922); -x_1936 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1936, 0, x_1934); -lean_ctor_set(x_1936, 1, x_1935); -return x_1936; -} -} -} -else -{ -uint8_t x_1937; -lean_dec(x_1890); -lean_dec(x_1879); -lean_dec(x_1877); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_5); -x_1937 = !lean_is_exclusive(x_1910); -if (x_1937 == 0) -{ -return x_1910; -} -else -{ -lean_object* x_1938; lean_object* x_1939; lean_object* x_1940; -x_1938 = lean_ctor_get(x_1910, 0); -x_1939 = lean_ctor_get(x_1910, 1); -lean_inc(x_1939); -lean_inc(x_1938); -lean_dec(x_1910); -x_1940 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1940, 0, x_1938); -lean_ctor_set(x_1940, 1, x_1939); -return x_1940; -} -} -} -else -{ -uint8_t x_1941; -lean_dec(x_1890); -lean_dec(x_1879); -lean_dec(x_1877); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -x_1941 = !lean_is_exclusive(x_1907); -if (x_1941 == 0) -{ -return x_1907; -} -else -{ -lean_object* x_1942; lean_object* x_1943; lean_object* x_1944; -x_1942 = lean_ctor_get(x_1907, 0); -x_1943 = lean_ctor_get(x_1907, 1); -lean_inc(x_1943); -lean_inc(x_1942); -lean_dec(x_1907); -x_1944 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1944, 0, x_1942); -lean_ctor_set(x_1944, 1, x_1943); -return x_1944; -} -} -} -else -{ -uint8_t x_1945; -lean_dec(x_1879); -lean_dec(x_1877); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_1); -x_1945 = !lean_is_exclusive(x_1903); -if (x_1945 == 0) -{ -lean_object* x_1946; -x_1946 = lean_ctor_get(x_1903, 0); -lean_dec(x_1946); -lean_ctor_set_tag(x_1903, 1); -lean_ctor_set(x_1903, 0, x_1890); -return x_1903; -} -else -{ -lean_object* x_1947; lean_object* x_1948; -x_1947 = lean_ctor_get(x_1903, 1); -lean_inc(x_1947); -lean_dec(x_1903); -x_1948 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1948, 0, x_1890); -lean_ctor_set(x_1948, 1, x_1947); -return x_1948; -} -} -} -} -} -else -{ -lean_object* x_1949; lean_object* x_1950; lean_object* x_1951; uint8_t x_1952; -x_1949 = lean_ctor_get(x_1882, 1); -lean_inc(x_1949); -lean_dec(x_1882); -x_1950 = lean_ctor_get(x_1890, 0); -lean_inc(x_1950); -x_1951 = l_Lean_Meta_CheckAssignment_throwOutOfScopeFVar___rarg___closed__1; -x_1952 = lean_nat_dec_eq(x_1951, x_1950); -lean_dec(x_1950); -if (x_1952 == 0) -{ -lean_object* x_1953; -lean_dec(x_1879); -lean_dec(x_1877); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_1); -x_1953 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1953, 0, x_1890); -lean_ctor_set(x_1953, 1, x_1949); -return x_1953; -} -else -{ -uint8_t x_1954; -x_1954 = l_Lean_Expr_isMVar(x_1877); -if (x_1954 == 0) -{ -lean_object* x_1955; -lean_dec(x_1879); -lean_dec(x_1877); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_1); -x_1955 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1955, 0, x_1890); -lean_ctor_set(x_1955, 1, x_1949); -return x_1955; -} -else -{ -lean_object* x_1956; lean_object* x_1957; lean_object* x_1958; uint8_t x_1959; -lean_inc(x_1877); -x_1956 = l_Lean_Expr_mvarId_x21(x_1877); -x_1957 = l_Lean_MVarId_isDelayedAssigned___at_Lean_Meta_CheckAssignment_checkApp___spec__2(x_1956, x_5, x_6, x_7, x_8, x_9, x_10, x_1949); -x_1958 = lean_ctor_get(x_1957, 0); -lean_inc(x_1958); -x_1959 = lean_unbox(x_1958); -lean_dec(x_1958); -if (x_1959 == 0) -{ -lean_object* x_1960; lean_object* x_1961; -x_1960 = lean_ctor_get(x_1957, 1); -lean_inc(x_1960); -lean_dec(x_1957); -lean_inc(x_10); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -x_1961 = lean_infer_type(x_1, x_7, x_8, x_9, x_10, x_1960); -if (lean_obj_tag(x_1961) == 0) -{ -lean_object* x_1962; lean_object* x_1963; lean_object* x_1964; -x_1962 = lean_ctor_get(x_1961, 0); -lean_inc(x_1962); -x_1963 = lean_ctor_get(x_1961, 1); -lean_inc(x_1963); -lean_dec(x_1961); -lean_inc(x_10); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_5); -x_1964 = l_Lean_Meta_CheckAssignment_check(x_1962, x_5, x_6, x_7, x_8, x_9, x_10, x_1963); -if (lean_obj_tag(x_1964) == 0) -{ -lean_object* x_1965; lean_object* x_1966; lean_object* x_1967; lean_object* x_1968; lean_object* x_1969; uint8_t x_1970; lean_object* x_1971; lean_object* x_1972; lean_object* x_1973; lean_object* x_1974; lean_object* x_1975; lean_object* x_1976; -x_1965 = lean_ctor_get(x_1964, 0); -lean_inc(x_1965); -x_1966 = lean_ctor_get(x_1964, 1); -lean_inc(x_1966); -lean_dec(x_1964); -x_1967 = lean_ctor_get(x_5, 1); -lean_inc(x_1967); -lean_dec(x_5); -x_1968 = lean_ctor_get(x_1967, 1); -lean_inc(x_1968); -x_1969 = lean_ctor_get(x_1967, 4); -lean_inc(x_1969); -lean_dec(x_1967); -x_1970 = 0; -x_1971 = lean_box(0); -x_1972 = lean_unsigned_to_nat(0u); -x_1973 = l_Lean_Meta_mkFreshExprMVarAt(x_1968, x_1969, x_1965, x_1970, x_1971, x_1972, x_7, x_8, x_9, x_10, x_1966); -x_1974 = lean_ctor_get(x_1973, 0); -lean_inc(x_1974); -x_1975 = lean_ctor_get(x_1973, 1); -lean_inc(x_1975); -lean_dec(x_1973); -lean_inc(x_1974); -x_1976 = l_Lean_Meta_CheckAssignment_assignToConstFun(x_1877, x_1879, x_1974, x_7, x_8, x_9, x_10, x_1975); -if (lean_obj_tag(x_1976) == 0) -{ -lean_object* x_1977; uint8_t x_1978; -x_1977 = lean_ctor_get(x_1976, 0); -lean_inc(x_1977); -x_1978 = lean_unbox(x_1977); -lean_dec(x_1977); -if (x_1978 == 0) -{ -lean_object* x_1979; lean_object* x_1980; lean_object* x_1981; -lean_dec(x_1974); -x_1979 = lean_ctor_get(x_1976, 1); -lean_inc(x_1979); -if (lean_is_exclusive(x_1976)) { - lean_ctor_release(x_1976, 0); - lean_ctor_release(x_1976, 1); - x_1980 = x_1976; -} else { - lean_dec_ref(x_1976); - x_1980 = lean_box(0); -} -if (lean_is_scalar(x_1980)) { - x_1981 = lean_alloc_ctor(1, 2, 0); -} else { - x_1981 = x_1980; - lean_ctor_set_tag(x_1981, 1); -} -lean_ctor_set(x_1981, 0, x_1890); -lean_ctor_set(x_1981, 1, x_1979); -return x_1981; -} -else -{ -lean_object* x_1982; lean_object* x_1983; lean_object* x_1984; -lean_dec(x_1890); -x_1982 = lean_ctor_get(x_1976, 1); -lean_inc(x_1982); -if (lean_is_exclusive(x_1976)) { - lean_ctor_release(x_1976, 0); - lean_ctor_release(x_1976, 1); - x_1983 = x_1976; -} else { - lean_dec_ref(x_1976); - x_1983 = lean_box(0); -} -if (lean_is_scalar(x_1983)) { - x_1984 = lean_alloc_ctor(0, 2, 0); -} else { - x_1984 = x_1983; -} -lean_ctor_set(x_1984, 0, x_1974); -lean_ctor_set(x_1984, 1, x_1982); -return x_1984; -} -} -else -{ -lean_object* x_1985; lean_object* x_1986; lean_object* x_1987; lean_object* x_1988; -lean_dec(x_1974); -lean_dec(x_1890); -x_1985 = lean_ctor_get(x_1976, 0); -lean_inc(x_1985); -x_1986 = lean_ctor_get(x_1976, 1); -lean_inc(x_1986); -if (lean_is_exclusive(x_1976)) { - lean_ctor_release(x_1976, 0); - lean_ctor_release(x_1976, 1); - x_1987 = x_1976; -} else { - lean_dec_ref(x_1976); - x_1987 = lean_box(0); -} -if (lean_is_scalar(x_1987)) { - x_1988 = lean_alloc_ctor(1, 2, 0); -} else { - x_1988 = x_1987; -} -lean_ctor_set(x_1988, 0, x_1985); -lean_ctor_set(x_1988, 1, x_1986); -return x_1988; -} -} -else -{ -lean_object* x_1989; lean_object* x_1990; lean_object* x_1991; lean_object* x_1992; -lean_dec(x_1890); -lean_dec(x_1879); -lean_dec(x_1877); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_5); -x_1989 = lean_ctor_get(x_1964, 0); -lean_inc(x_1989); -x_1990 = lean_ctor_get(x_1964, 1); -lean_inc(x_1990); -if (lean_is_exclusive(x_1964)) { - lean_ctor_release(x_1964, 0); - lean_ctor_release(x_1964, 1); - x_1991 = x_1964; -} else { - lean_dec_ref(x_1964); - x_1991 = lean_box(0); -} -if (lean_is_scalar(x_1991)) { - x_1992 = lean_alloc_ctor(1, 2, 0); -} else { - x_1992 = x_1991; -} -lean_ctor_set(x_1992, 0, x_1989); -lean_ctor_set(x_1992, 1, x_1990); -return x_1992; -} -} -else -{ -lean_object* x_1993; lean_object* x_1994; lean_object* x_1995; lean_object* x_1996; -lean_dec(x_1890); -lean_dec(x_1879); -lean_dec(x_1877); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -x_1993 = lean_ctor_get(x_1961, 0); -lean_inc(x_1993); -x_1994 = lean_ctor_get(x_1961, 1); -lean_inc(x_1994); -if (lean_is_exclusive(x_1961)) { - lean_ctor_release(x_1961, 0); - lean_ctor_release(x_1961, 1); - x_1995 = x_1961; -} else { - lean_dec_ref(x_1961); - x_1995 = lean_box(0); -} -if (lean_is_scalar(x_1995)) { - x_1996 = lean_alloc_ctor(1, 2, 0); -} else { - x_1996 = x_1995; -} -lean_ctor_set(x_1996, 0, x_1993); -lean_ctor_set(x_1996, 1, x_1994); -return x_1996; -} -} -else -{ -lean_object* x_1997; lean_object* x_1998; lean_object* x_1999; -lean_dec(x_1879); -lean_dec(x_1877); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_1); -x_1997 = lean_ctor_get(x_1957, 1); -lean_inc(x_1997); -if (lean_is_exclusive(x_1957)) { - lean_ctor_release(x_1957, 0); - lean_ctor_release(x_1957, 1); - x_1998 = x_1957; -} else { - lean_dec_ref(x_1957); - x_1998 = lean_box(0); -} -if (lean_is_scalar(x_1998)) { - x_1999 = lean_alloc_ctor(1, 2, 0); -} else { - x_1999 = x_1998; - lean_ctor_set_tag(x_1999, 1); -} -lean_ctor_set(x_1999, 0, x_1890); -lean_ctor_set(x_1999, 1, x_1997); -return x_1999; -} -} -} -} -} -} -} -block_2016: -{ -lean_object* x_2002; lean_object* x_2003; -lean_dec(x_2001); -lean_inc(x_2); -x_2002 = l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_CheckAssignment_findCached_x3f(x_2, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -x_2003 = lean_ctor_get(x_2002, 0); -lean_inc(x_2003); -if (lean_obj_tag(x_2003) == 0) -{ -lean_object* x_2004; lean_object* x_2005; -x_2004 = lean_ctor_get(x_2002, 1); -lean_inc(x_2004); -lean_dec(x_2002); -lean_inc(x_10); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_2); -x_2005 = l_Lean_Meta_CheckAssignment_checkMVar(x_2, x_5, x_6, x_7, x_8, x_9, x_10, x_2004); -if (lean_obj_tag(x_2005) == 0) -{ -lean_object* x_2006; lean_object* x_2007; lean_object* x_2008; lean_object* x_2009; -x_2006 = lean_ctor_get(x_2005, 0); -lean_inc(x_2006); -x_2007 = lean_ctor_get(x_2005, 1); -lean_inc(x_2007); -lean_dec(x_2005); -lean_inc(x_2006); -x_2008 = l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_CheckAssignment_cache(x_2, x_2006, x_5, x_6, x_7, x_8, x_9, x_10, x_2007); -x_2009 = lean_ctor_get(x_2008, 1); -lean_inc(x_2009); -lean_dec(x_2008); -x_1877 = x_2006; -x_1878 = x_2009; -goto block_2000; -} -else -{ -uint8_t x_2010; -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_3); -lean_dec(x_2); -lean_dec(x_1); -x_2010 = !lean_is_exclusive(x_2005); -if (x_2010 == 0) -{ -return x_2005; -} -else -{ -lean_object* x_2011; lean_object* x_2012; lean_object* x_2013; -x_2011 = lean_ctor_get(x_2005, 0); -x_2012 = lean_ctor_get(x_2005, 1); -lean_inc(x_2012); -lean_inc(x_2011); -lean_dec(x_2005); -x_2013 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2013, 0, x_2011); -lean_ctor_set(x_2013, 1, x_2012); -return x_2013; -} -} -} -else -{ -lean_object* x_2014; lean_object* x_2015; -lean_dec(x_2); -x_2014 = lean_ctor_get(x_2002, 1); -lean_inc(x_2014); -lean_dec(x_2002); -x_2015 = lean_ctor_get(x_2003, 0); -lean_inc(x_2015); -lean_dec(x_2003); -x_1877 = x_2015; -x_1878 = x_2014; -goto block_2000; +lean_object* x_1698; lean_object* x_1699; lean_object* x_1700; +x_1698 = lean_ctor_get(x_1679, 0); +x_1699 = lean_ctor_get(x_1679, 1); +lean_inc(x_1699); +lean_inc(x_1698); +lean_dec(x_1679); +x_1700 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1700, 0, x_1698); +lean_ctor_set(x_1700, 1, x_1699); +return x_1700; } } } } default: { -lean_object* x_2038; lean_object* x_2078; uint8_t x_2224; +lean_object* x_1718; lean_object* x_1848; uint8_t x_1872; lean_dec(x_4); -x_2224 = l_Lean_Expr_isMVar(x_2); -if (x_2224 == 0) +x_1872 = l_Lean_Expr_isMVar(x_2); +if (x_1872 == 0) { -lean_object* x_2225; +lean_object* x_1873; lean_dec(x_1); -x_2225 = lean_box(0); -x_2038 = x_2225; -goto block_2077; +x_1873 = lean_box(0); +x_1848 = x_1873; +goto block_1871; } else { -lean_object* x_2226; uint8_t x_2227; -x_2226 = lean_ctor_get(x_7, 0); -lean_inc(x_2226); -x_2227 = lean_ctor_get_uint8(x_2226, 1); -lean_dec(x_2226); -if (x_2227 == 0) +lean_object* x_1874; uint8_t x_1875; +x_1874 = lean_ctor_get(x_7, 0); +lean_inc(x_1874); +x_1875 = lean_ctor_get_uint8(x_1874, 1); +lean_dec(x_1874); +if (x_1875 == 0) { -lean_object* x_2228; +lean_object* x_1876; lean_dec(x_1); -x_2228 = lean_box(0); -x_2038 = x_2228; -goto block_2077; +x_1876 = lean_box(0); +x_1848 = x_1876; +goto block_1871; } else { -lean_object* x_2229; lean_object* x_2230; uint8_t x_2231; -x_2229 = lean_array_get_size(x_3); -x_2230 = lean_unsigned_to_nat(0u); -x_2231 = lean_nat_dec_lt(x_2230, x_2229); -if (x_2231 == 0) +lean_object* x_1877; lean_object* x_1878; uint8_t x_1879; +x_1877 = lean_array_get_size(x_3); +x_1878 = lean_unsigned_to_nat(0u); +x_1879 = lean_nat_dec_lt(x_1878, x_1877); +if (x_1879 == 0) { -lean_object* x_2232; -lean_dec(x_2229); -x_2232 = lean_box(0); -x_2078 = x_2232; -goto block_2223; +lean_object* x_1880; +lean_dec(x_1877); +x_1880 = lean_box(0); +x_1718 = x_1880; +goto block_1847; } else { -uint8_t x_2233; -x_2233 = lean_nat_dec_le(x_2229, x_2229); -if (x_2233 == 0) +uint8_t x_1881; +x_1881 = lean_nat_dec_le(x_1877, x_1877); +if (x_1881 == 0) { -lean_object* x_2234; -lean_dec(x_2229); -x_2234 = lean_box(0); -x_2078 = x_2234; -goto block_2223; +lean_object* x_1882; +lean_dec(x_1877); +x_1882 = lean_box(0); +x_1718 = x_1882; +goto block_1847; } else { -size_t x_2235; size_t x_2236; uint8_t x_2237; -x_2235 = 0; -x_2236 = lean_usize_of_nat(x_2229); -lean_dec(x_2229); -x_2237 = l_Array_anyMUnsafe_any___at_Lean_Meta_CheckAssignment_checkApp___spec__3(x_3, x_2235, x_2236); -if (x_2237 == 0) +size_t x_1883; size_t x_1884; uint8_t x_1885; +x_1883 = 0; +x_1884 = lean_usize_of_nat(x_1877); +lean_dec(x_1877); +x_1885 = l_Array_anyMUnsafe_any___at_Lean_Meta_CheckAssignment_checkApp___spec__3(x_3, x_1883, x_1884); +if (x_1885 == 0) { -lean_object* x_2238; -x_2238 = lean_box(0); -x_2078 = x_2238; -goto block_2223; +lean_object* x_1886; +x_1886 = lean_box(0); +x_1718 = x_1886; +goto block_1847; } else { -lean_object* x_2239; +lean_object* x_1887; lean_dec(x_1); -x_2239 = lean_box(0); -x_2038 = x_2239; -goto block_2077; +x_1887 = lean_box(0); +x_1848 = x_1887; +goto block_1871; } } } } } -block_2077: +block_1847: { -lean_object* x_2039; lean_object* x_2040; lean_object* x_2057; uint8_t x_2073; -lean_dec(x_2038); -x_2073 = l_Lean_Expr_hasExprMVar(x_2); -if (x_2073 == 0) -{ -uint8_t x_2074; -x_2074 = l_Lean_Expr_hasFVar(x_2); -if (x_2074 == 0) -{ -x_2039 = x_2; -x_2040 = x_11; -goto block_2056; -} -else -{ -lean_object* x_2075; -x_2075 = lean_box(0); -x_2057 = x_2075; -goto block_2072; -} -} -else -{ -lean_object* x_2076; -x_2076 = lean_box(0); -x_2057 = x_2076; -goto block_2072; -} -block_2056: -{ -lean_object* x_2041; size_t x_2042; size_t x_2043; lean_object* x_2044; -x_2041 = lean_array_get_size(x_3); -x_2042 = lean_usize_of_nat(x_2041); -lean_dec(x_2041); -x_2043 = 0; -x_2044 = l_Array_mapMUnsafe_map___at_Lean_Meta_CheckAssignment_checkApp___spec__1(x_2042, x_2043, x_3, x_5, x_6, x_7, x_8, x_9, x_10, x_2040); -if (lean_obj_tag(x_2044) == 0) -{ -uint8_t x_2045; -x_2045 = !lean_is_exclusive(x_2044); -if (x_2045 == 0) -{ -lean_object* x_2046; lean_object* x_2047; -x_2046 = lean_ctor_get(x_2044, 0); -x_2047 = l_Lean_mkAppN(x_2039, x_2046); -lean_ctor_set(x_2044, 0, x_2047); -return x_2044; -} -else -{ -lean_object* x_2048; lean_object* x_2049; lean_object* x_2050; lean_object* x_2051; -x_2048 = lean_ctor_get(x_2044, 0); -x_2049 = lean_ctor_get(x_2044, 1); -lean_inc(x_2049); -lean_inc(x_2048); -lean_dec(x_2044); -x_2050 = l_Lean_mkAppN(x_2039, x_2048); -x_2051 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_2051, 0, x_2050); -lean_ctor_set(x_2051, 1, x_2049); -return x_2051; -} -} -else -{ -uint8_t x_2052; -lean_dec(x_2039); -x_2052 = !lean_is_exclusive(x_2044); -if (x_2052 == 0) -{ -return x_2044; -} -else -{ -lean_object* x_2053; lean_object* x_2054; lean_object* x_2055; -x_2053 = lean_ctor_get(x_2044, 0); -x_2054 = lean_ctor_get(x_2044, 1); -lean_inc(x_2054); -lean_inc(x_2053); -lean_dec(x_2044); -x_2055 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2055, 0, x_2053); -lean_ctor_set(x_2055, 1, x_2054); -return x_2055; -} -} -} -block_2072: -{ -lean_object* x_2058; lean_object* x_2059; -lean_dec(x_2057); -lean_inc(x_2); -x_2058 = l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_CheckAssignment_findCached_x3f(x_2, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -x_2059 = lean_ctor_get(x_2058, 0); -lean_inc(x_2059); -if (lean_obj_tag(x_2059) == 0) -{ -lean_object* x_2060; lean_object* x_2061; -x_2060 = lean_ctor_get(x_2058, 1); -lean_inc(x_2060); -lean_dec(x_2058); +lean_object* x_1719; +lean_dec(x_1718); lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); lean_inc(x_5); -lean_inc(x_2); -x_2061 = l_Lean_Meta_CheckAssignment_check(x_2, x_5, x_6, x_7, x_8, x_9, x_10, x_2060); -if (lean_obj_tag(x_2061) == 0) +x_1719 = l_Lean_Meta_CheckAssignment_check(x_2, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +if (lean_obj_tag(x_1719) == 0) { -lean_object* x_2062; lean_object* x_2063; lean_object* x_2064; lean_object* x_2065; -x_2062 = lean_ctor_get(x_2061, 0); -lean_inc(x_2062); -x_2063 = lean_ctor_get(x_2061, 1); -lean_inc(x_2063); -lean_dec(x_2061); -lean_inc(x_2062); -x_2064 = l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_CheckAssignment_cache(x_2, x_2062, x_5, x_6, x_7, x_8, x_9, x_10, x_2063); -x_2065 = lean_ctor_get(x_2064, 1); -lean_inc(x_2065); -lean_dec(x_2064); -x_2039 = x_2062; -x_2040 = x_2065; -goto block_2056; +lean_object* x_1720; lean_object* x_1721; lean_object* x_1722; size_t x_1723; size_t x_1724; lean_object* x_1725; +x_1720 = lean_ctor_get(x_1719, 0); +lean_inc(x_1720); +x_1721 = lean_ctor_get(x_1719, 1); +lean_inc(x_1721); +lean_dec(x_1719); +x_1722 = lean_array_get_size(x_3); +x_1723 = lean_usize_of_nat(x_1722); +x_1724 = 0; +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +x_1725 = l_Array_mapMUnsafe_map___at_Lean_Meta_CheckAssignment_checkApp___spec__1(x_1723, x_1724, x_3, x_5, x_6, x_7, x_8, x_9, x_10, x_1721); +if (lean_obj_tag(x_1725) == 0) +{ +uint8_t x_1726; +lean_dec(x_1722); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_1); +x_1726 = !lean_is_exclusive(x_1725); +if (x_1726 == 0) +{ +lean_object* x_1727; lean_object* x_1728; +x_1727 = lean_ctor_get(x_1725, 0); +x_1728 = l_Lean_mkAppN(x_1720, x_1727); +lean_ctor_set(x_1725, 0, x_1728); +return x_1725; } else { -uint8_t x_2066; +lean_object* x_1729; lean_object* x_1730; lean_object* x_1731; lean_object* x_1732; +x_1729 = lean_ctor_get(x_1725, 0); +x_1730 = lean_ctor_get(x_1725, 1); +lean_inc(x_1730); +lean_inc(x_1729); +lean_dec(x_1725); +x_1731 = l_Lean_mkAppN(x_1720, x_1729); +x_1732 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1732, 0, x_1731); +lean_ctor_set(x_1732, 1, x_1730); +return x_1732; +} +} +else +{ +lean_object* x_1733; +x_1733 = lean_ctor_get(x_1725, 0); +lean_inc(x_1733); +if (lean_obj_tag(x_1733) == 0) +{ +uint8_t x_1734; +lean_dec(x_1722); +lean_dec(x_1720); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_1); +x_1734 = !lean_is_exclusive(x_1725); +if (x_1734 == 0) +{ +lean_object* x_1735; +x_1735 = lean_ctor_get(x_1725, 0); +lean_dec(x_1735); +return x_1725; +} +else +{ +lean_object* x_1736; lean_object* x_1737; +x_1736 = lean_ctor_get(x_1725, 1); +lean_inc(x_1736); +lean_dec(x_1725); +x_1737 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1737, 0, x_1733); +lean_ctor_set(x_1737, 1, x_1736); +return x_1737; +} +} +else +{ +uint8_t x_1738; +x_1738 = !lean_is_exclusive(x_1725); +if (x_1738 == 0) +{ +lean_object* x_1739; lean_object* x_1740; lean_object* x_1741; lean_object* x_1742; uint8_t x_1743; +x_1739 = lean_ctor_get(x_1725, 1); +x_1740 = lean_ctor_get(x_1725, 0); +lean_dec(x_1740); +x_1741 = lean_ctor_get(x_1733, 0); +lean_inc(x_1741); +x_1742 = l_Lean_Meta_CheckAssignment_throwOutOfScopeFVar___rarg___closed__1; +x_1743 = lean_nat_dec_eq(x_1742, x_1741); +lean_dec(x_1741); +if (x_1743 == 0) +{ +lean_dec(x_1722); +lean_dec(x_1720); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_1); +return x_1725; +} +else +{ +uint8_t x_1744; +x_1744 = l_Lean_Expr_isMVar(x_1720); +if (x_1744 == 0) +{ +lean_dec(x_1722); +lean_dec(x_1720); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_1); +return x_1725; +} +else +{ +lean_object* x_1745; lean_object* x_1746; lean_object* x_1747; uint8_t x_1748; +lean_free_object(x_1725); +lean_inc(x_1720); +x_1745 = l_Lean_Expr_mvarId_x21(x_1720); +x_1746 = l_Lean_MVarId_isDelayedAssigned___at_Lean_Meta_CheckAssignment_checkApp___spec__2(x_1745, x_5, x_6, x_7, x_8, x_9, x_10, x_1739); +x_1747 = lean_ctor_get(x_1746, 0); +lean_inc(x_1747); +x_1748 = lean_unbox(x_1747); +lean_dec(x_1747); +if (x_1748 == 0) +{ +lean_object* x_1749; lean_object* x_1750; +x_1749 = lean_ctor_get(x_1746, 1); +lean_inc(x_1749); +lean_dec(x_1746); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +x_1750 = lean_infer_type(x_1, x_7, x_8, x_9, x_10, x_1749); +if (lean_obj_tag(x_1750) == 0) +{ +lean_object* x_1751; lean_object* x_1752; lean_object* x_1753; +x_1751 = lean_ctor_get(x_1750, 0); +lean_inc(x_1751); +x_1752 = lean_ctor_get(x_1750, 1); +lean_inc(x_1752); +lean_dec(x_1750); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_5); +x_1753 = l_Lean_Meta_CheckAssignment_check(x_1751, x_5, x_6, x_7, x_8, x_9, x_10, x_1752); +if (lean_obj_tag(x_1753) == 0) +{ +lean_object* x_1754; lean_object* x_1755; lean_object* x_1756; lean_object* x_1757; lean_object* x_1758; uint8_t x_1759; lean_object* x_1760; lean_object* x_1761; lean_object* x_1762; lean_object* x_1763; lean_object* x_1764; lean_object* x_1765; +x_1754 = lean_ctor_get(x_1753, 0); +lean_inc(x_1754); +x_1755 = lean_ctor_get(x_1753, 1); +lean_inc(x_1755); +lean_dec(x_1753); +x_1756 = lean_ctor_get(x_5, 1); +lean_inc(x_1756); +lean_dec(x_5); +x_1757 = lean_ctor_get(x_1756, 1); +lean_inc(x_1757); +x_1758 = lean_ctor_get(x_1756, 4); +lean_inc(x_1758); +lean_dec(x_1756); +x_1759 = 0; +x_1760 = lean_box(0); +x_1761 = lean_unsigned_to_nat(0u); +x_1762 = l_Lean_Meta_mkFreshExprMVarAt(x_1757, x_1758, x_1754, x_1759, x_1760, x_1761, x_7, x_8, x_9, x_10, x_1755); +x_1763 = lean_ctor_get(x_1762, 0); +lean_inc(x_1763); +x_1764 = lean_ctor_get(x_1762, 1); +lean_inc(x_1764); +lean_dec(x_1762); +lean_inc(x_1763); +x_1765 = l_Lean_Meta_CheckAssignment_assignToConstFun(x_1720, x_1722, x_1763, x_7, x_8, x_9, x_10, x_1764); +if (lean_obj_tag(x_1765) == 0) +{ +lean_object* x_1766; uint8_t x_1767; +x_1766 = lean_ctor_get(x_1765, 0); +lean_inc(x_1766); +x_1767 = lean_unbox(x_1766); +lean_dec(x_1766); +if (x_1767 == 0) +{ +uint8_t x_1768; +lean_dec(x_1763); +x_1768 = !lean_is_exclusive(x_1765); +if (x_1768 == 0) +{ +lean_object* x_1769; +x_1769 = lean_ctor_get(x_1765, 0); +lean_dec(x_1769); +lean_ctor_set_tag(x_1765, 1); +lean_ctor_set(x_1765, 0, x_1733); +return x_1765; +} +else +{ +lean_object* x_1770; lean_object* x_1771; +x_1770 = lean_ctor_get(x_1765, 1); +lean_inc(x_1770); +lean_dec(x_1765); +x_1771 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1771, 0, x_1733); +lean_ctor_set(x_1771, 1, x_1770); +return x_1771; +} +} +else +{ +uint8_t x_1772; +lean_dec(x_1733); +x_1772 = !lean_is_exclusive(x_1765); +if (x_1772 == 0) +{ +lean_object* x_1773; +x_1773 = lean_ctor_get(x_1765, 0); +lean_dec(x_1773); +lean_ctor_set(x_1765, 0, x_1763); +return x_1765; +} +else +{ +lean_object* x_1774; lean_object* x_1775; +x_1774 = lean_ctor_get(x_1765, 1); +lean_inc(x_1774); +lean_dec(x_1765); +x_1775 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1775, 0, x_1763); +lean_ctor_set(x_1775, 1, x_1774); +return x_1775; +} +} +} +else +{ +uint8_t x_1776; +lean_dec(x_1763); +lean_dec(x_1733); +x_1776 = !lean_is_exclusive(x_1765); +if (x_1776 == 0) +{ +return x_1765; +} +else +{ +lean_object* x_1777; lean_object* x_1778; lean_object* x_1779; +x_1777 = lean_ctor_get(x_1765, 0); +x_1778 = lean_ctor_get(x_1765, 1); +lean_inc(x_1778); +lean_inc(x_1777); +lean_dec(x_1765); +x_1779 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1779, 0, x_1777); +lean_ctor_set(x_1779, 1, x_1778); +return x_1779; +} +} +} +else +{ +uint8_t x_1780; +lean_dec(x_1733); +lean_dec(x_1722); +lean_dec(x_1720); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_5); +x_1780 = !lean_is_exclusive(x_1753); +if (x_1780 == 0) +{ +return x_1753; +} +else +{ +lean_object* x_1781; lean_object* x_1782; lean_object* x_1783; +x_1781 = lean_ctor_get(x_1753, 0); +x_1782 = lean_ctor_get(x_1753, 1); +lean_inc(x_1782); +lean_inc(x_1781); +lean_dec(x_1753); +x_1783 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1783, 0, x_1781); +lean_ctor_set(x_1783, 1, x_1782); +return x_1783; +} +} +} +else +{ +uint8_t x_1784; +lean_dec(x_1733); +lean_dec(x_1722); +lean_dec(x_1720); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +x_1784 = !lean_is_exclusive(x_1750); +if (x_1784 == 0) +{ +return x_1750; +} +else +{ +lean_object* x_1785; lean_object* x_1786; lean_object* x_1787; +x_1785 = lean_ctor_get(x_1750, 0); +x_1786 = lean_ctor_get(x_1750, 1); +lean_inc(x_1786); +lean_inc(x_1785); +lean_dec(x_1750); +x_1787 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1787, 0, x_1785); +lean_ctor_set(x_1787, 1, x_1786); +return x_1787; +} +} +} +else +{ +uint8_t x_1788; +lean_dec(x_1722); +lean_dec(x_1720); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_1); +x_1788 = !lean_is_exclusive(x_1746); +if (x_1788 == 0) +{ +lean_object* x_1789; +x_1789 = lean_ctor_get(x_1746, 0); +lean_dec(x_1789); +lean_ctor_set_tag(x_1746, 1); +lean_ctor_set(x_1746, 0, x_1733); +return x_1746; +} +else +{ +lean_object* x_1790; lean_object* x_1791; +x_1790 = lean_ctor_get(x_1746, 1); +lean_inc(x_1790); +lean_dec(x_1746); +x_1791 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1791, 0, x_1733); +lean_ctor_set(x_1791, 1, x_1790); +return x_1791; +} +} +} +} +} +else +{ +lean_object* x_1792; lean_object* x_1793; lean_object* x_1794; uint8_t x_1795; +x_1792 = lean_ctor_get(x_1725, 1); +lean_inc(x_1792); +lean_dec(x_1725); +x_1793 = lean_ctor_get(x_1733, 0); +lean_inc(x_1793); +x_1794 = l_Lean_Meta_CheckAssignment_throwOutOfScopeFVar___rarg___closed__1; +x_1795 = lean_nat_dec_eq(x_1794, x_1793); +lean_dec(x_1793); +if (x_1795 == 0) +{ +lean_object* x_1796; +lean_dec(x_1722); +lean_dec(x_1720); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_1); +x_1796 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1796, 0, x_1733); +lean_ctor_set(x_1796, 1, x_1792); +return x_1796; +} +else +{ +uint8_t x_1797; +x_1797 = l_Lean_Expr_isMVar(x_1720); +if (x_1797 == 0) +{ +lean_object* x_1798; +lean_dec(x_1722); +lean_dec(x_1720); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_1); +x_1798 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1798, 0, x_1733); +lean_ctor_set(x_1798, 1, x_1792); +return x_1798; +} +else +{ +lean_object* x_1799; lean_object* x_1800; lean_object* x_1801; uint8_t x_1802; +lean_inc(x_1720); +x_1799 = l_Lean_Expr_mvarId_x21(x_1720); +x_1800 = l_Lean_MVarId_isDelayedAssigned___at_Lean_Meta_CheckAssignment_checkApp___spec__2(x_1799, x_5, x_6, x_7, x_8, x_9, x_10, x_1792); +x_1801 = lean_ctor_get(x_1800, 0); +lean_inc(x_1801); +x_1802 = lean_unbox(x_1801); +lean_dec(x_1801); +if (x_1802 == 0) +{ +lean_object* x_1803; lean_object* x_1804; +x_1803 = lean_ctor_get(x_1800, 1); +lean_inc(x_1803); +lean_dec(x_1800); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +x_1804 = lean_infer_type(x_1, x_7, x_8, x_9, x_10, x_1803); +if (lean_obj_tag(x_1804) == 0) +{ +lean_object* x_1805; lean_object* x_1806; lean_object* x_1807; +x_1805 = lean_ctor_get(x_1804, 0); +lean_inc(x_1805); +x_1806 = lean_ctor_get(x_1804, 1); +lean_inc(x_1806); +lean_dec(x_1804); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_5); +x_1807 = l_Lean_Meta_CheckAssignment_check(x_1805, x_5, x_6, x_7, x_8, x_9, x_10, x_1806); +if (lean_obj_tag(x_1807) == 0) +{ +lean_object* x_1808; lean_object* x_1809; lean_object* x_1810; lean_object* x_1811; lean_object* x_1812; uint8_t x_1813; lean_object* x_1814; lean_object* x_1815; lean_object* x_1816; lean_object* x_1817; lean_object* x_1818; lean_object* x_1819; +x_1808 = lean_ctor_get(x_1807, 0); +lean_inc(x_1808); +x_1809 = lean_ctor_get(x_1807, 1); +lean_inc(x_1809); +lean_dec(x_1807); +x_1810 = lean_ctor_get(x_5, 1); +lean_inc(x_1810); +lean_dec(x_5); +x_1811 = lean_ctor_get(x_1810, 1); +lean_inc(x_1811); +x_1812 = lean_ctor_get(x_1810, 4); +lean_inc(x_1812); +lean_dec(x_1810); +x_1813 = 0; +x_1814 = lean_box(0); +x_1815 = lean_unsigned_to_nat(0u); +x_1816 = l_Lean_Meta_mkFreshExprMVarAt(x_1811, x_1812, x_1808, x_1813, x_1814, x_1815, x_7, x_8, x_9, x_10, x_1809); +x_1817 = lean_ctor_get(x_1816, 0); +lean_inc(x_1817); +x_1818 = lean_ctor_get(x_1816, 1); +lean_inc(x_1818); +lean_dec(x_1816); +lean_inc(x_1817); +x_1819 = l_Lean_Meta_CheckAssignment_assignToConstFun(x_1720, x_1722, x_1817, x_7, x_8, x_9, x_10, x_1818); +if (lean_obj_tag(x_1819) == 0) +{ +lean_object* x_1820; uint8_t x_1821; +x_1820 = lean_ctor_get(x_1819, 0); +lean_inc(x_1820); +x_1821 = lean_unbox(x_1820); +lean_dec(x_1820); +if (x_1821 == 0) +{ +lean_object* x_1822; lean_object* x_1823; lean_object* x_1824; +lean_dec(x_1817); +x_1822 = lean_ctor_get(x_1819, 1); +lean_inc(x_1822); +if (lean_is_exclusive(x_1819)) { + lean_ctor_release(x_1819, 0); + lean_ctor_release(x_1819, 1); + x_1823 = x_1819; +} else { + lean_dec_ref(x_1819); + x_1823 = lean_box(0); +} +if (lean_is_scalar(x_1823)) { + x_1824 = lean_alloc_ctor(1, 2, 0); +} else { + x_1824 = x_1823; + lean_ctor_set_tag(x_1824, 1); +} +lean_ctor_set(x_1824, 0, x_1733); +lean_ctor_set(x_1824, 1, x_1822); +return x_1824; +} +else +{ +lean_object* x_1825; lean_object* x_1826; lean_object* x_1827; +lean_dec(x_1733); +x_1825 = lean_ctor_get(x_1819, 1); +lean_inc(x_1825); +if (lean_is_exclusive(x_1819)) { + lean_ctor_release(x_1819, 0); + lean_ctor_release(x_1819, 1); + x_1826 = x_1819; +} else { + lean_dec_ref(x_1819); + x_1826 = lean_box(0); +} +if (lean_is_scalar(x_1826)) { + x_1827 = lean_alloc_ctor(0, 2, 0); +} else { + x_1827 = x_1826; +} +lean_ctor_set(x_1827, 0, x_1817); +lean_ctor_set(x_1827, 1, x_1825); +return x_1827; +} +} +else +{ +lean_object* x_1828; lean_object* x_1829; lean_object* x_1830; lean_object* x_1831; +lean_dec(x_1817); +lean_dec(x_1733); +x_1828 = lean_ctor_get(x_1819, 0); +lean_inc(x_1828); +x_1829 = lean_ctor_get(x_1819, 1); +lean_inc(x_1829); +if (lean_is_exclusive(x_1819)) { + lean_ctor_release(x_1819, 0); + lean_ctor_release(x_1819, 1); + x_1830 = x_1819; +} else { + lean_dec_ref(x_1819); + x_1830 = lean_box(0); +} +if (lean_is_scalar(x_1830)) { + x_1831 = lean_alloc_ctor(1, 2, 0); +} else { + x_1831 = x_1830; +} +lean_ctor_set(x_1831, 0, x_1828); +lean_ctor_set(x_1831, 1, x_1829); +return x_1831; +} +} +else +{ +lean_object* x_1832; lean_object* x_1833; lean_object* x_1834; lean_object* x_1835; +lean_dec(x_1733); +lean_dec(x_1722); +lean_dec(x_1720); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_5); +x_1832 = lean_ctor_get(x_1807, 0); +lean_inc(x_1832); +x_1833 = lean_ctor_get(x_1807, 1); +lean_inc(x_1833); +if (lean_is_exclusive(x_1807)) { + lean_ctor_release(x_1807, 0); + lean_ctor_release(x_1807, 1); + x_1834 = x_1807; +} else { + lean_dec_ref(x_1807); + x_1834 = lean_box(0); +} +if (lean_is_scalar(x_1834)) { + x_1835 = lean_alloc_ctor(1, 2, 0); +} else { + x_1835 = x_1834; +} +lean_ctor_set(x_1835, 0, x_1832); +lean_ctor_set(x_1835, 1, x_1833); +return x_1835; +} +} +else +{ +lean_object* x_1836; lean_object* x_1837; lean_object* x_1838; lean_object* x_1839; +lean_dec(x_1733); +lean_dec(x_1722); +lean_dec(x_1720); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +x_1836 = lean_ctor_get(x_1804, 0); +lean_inc(x_1836); +x_1837 = lean_ctor_get(x_1804, 1); +lean_inc(x_1837); +if (lean_is_exclusive(x_1804)) { + lean_ctor_release(x_1804, 0); + lean_ctor_release(x_1804, 1); + x_1838 = x_1804; +} else { + lean_dec_ref(x_1804); + x_1838 = lean_box(0); +} +if (lean_is_scalar(x_1838)) { + x_1839 = lean_alloc_ctor(1, 2, 0); +} else { + x_1839 = x_1838; +} +lean_ctor_set(x_1839, 0, x_1836); +lean_ctor_set(x_1839, 1, x_1837); +return x_1839; +} +} +else +{ +lean_object* x_1840; lean_object* x_1841; lean_object* x_1842; +lean_dec(x_1722); +lean_dec(x_1720); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_1); +x_1840 = lean_ctor_get(x_1800, 1); +lean_inc(x_1840); +if (lean_is_exclusive(x_1800)) { + lean_ctor_release(x_1800, 0); + lean_ctor_release(x_1800, 1); + x_1841 = x_1800; +} else { + lean_dec_ref(x_1800); + x_1841 = lean_box(0); +} +if (lean_is_scalar(x_1841)) { + x_1842 = lean_alloc_ctor(1, 2, 0); +} else { + x_1842 = x_1841; + lean_ctor_set_tag(x_1842, 1); +} +lean_ctor_set(x_1842, 0, x_1733); +lean_ctor_set(x_1842, 1, x_1840); +return x_1842; +} +} +} +} +} +} +} +else +{ +uint8_t x_1843; lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); @@ -29555,790 +27524,105 @@ lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_3); -lean_dec(x_2); -x_2066 = !lean_is_exclusive(x_2061); -if (x_2066 == 0) +lean_dec(x_1); +x_1843 = !lean_is_exclusive(x_1719); +if (x_1843 == 0) { -return x_2061; +return x_1719; } else { -lean_object* x_2067; lean_object* x_2068; lean_object* x_2069; -x_2067 = lean_ctor_get(x_2061, 0); -x_2068 = lean_ctor_get(x_2061, 1); -lean_inc(x_2068); -lean_inc(x_2067); -lean_dec(x_2061); -x_2069 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2069, 0, x_2067); -lean_ctor_set(x_2069, 1, x_2068); -return x_2069; +lean_object* x_1844; lean_object* x_1845; lean_object* x_1846; +x_1844 = lean_ctor_get(x_1719, 0); +x_1845 = lean_ctor_get(x_1719, 1); +lean_inc(x_1845); +lean_inc(x_1844); +lean_dec(x_1719); +x_1846 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1846, 0, x_1844); +lean_ctor_set(x_1846, 1, x_1845); +return x_1846; } } } -else +block_1871: { -lean_object* x_2070; lean_object* x_2071; -lean_dec(x_2); -x_2070 = lean_ctor_get(x_2058, 1); -lean_inc(x_2070); -lean_dec(x_2058); -x_2071 = lean_ctor_get(x_2059, 0); -lean_inc(x_2071); -lean_dec(x_2059); -x_2039 = x_2071; -x_2040 = x_2070; -goto block_2056; -} -} -} -block_2223: -{ -lean_object* x_2079; lean_object* x_2080; lean_object* x_2203; uint8_t x_2219; -lean_dec(x_2078); -x_2219 = l_Lean_Expr_hasExprMVar(x_2); -if (x_2219 == 0) -{ -uint8_t x_2220; -x_2220 = l_Lean_Expr_hasFVar(x_2); -if (x_2220 == 0) -{ -x_2079 = x_2; -x_2080 = x_11; -goto block_2202; -} -else -{ -lean_object* x_2221; -x_2221 = lean_box(0); -x_2203 = x_2221; -goto block_2218; -} -} -else -{ -lean_object* x_2222; -x_2222 = lean_box(0); -x_2203 = x_2222; -goto block_2218; -} -block_2202: -{ -lean_object* x_2081; size_t x_2082; size_t x_2083; lean_object* x_2084; -x_2081 = lean_array_get_size(x_3); -x_2082 = lean_usize_of_nat(x_2081); -x_2083 = 0; +lean_object* x_1849; +lean_dec(x_1848); lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); lean_inc(x_5); -x_2084 = l_Array_mapMUnsafe_map___at_Lean_Meta_CheckAssignment_checkApp___spec__1(x_2082, x_2083, x_3, x_5, x_6, x_7, x_8, x_9, x_10, x_2080); -if (lean_obj_tag(x_2084) == 0) +x_1849 = l_Lean_Meta_CheckAssignment_check(x_2, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +if (lean_obj_tag(x_1849) == 0) { -uint8_t x_2085; -lean_dec(x_2081); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_1); -x_2085 = !lean_is_exclusive(x_2084); -if (x_2085 == 0) +lean_object* x_1850; lean_object* x_1851; lean_object* x_1852; size_t x_1853; size_t x_1854; lean_object* x_1855; +x_1850 = lean_ctor_get(x_1849, 0); +lean_inc(x_1850); +x_1851 = lean_ctor_get(x_1849, 1); +lean_inc(x_1851); +lean_dec(x_1849); +x_1852 = lean_array_get_size(x_3); +x_1853 = lean_usize_of_nat(x_1852); +lean_dec(x_1852); +x_1854 = 0; +x_1855 = l_Array_mapMUnsafe_map___at_Lean_Meta_CheckAssignment_checkApp___spec__1(x_1853, x_1854, x_3, x_5, x_6, x_7, x_8, x_9, x_10, x_1851); +if (lean_obj_tag(x_1855) == 0) { -lean_object* x_2086; lean_object* x_2087; -x_2086 = lean_ctor_get(x_2084, 0); -x_2087 = l_Lean_mkAppN(x_2079, x_2086); -lean_ctor_set(x_2084, 0, x_2087); -return x_2084; +uint8_t x_1856; +x_1856 = !lean_is_exclusive(x_1855); +if (x_1856 == 0) +{ +lean_object* x_1857; lean_object* x_1858; +x_1857 = lean_ctor_get(x_1855, 0); +x_1858 = l_Lean_mkAppN(x_1850, x_1857); +lean_ctor_set(x_1855, 0, x_1858); +return x_1855; } else { -lean_object* x_2088; lean_object* x_2089; lean_object* x_2090; lean_object* x_2091; -x_2088 = lean_ctor_get(x_2084, 0); -x_2089 = lean_ctor_get(x_2084, 1); -lean_inc(x_2089); -lean_inc(x_2088); -lean_dec(x_2084); -x_2090 = l_Lean_mkAppN(x_2079, x_2088); -x_2091 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_2091, 0, x_2090); -lean_ctor_set(x_2091, 1, x_2089); -return x_2091; +lean_object* x_1859; lean_object* x_1860; lean_object* x_1861; lean_object* x_1862; +x_1859 = lean_ctor_get(x_1855, 0); +x_1860 = lean_ctor_get(x_1855, 1); +lean_inc(x_1860); +lean_inc(x_1859); +lean_dec(x_1855); +x_1861 = l_Lean_mkAppN(x_1850, x_1859); +x_1862 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1862, 0, x_1861); +lean_ctor_set(x_1862, 1, x_1860); +return x_1862; } } else { -lean_object* x_2092; -x_2092 = lean_ctor_get(x_2084, 0); -lean_inc(x_2092); -if (lean_obj_tag(x_2092) == 0) +uint8_t x_1863; +lean_dec(x_1850); +x_1863 = !lean_is_exclusive(x_1855); +if (x_1863 == 0) { -uint8_t x_2093; -lean_dec(x_2081); -lean_dec(x_2079); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_1); -x_2093 = !lean_is_exclusive(x_2084); -if (x_2093 == 0) -{ -lean_object* x_2094; -x_2094 = lean_ctor_get(x_2084, 0); -lean_dec(x_2094); -return x_2084; +return x_1855; } else { -lean_object* x_2095; lean_object* x_2096; -x_2095 = lean_ctor_get(x_2084, 1); -lean_inc(x_2095); -lean_dec(x_2084); -x_2096 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2096, 0, x_2092); -lean_ctor_set(x_2096, 1, x_2095); -return x_2096; -} -} -else -{ -uint8_t x_2097; -x_2097 = !lean_is_exclusive(x_2084); -if (x_2097 == 0) -{ -lean_object* x_2098; lean_object* x_2099; lean_object* x_2100; lean_object* x_2101; uint8_t x_2102; -x_2098 = lean_ctor_get(x_2084, 1); -x_2099 = lean_ctor_get(x_2084, 0); -lean_dec(x_2099); -x_2100 = lean_ctor_get(x_2092, 0); -lean_inc(x_2100); -x_2101 = l_Lean_Meta_CheckAssignment_throwOutOfScopeFVar___rarg___closed__1; -x_2102 = lean_nat_dec_eq(x_2101, x_2100); -lean_dec(x_2100); -if (x_2102 == 0) -{ -lean_dec(x_2081); -lean_dec(x_2079); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_1); -return x_2084; -} -else -{ -uint8_t x_2103; -x_2103 = l_Lean_Expr_isMVar(x_2079); -if (x_2103 == 0) -{ -lean_dec(x_2081); -lean_dec(x_2079); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_1); -return x_2084; -} -else -{ -lean_object* x_2104; lean_object* x_2105; lean_object* x_2106; uint8_t x_2107; -lean_free_object(x_2084); -lean_inc(x_2079); -x_2104 = l_Lean_Expr_mvarId_x21(x_2079); -x_2105 = l_Lean_MVarId_isDelayedAssigned___at_Lean_Meta_CheckAssignment_checkApp___spec__2(x_2104, x_5, x_6, x_7, x_8, x_9, x_10, x_2098); -x_2106 = lean_ctor_get(x_2105, 0); -lean_inc(x_2106); -x_2107 = lean_unbox(x_2106); -lean_dec(x_2106); -if (x_2107 == 0) -{ -lean_object* x_2108; lean_object* x_2109; -x_2108 = lean_ctor_get(x_2105, 1); -lean_inc(x_2108); -lean_dec(x_2105); -lean_inc(x_10); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -x_2109 = lean_infer_type(x_1, x_7, x_8, x_9, x_10, x_2108); -if (lean_obj_tag(x_2109) == 0) -{ -lean_object* x_2110; lean_object* x_2111; lean_object* x_2112; -x_2110 = lean_ctor_get(x_2109, 0); -lean_inc(x_2110); -x_2111 = lean_ctor_get(x_2109, 1); -lean_inc(x_2111); -lean_dec(x_2109); -lean_inc(x_10); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_5); -x_2112 = l_Lean_Meta_CheckAssignment_check(x_2110, x_5, x_6, x_7, x_8, x_9, x_10, x_2111); -if (lean_obj_tag(x_2112) == 0) -{ -lean_object* x_2113; lean_object* x_2114; lean_object* x_2115; lean_object* x_2116; lean_object* x_2117; uint8_t x_2118; lean_object* x_2119; lean_object* x_2120; lean_object* x_2121; lean_object* x_2122; lean_object* x_2123; lean_object* x_2124; -x_2113 = lean_ctor_get(x_2112, 0); -lean_inc(x_2113); -x_2114 = lean_ctor_get(x_2112, 1); -lean_inc(x_2114); -lean_dec(x_2112); -x_2115 = lean_ctor_get(x_5, 1); -lean_inc(x_2115); -lean_dec(x_5); -x_2116 = lean_ctor_get(x_2115, 1); -lean_inc(x_2116); -x_2117 = lean_ctor_get(x_2115, 4); -lean_inc(x_2117); -lean_dec(x_2115); -x_2118 = 0; -x_2119 = lean_box(0); -x_2120 = lean_unsigned_to_nat(0u); -x_2121 = l_Lean_Meta_mkFreshExprMVarAt(x_2116, x_2117, x_2113, x_2118, x_2119, x_2120, x_7, x_8, x_9, x_10, x_2114); -x_2122 = lean_ctor_get(x_2121, 0); -lean_inc(x_2122); -x_2123 = lean_ctor_get(x_2121, 1); -lean_inc(x_2123); -lean_dec(x_2121); -lean_inc(x_2122); -x_2124 = l_Lean_Meta_CheckAssignment_assignToConstFun(x_2079, x_2081, x_2122, x_7, x_8, x_9, x_10, x_2123); -if (lean_obj_tag(x_2124) == 0) -{ -lean_object* x_2125; uint8_t x_2126; -x_2125 = lean_ctor_get(x_2124, 0); -lean_inc(x_2125); -x_2126 = lean_unbox(x_2125); -lean_dec(x_2125); -if (x_2126 == 0) -{ -uint8_t x_2127; -lean_dec(x_2122); -x_2127 = !lean_is_exclusive(x_2124); -if (x_2127 == 0) -{ -lean_object* x_2128; -x_2128 = lean_ctor_get(x_2124, 0); -lean_dec(x_2128); -lean_ctor_set_tag(x_2124, 1); -lean_ctor_set(x_2124, 0, x_2092); -return x_2124; -} -else -{ -lean_object* x_2129; lean_object* x_2130; -x_2129 = lean_ctor_get(x_2124, 1); -lean_inc(x_2129); -lean_dec(x_2124); -x_2130 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2130, 0, x_2092); -lean_ctor_set(x_2130, 1, x_2129); -return x_2130; -} -} -else -{ -uint8_t x_2131; -lean_dec(x_2092); -x_2131 = !lean_is_exclusive(x_2124); -if (x_2131 == 0) -{ -lean_object* x_2132; -x_2132 = lean_ctor_get(x_2124, 0); -lean_dec(x_2132); -lean_ctor_set(x_2124, 0, x_2122); -return x_2124; -} -else -{ -lean_object* x_2133; lean_object* x_2134; -x_2133 = lean_ctor_get(x_2124, 1); -lean_inc(x_2133); -lean_dec(x_2124); -x_2134 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_2134, 0, x_2122); -lean_ctor_set(x_2134, 1, x_2133); -return x_2134; +lean_object* x_1864; lean_object* x_1865; lean_object* x_1866; +x_1864 = lean_ctor_get(x_1855, 0); +x_1865 = lean_ctor_get(x_1855, 1); +lean_inc(x_1865); +lean_inc(x_1864); +lean_dec(x_1855); +x_1866 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1866, 0, x_1864); +lean_ctor_set(x_1866, 1, x_1865); +return x_1866; } } } else { -uint8_t x_2135; -lean_dec(x_2122); -lean_dec(x_2092); -x_2135 = !lean_is_exclusive(x_2124); -if (x_2135 == 0) -{ -return x_2124; -} -else -{ -lean_object* x_2136; lean_object* x_2137; lean_object* x_2138; -x_2136 = lean_ctor_get(x_2124, 0); -x_2137 = lean_ctor_get(x_2124, 1); -lean_inc(x_2137); -lean_inc(x_2136); -lean_dec(x_2124); -x_2138 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2138, 0, x_2136); -lean_ctor_set(x_2138, 1, x_2137); -return x_2138; -} -} -} -else -{ -uint8_t x_2139; -lean_dec(x_2092); -lean_dec(x_2081); -lean_dec(x_2079); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_5); -x_2139 = !lean_is_exclusive(x_2112); -if (x_2139 == 0) -{ -return x_2112; -} -else -{ -lean_object* x_2140; lean_object* x_2141; lean_object* x_2142; -x_2140 = lean_ctor_get(x_2112, 0); -x_2141 = lean_ctor_get(x_2112, 1); -lean_inc(x_2141); -lean_inc(x_2140); -lean_dec(x_2112); -x_2142 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2142, 0, x_2140); -lean_ctor_set(x_2142, 1, x_2141); -return x_2142; -} -} -} -else -{ -uint8_t x_2143; -lean_dec(x_2092); -lean_dec(x_2081); -lean_dec(x_2079); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -x_2143 = !lean_is_exclusive(x_2109); -if (x_2143 == 0) -{ -return x_2109; -} -else -{ -lean_object* x_2144; lean_object* x_2145; lean_object* x_2146; -x_2144 = lean_ctor_get(x_2109, 0); -x_2145 = lean_ctor_get(x_2109, 1); -lean_inc(x_2145); -lean_inc(x_2144); -lean_dec(x_2109); -x_2146 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2146, 0, x_2144); -lean_ctor_set(x_2146, 1, x_2145); -return x_2146; -} -} -} -else -{ -uint8_t x_2147; -lean_dec(x_2081); -lean_dec(x_2079); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_1); -x_2147 = !lean_is_exclusive(x_2105); -if (x_2147 == 0) -{ -lean_object* x_2148; -x_2148 = lean_ctor_get(x_2105, 0); -lean_dec(x_2148); -lean_ctor_set_tag(x_2105, 1); -lean_ctor_set(x_2105, 0, x_2092); -return x_2105; -} -else -{ -lean_object* x_2149; lean_object* x_2150; -x_2149 = lean_ctor_get(x_2105, 1); -lean_inc(x_2149); -lean_dec(x_2105); -x_2150 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2150, 0, x_2092); -lean_ctor_set(x_2150, 1, x_2149); -return x_2150; -} -} -} -} -} -else -{ -lean_object* x_2151; lean_object* x_2152; lean_object* x_2153; uint8_t x_2154; -x_2151 = lean_ctor_get(x_2084, 1); -lean_inc(x_2151); -lean_dec(x_2084); -x_2152 = lean_ctor_get(x_2092, 0); -lean_inc(x_2152); -x_2153 = l_Lean_Meta_CheckAssignment_throwOutOfScopeFVar___rarg___closed__1; -x_2154 = lean_nat_dec_eq(x_2153, x_2152); -lean_dec(x_2152); -if (x_2154 == 0) -{ -lean_object* x_2155; -lean_dec(x_2081); -lean_dec(x_2079); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_1); -x_2155 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2155, 0, x_2092); -lean_ctor_set(x_2155, 1, x_2151); -return x_2155; -} -else -{ -uint8_t x_2156; -x_2156 = l_Lean_Expr_isMVar(x_2079); -if (x_2156 == 0) -{ -lean_object* x_2157; -lean_dec(x_2081); -lean_dec(x_2079); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_1); -x_2157 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2157, 0, x_2092); -lean_ctor_set(x_2157, 1, x_2151); -return x_2157; -} -else -{ -lean_object* x_2158; lean_object* x_2159; lean_object* x_2160; uint8_t x_2161; -lean_inc(x_2079); -x_2158 = l_Lean_Expr_mvarId_x21(x_2079); -x_2159 = l_Lean_MVarId_isDelayedAssigned___at_Lean_Meta_CheckAssignment_checkApp___spec__2(x_2158, x_5, x_6, x_7, x_8, x_9, x_10, x_2151); -x_2160 = lean_ctor_get(x_2159, 0); -lean_inc(x_2160); -x_2161 = lean_unbox(x_2160); -lean_dec(x_2160); -if (x_2161 == 0) -{ -lean_object* x_2162; lean_object* x_2163; -x_2162 = lean_ctor_get(x_2159, 1); -lean_inc(x_2162); -lean_dec(x_2159); -lean_inc(x_10); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -x_2163 = lean_infer_type(x_1, x_7, x_8, x_9, x_10, x_2162); -if (lean_obj_tag(x_2163) == 0) -{ -lean_object* x_2164; lean_object* x_2165; lean_object* x_2166; -x_2164 = lean_ctor_get(x_2163, 0); -lean_inc(x_2164); -x_2165 = lean_ctor_get(x_2163, 1); -lean_inc(x_2165); -lean_dec(x_2163); -lean_inc(x_10); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_5); -x_2166 = l_Lean_Meta_CheckAssignment_check(x_2164, x_5, x_6, x_7, x_8, x_9, x_10, x_2165); -if (lean_obj_tag(x_2166) == 0) -{ -lean_object* x_2167; lean_object* x_2168; lean_object* x_2169; lean_object* x_2170; lean_object* x_2171; uint8_t x_2172; lean_object* x_2173; lean_object* x_2174; lean_object* x_2175; lean_object* x_2176; lean_object* x_2177; lean_object* x_2178; -x_2167 = lean_ctor_get(x_2166, 0); -lean_inc(x_2167); -x_2168 = lean_ctor_get(x_2166, 1); -lean_inc(x_2168); -lean_dec(x_2166); -x_2169 = lean_ctor_get(x_5, 1); -lean_inc(x_2169); -lean_dec(x_5); -x_2170 = lean_ctor_get(x_2169, 1); -lean_inc(x_2170); -x_2171 = lean_ctor_get(x_2169, 4); -lean_inc(x_2171); -lean_dec(x_2169); -x_2172 = 0; -x_2173 = lean_box(0); -x_2174 = lean_unsigned_to_nat(0u); -x_2175 = l_Lean_Meta_mkFreshExprMVarAt(x_2170, x_2171, x_2167, x_2172, x_2173, x_2174, x_7, x_8, x_9, x_10, x_2168); -x_2176 = lean_ctor_get(x_2175, 0); -lean_inc(x_2176); -x_2177 = lean_ctor_get(x_2175, 1); -lean_inc(x_2177); -lean_dec(x_2175); -lean_inc(x_2176); -x_2178 = l_Lean_Meta_CheckAssignment_assignToConstFun(x_2079, x_2081, x_2176, x_7, x_8, x_9, x_10, x_2177); -if (lean_obj_tag(x_2178) == 0) -{ -lean_object* x_2179; uint8_t x_2180; -x_2179 = lean_ctor_get(x_2178, 0); -lean_inc(x_2179); -x_2180 = lean_unbox(x_2179); -lean_dec(x_2179); -if (x_2180 == 0) -{ -lean_object* x_2181; lean_object* x_2182; lean_object* x_2183; -lean_dec(x_2176); -x_2181 = lean_ctor_get(x_2178, 1); -lean_inc(x_2181); -if (lean_is_exclusive(x_2178)) { - lean_ctor_release(x_2178, 0); - lean_ctor_release(x_2178, 1); - x_2182 = x_2178; -} else { - lean_dec_ref(x_2178); - x_2182 = lean_box(0); -} -if (lean_is_scalar(x_2182)) { - x_2183 = lean_alloc_ctor(1, 2, 0); -} else { - x_2183 = x_2182; - lean_ctor_set_tag(x_2183, 1); -} -lean_ctor_set(x_2183, 0, x_2092); -lean_ctor_set(x_2183, 1, x_2181); -return x_2183; -} -else -{ -lean_object* x_2184; lean_object* x_2185; lean_object* x_2186; -lean_dec(x_2092); -x_2184 = lean_ctor_get(x_2178, 1); -lean_inc(x_2184); -if (lean_is_exclusive(x_2178)) { - lean_ctor_release(x_2178, 0); - lean_ctor_release(x_2178, 1); - x_2185 = x_2178; -} else { - lean_dec_ref(x_2178); - x_2185 = lean_box(0); -} -if (lean_is_scalar(x_2185)) { - x_2186 = lean_alloc_ctor(0, 2, 0); -} else { - x_2186 = x_2185; -} -lean_ctor_set(x_2186, 0, x_2176); -lean_ctor_set(x_2186, 1, x_2184); -return x_2186; -} -} -else -{ -lean_object* x_2187; lean_object* x_2188; lean_object* x_2189; lean_object* x_2190; -lean_dec(x_2176); -lean_dec(x_2092); -x_2187 = lean_ctor_get(x_2178, 0); -lean_inc(x_2187); -x_2188 = lean_ctor_get(x_2178, 1); -lean_inc(x_2188); -if (lean_is_exclusive(x_2178)) { - lean_ctor_release(x_2178, 0); - lean_ctor_release(x_2178, 1); - x_2189 = x_2178; -} else { - lean_dec_ref(x_2178); - x_2189 = lean_box(0); -} -if (lean_is_scalar(x_2189)) { - x_2190 = lean_alloc_ctor(1, 2, 0); -} else { - x_2190 = x_2189; -} -lean_ctor_set(x_2190, 0, x_2187); -lean_ctor_set(x_2190, 1, x_2188); -return x_2190; -} -} -else -{ -lean_object* x_2191; lean_object* x_2192; lean_object* x_2193; lean_object* x_2194; -lean_dec(x_2092); -lean_dec(x_2081); -lean_dec(x_2079); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_5); -x_2191 = lean_ctor_get(x_2166, 0); -lean_inc(x_2191); -x_2192 = lean_ctor_get(x_2166, 1); -lean_inc(x_2192); -if (lean_is_exclusive(x_2166)) { - lean_ctor_release(x_2166, 0); - lean_ctor_release(x_2166, 1); - x_2193 = x_2166; -} else { - lean_dec_ref(x_2166); - x_2193 = lean_box(0); -} -if (lean_is_scalar(x_2193)) { - x_2194 = lean_alloc_ctor(1, 2, 0); -} else { - x_2194 = x_2193; -} -lean_ctor_set(x_2194, 0, x_2191); -lean_ctor_set(x_2194, 1, x_2192); -return x_2194; -} -} -else -{ -lean_object* x_2195; lean_object* x_2196; lean_object* x_2197; lean_object* x_2198; -lean_dec(x_2092); -lean_dec(x_2081); -lean_dec(x_2079); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -x_2195 = lean_ctor_get(x_2163, 0); -lean_inc(x_2195); -x_2196 = lean_ctor_get(x_2163, 1); -lean_inc(x_2196); -if (lean_is_exclusive(x_2163)) { - lean_ctor_release(x_2163, 0); - lean_ctor_release(x_2163, 1); - x_2197 = x_2163; -} else { - lean_dec_ref(x_2163); - x_2197 = lean_box(0); -} -if (lean_is_scalar(x_2197)) { - x_2198 = lean_alloc_ctor(1, 2, 0); -} else { - x_2198 = x_2197; -} -lean_ctor_set(x_2198, 0, x_2195); -lean_ctor_set(x_2198, 1, x_2196); -return x_2198; -} -} -else -{ -lean_object* x_2199; lean_object* x_2200; lean_object* x_2201; -lean_dec(x_2081); -lean_dec(x_2079); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_1); -x_2199 = lean_ctor_get(x_2159, 1); -lean_inc(x_2199); -if (lean_is_exclusive(x_2159)) { - lean_ctor_release(x_2159, 0); - lean_ctor_release(x_2159, 1); - x_2200 = x_2159; -} else { - lean_dec_ref(x_2159); - x_2200 = lean_box(0); -} -if (lean_is_scalar(x_2200)) { - x_2201 = lean_alloc_ctor(1, 2, 0); -} else { - x_2201 = x_2200; - lean_ctor_set_tag(x_2201, 1); -} -lean_ctor_set(x_2201, 0, x_2092); -lean_ctor_set(x_2201, 1, x_2199); -return x_2201; -} -} -} -} -} -} -} -block_2218: -{ -lean_object* x_2204; lean_object* x_2205; -lean_dec(x_2203); -lean_inc(x_2); -x_2204 = l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_CheckAssignment_findCached_x3f(x_2, x_5, x_6, x_7, x_8, x_9, x_10, x_11); -x_2205 = lean_ctor_get(x_2204, 0); -lean_inc(x_2205); -if (lean_obj_tag(x_2205) == 0) -{ -lean_object* x_2206; lean_object* x_2207; -x_2206 = lean_ctor_get(x_2204, 1); -lean_inc(x_2206); -lean_dec(x_2204); -lean_inc(x_10); -lean_inc(x_9); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_2); -x_2207 = l_Lean_Meta_CheckAssignment_checkMVar(x_2, x_5, x_6, x_7, x_8, x_9, x_10, x_2206); -if (lean_obj_tag(x_2207) == 0) -{ -lean_object* x_2208; lean_object* x_2209; lean_object* x_2210; lean_object* x_2211; -x_2208 = lean_ctor_get(x_2207, 0); -lean_inc(x_2208); -x_2209 = lean_ctor_get(x_2207, 1); -lean_inc(x_2209); -lean_dec(x_2207); -lean_inc(x_2208); -x_2210 = l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_CheckAssignment_cache(x_2, x_2208, x_5, x_6, x_7, x_8, x_9, x_10, x_2209); -x_2211 = lean_ctor_get(x_2210, 1); -lean_inc(x_2211); -lean_dec(x_2210); -x_2079 = x_2208; -x_2080 = x_2211; -goto block_2202; -} -else -{ -uint8_t x_2212; +uint8_t x_1867; lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); @@ -30346,41 +27630,23 @@ lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_3); -lean_dec(x_2); -lean_dec(x_1); -x_2212 = !lean_is_exclusive(x_2207); -if (x_2212 == 0) +x_1867 = !lean_is_exclusive(x_1849); +if (x_1867 == 0) { -return x_2207; +return x_1849; } else { -lean_object* x_2213; lean_object* x_2214; lean_object* x_2215; -x_2213 = lean_ctor_get(x_2207, 0); -x_2214 = lean_ctor_get(x_2207, 1); -lean_inc(x_2214); -lean_inc(x_2213); -lean_dec(x_2207); -x_2215 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_2215, 0, x_2213); -lean_ctor_set(x_2215, 1, x_2214); -return x_2215; -} -} -} -else -{ -lean_object* x_2216; lean_object* x_2217; -lean_dec(x_2); -x_2216 = lean_ctor_get(x_2204, 1); -lean_inc(x_2216); -lean_dec(x_2204); -x_2217 = lean_ctor_get(x_2205, 0); -lean_inc(x_2217); -lean_dec(x_2205); -x_2079 = x_2217; -x_2080 = x_2216; -goto block_2202; +lean_object* x_1868; lean_object* x_1869; lean_object* x_1870; +x_1868 = lean_ctor_get(x_1849, 0); +x_1869 = lean_ctor_get(x_1849, 1); +lean_inc(x_1869); +lean_inc(x_1868); +lean_dec(x_1849); +x_1870 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1870, 0, x_1868); +lean_ctor_set(x_1870, 1, x_1869); +return x_1870; } } } @@ -66678,7 +63944,7 @@ x_11 = lean_ctor_get(x_8, 1); x_12 = 3; x_13 = lean_unbox(x_10); lean_dec(x_10); -x_14 = l___private_Init_Meta_0__Lean_Meta_beqTransparencyMode____x40_Init_Meta___hyg_12380_(x_13, x_12); +x_14 = l___private_Init_Meta_0__Lean_Meta_beqTransparencyMode____x40_Init_Meta___hyg_12371_(x_13, x_12); if (x_14 == 0) { uint8_t x_15; lean_object* x_16; @@ -66713,7 +63979,7 @@ lean_dec(x_8); x_21 = 3; x_22 = lean_unbox(x_19); lean_dec(x_19); -x_23 = l___private_Init_Meta_0__Lean_Meta_beqTransparencyMode____x40_Init_Meta___hyg_12380_(x_22, x_21); +x_23 = l___private_Init_Meta_0__Lean_Meta_beqTransparencyMode____x40_Init_Meta___hyg_12371_(x_22, x_21); if (x_23 == 0) { uint8_t x_24; lean_object* x_25; lean_object* x_26; @@ -71724,7 +68990,7 @@ lean_dec(x_4); return x_11; } } -LEAN_EXPORT lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_ExprDefEq___hyg_19721_(lean_object* x_1) { +LEAN_EXPORT lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_ExprDefEq___hyg_19551_(lean_object* x_1) { _start: { lean_object* x_2; uint8_t x_3; lean_object* x_4; @@ -72070,20 +69336,20 @@ l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_mkLambdaFVarsWithLetDeps_hasLetDecl lean_mark_persistent(l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_mkLambdaFVarsWithLetDeps_hasLetDeclsInBetween___closed__1); l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_mkLambdaFVarsWithLetDeps_hasLetDeclsInBetween___closed__2 = _init_l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_mkLambdaFVarsWithLetDeps_hasLetDeclsInBetween___closed__2(); lean_mark_persistent(l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_mkLambdaFVarsWithLetDeps_hasLetDeclsInBetween___closed__2); -l_Lean_Meta_CheckAssignment_initFn____x40_Lean_Meta_ExprDefEq___hyg_6023____closed__1 = _init_l_Lean_Meta_CheckAssignment_initFn____x40_Lean_Meta_ExprDefEq___hyg_6023____closed__1(); -lean_mark_persistent(l_Lean_Meta_CheckAssignment_initFn____x40_Lean_Meta_ExprDefEq___hyg_6023____closed__1); -l_Lean_Meta_CheckAssignment_initFn____x40_Lean_Meta_ExprDefEq___hyg_6023____closed__2 = _init_l_Lean_Meta_CheckAssignment_initFn____x40_Lean_Meta_ExprDefEq___hyg_6023____closed__2(); -lean_mark_persistent(l_Lean_Meta_CheckAssignment_initFn____x40_Lean_Meta_ExprDefEq___hyg_6023____closed__2); -if (builtin) {res = l_Lean_Meta_CheckAssignment_initFn____x40_Lean_Meta_ExprDefEq___hyg_6023_(lean_io_mk_world()); +l_Lean_Meta_CheckAssignment_initFn____x40_Lean_Meta_ExprDefEq___hyg_6002____closed__1 = _init_l_Lean_Meta_CheckAssignment_initFn____x40_Lean_Meta_ExprDefEq___hyg_6002____closed__1(); +lean_mark_persistent(l_Lean_Meta_CheckAssignment_initFn____x40_Lean_Meta_ExprDefEq___hyg_6002____closed__1); +l_Lean_Meta_CheckAssignment_initFn____x40_Lean_Meta_ExprDefEq___hyg_6002____closed__2 = _init_l_Lean_Meta_CheckAssignment_initFn____x40_Lean_Meta_ExprDefEq___hyg_6002____closed__2(); +lean_mark_persistent(l_Lean_Meta_CheckAssignment_initFn____x40_Lean_Meta_ExprDefEq___hyg_6002____closed__2); +if (builtin) {res = l_Lean_Meta_CheckAssignment_initFn____x40_Lean_Meta_ExprDefEq___hyg_6002_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; l_Lean_Meta_CheckAssignment_checkAssignmentExceptionId = lean_io_result_get_value(res); lean_mark_persistent(l_Lean_Meta_CheckAssignment_checkAssignmentExceptionId); lean_dec_ref(res); -}l_Lean_Meta_CheckAssignment_initFn____x40_Lean_Meta_ExprDefEq___hyg_6043____closed__1 = _init_l_Lean_Meta_CheckAssignment_initFn____x40_Lean_Meta_ExprDefEq___hyg_6043____closed__1(); -lean_mark_persistent(l_Lean_Meta_CheckAssignment_initFn____x40_Lean_Meta_ExprDefEq___hyg_6043____closed__1); -l_Lean_Meta_CheckAssignment_initFn____x40_Lean_Meta_ExprDefEq___hyg_6043____closed__2 = _init_l_Lean_Meta_CheckAssignment_initFn____x40_Lean_Meta_ExprDefEq___hyg_6043____closed__2(); -lean_mark_persistent(l_Lean_Meta_CheckAssignment_initFn____x40_Lean_Meta_ExprDefEq___hyg_6043____closed__2); -if (builtin) {res = l_Lean_Meta_CheckAssignment_initFn____x40_Lean_Meta_ExprDefEq___hyg_6043_(lean_io_mk_world()); +}l_Lean_Meta_CheckAssignment_initFn____x40_Lean_Meta_ExprDefEq___hyg_6022____closed__1 = _init_l_Lean_Meta_CheckAssignment_initFn____x40_Lean_Meta_ExprDefEq___hyg_6022____closed__1(); +lean_mark_persistent(l_Lean_Meta_CheckAssignment_initFn____x40_Lean_Meta_ExprDefEq___hyg_6022____closed__1); +l_Lean_Meta_CheckAssignment_initFn____x40_Lean_Meta_ExprDefEq___hyg_6022____closed__2 = _init_l_Lean_Meta_CheckAssignment_initFn____x40_Lean_Meta_ExprDefEq___hyg_6022____closed__2(); +lean_mark_persistent(l_Lean_Meta_CheckAssignment_initFn____x40_Lean_Meta_ExprDefEq___hyg_6022____closed__2); +if (builtin) {res = l_Lean_Meta_CheckAssignment_initFn____x40_Lean_Meta_ExprDefEq___hyg_6022_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; l_Lean_Meta_CheckAssignment_outOfScopeExceptionId = lean_io_result_get_value(res); lean_mark_persistent(l_Lean_Meta_CheckAssignment_outOfScopeExceptionId); @@ -72130,38 +69396,6 @@ l_Lean_Meta_CheckAssignment_checkFVar___closed__1 = _init_l_Lean_Meta_CheckAssig lean_mark_persistent(l_Lean_Meta_CheckAssignment_checkFVar___closed__1); l_Lean_Meta_CheckAssignment_checkFVar___closed__2 = _init_l_Lean_Meta_CheckAssignment_checkFVar___closed__2(); lean_mark_persistent(l_Lean_Meta_CheckAssignment_checkFVar___closed__2); -l_Lean_Meta_CheckAssignment_check___closed__1 = _init_l_Lean_Meta_CheckAssignment_check___closed__1(); -lean_mark_persistent(l_Lean_Meta_CheckAssignment_check___closed__1); -l_Lean_Meta_CheckAssignment_check___closed__2 = _init_l_Lean_Meta_CheckAssignment_check___closed__2(); -lean_mark_persistent(l_Lean_Meta_CheckAssignment_check___closed__2); -l_Lean_Meta_CheckAssignment_check___closed__3 = _init_l_Lean_Meta_CheckAssignment_check___closed__3(); -lean_mark_persistent(l_Lean_Meta_CheckAssignment_check___closed__3); -l_Lean_Meta_CheckAssignment_check___closed__4 = _init_l_Lean_Meta_CheckAssignment_check___closed__4(); -lean_mark_persistent(l_Lean_Meta_CheckAssignment_check___closed__4); -l_Lean_Meta_CheckAssignment_check___closed__5 = _init_l_Lean_Meta_CheckAssignment_check___closed__5(); -lean_mark_persistent(l_Lean_Meta_CheckAssignment_check___closed__5); -l_Lean_Meta_CheckAssignment_check___closed__6 = _init_l_Lean_Meta_CheckAssignment_check___closed__6(); -lean_mark_persistent(l_Lean_Meta_CheckAssignment_check___closed__6); -l_Lean_Meta_CheckAssignment_check___closed__7 = _init_l_Lean_Meta_CheckAssignment_check___closed__7(); -lean_mark_persistent(l_Lean_Meta_CheckAssignment_check___closed__7); -l_Lean_Meta_CheckAssignment_check___closed__8 = _init_l_Lean_Meta_CheckAssignment_check___closed__8(); -lean_mark_persistent(l_Lean_Meta_CheckAssignment_check___closed__8); -l_Lean_Meta_CheckAssignment_check___closed__9 = _init_l_Lean_Meta_CheckAssignment_check___closed__9(); -lean_mark_persistent(l_Lean_Meta_CheckAssignment_check___closed__9); -l_Lean_Meta_CheckAssignment_check___closed__10 = _init_l_Lean_Meta_CheckAssignment_check___closed__10(); -lean_mark_persistent(l_Lean_Meta_CheckAssignment_check___closed__10); -l_Lean_Meta_CheckAssignment_check___closed__11 = _init_l_Lean_Meta_CheckAssignment_check___closed__11(); -lean_mark_persistent(l_Lean_Meta_CheckAssignment_check___closed__11); -l_Lean_Meta_CheckAssignment_check___closed__12 = _init_l_Lean_Meta_CheckAssignment_check___closed__12(); -lean_mark_persistent(l_Lean_Meta_CheckAssignment_check___closed__12); -l_Lean_Meta_CheckAssignment_check___closed__13 = _init_l_Lean_Meta_CheckAssignment_check___closed__13(); -lean_mark_persistent(l_Lean_Meta_CheckAssignment_check___closed__13); -l_Lean_Meta_CheckAssignment_check___closed__14 = _init_l_Lean_Meta_CheckAssignment_check___closed__14(); -lean_mark_persistent(l_Lean_Meta_CheckAssignment_check___closed__14); -l_Lean_Meta_CheckAssignment_check___closed__15 = _init_l_Lean_Meta_CheckAssignment_check___closed__15(); -lean_mark_persistent(l_Lean_Meta_CheckAssignment_check___closed__15); -l_Lean_Meta_CheckAssignment_check___closed__16 = _init_l_Lean_Meta_CheckAssignment_check___closed__16(); -lean_mark_persistent(l_Lean_Meta_CheckAssignment_check___closed__16); l_Array_foldlMUnsafe_fold___at_Lean_Meta_CheckAssignment_checkMVar___spec__56___closed__1 = _init_l_Array_foldlMUnsafe_fold___at_Lean_Meta_CheckAssignment_checkMVar___spec__56___closed__1(); lean_mark_persistent(l_Array_foldlMUnsafe_fold___at_Lean_Meta_CheckAssignment_checkMVar___spec__56___closed__1); l___private_Lean_Data_PersistentArray_0__Lean_PersistentArray_foldlFromMAux___at_Lean_Meta_CheckAssignment_checkMVar___spec__53___closed__1 = _init_l___private_Lean_Data_PersistentArray_0__Lean_PersistentArray_foldlFromMAux___at_Lean_Meta_CheckAssignment_checkMVar___spec__53___closed__1(); @@ -72332,7 +69566,7 @@ l_Lean_Meta_isExprDefEqAuxImpl___lambda__3___closed__19 = _init_l_Lean_Meta_isEx lean_mark_persistent(l_Lean_Meta_isExprDefEqAuxImpl___lambda__3___closed__19); l_Lean_Meta_isExprDefEqAuxImpl___lambda__3___closed__20 = _init_l_Lean_Meta_isExprDefEqAuxImpl___lambda__3___closed__20(); lean_mark_persistent(l_Lean_Meta_isExprDefEqAuxImpl___lambda__3___closed__20); -res = l_Lean_Meta_initFn____x40_Lean_Meta_ExprDefEq___hyg_19721_(lean_io_mk_world()); +res = l_Lean_Meta_initFn____x40_Lean_Meta_ExprDefEq___hyg_19551_(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/Meta/GetConst.c b/stage0/stdlib/Lean/Meta/GetConst.c index 3e1602c140..22a94363d3 100644 --- a/stage0/stdlib/Lean/Meta/GetConst.c +++ b/stage0/stdlib/Lean/Meta/GetConst.c @@ -21,7 +21,7 @@ lean_object* lean_st_ref_get(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_getConstNoEx_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_isReducible___at___private_Lean_Meta_GetConst_0__Lean_Meta_canUnfoldDefault___spec__3(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_getConst_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -uint8_t l___private_Init_Meta_0__Lean_Meta_beqTransparencyMode____x40_Init_Meta___hyg_12380_(uint8_t, uint8_t); +uint8_t l___private_Init_Meta_0__Lean_Meta_beqTransparencyMode____x40_Init_Meta___hyg_12371_(uint8_t, uint8_t); uint8_t lean_get_reducibility_status(lean_object*, lean_object*); lean_object* l_Lean_ConstantInfo_name(lean_object*); LEAN_EXPORT lean_object* l_Lean_getReducibilityStatus___at___private_Lean_Meta_GetConst_0__Lean_Meta_canUnfoldDefault___spec__2(lean_object*, lean_object*, lean_object*, lean_object*); @@ -315,7 +315,7 @@ x_39 = lean_ctor_get(x_38, 0); lean_inc(x_39); lean_dec(x_38); x_40 = 3; -x_41 = l___private_Init_Meta_0__Lean_Meta_beqTransparencyMode____x40_Init_Meta___hyg_12380_(x_6, x_40); +x_41 = l___private_Init_Meta_0__Lean_Meta_beqTransparencyMode____x40_Init_Meta___hyg_12371_(x_6, x_40); if (x_41 == 0) { uint8_t x_42; lean_object* x_43; @@ -360,7 +360,7 @@ x_51 = lean_ctor_get(x_49, 0); lean_inc(x_51); lean_dec(x_49); x_52 = 3; -x_53 = l___private_Init_Meta_0__Lean_Meta_beqTransparencyMode____x40_Init_Meta___hyg_12380_(x_6, x_52); +x_53 = l___private_Init_Meta_0__Lean_Meta_beqTransparencyMode____x40_Init_Meta___hyg_12371_(x_6, x_52); if (x_53 == 0) { uint8_t x_54; lean_object* x_55; lean_object* x_56; diff --git a/stage0/stdlib/Lean/Meta/IndPredBelow.c b/stage0/stdlib/Lean/Meta/IndPredBelow.c index 5929c7e27a..7d56445629 100644 --- a/stage0/stdlib/Lean/Meta/IndPredBelow.c +++ b/stage0/stdlib/Lean/Meta/IndPredBelow.c @@ -357,7 +357,7 @@ extern lean_object* l_Lean_Meta_Match_instInhabitedPattern; LEAN_EXPORT lean_object* l_Lean_Meta_IndPredBelow_mkBelowMatcher_addBelowPattern___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_transform_visit_visitLambda___at_Lean_Meta_IndPredBelow_mkCtorType_checkCount___spec__4(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_addTrace___at_Lean_Meta_IndPredBelow_mkBelowMatcher___spec__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_IndPredBelow_initFn____x40_Lean_Meta_IndPredBelow___hyg_10603_(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_IndPredBelow_initFn____x40_Lean_Meta_IndPredBelow___hyg_10591_(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_IndPredBelow_initFn____x40_Lean_Meta_IndPredBelow___hyg_7_(lean_object*); static lean_object* l_Lean_Meta_IndPredBelow_mkBelowMatcher_convertToBelow___closed__4; LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at_Lean_Meta_IndPredBelow_mkCtorType_checkCount___spec__8___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -22573,7 +22573,7 @@ lean_dec(x_3); return x_9; } } -LEAN_EXPORT lean_object* l_Lean_Meta_IndPredBelow_initFn____x40_Lean_Meta_IndPredBelow___hyg_10603_(lean_object* x_1) { +LEAN_EXPORT lean_object* l_Lean_Meta_IndPredBelow_initFn____x40_Lean_Meta_IndPredBelow___hyg_10591_(lean_object* x_1) { _start: { lean_object* x_2; uint8_t x_3; lean_object* x_4; @@ -22852,7 +22852,7 @@ l_Lean_Meta_IndPredBelow_mkBelow___closed__6 = _init_l_Lean_Meta_IndPredBelow_mk lean_mark_persistent(l_Lean_Meta_IndPredBelow_mkBelow___closed__6); l_Lean_Meta_IndPredBelow_mkBelow___closed__7 = _init_l_Lean_Meta_IndPredBelow_mkBelow___closed__7(); lean_mark_persistent(l_Lean_Meta_IndPredBelow_mkBelow___closed__7); -res = l_Lean_Meta_IndPredBelow_initFn____x40_Lean_Meta_IndPredBelow___hyg_10603_(lean_io_mk_world()); +res = l_Lean_Meta_IndPredBelow_initFn____x40_Lean_Meta_IndPredBelow___hyg_10591_(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/Meta/LevelDefEq.c b/stage0/stdlib/Lean/Meta/LevelDefEq.c index ad29295919..1b4e571abd 100644 --- a/stage0/stdlib/Lean/Meta/LevelDefEq.c +++ b/stage0/stdlib/Lean/Meta/LevelDefEq.c @@ -98,7 +98,7 @@ static lean_object* l___private_Lean_Meta_LevelDefEq_0__Lean_Meta_postponeIsLeve uint8_t l_Lean_Level_occurs(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_hasAssignableLevelMVar___at_Lean_Meta_isLevelDefEqAuxImpl___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_level_eq(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_LevelDefEq___hyg_1635_(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_LevelDefEq___hyg_1631_(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_isLevelDefEqAuxImpl___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_panic___at___private_Lean_Meta_LevelDefEq_0__Lean_Meta_solveSelfMax___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_ReaderT_pure___at_Lean_Meta_isLevelDefEqAuxImpl___spec__4___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -2143,7 +2143,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; x_1 = l_Lean_isLevelMVarAssignable___at_Lean_Meta_isLevelDefEqAuxImpl___spec__2___closed__1; x_2 = l_Lean_isLevelMVarAssignable___at_Lean_Meta_isLevelDefEqAuxImpl___spec__2___closed__2; -x_3 = lean_unsigned_to_nat(387u); +x_3 = lean_unsigned_to_nat(388u); x_4 = lean_unsigned_to_nat(14u); x_5 = l_Lean_isLevelMVarAssignable___at_Lean_Meta_isLevelDefEqAuxImpl___spec__2___closed__3; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -3751,7 +3751,7 @@ lean_dec(x_1); return x_7; } } -LEAN_EXPORT lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_LevelDefEq___hyg_1635_(lean_object* x_1) { +LEAN_EXPORT lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_LevelDefEq___hyg_1631_(lean_object* x_1) { _start: { lean_object* x_2; uint8_t x_3; lean_object* x_4; @@ -3866,7 +3866,7 @@ l_Lean_Meta_isLevelDefEqAuxImpl___lambda__3___closed__1 = _init_l_Lean_Meta_isLe lean_mark_persistent(l_Lean_Meta_isLevelDefEqAuxImpl___lambda__3___closed__1); l_Lean_Meta_isLevelDefEqAuxImpl___closed__1 = _init_l_Lean_Meta_isLevelDefEqAuxImpl___closed__1(); lean_mark_persistent(l_Lean_Meta_isLevelDefEqAuxImpl___closed__1); -res = l_Lean_Meta_initFn____x40_Lean_Meta_LevelDefEq___hyg_1635_(lean_io_mk_world()); +res = l_Lean_Meta_initFn____x40_Lean_Meta_LevelDefEq___hyg_1631_(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/Meta/Match/Match.c b/stage0/stdlib/Lean/Meta/Match/Match.c index ed7f8d88a9..a415e53e73 100644 --- a/stage0/stdlib/Lean/Meta/Match/Match.c +++ b/stage0/stdlib/Lean/Meta/Match/Match.c @@ -59,6 +59,7 @@ LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_is lean_object* l_Lean_Name_str___override(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Data_PersistentArray_0__Lean_PersistentArray_foldrMAux___at_Lean_Meta_Match_withCleanLCtxFor___spec__20(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_mkForallFVars(lean_object*, lean_object*, uint8_t, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10778____lambda__1___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Match_mkMatcher___lambda__9___boxed(lean_object**); LEAN_EXPORT lean_object* l_Lean_Meta_Match_mkMatcher___lambda__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_ReaderT_pure___at_Lean_Meta_Match_mkMatcher___spec__5___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -151,8 +152,10 @@ LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_fi LEAN_EXPORT lean_object* l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandVarIntoArrayLit_loop___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Match_mkMatcher___lambda__14(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_throwCasesException___rarg___closed__6; +static lean_object* l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10778____closed__9; extern lean_object* l_Lean_Meta_Match_instInhabitedAlt; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processConstructor___spec__11___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10742____closed__2; extern lean_object* l_instInhabitedNat; LEAN_EXPORT lean_object* l_Lean_Meta_Match_MkMatcherInput_collectDependencies(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_hasValPattern___boxed(lean_object*); @@ -170,6 +173,7 @@ lean_object* lean_expr_instantiate1(lean_object*, lean_object*); lean_object* l_Array_toSubarray___rarg(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandVarIntoCtor_x3f___lambda__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_collectValues(lean_object*); +static lean_object* l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10742____closed__4; lean_object* lean_array_push(lean_object*, lean_object*); LEAN_EXPORT uint8_t l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_isNextVar(lean_object*); lean_object* lean_array_get_size(lean_object*); @@ -181,12 +185,14 @@ static lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_throwCa LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at_Lean_Meta_Match_withCleanLCtxFor___spec__12(lean_object*, lean_object*, size_t, size_t, lean_object*); LEAN_EXPORT uint8_t l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_hasNatValPattern(lean_object*); LEAN_EXPORT lean_object* l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processVariable___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10778____closed__2; lean_object* l_Lean_Name_mkStr3(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_List_mapTRAux___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processConstructor___spec__7(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MessageData_ofList(lean_object*); static lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandVarIntoCtor_x3f___lambda__2___closed__3; lean_object* l_Lean_Meta_isTypeCorrect(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandVarIntoCtor_x3f___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10778____closed__8; LEAN_EXPORT uint8_t l_List_foldr___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_hasVarPattern___spec__1(uint8_t, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_isNextVar___boxed(lean_object*); lean_object* l_Lean_MVarId_withContext___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_synthPendingImp___spec__2___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -195,9 +201,11 @@ static lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_solveSo static lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_throwCasesException___rarg___closed__4; LEAN_EXPORT lean_object* l_Lean_HashSetImp_contains___at_Lean_Meta_Match_mkMatcher___spec__3___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_isFirstPatternVar___boxed(lean_object*); +static lean_object* l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10778____closed__4; LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_solveCnstrs_go(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT uint8_t l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_inLocalDecls(lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_withAlts_loop___rarg___closed__10; +static lean_object* l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10778____closed__1; LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_getInductiveVal_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_mapMUnsafe_map___at_Lean_Meta_Match_toPattern___spec__2(size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_List_foldl___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_collectArraySizes___spec__1(lean_object*, lean_object*); @@ -216,7 +224,6 @@ LEAN_EXPORT lean_object* l_Lean_Meta_Match_withCleanLCtxFor(lean_object*); static lean_object* l_Lean_Meta_Match_getMkMatcherInputInContext___closed__1; LEAN_EXPORT lean_object* l_Lean_LocalContext_foldrM___at_Lean_Meta_Match_withCleanLCtxFor___spec__1(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_checkNextPatternTypes___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10798____closed__4; static lean_object* l_panic___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processSkipInaccessible___spec__1___closed__1; lean_object* l_Lean_Meta_forallBoundedTelescope___at___private_Lean_Meta_FunInfo_0__Lean_Meta_getFunInfoAux___spec__8___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_addTrace___at_Lean_Meta_processPostponed_loop___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -270,7 +277,7 @@ LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_ex static lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_withAlts_loop___rarg___closed__3; size_t lean_uint64_to_usize(uint64_t); static lean_object* l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processNonVariable___spec__1___closed__1; -LEAN_EXPORT lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_16150_(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_16078_(lean_object*); uint8_t l_Lean_Environment_hasUnsafe(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_checkNextPatternTypes(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Match_mkMatcher___lambda__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -383,7 +390,6 @@ static lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_throwCa LEAN_EXPORT lean_object* l_Lean_Meta_Match_mkMatcher___lambda__10(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_fvarId_x21(lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_hasRecursiveType(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10834____closed__9; lean_object* l_Lean_Option_register___at_Std_Format_initFn____x40_Lean_Data_Format___hyg_87____spec__1(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_collectFVars(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_fset(lean_object*, lean_object*, lean_object*); @@ -411,7 +417,6 @@ lean_object* l___private_Lean_Expr_0__Lean_Expr_getAppNumArgsAux(lean_object*, l LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAtCollisionNodeAux___at_Lean_Meta_Match_mkMatcherAuxDefinition___spec__7(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_Match_mkMatcherAuxDefinition___lambda__4___closed__3; static lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_withAlts_loop___rarg___closed__1; -static lean_object* l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10834____closed__8; lean_object* l_Nat_repr(lean_object*); static lean_object* l_Lean_Meta_Match_getMkMatcherInputInContext___closed__3; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Meta_Match_getMkMatcherInputInContext___spec__2(lean_object*, size_t, size_t, lean_object*); @@ -426,7 +431,6 @@ LEAN_EXPORT uint8_t l_List_foldr___at___private_Lean_Meta_Match_Match_0__Lean_Me static lean_object* l_List_filterMapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processNonVariable___spec__2___closed__1; static lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandVarIntoCtor_x3f___closed__1; lean_object* lean_st_mk_ref(lean_object*, lean_object*); -static lean_object* l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10834____closed__4; LEAN_EXPORT lean_object* l_Lean_Meta_Match_matcherExt; LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at_Lean_Meta_Match_withCleanLCtxFor___spec__22___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Array_mapIdxM_map___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processValue___spec__11___lambda__2___closed__2; @@ -455,7 +459,6 @@ lean_object* l_Lean_Expr_sort___override(lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_withEqs_go___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_List_foldr___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_isConstructorTransition___spec__1___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Match_mkMatcherAuxDefinition___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10834____closed__1; LEAN_EXPORT lean_object* l_List_mapTRAux___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processValue___spec__10(lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processLeaf_go___closed__1; size_t lean_usize_shift_left(size_t, size_t); @@ -474,7 +477,6 @@ static lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_getUEli LEAN_EXPORT uint8_t l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_isFirstPatternVar(lean_object*); static lean_object* l_Lean_Meta_Match_mkMatcherAuxDefinition___lambda__2___closed__2; LEAN_EXPORT lean_object* l_Lean_addTrace___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_solveCnstrs_go___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10834____closed__2; uint64_t lean_uint64_of_nat(lean_object*); LEAN_EXPORT lean_object* l_List_foldl___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_collectValues___spec__1(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapIdxM_map___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processArrayLit___spec__9(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -511,6 +513,7 @@ LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_so LEAN_EXPORT lean_object* l_panic___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processSkipInaccessible___spec__2(lean_object*); static lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processLeaf___lambda__2___closed__2; static lean_object* l_Lean_Meta_Match_mkMatcherAuxDefinition___lambda__2___closed__5; +static lean_object* l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10778____closed__5; static lean_object* l_Lean_Meta_MatcherApp_addArg___lambda__4___closed__3; lean_object* l_Lean_Meta_getLocalInstances(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at_Lean_Meta_Match_withCleanLCtxFor___spec__5(lean_object*, lean_object*, size_t, size_t, lean_object*); @@ -529,11 +532,9 @@ LEAN_EXPORT lean_object* l_Lean_Meta_Match_getMkMatcherInputInContext___lambda__ size_t lean_usize_mul(size_t, size_t); lean_object* l_Lean_Meta_Closure_mkValueTypeClosure(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_Match_getMkMatcherInputInContext___lambda__3___closed__2; -static lean_object* l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10798____closed__3; LEAN_EXPORT lean_object* l_Lean_Meta_MatcherApp_addArg_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Match_processInaccessibleAsCtor___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandVarIntoCtor_x3f___lambda__2___closed__4; -static lean_object* l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10798____closed__5; LEAN_EXPORT lean_object* l_List_foldr___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_hasValPattern___spec__1___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processVariable___spec__2___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT uint8_t l_List_foldr___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_isValueTransition___spec__1(uint8_t, lean_object*); @@ -551,6 +552,7 @@ static lean_object* l_Lean_Meta_Match_mkMatcherAuxDefinition___lambda__2___close LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_withAlts_mkMinorType___lambda__2(size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); size_t lean_usize_of_nat(lean_object*); LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Meta_Match_withMkMatcherInput___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10742____closed__5; lean_object* l_Lean_mkSimpleThunkType(lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processVariable(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processConstructor___lambda__2___closed__2; @@ -562,10 +564,10 @@ lean_object* l_instBEqProd___rarg(lean_object*, lean_object*, lean_object*, lean LEAN_EXPORT lean_object* l_Lean_Meta_Match_mkMatcher___lambda__13(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_List_foldr___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_hasNonTrivialExample___spec__1___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_HashSetImp_expand___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_solveCnstrs_go___spec__5(lean_object*, lean_object*); -LEAN_EXPORT uint8_t l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10834____lambda__1(uint8_t, uint8_t); static lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processLeaf___closed__1; LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandVarIntoCtor_x3f___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_withAlts_loop___rarg___lambda__1___closed__2; +static lean_object* l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10778____closed__3; size_t lean_usize_land(size_t, size_t); lean_object* l_Lean_LocalDecl_fvarId(lean_object*); LEAN_EXPORT uint8_t l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_hasCtorPattern(lean_object*); @@ -582,6 +584,7 @@ LEAN_EXPORT lean_object* l_Lean_Meta_Match_MkMatcherInput_collectDependencies___ LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processLeaf_go___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_List_mapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandVarIntoArrayLit_loop___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forInUnsafe_loop___at_Lean_Meta_Match_mkMatcher___spec__13(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10742____closed__3; lean_object* l_Lean_PersistentArray_push___rarg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processLeaf___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Match_isCurrVarInductive___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -594,7 +597,6 @@ lean_object* l_Lean_Meta_Match_getNumEqsFromDiscrInfos(lean_object*); LEAN_EXPORT lean_object* l_List_mapTRAux___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_expandNatValuePattern___spec__1(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Match_getMkMatcherInputInContext___lambda__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_List_foldr___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_isVariableTransition___spec__1___boxed(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10834____lambda__1___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processNonVariable___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_fvar___override(lean_object*); LEAN_EXPORT lean_object* l_Lean_throwError___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_solveCnstrs_go___spec__10(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -635,7 +637,6 @@ LEAN_EXPORT lean_object* l_Array_mapIdxM_map___at___private_Lean_Meta_Match_Matc static lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_solveSomeLocalFVarIdCnstr_x3f___lambda__2___closed__4; extern lean_object* l_Id_instMonadId; LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at_Lean_Meta_Match_withCleanLCtxFor___spec__11___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10834____closed__6; LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at_Lean_Meta_Match_withCleanLCtxFor___spec__24___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_nat_dec_le(lean_object*, lean_object*); uint8_t lean_usize_dec_le(size_t, size_t); @@ -679,6 +680,7 @@ static lean_object* l_Lean_Meta_Match_mkMatcher___lambda__3___closed__2; LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processSkipInaccessible(lean_object*); LEAN_EXPORT lean_object* l_List_foldr___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_checkNumPatterns___spec__1___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_updateAlts___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10778____closed__7; LEAN_EXPORT lean_object* l_List_mapTRAux___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processValue___spec__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Data_PersistentArray_0__Lean_PersistentArray_foldrMAux___at_Lean_Meta_Match_withCleanLCtxFor___spec__3___boxed(lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_throwCasesException___rarg___closed__10; @@ -693,7 +695,6 @@ LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_tr LEAN_EXPORT lean_object* l_List_mapTRAux___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processArrayLit___spec__5(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Meta_Match_mkMatcher___spec__12___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_Match_mkMatcher___lambda__5___closed__2; -static lean_object* l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10798____closed__1; LEAN_EXPORT uint8_t l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_isNatValueTransition(lean_object*); LEAN_EXPORT lean_object* l_Lean_isTracingEnabledFor___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_solveCnstrs_go___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_st_ref_set(lean_object*, lean_object*, lean_object*); @@ -717,7 +718,6 @@ LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAux___at_Lean_Meta_Match_m static lean_object* l_Lean_Meta_Match_mkMatcher___lambda__5___closed__1; static lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processArrayLit___closed__2; extern lean_object* l_Lean_instInhabitedName; -static lean_object* l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10798____closed__2; static size_t l_Lean_PersistentHashMap_findAux___at_Lean_Meta_Match_mkMatcherAuxDefinition___spec__2___closed__1; LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processAsPattern(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_List_foldr___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_hasArrayLitPattern___spec__1___boxed(lean_object*, lean_object*); @@ -791,6 +791,7 @@ LEAN_EXPORT lean_object* l_List_mapTRAux___at___private_Lean_Meta_Match_Match_0_ static lean_object* l_Array_mapIdxM_map___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processValue___spec__11___closed__2; lean_object* l_Lean_indentD(lean_object*); LEAN_EXPORT lean_object* l_List_filterMapM_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processConstructor___spec__10(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT uint8_t l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10778____lambda__1(uint8_t, uint8_t); LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_withEqs___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_List_filterTRAux___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processArrayLit___spec__6(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Match_mkMatcherAuxDefinition___lambda__3(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -820,10 +821,10 @@ LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_pr static lean_object* l_Lean_Meta_Match_mkMatcher___lambda__5___closed__3; LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_solveCnstrs_go___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Nat_foldTR_loop___at_Lean_Meta_Match_mkMatcher___spec__4(lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10834____closed__5; lean_object* l_Lean_CollectFVars_State_addDependencies(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentArray_foldrM___at_Lean_Meta_Match_withCleanLCtxFor___spec__2___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_withEqs(lean_object*); +static lean_object* l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10742____closed__1; lean_object* l_Lean_Expr_getAppFn(lean_object*); LEAN_EXPORT lean_object* l_List_mapTRAux___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processConstructor___spec__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_List_mapTRAux___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processValue___spec__3(lean_object*, lean_object*, lean_object*); @@ -844,7 +845,6 @@ uint8_t l_List_isEmpty___rarg(lean_object*); LEAN_EXPORT lean_object* l_panic___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processAsPattern___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_Match_MkMatcherInput_collectDependencies___closed__2; lean_object* l_instHashableBool___boxed(lean_object*); -static lean_object* l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10834____closed__3; LEAN_EXPORT lean_object* l_Nat_foldTR_loop___at_Lean_Meta_Match_mkMatcher___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_MatcherApp_addArg___lambda__4___closed__4; LEAN_EXPORT lean_object* l_List_forM___at_Lean_Meta_Match_MkMatcherInput_collectFVars___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -874,7 +874,6 @@ lean_object* l_Lean_indentExpr(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Match_mkMatcherAuxDefinition___lambda__1(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_Match_mkMatcherAuxDefinition___lambda__2___closed__6; static lean_object* l_Lean_Meta_MatcherApp_addArg___lambda__2___closed__2; -static lean_object* l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10834____closed__7; extern lean_object* l_Lean_Meta_Match_instInhabitedProblem; uint8_t l_Lean_Meta_Match_Alt_isLocalDecl(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Meta_Match_getMkMatcherInputInContext___spec__4(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -894,8 +893,8 @@ lean_object* l_Lean_PersistentHashMap_mkCollisionNode___rarg(lean_object*, lean_ lean_object* l_Lean_Meta_Match_Alt_applyFVarSubst(lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_throwCasesException___rarg___closed__12; LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at_Lean_Meta_Match_withCleanLCtxFor___spec__11(lean_object*, lean_object*, size_t, size_t, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10798_(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10834_(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10778_(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10742_(lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_reorientCnstrs(lean_object*); LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Meta_Match_withMkMatcherInput___spec__3___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_panic___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processAsPattern___spec__1___closed__1; @@ -928,6 +927,7 @@ static lean_object* l_Lean_Meta_Match_mkMatcherAuxDefinition___lambda__2___close uint8_t lean_nat_dec_lt(lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_updateAlts___lambda__2___closed__1; static lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_updateAlts___closed__1; +static lean_object* l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10778____closed__6; static lean_object* l_Lean_Meta_Match_withMkMatcherInput___rarg___lambda__1___closed__2; LEAN_EXPORT lean_object* l_List_filterTRAux___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processValue___spec__4(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_throwError___at_Lean_Expr_abstractRangeM___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -21757,7 +21757,7 @@ lean_dec(x_2); return x_7; } } -static lean_object* _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10798____closed__1() { +static lean_object* _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10742____closed__1() { _start: { lean_object* x_1; @@ -21765,7 +21765,7 @@ x_1 = lean_mk_string_from_bytes("bootstrap", 9); return x_1; } } -static lean_object* _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10798____closed__2() { +static lean_object* _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10742____closed__2() { _start: { lean_object* x_1; @@ -21773,17 +21773,17 @@ x_1 = lean_mk_string_from_bytes("genMatcherCode", 14); return x_1; } } -static lean_object* _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10798____closed__3() { +static lean_object* _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10742____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10798____closed__1; -x_2 = l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10798____closed__2; +x_1 = l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10742____closed__1; +x_2 = l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10742____closed__2; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10798____closed__4() { +static lean_object* _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10742____closed__4() { _start: { lean_object* x_1; @@ -21791,13 +21791,13 @@ x_1 = lean_mk_string_from_bytes("disable code generation for auxiliary matcher f return x_1; } } -static lean_object* _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10798____closed__5() { +static lean_object* _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10742____closed__5() { _start: { uint8_t x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_1 = 1; -x_2 = l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10798____closed__1; -x_3 = l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10798____closed__4; +x_2 = l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10742____closed__1; +x_3 = l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10742____closed__4; x_4 = lean_box(x_1); x_5 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_5, 0, x_4); @@ -21806,17 +21806,17 @@ lean_ctor_set(x_5, 2, x_3); return x_5; } } -LEAN_EXPORT lean_object* l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10798_(lean_object* x_1) { +LEAN_EXPORT lean_object* l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10742_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_2 = l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10798____closed__3; -x_3 = l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10798____closed__5; +x_2 = l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10742____closed__3; +x_3 = l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10742____closed__5; x_4 = l_Lean_Option_register___at_Std_Format_initFn____x40_Lean_Data_Format___hyg_87____spec__1(x_2, x_3, x_1); return x_4; } } -LEAN_EXPORT uint8_t l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10834____lambda__1(uint8_t x_1, uint8_t x_2) { +LEAN_EXPORT uint8_t l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10778____lambda__1(uint8_t x_1, uint8_t x_2) { _start: { if (x_1 == 0) @@ -21840,37 +21840,37 @@ return x_2; } } } -static lean_object* _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10834____closed__1() { +static lean_object* _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10778____closed__1() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10834____lambda__1___boxed), 2, 0); +x_1 = lean_alloc_closure((void*)(l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10778____lambda__1___boxed), 2, 0); return x_1; } } -static lean_object* _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10834____closed__2() { +static lean_object* _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10778____closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10834____closed__1; +x_1 = l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10778____closed__1; x_2 = lean_alloc_closure((void*)(l_instBEq___rarg), 3, 1); lean_closure_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10834____closed__3() { +static lean_object* _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10778____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Expr_instBEqExpr; -x_2 = l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10834____closed__2; +x_2 = l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10778____closed__2; x_3 = lean_alloc_closure((void*)(l_instBEqProd___rarg), 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_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10834____closed__4() { +static lean_object* _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10778____closed__4() { _start: { lean_object* x_1; @@ -21878,19 +21878,19 @@ x_1 = lean_alloc_closure((void*)(l_instHashableBool___boxed), 1, 0); return x_1; } } -static lean_object* _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10834____closed__5() { +static lean_object* _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10778____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Expr_instHashableExpr; -x_2 = l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10834____closed__4; +x_2 = l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10778____closed__4; x_3 = lean_alloc_closure((void*)(l_instHashableProd___rarg___boxed), 3, 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_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10834____closed__6() { +static lean_object* _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10778____closed__6() { _start: { lean_object* x_1; @@ -21898,21 +21898,21 @@ x_1 = l_Lean_PersistentHashMap_mkEmptyEntriesArray(lean_box(0), lean_box(0)); return x_1; } } -static lean_object* _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10834____closed__7() { +static lean_object* _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10778____closed__7() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10834____closed__6; +x_1 = l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10778____closed__6; 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_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10834____closed__8() { +static lean_object* _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10778____closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10834____closed__7; +x_1 = l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10778____closed__7; x_2 = lean_unsigned_to_nat(0u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -21920,26 +21920,26 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10834____closed__9() { +static lean_object* _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10778____closed__9() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10834____closed__8; +x_1 = l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10778____closed__8; x_2 = lean_alloc_closure((void*)(l_EStateM_pure___rarg), 2, 1); lean_closure_set(x_2, 0, x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10834_(lean_object* x_1) { +LEAN_EXPORT lean_object* l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10778_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; -x_2 = l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10834____closed__9; +x_2 = l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10778____closed__9; x_3 = l_Lean_EnvExtensionInterfaceUnsafe_registerExt___rarg(x_2, x_1); return x_3; } } -LEAN_EXPORT lean_object* l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10834____lambda__1___boxed(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10778____lambda__1___boxed(lean_object* x_1, lean_object* x_2) { _start: { uint8_t x_3; uint8_t x_4; uint8_t x_5; lean_object* x_6; @@ -21947,7 +21947,7 @@ x_3 = lean_unbox(x_1); lean_dec(x_1); x_4 = lean_unbox(x_2); lean_dec(x_2); -x_5 = l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10834____lambda__1(x_3, x_4); +x_5 = l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10778____lambda__1(x_3, x_4); x_6 = lean_box(x_5); return x_6; } @@ -23120,7 +23120,7 @@ static lean_object* _init_l_Lean_Meta_Match_mkMatcherAuxDefinition___lambda__2__ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10834____closed__7; +x_1 = l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10778____closed__7; x_2 = lean_unsigned_to_nat(0u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -23143,7 +23143,7 @@ static lean_object* _init_l_Lean_Meta_Match_mkMatcherAuxDefinition___lambda__2__ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10834____closed__7; +x_1 = l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10778____closed__7; x_2 = lean_unsigned_to_nat(0u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -23163,7 +23163,7 @@ static lean_object* _init_l_Lean_Meta_Match_mkMatcherAuxDefinition___lambda__2__ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10834____closed__7; +x_1 = l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10778____closed__7; x_2 = lean_unsigned_to_nat(0u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -23175,7 +23175,7 @@ static lean_object* _init_l_Lean_Meta_Match_mkMatcherAuxDefinition___lambda__2__ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10834____closed__7; +x_1 = l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10778____closed__7; x_2 = lean_unsigned_to_nat(0u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -23209,7 +23209,7 @@ static lean_object* _init_l_Lean_Meta_Match_mkMatcherAuxDefinition___lambda__2__ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10834____closed__7; +x_1 = l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10778____closed__7; x_2 = lean_unsigned_to_nat(0u); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -23694,8 +23694,8 @@ static lean_object* _init_l_Lean_Meta_Match_mkMatcherAuxDefinition___lambda__4__ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10834____closed__3; -x_2 = l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10834____closed__5; +x_1 = l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10778____closed__3; +x_2 = l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10778____closed__5; x_3 = l_Lean_PersistentHashMap_instInhabitedPersistentHashMap___rarg(x_1, x_2); return x_3; } @@ -35087,7 +35087,7 @@ return x_21; } } } -LEAN_EXPORT lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_16150_(lean_object* x_1) { +LEAN_EXPORT lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_16078_(lean_object* x_1) { _start: { lean_object* x_2; uint8_t x_3; lean_object* x_4; @@ -35486,40 +35486,40 @@ l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_getUElimPos_x3f___closed__1 lean_mark_persistent(l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_getUElimPos_x3f___closed__1); l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_getUElimPos_x3f___closed__2 = _init_l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_getUElimPos_x3f___closed__2(); lean_mark_persistent(l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_getUElimPos_x3f___closed__2); -l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10798____closed__1 = _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10798____closed__1(); -lean_mark_persistent(l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10798____closed__1); -l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10798____closed__2 = _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10798____closed__2(); -lean_mark_persistent(l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10798____closed__2); -l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10798____closed__3 = _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10798____closed__3(); -lean_mark_persistent(l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10798____closed__3); -l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10798____closed__4 = _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10798____closed__4(); -lean_mark_persistent(l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10798____closed__4); -l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10798____closed__5 = _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10798____closed__5(); -lean_mark_persistent(l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10798____closed__5); -if (builtin) {res = l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10798_(lean_io_mk_world()); +l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10742____closed__1 = _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10742____closed__1(); +lean_mark_persistent(l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10742____closed__1); +l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10742____closed__2 = _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10742____closed__2(); +lean_mark_persistent(l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10742____closed__2); +l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10742____closed__3 = _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10742____closed__3(); +lean_mark_persistent(l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10742____closed__3); +l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10742____closed__4 = _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10742____closed__4(); +lean_mark_persistent(l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10742____closed__4); +l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10742____closed__5 = _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10742____closed__5(); +lean_mark_persistent(l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10742____closed__5); +if (builtin) {res = l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10742_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; l_Lean_Meta_Match_bootstrap_genMatcherCode = lean_io_result_get_value(res); lean_mark_persistent(l_Lean_Meta_Match_bootstrap_genMatcherCode); lean_dec_ref(res); -}l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10834____closed__1 = _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10834____closed__1(); -lean_mark_persistent(l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10834____closed__1); -l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10834____closed__2 = _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10834____closed__2(); -lean_mark_persistent(l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10834____closed__2); -l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10834____closed__3 = _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10834____closed__3(); -lean_mark_persistent(l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10834____closed__3); -l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10834____closed__4 = _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10834____closed__4(); -lean_mark_persistent(l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10834____closed__4); -l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10834____closed__5 = _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10834____closed__5(); -lean_mark_persistent(l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10834____closed__5); -l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10834____closed__6 = _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10834____closed__6(); -lean_mark_persistent(l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10834____closed__6); -l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10834____closed__7 = _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10834____closed__7(); -lean_mark_persistent(l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10834____closed__7); -l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10834____closed__8 = _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10834____closed__8(); -lean_mark_persistent(l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10834____closed__8); -l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10834____closed__9 = _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10834____closed__9(); -lean_mark_persistent(l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10834____closed__9); -if (builtin) {res = l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10834_(lean_io_mk_world()); +}l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10778____closed__1 = _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10778____closed__1(); +lean_mark_persistent(l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10778____closed__1); +l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10778____closed__2 = _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10778____closed__2(); +lean_mark_persistent(l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10778____closed__2); +l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10778____closed__3 = _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10778____closed__3(); +lean_mark_persistent(l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10778____closed__3); +l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10778____closed__4 = _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10778____closed__4(); +lean_mark_persistent(l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10778____closed__4); +l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10778____closed__5 = _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10778____closed__5(); +lean_mark_persistent(l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10778____closed__5); +l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10778____closed__6 = _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10778____closed__6(); +lean_mark_persistent(l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10778____closed__6); +l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10778____closed__7 = _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10778____closed__7(); +lean_mark_persistent(l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10778____closed__7); +l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10778____closed__8 = _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10778____closed__8(); +lean_mark_persistent(l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10778____closed__8); +l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10778____closed__9 = _init_l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10778____closed__9(); +lean_mark_persistent(l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10778____closed__9); +if (builtin) {res = l_Lean_Meta_Match_initFn____x40_Lean_Meta_Match_Match___hyg_10778_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; l_Lean_Meta_Match_matcherExt = lean_io_result_get_value(res); lean_mark_persistent(l_Lean_Meta_Match_matcherExt); @@ -35658,7 +35658,7 @@ l_Lean_Meta_MatcherApp_addArg___lambda__4___closed__3 = _init_l_Lean_Meta_Matche lean_mark_persistent(l_Lean_Meta_MatcherApp_addArg___lambda__4___closed__3); l_Lean_Meta_MatcherApp_addArg___lambda__4___closed__4 = _init_l_Lean_Meta_MatcherApp_addArg___lambda__4___closed__4(); lean_mark_persistent(l_Lean_Meta_MatcherApp_addArg___lambda__4___closed__4); -res = l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_16150_(lean_io_mk_world()); +res = l_Lean_Meta_initFn____x40_Lean_Meta_Match_Match___hyg_16078_(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/Meta/SynthInstance.c b/stage0/stdlib/Lean/Meta/SynthInstance.c index 5ee567cb0f..b9ff072da3 100644 --- a/stage0/stdlib/Lean/Meta/SynthInstance.c +++ b/stage0/stdlib/Lean/Meta/SynthInstance.c @@ -390,7 +390,7 @@ lean_object* l_Lean_MessageData_arrayExpr_toMessageData(lean_object*, lean_objec LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_removeUnusedArguments_x3f___spec__2(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_SynthInstance___hyg_43_(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_SynthInstance___hyg_6_(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_SynthInstance___hyg_10244_(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_SynthInstance___hyg_10227_(lean_object*); static lean_object* l_Lean_Meta_SynthInstance_MkTableKey_State_lmap___default___closed__1; LEAN_EXPORT lean_object* l_Lean_Meta_SynthInstance_getNextToResume___boxed(lean_object*); lean_object* l_Lean_PersistentArray_toArray___rarg(lean_object*); @@ -1333,7 +1333,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; x_1 = l_Lean_isLevelMVarAssignable___at_Lean_Meta_SynthInstance_MkTableKey_normLevel___spec__1___closed__1; x_2 = l_Lean_isLevelMVarAssignable___at_Lean_Meta_SynthInstance_MkTableKey_normLevel___spec__1___closed__2; -x_3 = lean_unsigned_to_nat(387u); +x_3 = lean_unsigned_to_nat(388u); x_4 = lean_unsigned_to_nat(14u); x_5 = l_Lean_isLevelMVarAssignable___at_Lean_Meta_SynthInstance_MkTableKey_normLevel___spec__1___closed__3; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -23162,7 +23162,7 @@ lean_dec(x_3); return x_9; } } -LEAN_EXPORT lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_SynthInstance___hyg_10244_(lean_object* x_1) { +LEAN_EXPORT lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_SynthInstance___hyg_10227_(lean_object* x_1) { _start: { lean_object* x_2; uint8_t x_3; lean_object* x_4; @@ -23763,7 +23763,7 @@ l___private_Lean_Meta_SynthInstance_0__Lean_Meta_synthPendingImp___lambda__2___c lean_mark_persistent(l___private_Lean_Meta_SynthInstance_0__Lean_Meta_synthPendingImp___lambda__2___closed__5); l___private_Lean_Meta_SynthInstance_0__Lean_Meta_synthPendingImp___lambda__2___closed__6 = _init_l___private_Lean_Meta_SynthInstance_0__Lean_Meta_synthPendingImp___lambda__2___closed__6(); lean_mark_persistent(l___private_Lean_Meta_SynthInstance_0__Lean_Meta_synthPendingImp___lambda__2___closed__6); -res = l_Lean_Meta_initFn____x40_Lean_Meta_SynthInstance___hyg_10244_(lean_io_mk_world()); +res = l_Lean_Meta_initFn____x40_Lean_Meta_SynthInstance___hyg_10227_(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/Meta/Tactic/ElimInfo.c b/stage0/stdlib/Lean/Meta/Tactic/ElimInfo.c index 7d19136fec..c94227018e 100644 --- a/stage0/stdlib/Lean/Meta/Tactic/ElimInfo.c +++ b/stage0/stdlib/Lean/Meta/Tactic/ElimInfo.c @@ -3608,7 +3608,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; x_1 = l_Lean_isLevelMVarAssignable___at_Lean_Meta_addImplicitTargets___spec__5___closed__1; x_2 = l_Lean_isLevelMVarAssignable___at_Lean_Meta_addImplicitTargets___spec__5___closed__2; -x_3 = lean_unsigned_to_nat(387u); +x_3 = lean_unsigned_to_nat(388u); x_4 = lean_unsigned_to_nat(14u); x_5 = l_Lean_isLevelMVarAssignable___at_Lean_Meta_addImplicitTargets___spec__5___closed__3; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); diff --git a/stage0/stdlib/Lean/Meta/Tactic/Simp/Rewrite.c b/stage0/stdlib/Lean/Meta/Tactic/Simp/Rewrite.c index dcce83a7b3..315a8dca31 100644 --- a/stage0/stdlib/Lean/Meta/Tactic/Simp/Rewrite.c +++ b/stage0/stdlib/Lean/Meta/Tactic/Simp/Rewrite.c @@ -5032,7 +5032,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; x_1 = l_Lean_isLevelMVarAssignable___at___private_Lean_Meta_Tactic_Simp_Rewrite_0__Lean_Meta_Simp_tryTheoremCore_go___spec__5___closed__1; x_2 = l_Lean_isLevelMVarAssignable___at___private_Lean_Meta_Tactic_Simp_Rewrite_0__Lean_Meta_Simp_tryTheoremCore_go___spec__5___closed__2; -x_3 = lean_unsigned_to_nat(387u); +x_3 = lean_unsigned_to_nat(388u); x_4 = lean_unsigned_to_nat(14u); x_5 = l_Lean_isLevelMVarAssignable___at___private_Lean_Meta_Tactic_Simp_Rewrite_0__Lean_Meta_Simp_tryTheoremCore_go___spec__5___closed__3; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); diff --git a/stage0/stdlib/Lean/Meta/Tactic/Split.c b/stage0/stdlib/Lean/Meta/Tactic/Split.c index 0f19a7ef2d..4d8f45f0d9 100644 --- a/stage0/stdlib/Lean/Meta/Tactic/Split.c +++ b/stage0/stdlib/Lean/Meta/Tactic/Split.c @@ -338,7 +338,7 @@ lean_object* l_Lean_Meta_lambdaTelescope___at___private_Lean_Meta_Eqns_0__Lean_M static lean_object* l___private_Lean_Meta_Tactic_Split_0__Lean_Meta_Split_generalizeMatchDiscrs___lambda__6___closed__5; static lean_object* l_Lean_Meta_Split_getSimpMatchContext___rarg___closed__2; static lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Meta_Tactic_Split_0__Lean_Meta_Split_generalizeMatchDiscrs_mkNewTarget___spec__1___closed__9; -LEAN_EXPORT lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_Tactic_Split___hyg_7123_(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_Tactic_Split___hyg_7119_(lean_object*); LEAN_EXPORT lean_object* l_Lean_commitWhenSome_x3f___at_Lean_Meta_splitTarget_x3f___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_reduceRecMatcher_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_Split_applyMatchSplitter___lambda__1___closed__2; @@ -12337,7 +12337,7 @@ x_10 = l_Lean_commitWhenSome_x3f___at_Lean_Meta_splitTarget_x3f___spec__1(x_9, x return x_10; } } -LEAN_EXPORT lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_Tactic_Split___hyg_7123_(lean_object* x_1) { +LEAN_EXPORT lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_Tactic_Split___hyg_7119_(lean_object* x_1) { _start: { lean_object* x_2; uint8_t x_3; lean_object* x_4; @@ -12546,7 +12546,7 @@ l_Lean_commitWhenSome_x3f___at_Lean_Meta_splitTarget_x3f___spec__1___at_Lean_Met lean_mark_persistent(l_Lean_commitWhenSome_x3f___at_Lean_Meta_splitTarget_x3f___spec__1___at_Lean_Meta_splitTarget_x3f___spec__2___closed__1); l_Lean_Meta_splitLocalDecl_x3f___lambda__1___closed__1 = _init_l_Lean_Meta_splitLocalDecl_x3f___lambda__1___closed__1(); lean_mark_persistent(l_Lean_Meta_splitLocalDecl_x3f___lambda__1___closed__1); -res = l_Lean_Meta_initFn____x40_Lean_Meta_Tactic_Split___hyg_7123_(lean_io_mk_world()); +res = l_Lean_Meta_initFn____x40_Lean_Meta_Tactic_Split___hyg_7119_(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/Meta/UnificationHint.c b/stage0/stdlib/Lean/Meta/UnificationHint.c index d3501e8b27..1912dc54ce 100644 --- a/stage0/stdlib/Lean/Meta/UnificationHint.c +++ b/stage0/stdlib/Lean/Meta/UnificationHint.c @@ -33,7 +33,7 @@ LEAN_EXPORT lean_object* l_List_forIn_loop___at_Lean_Meta_tryUnificationHints_tr LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux_traverse___at_Lean_Meta_UnificationHints_add___spec__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_UnificationHint_0__Lean_Meta_decodeUnificationHint_decode___closed__1; LEAN_EXPORT lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_UnificationHint___hyg_182_(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_UnificationHint___hyg_2728_(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_UnificationHint___hyg_2707_(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_UnificationHint___hyg_941_(lean_object*); lean_object* l_Lean_throwError___at_Lean_Meta_setInlineAttribute___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_uget(lean_object*, size_t); @@ -8847,7 +8847,7 @@ lean_dec(x_3); return x_9; } } -LEAN_EXPORT lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_UnificationHint___hyg_2728_(lean_object* x_1) { +LEAN_EXPORT lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_UnificationHint___hyg_2707_(lean_object* x_1) { _start: { lean_object* x_2; uint8_t x_3; lean_object* x_4; @@ -9156,7 +9156,7 @@ l_Lean_Meta_tryUnificationHints___lambda__2___closed__1 = _init_l_Lean_Meta_tryU lean_mark_persistent(l_Lean_Meta_tryUnificationHints___lambda__2___closed__1); l_Lean_Meta_tryUnificationHints___lambda__2___closed__2 = _init_l_Lean_Meta_tryUnificationHints___lambda__2___closed__2(); lean_mark_persistent(l_Lean_Meta_tryUnificationHints___lambda__2___closed__2); -res = l_Lean_Meta_initFn____x40_Lean_Meta_UnificationHint___hyg_2728_(lean_io_mk_world()); +res = l_Lean_Meta_initFn____x40_Lean_Meta_UnificationHint___hyg_2707_(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/Meta/WHNF.c b/stage0/stdlib/Lean/Meta/WHNF.c index 27531614c5..47151ed030 100644 --- a/stage0/stdlib/Lean/Meta/WHNF.c +++ b/stage0/stdlib/Lean/Meta/WHNF.c @@ -127,7 +127,7 @@ LEAN_EXPORT lean_object* l_Lean_Meta_getStuckMVar_x3f___lambda__8___boxed(lean_o lean_object* l_Lean_Expr_getRevArg_x21(lean_object*, lean_object*); lean_object* l_Lean_Meta_forallBoundedTelescope___at___private_Lean_Meta_FunInfo_0__Lean_Meta_getFunInfoAux___spec__8___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_addTrace___at_Lean_Meta_processPostponed_loop___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -uint8_t l___private_Init_Meta_0__Lean_Meta_beqTransparencyMode____x40_Init_Meta___hyg_12380_(uint8_t, uint8_t); +uint8_t l___private_Init_Meta_0__Lean_Meta_beqTransparencyMode____x40_Init_Meta___hyg_12371_(uint8_t, uint8_t); static lean_object* l_Lean_Meta_canUnfoldAtMatcher___closed__10; uint8_t lean_usize_dec_lt(size_t, size_t); static lean_object* l_Lean_Meta_canUnfoldAtMatcher___closed__32; @@ -16779,7 +16779,7 @@ lean_inc(x_9); lean_dec(x_7); x_10 = 2; x_11 = lean_unbox(x_8); -x_12 = l___private_Init_Meta_0__Lean_Meta_beqTransparencyMode____x40_Init_Meta___hyg_12380_(x_11, x_10); +x_12 = l___private_Init_Meta_0__Lean_Meta_beqTransparencyMode____x40_Init_Meta___hyg_12371_(x_11, x_10); if (x_12 == 0) { lean_object* x_13; uint8_t x_14; lean_object* x_15; @@ -23964,7 +23964,7 @@ x_10 = lean_ctor_get(x_7, 1); x_11 = 3; x_12 = lean_unbox(x_9); lean_dec(x_9); -x_13 = l___private_Init_Meta_0__Lean_Meta_beqTransparencyMode____x40_Init_Meta___hyg_12380_(x_12, x_11); +x_13 = l___private_Init_Meta_0__Lean_Meta_beqTransparencyMode____x40_Init_Meta___hyg_12371_(x_12, x_11); if (x_13 == 0) { lean_object* x_14; @@ -23995,7 +23995,7 @@ lean_dec(x_7); x_18 = 3; x_19 = lean_unbox(x_16); lean_dec(x_16); -x_20 = l___private_Init_Meta_0__Lean_Meta_beqTransparencyMode____x40_Init_Meta___hyg_12380_(x_19, x_18); +x_20 = l___private_Init_Meta_0__Lean_Meta_beqTransparencyMode____x40_Init_Meta___hyg_12371_(x_19, x_18); if (x_20 == 0) { lean_object* x_21; lean_object* x_22; diff --git a/stage0/stdlib/Lean/MetavarContext.c b/stage0/stdlib/Lean/MetavarContext.c index 74a86bdb63..68211ac0a1 100644 --- a/stage0/stdlib/Lean/MetavarContext.c +++ b/stage0/stdlib/Lean/MetavarContext.c @@ -4082,7 +4082,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; x_1 = l_Lean_isLevelMVarAssignable___rarg___lambda__1___closed__1; x_2 = l_Lean_isLevelMVarAssignable___rarg___lambda__1___closed__2; -x_3 = lean_unsigned_to_nat(387u); +x_3 = lean_unsigned_to_nat(388u); x_4 = lean_unsigned_to_nat(14u); x_5 = l_Lean_isLevelMVarAssignable___rarg___lambda__1___closed__3; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -4339,7 +4339,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; x_1 = l_Lean_isLevelMVarAssignable___rarg___lambda__1___closed__1; x_2 = l_Lean_MetavarContext_getDecl___closed__1; -x_3 = lean_unsigned_to_nat(392u); +x_3 = lean_unsigned_to_nat(393u); x_4 = lean_unsigned_to_nat(17u); x_5 = l_Lean_MetavarContext_getDecl___closed__2; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -51951,7 +51951,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; x_1 = l_Lean_isLevelMVarAssignable___rarg___lambda__1___closed__1; x_2 = l_Lean_MetavarContext_getLevelDepth___closed__1; -x_3 = lean_unsigned_to_nat(833u); +x_3 = lean_unsigned_to_nat(834u); x_4 = lean_unsigned_to_nat(14u); x_5 = l_Lean_MetavarContext_getDecl___closed__2; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); diff --git a/stage0/stdlib/Lean/Parser/Extra.c b/stage0/stdlib/Lean/Parser/Extra.c index 3c6ab6bef7..5837a84950 100644 --- a/stage0/stdlib/Lean/Parser/Extra.c +++ b/stage0/stdlib/Lean/Parser/Extra.c @@ -15,33 +15,32 @@ extern "C" { #endif static lean_object* l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias_x28Kind_x3a_x3d___x29__________1___lambda__1___closed__53; lean_object* l_List_reverse___rarg(lean_object*); -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__77; -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__56; static lean_object* l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias_x28Kind_x3a_x3d___x29__________1___lambda__1___closed__42; lean_object* l_Lean_PrettyPrinter_Formatter_rawIdentNoAntiquot_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_mkAntiquot_formatter___closed__2; static lean_object* l_Lean_Parser_termRegister__parser__alias_x28Kind_x3a_x3d___x29___________closed__22; lean_object* l_Lean_PrettyPrinter_Parenthesizer_withoutInfo_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias_x28Kind_x3a_x3d___x29__________1___lambda__1___closed__16; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__20; LEAN_EXPORT lean_object* l_Lean_Parser_many1Indent_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_charLit___closed__1; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__77; static lean_object* l_Lean_Parser_termRegister__parser__alias_x28Kind_x3a_x3d___x29___________closed__29; LEAN_EXPORT lean_object* l_Lean_Parser_nonReservedSymbol_formatter___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__49; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__85; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__66; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__115; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__56; static lean_object* l_List_forIn_loop___at_Lean_Parser_sepByIndent_formatter___spec__2___closed__1; lean_object* l_Lean_PrettyPrinter_Formatter_visitArgs(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); size_t lean_usize_add(size_t, size_t); static lean_object* l___regBuiltin_Lean_Parser_antiquotNestedExpr_formatter___closed__6; LEAN_EXPORT lean_object* l_Lean_Parser_ppRealGroup_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_List_forIn_loop___at_Lean_Parser_sepByIndent_formatter___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__66; lean_object* l_Lean_Parser_checkLinebreakBefore(lean_object*); lean_object* l_Lean_PrettyPrinter_Parenthesizer_categoryParser_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_mkAntiquot_formatter___closed__14; -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__98; -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__10; static lean_object* l_Lean_Parser_termRegister__parser__alias_x28Kind_x3a_x3d___x29___________closed__28; -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__32; lean_object* l_Lean_PrettyPrinter_Formatter_numLitNoAntiquot_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_ppHardSpace_parenthesizer___rarg(lean_object*); static lean_object* l_Lean_Parser_optional___closed__1; @@ -52,7 +51,7 @@ static lean_object* l_Lean_Parser_mkAntiquot_formatter___closed__5; LEAN_EXPORT lean_object* l_Lean_Parser_mkAntiquot_parenthesizer(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_mk_empty_array_with_capacity(lean_object*); lean_object* l_Lean_Name_str___override(lean_object*, lean_object*); -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__20; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__16; static lean_object* l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias_x28Kind_x3a_x3d___x29__________1___lambda__1___closed__37; LEAN_EXPORT lean_object* l_Lean_Parser_ppSpace_parenthesizer___boxed(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_termRegister__parser__alias_x28Kind_x3a_x3d___x29___________closed__30; @@ -64,13 +63,9 @@ LEAN_EXPORT lean_object* l_Lean_Parser_ppGroup_formatter(lean_object*, lean_obje lean_object* l_Lean_PrettyPrinter_Parenthesizer_rawIdentNoAntiquot_parenthesizer___boxed(lean_object*); lean_object* l_Lean_Parser_manyNoAntiquot(lean_object*); lean_object* l_Lean_PrettyPrinter_Parenthesizer_withAntiquot_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__85; -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__115; static lean_object* l_Lean_Parser_mkAntiquotSplice_formatter___closed__6; LEAN_EXPORT lean_object* l_Lean_ppHardLineUnlessUngrouped_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__73; static lean_object* l_Lean_Parser_termRegister__parser__alias_x28Kind_x3a_x3d___x29___________closed__5; -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__24; extern lean_object* l_Lean_Parser_strLitNoAntiquot; lean_object* l_Lean_PrettyPrinter_Formatter_sepByNoAntiquot_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_many(lean_object*); @@ -80,8 +75,8 @@ lean_object* l_Lean_Syntax_getOptional_x3f(lean_object*); uint8_t lean_usize_dec_eq(size_t, size_t); lean_object* lean_array_uget(lean_object*, size_t); static lean_object* l_Lean_Parser_termRegister__parser__alias_x28Kind_x3a_x3d___x29___________closed__16; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__105; static lean_object* l_Lean_Parser_antiquotExpr_formatter___closed__2; -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__106; lean_object* l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_ppSpace_parenthesizer___rarg(lean_object*); static lean_object* l_Lean_Parser_termRegister__parser__alias_x28Kind_x3a_x3d___x29___________closed__7; @@ -90,59 +85,59 @@ LEAN_EXPORT lean_object* l_Lean_Parser_sepBy1_parenthesizer(lean_object*, lean_o static lean_object* l_Lean_Parser_mkAntiquot_formatter___closed__3; LEAN_EXPORT lean_object* l_Lean_Parser_sepBy_formatter___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_ppGroup___boxed(lean_object*); -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__7; -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__71; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__116; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__12; LEAN_EXPORT lean_object* l_Lean_Parser_symbol_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_charLit; -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__63; static lean_object* l_Lean_Parser_mkAntiquot_formatter___closed__15; static lean_object* l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias_x28Kind_x3a_x3d___x29__________1___lambda__1___closed__43; lean_object* l_Lean_SourceInfo_fromRef(lean_object*, uint8_t); +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__102; lean_object* l_Lean_PrettyPrinter_Formatter_indent(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_nameLitNoAntiquot; LEAN_EXPORT lean_object* l_Lean_Parser_ppAllowUngrouped_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_ident_formatter___closed__1; -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__16; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__90; LEAN_EXPORT lean_object* l_Lean_Parser_sepBy_parenthesizer___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Formatter_atomic_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias_x28Kind_x3a_x3d___x29__________1___lambda__1___closed__79; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__87; static lean_object* l_Lean_Parser_termRegister__parser__alias_x28Kind_x3a_x3d___x29___________closed__18; static lean_object* l_Lean_Parser_termRegister__parser__alias_x28Kind_x3a_x3d___x29___________closed__15; LEAN_EXPORT lean_object* l_Lean_Parser_group_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__105; lean_object* l_Lean_PrettyPrinter_Formatter_manyNoAntiquot_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_sepByIndent_parenthesizer(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_nameLit_formatter___closed__3; LEAN_EXPORT lean_object* l_Lean_Parser_ppDedentIfGrouped___boxed(lean_object*); extern lean_object* l_Lean_Parser_pushNone; static lean_object* l_Lean_Parser_ident_formatter___closed__2; -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__108; LEAN_EXPORT lean_object* l_Lean_Parser_scientificLit; LEAN_EXPORT lean_object* l_Lean_ppSpace_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_sepBy1Indent_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__70; static lean_object* l_Lean_Parser_many_parenthesizer___closed__1; lean_object* l_Lean_PrettyPrinter_Formatter_orelse_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_group(lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_ident; static lean_object* l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias_x28Kind_x3a_x3d___x29__________1___lambda__1___closed__51; -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__35; static lean_object* l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias_x28Kind_x3a_x3d___x29__________1___lambda__1___closed__19; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__65; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__109; lean_object* l_Lean_Parser_checkColGe(lean_object*); +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__39; lean_object* lean_st_ref_get(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_ppDedentIfGrouped(lean_object*); -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__39; static lean_object* l_Lean_Parser_sepByElemParser_formatter___closed__3; LEAN_EXPORT lean_object* l_Lean_Parser_withAntiquotSpliceAndSuffix_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__35; lean_object* l_Lean_PrettyPrinter_Parenthesizer_checkColEq_parenthesizer___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__65; static lean_object* l_Lean_Parser_antiquotNestedExpr_parenthesizer___closed__1; -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__109; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__70; LEAN_EXPORT lean_object* l_Lean_Parser_sepByIndent___boxed(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_termRegister__parser__alias_x28Kind_x3a_x3d___x29___________closed__24; lean_object* l_Lean_mkIdentFrom(lean_object*, lean_object*, uint8_t); static lean_object* l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias_x28Kind_x3a_x3d___x29__________1___lambda__1___closed__61; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__51; static lean_object* l_Lean_Parser_termRegister__parser__alias_x28Kind_x3a_x3d___x29___________closed__33; static lean_object* l_Lean_Parser_strLit_formatter___closed__1; lean_object* l_Lean_Name_mkStr2(lean_object*, lean_object*); @@ -153,8 +148,8 @@ LEAN_EXPORT lean_object* l_Lean_Parser_optional_formatter(lean_object*, lean_obj lean_object* lean_array_get_size(lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_ppIndent_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_optional_formatter___closed__4; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__19; lean_object* l_ReaderT_bind___at_Lean_PrettyPrinter_Formatter_categoryFormatterCore___spec__2___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__104; lean_object* lean_string_append(lean_object*, lean_object*); static lean_object* l_Lean_Parser_mkAntiquot_formatter___closed__9; static lean_object* l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias_x28Kind_x3a_x3d___x29__________1___lambda__1___closed__63; @@ -165,53 +160,58 @@ static lean_object* l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Le static lean_object* l_Lean_Parser_mkAntiquot_formatter___closed__17; static lean_object* l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias_x28Kind_x3a_x3d___x29__________1___lambda__1___closed__31; lean_object* l_Lean_Parser_notFollowedBy(lean_object*, lean_object*); -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__28; LEAN_EXPORT lean_object* l_Lean_Parser_unicodeSymbol_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__5; static lean_object* l_Lean_Parser_optional_formatter___closed__2; lean_object* l_Lean_Parser_withPosition(lean_object*); +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__89; static lean_object* l_Lean_Parser_mkAntiquot_formatter___closed__1; static lean_object* l_Lean_Parser_termRegister__parser__alias_x28Kind_x3a_x3d___x29___________closed__13; lean_object* l_Lean_PrettyPrinter_Formatter_nonReservedSymbolNoAntiquot_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_termRegister__parser__alias_x28Kind_x3a_x3d___x29___________closed__21; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__47; LEAN_EXPORT lean_object* l_Lean_Parser_sepBy1_formatter(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Parenthesizer_numLitNoAntiquot_parenthesizer___boxed(lean_object*); +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__21; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__38; static lean_object* l_Lean_Parser_antiquotNestedExpr_formatter___closed__5; lean_object* l_Lean_PrettyPrinter_Formatter_unicodeSymbolNoAntiquot_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_termRegister__parser__alias_x28Kind_x3a_x3d___x29___________closed__23; static lean_object* l_Lean_Parser_antiquotNestedExpr_parenthesizer___closed__5; -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__14; LEAN_EXPORT lean_object* l_Lean_Parser_antiquotNestedExpr_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias_x28Kind_x3a_x3d___x29__________1___lambda__1___closed__7; static lean_object* l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias_x28Kind_x3a_x3d___x29__________1___lambda__1___closed__71; -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__81; LEAN_EXPORT lean_object* l_Lean_Parser_group_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Parenthesizer_scientificLitNoAntiquot_parenthesizer___boxed(lean_object*); +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__79; static lean_object* l_Lean_Parser_antiquotNestedExpr_parenthesizer___closed__3; static lean_object* l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias_x28Kind_x3a_x3d___x29__________1___lambda__1___closed__24; LEAN_EXPORT lean_object* l_Lean_Parser_mkAntiquot_formatter___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_leadingNode_formatter___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__51; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__95; static lean_object* l___regBuiltin_Lean_Parser_antiquotNestedExpr_parenthesizer___closed__1; -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__19; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__73; LEAN_EXPORT lean_object* l_Lean_Parser_nodeWithAntiquot_parenthesizer___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__69; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__10; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__32; static lean_object* l_Lean_Parser_mkAntiquot_formatter___closed__4; static lean_object* l___regBuiltin_Lean_Parser_antiquotNestedExpr_formatter___closed__1; LEAN_EXPORT lean_object* l_Lean_Parser_many_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias_x28Kind_x3a_x3d___x29__________1___lambda__1___closed__49; LEAN_EXPORT lean_object* l_Lean_Parser_ppLine; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__98; static lean_object* l___regBuiltin_Lean_Parser_antiquotNestedExpr_parenthesizer___closed__2; static lean_object* l_Lean_Parser_strLit___closed__1; LEAN_EXPORT lean_object* l_Lean_Parser_rawIdent_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__81; static lean_object* l_Lean_Parser_strLit_formatter___closed__3; static lean_object* l_Lean_Parser_leadingNode_formatter___closed__1; LEAN_EXPORT lean_object* l_Lean_Parser_optional_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_antiquotNestedExpr_formatter___closed__3; LEAN_EXPORT lean_object* l_Lean_Parser_sepByIndent_formatter___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Parenthesizer_sepByNoAntiquot_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__113; LEAN_EXPORT lean_object* l_Lean_Parser_sepBy1Indent_parenthesizer(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_termRegister__parser__alias_x28Kind_x3a_x3d___x29________; static lean_object* l_Lean_Parser_ident___closed__1; @@ -220,24 +220,22 @@ lean_object* lean_nat_add(lean_object*, lean_object*); static lean_object* l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias_x28Kind_x3a_x3d___x29__________1___lambda__1___closed__75; static lean_object* l_Lean_Parser_termRegister__parser__alias_x28Kind_x3a_x3d___x29___________closed__32; static lean_object* l_Lean_Parser_termRegister__parser__alias_x28Kind_x3a_x3d___x29___________closed__10; -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__62; LEAN_EXPORT lean_object* l_Lean_Parser_ppAllowUngrouped_parenthesizer___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__54; static lean_object* l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias_x28Kind_x3a_x3d___x29__________1___lambda__1___closed__26; LEAN_EXPORT lean_object* l_Lean_ppAllowUngrouped_formatter___boxed(lean_object*); static lean_object* l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias_x28Kind_x3a_x3d___x29__________1___lambda__1___closed__58; lean_object* l_Lean_PrettyPrinter_Parenthesizer_unicodeSymbolNoAntiquot_parenthesizer___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_optional(lean_object*); -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__86; lean_object* l_Lean_PrettyPrinter_Formatter_fill(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_antiquotExpr_formatter___closed__3; static lean_object* l_Lean_Parser_sepByIndent___closed__5; static lean_object* l_Lean_Parser_numLit___closed__1; -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__52; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__112; lean_object* l_Lean_Parser_registerAliasCore___rarg(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_termRegister__parser__alias_x28Kind_x3a_x3d___x29___________closed__20; -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__22; -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__93; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__61; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__114; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__75; lean_object* l_Lean_PrettyPrinter_Formatter_checkColGe_formatter___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_ppIndent_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Formatter_symbolNoAntiquot_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -250,14 +248,15 @@ static lean_object* l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Le LEAN_EXPORT uint8_t l_Array_anyMUnsafe_any___at_Lean_Parser_sepByIndent_formatter___spec__3(lean_object*, size_t, size_t); LEAN_EXPORT lean_object* l_Lean_ppHardLineUnlessUngrouped_formatter___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_numLit___closed__2; -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__29; static lean_object* l_Lean_Parser_antiquotNestedExpr_parenthesizer___closed__2; static lean_object* l_Lean_Parser_mkAntiquotSplice_formatter___closed__7; lean_object* l_Lean_Syntax_MonadTraverser_getCur___at_Lean_PrettyPrinter_Formatter_visitArgs___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias_x28Kind_x3a_x3d___x29__________1___lambda__1___closed__11; lean_object* l_Lean_PrettyPrinter_Formatter_tokenWithAntiquot_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__46; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__58; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__26; lean_object* lean_array_fget(lean_object*, lean_object*); +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__45; static lean_object* l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias_x28Kind_x3a_x3d___x29__________1___lambda__1___closed__69; LEAN_EXPORT lean_object* l_Lean_Parser_ppSpace_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_mkAntiquotSplice_parenthesizer___closed__1; @@ -266,33 +265,36 @@ uint8_t lean_nat_dec_eq(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_sepByElemParser_formatter___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_group_formatter___closed__2; LEAN_EXPORT lean_object* l_Lean_Parser_ppHardSpace_parenthesizer___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__83; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__27; static lean_object* l_Lean_Parser_antiquotNestedExpr_formatter___closed__7; static lean_object* l_Lean_Parser_termRegister__parser__alias_x28Kind_x3a_x3d___x29___________closed__12; LEAN_EXPORT lean_object* l_Lean_ppRealFill_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__6; static lean_object* l_Lean_Parser_charLit_formatter___closed__2; lean_object* l___private_Init_Meta_0__Lean_getEscapedNameParts_x3f(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_mkAntiquotSplice_parenthesizer___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_termRegister__parser__alias_x28Kind_x3a_x3d___x29___________closed__26; lean_object* l_Lean_PrettyPrinter_Formatter_setExpected_formatter___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__40; uint8_t l_Lean_Syntax_matchesNull(lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Formatter_strLitNoAntiquot_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias_x28Kind_x3a_x3d___x29__________1___lambda__1___closed__82; static lean_object* l_Lean_Parser_strLit_parenthesizer___closed__2; -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__110; -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__25; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__9; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__67; lean_object* lean_st_ref_take(lean_object*, lean_object*); static lean_object* l_Lean_Parser_strLit_parenthesizer___closed__1; LEAN_EXPORT lean_object* l_Lean_Parser_charLit_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_charLit_formatter___closed__4; LEAN_EXPORT lean_object* l_Lean_ppAllowUngrouped_formatter___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_nat_sub(lean_object*, lean_object*); +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__104; lean_object* l_Lean_PrettyPrinter_Parenthesizer_nonReservedSymbolNoAntiquot_parenthesizer___boxed(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_scientificLit_formatter___closed__3; LEAN_EXPORT lean_object* l_Lean_Parser_scientificLit_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__36; static lean_object* l_Lean_Parser_mkAntiquotSplice_parenthesizer___closed__2; LEAN_EXPORT lean_object* l_Lean_Parser_strLit_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__80; lean_object* l_Lean_PrettyPrinter_Formatter_checkPrec_formatter___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias_x28Kind_x3a_x3d___x29__________1(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Formatter_decQuotDepth_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -306,17 +308,20 @@ static lean_object* l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Le static lean_object* l_Lean_Parser_numLit_formatter___closed__1; static lean_object* l_Lean_Parser_sepByElemParser_formatter___closed__1; LEAN_EXPORT lean_object* l_Lean_Parser_notSymbol_formatter___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__99; lean_object* l_Lean_Parser_withAntiquot(lean_object*, lean_object*); static lean_object* l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias_x28Kind_x3a_x3d___x29__________1___lambda__1___closed__23; static lean_object* l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias_x28Kind_x3a_x3d___x29__________1___lambda__1___closed__13; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__48; lean_object* l_Lean_Parser_symbol(lean_object*); +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__34; lean_object* l_Lean_Name_toString(lean_object*, uint8_t); static lean_object* l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias_x28Kind_x3a_x3d___x29__________1___lambda__1___closed__8; LEAN_EXPORT lean_object* l_Lean_Parser_ppHardSpace_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_many___closed__1; LEAN_EXPORT lean_object* l_Lean_Parser_many1_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__111; static lean_object* l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias_x28Kind_x3a_x3d___x29__________1___lambda__1___closed__64; -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__87; static lean_object* l_Lean_Parser_mkAntiquotSplice_formatter___closed__5; LEAN_EXPORT lean_object* l_Lean_Parser_sepByIndent_formatter___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Parenthesizer_manyNoAntiquot_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -325,40 +330,51 @@ extern lean_object* l_Lean_Parser_skip; LEAN_EXPORT lean_object* l_Lean_Parser_nameLit; lean_object* l_Lean_PrettyPrinter_Formatter_node_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_sepByIndent_formatter___closed__1; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__96; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__23; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__72; static lean_object* l_Lean_Parser_many1Indent_formatter___closed__1; LEAN_EXPORT lean_object* l_List_forIn_loop___at_Lean_Parser_sepByIndent_formatter___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at_Lean_Parser_sepByIndent_formatter___spec__3___boxed(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias_x28Kind_x3a_x3d___x29__________1___lambda__1___closed__1; static lean_object* l_Lean_Parser_strLit_formatter___closed__4; static lean_object* l_Lean_Parser_mkAntiquot_formatter___closed__6; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__107; LEAN_EXPORT lean_object* l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias_x28Kind_x3a_x3d___x29__________1___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__92; static lean_object* l___regBuiltin_Lean_Parser_antiquotNestedExpr_parenthesizer___closed__3; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__41; lean_object* l_Lean_PrettyPrinter_Parenthesizer_charLitNoAntiquot_parenthesizer___boxed(lean_object*); static lean_object* l_Lean_Parser_termRegister__parser__alias_x28Kind_x3a_x3d___x29___________closed__14; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__88; LEAN_EXPORT lean_object* l_Lean_Parser_manyIndent(lean_object*); +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__13; static lean_object* l_Lean_Parser_nameLit___closed__1; lean_object* l_Lean_Parser_optionalNoAntiquot(lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_antiquotNestedExpr_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_termRegister__parser__alias_x28Kind_x3a_x3d___x29___________closed__3; -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__2; static lean_object* l_Lean_Parser_numLit_formatter___closed__4; LEAN_EXPORT lean_object* l_Lean_Parser_ppSpace; LEAN_EXPORT lean_object* l_Lean_Parser_ppHardSpace; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__14; static lean_object* l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias_x28Kind_x3a_x3d___x29__________1___lambda__1___closed__2; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__28; static lean_object* l_Lean_Parser_nameLit___closed__2; LEAN_EXPORT lean_object* l_Lean_Parser_termParser_formatter___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_sepByElemParser_formatter___closed__2; LEAN_EXPORT lean_object* l_Lean_Parser_ppIndent(lean_object*); -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__84; LEAN_EXPORT lean_object* l_Lean_Parser_scientificLit_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_ppRealFill(lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_commandParser_formatter___boxed(lean_object*); +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__76; static lean_object* l_Lean_Parser_mkAntiquotSplice_formatter___closed__3; lean_object* l_Lean_Syntax_getId(lean_object*); -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__33; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__103; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__18; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__30; extern lean_object* l_Lean_Parser_maxPrec; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__59; LEAN_EXPORT lean_object* l_Lean_Parser_strLit_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__31; LEAN_EXPORT lean_object* l_Lean_Parser_rawIdent; static lean_object* l_Lean_Parser_antiquotExpr_parenthesizer___closed__2; LEAN_EXPORT lean_object* l_Lean_Parser_ppDedent(lean_object*); @@ -366,14 +382,13 @@ static lean_object* l_Lean_Parser_sepByIndent_parenthesizer___closed__1; LEAN_EXPORT lean_object* l_Lean_Parser_many1Indent_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_nodeWithAntiquot_formatter___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_sepByIndent(lean_object*, lean_object*, lean_object*, uint8_t); -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__43; static lean_object* l_Lean_Parser_charLit___closed__2; static lean_object* l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias_x28Kind_x3a_x3d___x29__________1___lambda__1___closed__12; LEAN_EXPORT lean_object* l_Lean_Parser_sepByIndent_parenthesizer___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Formatter_scientificLitNoAntiquot_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_PrettyPrinter_formatterAttribute; static lean_object* l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias_x28Kind_x3a_x3d___x29__________1___lambda__1___closed__65; -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__44; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__2; LEAN_EXPORT lean_object* l_Lean_Parser_ppLine_parenthesizer___rarg(lean_object*); lean_object* l_Lean_Syntax_mkStrLit(lean_object*, lean_object*); static lean_object* l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias_x28Kind_x3a_x3d___x29__________1___lambda__1___closed__57; @@ -382,44 +397,47 @@ static lean_object* l_Lean_Parser_mkAntiquot_formatter___closed__10; static lean_object* l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias_x28Kind_x3a_x3d___x29__________1___lambda__1___closed__17; static lean_object* l_Lean_Parser_sepByIndent___closed__1; static lean_object* l_Lean_Parser_antiquotExpr_parenthesizer___closed__1; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__44; static lean_object* l_Lean_Parser_optional_formatter___closed__3; -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__27; static lean_object* l_Lean_Parser_sepByIndent___closed__4; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__1; LEAN_EXPORT lean_object* l_Lean_Parser_ppDedentIfGrouped_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias_x28Kind_x3a_x3d___x29__________1___lambda__1___closed__39; lean_object* l_Lean_PrettyPrinter_Parenthesizer_pushNone_parenthesizer___boxed(lean_object*); static lean_object* l_Lean_Parser_mkAntiquot_parenthesizer___closed__8; -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__64; static lean_object* l_Lean_Parser_numLit_formatter___closed__3; static lean_object* l___regBuiltin_Lean_Parser_antiquotNestedExpr_parenthesizer___closed__4; static lean_object* l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias_x28Kind_x3a_x3d___x29__________1___lambda__1___closed__70; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__57; static lean_object* l_Lean_Parser_mkAntiquot_parenthesizer___closed__9; -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__1; static lean_object* l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias_x28Kind_x3a_x3d___x29__________1___lambda__1___closed__35; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__4; static lean_object* l_Lean_Parser_numLit_parenthesizer___closed__2; static lean_object* l_Lean_ppHardSpace_formatter___closed__2; -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__94; lean_object* l_Lean_Parser_checkColEq(lean_object*); -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__8; LEAN_EXPORT lean_object* l_Lean_Parser_ppIndent___boxed(lean_object*); static lean_object* l_Lean_Parser_optional_parenthesizer___closed__1; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__8; static lean_object* l_Lean_Parser_antiquotNestedExpr_formatter___closed__1; static lean_object* l_Lean_Parser_mkAntiquot_formatter___closed__11; lean_object* l_Lean_Syntax_MonadTraverser_goLeft___at_Lean_PrettyPrinter_Formatter_visitArgs___spec__2___rarg(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_nonReservedSymbol_parenthesizer___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__94; static lean_object* l_Lean_Parser_mkAntiquot_parenthesizer___closed__4; LEAN_EXPORT lean_object* l_Lean_Parser_sepBy1_parenthesizer___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__17; static lean_object* l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias_x28Kind_x3a_x3d___x29__________1___lambda__1___closed__36; LEAN_EXPORT lean_object* l_Lean_Parser_commandParser_formatter(lean_object*); static lean_object* l_Lean_Parser_rawIdent_parenthesizer___closed__1; lean_object* l_Lean_Parser_registerAlias(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); size_t lean_usize_of_nat(lean_object*); -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__40; static lean_object* l_Lean_Parser_antiquotNestedExpr_parenthesizer___closed__6; LEAN_EXPORT lean_object* l_Lean_Parser_ppRealGroup(lean_object*); -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__67; static lean_object* l_Lean_ppHardSpace_formatter___closed__1; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__80; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__110; static lean_object* l_Lean_Parser_numLit_parenthesizer___closed__1; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__6; lean_object* l_Lean_addMacroScope(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_mkAntiquot_parenthesizer___closed__2; lean_object* l_Lean_PrettyPrinter_Formatter_nameLitNoAntiquot_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -428,26 +446,23 @@ static lean_object* l_Lean_Parser_antiquotNestedExpr_formatter___closed__6; static lean_object* l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias_x28Kind_x3a_x3d___x29__________1___lambda__1___closed__74; LEAN_EXPORT lean_object* l_Lean_Parser_mkAntiquot_formatter(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias_x28Kind_x3a_x3d___x29__________1___lambda__1___closed__47; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__86; static lean_object* l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias_x28Kind_x3a_x3d___x29__________1___lambda__1___closed__60; LEAN_EXPORT lean_object* l_Lean_ppHardSpace_formatter___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_many1_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_termRegister__parser__alias_x28Kind_x3a_x3d___x29___________closed__17; -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__45; LEAN_EXPORT lean_object* l_Lean_Parser_ppAllowUngrouped; LEAN_EXPORT lean_object* l_Lean_Parser_notSymbol(lean_object*); -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__57; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__46; LEAN_EXPORT lean_object* l_Lean_Parser_sepByElemParser_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_antiquotNestedExpr_formatter___closed__2; -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__9; -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__17; LEAN_EXPORT lean_object* l_Lean_Parser_termParser_formatter(lean_object*); +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__50; static lean_object* l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias_x28Kind_x3a_x3d___x29__________1___lambda__1___closed__41; LEAN_EXPORT lean_object* l_Lean_Parser_mkAntiquot_parenthesizer___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_sepBy1(lean_object*, lean_object*, lean_object*, uint8_t); static lean_object* l_Lean_Parser_sepByIndent___closed__2; -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__83; LEAN_EXPORT lean_object* l_Lean_Parser_ppLine_parenthesizer___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__4; static lean_object* l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias_x28Kind_x3a_x3d___x29__________1___lambda__1___closed__21; static lean_object* l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias_x28Kind_x3a_x3d___x29__________1___lambda__1___closed__38; LEAN_EXPORT lean_object* l_Lean_Parser_sepBy1Indent_parenthesizer___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -455,34 +470,33 @@ static lean_object* l_Lean_Parser_mkAntiquot_parenthesizer___closed__1; static lean_object* l_Lean_Parser_sepByIndent_parenthesizer___closed__2; LEAN_EXPORT lean_object* l_Lean_Parser_commandParser_formatter___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_many_formatter___closed__3; -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__100; lean_object* l_Lean_PrettyPrinter_Parenthesizer_checkNoWsBefore_parenthesizer___boxed(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias_x28Kind_x3a_x3d___x29__________1___lambda__1___closed__3; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__53; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__42; static lean_object* l_Lean_Parser_nameLit_parenthesizer___closed__1; -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__37; lean_object* l_String_intercalate(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_numLit; static lean_object* l_Lean_Parser_charLit_formatter___closed__1; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__100; static lean_object* l_Lean_Parser_antiquotExpr_parenthesizer___closed__3; static lean_object* l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias_x28Kind_x3a_x3d___x29__________1___lambda__1___closed__84; lean_object* l_Lean_Macro_throwError___rarg(lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__76; extern lean_object* l_Lean_Parser_scientificLitNoAntiquot; LEAN_EXPORT lean_object* l_Lean_Parser_ppHardLineUnlessUngrouped; static lean_object* l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias_x28Kind_x3a_x3d___x29__________1___lambda__1___closed__29; -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__18; lean_object* l_Lean_PrettyPrinter_Parenthesizer_decQuotDepth_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_ppDedent___boxed(lean_object*); -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__15; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__55; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__37; static lean_object* l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias_x28Kind_x3a_x3d___x29__________1___lambda__1___closed__52; -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__53; lean_object* l_Array_mkArray5___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__42; -LEAN_EXPORT lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164_(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124_(lean_object*); extern lean_object* l_Lean_PrettyPrinter_Formatter_formatterAliasesRef; lean_object* l_Array_mkArray1___rarg(lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias_x28Kind_x3a_x3d___x29__________1___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__55; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__3; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__15; static lean_object* l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias_x28Kind_x3a_x3d___x29__________1___lambda__1___closed__54; static lean_object* l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias_x28Kind_x3a_x3d___x29__________1___lambda__1___closed__62; static lean_object* l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias_x28Kind_x3a_x3d___x29__________1___lambda__1___closed__78; @@ -504,19 +518,16 @@ lean_object* l_Lean_Name_append(lean_object*, lean_object*); lean_object* l_Lean_Parser_many1NoAntiquot(lean_object*); lean_object* l_Lean_Macro_resolveGlobalName(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias_x28Kind_x3a_x3d___x29__________1___lambda__1___closed__22; -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__113; static lean_object* l_Lean_Parser_termParser_formatter___rarg___closed__1; extern lean_object* l_Lean_Parser_numLitNoAntiquot; static lean_object* l_Lean_Parser_mkAntiquot_formatter___closed__7; lean_object* l_Lean_quoteNameMk(lean_object*); -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__78; static lean_object* l_Lean_Parser_nameLit_parenthesizer___closed__2; -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__82; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__101; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__43; LEAN_EXPORT lean_object* l_Lean_ppAllowUngrouped_formatter(lean_object*); static lean_object* l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias_x28Kind_x3a_x3d___x29__________1___lambda__1___closed__83; -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__97; lean_object* l_String_toSubstring_x27(lean_object*); -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__11; static lean_object* l_Lean_Parser_charLit_parenthesizer___closed__1; LEAN_EXPORT lean_object* l_Lean_Parser_charLit_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_mkAntiquot_parenthesizer___closed__6; @@ -524,32 +535,33 @@ static lean_object* l_Lean_Parser_charLit_parenthesizer___closed__2; static lean_object* l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias_x28Kind_x3a_x3d___x29__________1___lambda__1___closed__45; static lean_object* l_Lean_Parser_charLit_formatter___closed__3; LEAN_EXPORT lean_object* l_Lean_Parser_notSymbol_parenthesizer___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__3; static lean_object* l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias_x28Kind_x3a_x3d___x29__________1___lambda__1___closed__67; -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__30; LEAN_EXPORT lean_object* l_Lean_ppLine_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias_x28Kind_x3a_x3d___x29__________1___lambda__1___closed__40; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__64; static lean_object* l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias_x28Kind_x3a_x3d___x29__________1___lambda__1___closed__9; static lean_object* l_Lean_Parser_termRegister__parser__alias_x28Kind_x3a_x3d___x29___________closed__4; LEAN_EXPORT lean_object* l_Lean_Parser_many1Indent(lean_object*); -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__91; lean_object* l_Lean_PrettyPrinter_Parenthesizer_checkNoImmediateColon_parenthesizer___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Parenthesizer_identNoAntiquot_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__97; static lean_object* l_Lean_ppDedent_formatter___closed__1; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__74; lean_object* l_Array_mkArray2___rarg(lean_object*, lean_object*); static lean_object* l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias_x28Kind_x3a_x3d___x29__________1___lambda__1___closed__27; lean_object* l_Lean_PrettyPrinter_Formatter_pushNone_formatter___boxed(lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_sepByIndent_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias_x28Kind_x3a_x3d___x29__________1___lambda__1___closed__4; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__60; extern lean_object* l_Lean_Parser_rawIdentNoAntiquot; -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__103; lean_object* l_Std_Format_getIndent(lean_object*); static lean_object* l_Lean_Parser_termRegister__parser__alias_x28Kind_x3a_x3d___x29___________closed__35; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__93; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__91; LEAN_EXPORT lean_object* l_Lean_Parser_notSymbol_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_sepBy_formatter(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_antiquotNestedExpr_formatter___closed__9; lean_object* l_Lean_Syntax_mkNameLit(lean_object*, lean_object*); -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__61; lean_object* l_Lean_Parser_withAntiquotSpliceAndSuffix(lean_object*, lean_object*, lean_object*); lean_object* lean_st_ref_set(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_leadingNode_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -559,12 +571,12 @@ static lean_object* l_Lean_Parser_nameLit_formatter___closed__1; LEAN_EXPORT lean_object* l_Lean_Parser_antiquotExpr_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_ident_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_optional_formatter___closed__1; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__52; uint8_t lean_nat_dec_eq(lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Formatter_checkNoImmediateColon_formatter___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_sepBy1Indent(lean_object*, lean_object*, lean_object*, uint8_t); -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__12; static lean_object* l_Lean_Parser_sepByIndent_parenthesizer___closed__4; -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__116; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__29; lean_object* l_Array_mkArray6___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_mkAntiquotSplice_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias_x28Kind_x3a_x3d___x29__________1___lambda__1___closed__34; @@ -572,18 +584,19 @@ static lean_object* l_Lean_Parser_mkAntiquotSplice_formatter___closed__1; lean_object* l_Lean_PrettyPrinter_Parenthesizer_symbolNoAntiquot_parenthesizer___boxed(lean_object*, lean_object*); static lean_object* l_Lean_Parser_numLit_formatter___closed__2; LEAN_EXPORT lean_object* l_Lean_Parser_sepBy1_formatter___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__54; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__84; static lean_object* l_Lean_Parser_termRegister__parser__alias_x28Kind_x3a_x3d___x29___________closed__2; uint8_t l_Lean_Syntax_isNone(lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_numLit_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__31; static lean_object* l___regBuiltin_Lean_Parser_antiquotNestedExpr_formatter___closed__2; -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__59; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__62; LEAN_EXPORT lean_object* l_Lean_ppSpace_formatter___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias_x28Kind_x3a_x3d___x29__________1___lambda__1___closed__48; static lean_object* l_Lean_Parser_scientificLit_formatter___closed__4; lean_object* l_String_trim(lean_object*); -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__112; lean_object* l_Lean_PrettyPrinter_Formatter_fold(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__25; static lean_object* l___regBuiltin_Lean_Parser_antiquotNestedExpr_formatter___closed__4; lean_object* l_Lean_PrettyPrinter_Formatter_withoutInfo_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_many_formatter___closed__2; @@ -595,39 +608,38 @@ uint8_t l_Lean_Syntax_isOfKind(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_rawIdent_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias_x28Kind_x3a_x3d___x29__________1___lambda__1___closed__50; static lean_object* l_Lean_Parser_scientificLit_formatter___closed__1; -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__90; -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__102; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__24; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__106; static lean_object* l_List_forIn_loop___at_Lean_Parser_sepByIndent_formatter___spec__2___closed__3; extern lean_object* l_Lean_PrettyPrinter_Parenthesizer_parenthesizerAliasesRef; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__63; lean_object* l_Lean_PrettyPrinter_Parenthesizer_withAntiquotSuffixSplice_parenthesizer___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_termRegister__parser__alias_x28Kind_x3a_x3d___x29___________closed__6; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__7; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__71; LEAN_EXPORT lean_object* l_Lean_ppLine_formatter___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_int_sub(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_ppHardLineUnlessUngrouped_parenthesizer___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__108; static lean_object* l_Lean_Parser_rawIdent___closed__1; static lean_object* l_Lean_Parser_many_formatter___closed__1; static lean_object* l_Lean_Parser_scientificLit_formatter___closed__2; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__49; static lean_object* l_Lean_Parser_mkAntiquotSplice_formatter___closed__4; -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__36; lean_object* l_Lean_PrettyPrinter_Formatter_charLitNoAntiquot_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_mkAntiquot_formatter___closed__13; LEAN_EXPORT lean_object* l_Lean_Parser_withAntiquotSpliceAndSuffix_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_mkAntiquot(lean_object*, lean_object*, uint8_t, uint8_t); static lean_object* l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias_x28Kind_x3a_x3d___x29__________1___lambda__1___closed__14; -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__75; lean_object* l_Lean_PrettyPrinter_Parenthesizer_withPosition_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias_x28Kind_x3a_x3d___x29__________1___lambda__1___closed__28; -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__26; static lean_object* l_Lean_Parser_nameLit_formatter___closed__2; LEAN_EXPORT lean_object* l_Lean_Parser_ppGroup(lean_object*); -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__114; -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__58; static lean_object* l_Lean_Parser_antiquotNestedExpr_parenthesizer___closed__4; static lean_object* l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias_x28Kind_x3a_x3d___x29__________1___lambda__1___closed__5; lean_object* l_Lean_Syntax_getArg(lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Formatter_pushWhitespace(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_termRegister__parser__alias_x28Kind_x3a_x3d___x29___________closed__1; -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__68; LEAN_EXPORT lean_object* l_Lean_Parser_many_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias_x28Kind_x3a_x3d___x29__________1___lambda__1___closed__30; static lean_object* l_Lean_Parser_antiquotNestedExpr_formatter___closed__4; @@ -646,22 +658,18 @@ static lean_object* l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Le LEAN_EXPORT lean_object* l_Lean_Parser_ppAllowUngrouped_parenthesizer___rarg(lean_object*); static lean_object* l_Lean_Parser_mkAntiquot_parenthesizer___closed__3; LEAN_EXPORT lean_object* l_Lean_Parser_ppHardLineUnlessUngrouped_parenthesizer___rarg(lean_object*); -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__34; static lean_object* l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias_x28Kind_x3a_x3d___x29__________1___lambda__1___closed__56; static lean_object* l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias_x28Kind_x3a_x3d___x29__________1___lambda__1___closed__66; static lean_object* l_Lean_Parser_termRegister__parser__alias_x28Kind_x3a_x3d___x29___________closed__34; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__68; lean_object* l_Lean_PrettyPrinter_Parenthesizer_strLitNoAntiquot_parenthesizer___boxed(lean_object*); -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__48; lean_object* l_Lean_Parser_andthen(lean_object*, lean_object*); static lean_object* l_Lean_Parser_rawIdent_formatter___closed__1; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__92; lean_object* l_Lean_Parser_node(lean_object*, lean_object*); -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__41; lean_object* l_Lean_PrettyPrinter_Parenthesizer_checkColGe_parenthesizer___boxed(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_mkAntiquot_formatter___closed__12; extern lean_object* l_Lean_Parser_identNoAntiquot; -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__107; -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__38; -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__21; static lean_object* l_Lean_Parser_sepByIndent_parenthesizer___closed__3; static lean_object* l_Lean_Parser_antiquotExpr_formatter___closed__4; LEAN_EXPORT lean_object* l_Lean_Parser_mkAntiquotSplice_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -674,14 +682,10 @@ LEAN_EXPORT lean_object* l_Array_mapIdxM_map___at_Lean_Parser_sepByIndent_format LEAN_EXPORT lean_object* l_Lean_Parser_ppRealGroup___boxed(lean_object*); static lean_object* l_Lean_Parser_antiquotNestedExpr_formatter___closed__8; extern lean_object* l_Lean_PrettyPrinter_backtrackExceptionId; -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__50; LEAN_EXPORT lean_object* l_Lean_ppRealGroup_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_numLit_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__99; static lean_object* l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias_x28Kind_x3a_x3d___x29__________1___lambda__1___closed__77; LEAN_EXPORT lean_object* l_Lean_Parser_sepBy_parenthesizer(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__111; -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__13; static lean_object* l_Lean_Parser_mkAntiquot_parenthesizer___closed__5; static lean_object* l_Lean_Parser_nameLit_formatter___closed__4; LEAN_EXPORT lean_object* l_Lean_Parser_sepByIndent_formatter___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -692,7 +696,6 @@ LEAN_EXPORT lean_object* l_Lean_Parser_ident_formatter(lean_object*, lean_object static lean_object* l_Lean_Parser_termRegister__parser__alias_x28Kind_x3a_x3d___x29___________closed__11; static lean_object* l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias_x28Kind_x3a_x3d___x29__________1___lambda__1___closed__73; static lean_object* l_List_forIn_loop___at_Lean_Parser_sepByIndent_formatter___spec__2___closed__4; -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__101; static lean_object* l_Lean_Parser_scientificLit___closed__2; static lean_object* l_Lean_Parser_many1Indent___closed__1; static lean_object* l_Lean_ppDedentIfGrouped_formatter___closed__1; @@ -700,13 +703,13 @@ static lean_object* l___regBuiltin_Lean_Parser_antiquotNestedExpr_formatter___cl LEAN_EXPORT lean_object* l_Lean_Parser_symbol_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias_x28Kind_x3a_x3d___x29__________1___lambda__1___closed__10; static lean_object* l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias_x28Kind_x3a_x3d___x29__________1___lambda__1___closed__32; -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__79; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__11; lean_object* l_Lean_PrettyPrinter_Parenthesizer_tokenWithAntiquot_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__95; static lean_object* l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias_x28Kind_x3a_x3d___x29__________1___lambda__1___closed__20; lean_object* l_Lean_PrettyPrinter_Formatter_group(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_nameLit_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_nat_to_int(lean_object*); +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__82; static lean_object* l_Lean_Parser_scientificLit_parenthesizer___closed__1; extern lean_object* l_Lean_Parser_charLitNoAntiquot; LEAN_EXPORT lean_object* l_Lean_ppAllowUngrouped_formatter___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); @@ -714,41 +717,38 @@ static lean_object* l_Lean_Parser_mkAntiquot_parenthesizer___closed__7; static lean_object* l_Lean_Parser_termRegister__parser__alias_x28Kind_x3a_x3d___x29___________closed__19; LEAN_EXPORT lean_object* l_Lean_Parser_nonReservedSymbol_parenthesizer(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_notSymbol_parenthesizer___rarg(lean_object*); +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__69; static lean_object* l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias_x28Kind_x3a_x3d___x29__________1___lambda__1___closed__6; static lean_object* l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias_x28Kind_x3a_x3d___x29__________1___lambda__1___closed__80; static lean_object* l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias_x28Kind_x3a_x3d___x29__________1___lambda__1___closed__25; +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__5; LEAN_EXPORT lean_object* l_Lean_Parser_strLit; -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__96; LEAN_EXPORT lean_object* l_Lean_Parser_many1(lean_object*); static lean_object* l_Lean_Parser_termRegister__parser__alias_x28Kind_x3a_x3d___x29___________closed__25; 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_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__72; static lean_object* l_Lean_Parser_scientificLit___closed__1; LEAN_EXPORT lean_object* l_Lean_Parser_mkAntiquotSplice_formatter___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_sepByElemParser_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_nodeWithAntiquot_parenthesizer(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__23; static lean_object* l_Lean_Parser_strLit___closed__2; -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__88; LEAN_EXPORT lean_object* l_Lean_Parser_ppDedent_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__22; static lean_object* l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias_x28Kind_x3a_x3d___x29__________1___lambda__1___closed__46; LEAN_EXPORT lean_object* l_Lean_Parser_sepBy1Indent_formatter___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__33; LEAN_EXPORT lean_object* l_Lean_Parser_notSymbol_formatter___rarg(lean_object*); static lean_object* l___regBuiltin_Lean_Parser_antiquotNestedExpr_formatter___closed__3; static lean_object* l_Lean_Parser_antiquotExpr_formatter___closed__1; -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__74; static lean_object* l_Lean_Parser_leadingNode_formatter___closed__2; LEAN_EXPORT lean_object* l_Lean_Parser_termParser_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_ppDedent_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_manyIndent_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__89; -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__47; uint8_t lean_nat_dec_lt(lean_object*, lean_object*); -static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__60; lean_object* l_Lean_PrettyPrinter_Parenthesizer_node_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_ppLine_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_mkAntiquotSplice_formatter___closed__8; lean_object* l_Lean_PrettyPrinter_Formatter_categoryParser_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__78; static lean_object* l_Lean_Parser_many1Indent___closed__2; static lean_object* _init_l_Lean_Parser_leadingNode_formatter___closed__1() { _start: @@ -7408,7 +7408,7 @@ lean_dec(x_1); return x_6; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__1() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; @@ -7419,7 +7419,7 @@ x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); return x_4; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__2() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__2() { _start: { lean_object* x_1; @@ -7427,27 +7427,27 @@ x_1 = lean_alloc_closure((void*)(l_Lean_Parser_group), 1, 0); return x_1; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__3() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__3() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__2; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____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_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__4() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__4() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__1; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__1; x_2 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__5() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__5() { _start: { lean_object* x_1; lean_object* x_2; @@ -7457,12 +7457,12 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__6() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__6() { _start: { lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; x_1 = lean_box(0); -x_2 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__5; +x_2 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__5; x_3 = 0; x_4 = lean_alloc_ctor(0, 2, 1); lean_ctor_set(x_4, 0, x_1); @@ -7471,7 +7471,7 @@ lean_ctor_set_uint8(x_4, sizeof(void*)*2, x_3); return x_4; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__7() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__7() { _start: { lean_object* x_1; @@ -7479,17 +7479,17 @@ x_1 = lean_alloc_closure((void*)(l_Lean_Parser_group_formatter), 6, 0); return x_1; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__8() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__8() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__7; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__7; 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_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__9() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__9() { _start: { lean_object* x_1; @@ -7497,7 +7497,7 @@ x_1 = l_Lean_PrettyPrinter_Formatter_formatterAliasesRef; return x_1; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__10() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__10() { _start: { lean_object* x_1; @@ -7505,17 +7505,17 @@ x_1 = lean_alloc_closure((void*)(l_Lean_Parser_group_parenthesizer), 6, 0); return x_1; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__11() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__11() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__10; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__10; 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_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__12() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__12() { _start: { lean_object* x_1; @@ -7523,7 +7523,7 @@ x_1 = l_Lean_PrettyPrinter_Parenthesizer_parenthesizerAliasesRef; return x_1; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__13() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__13() { _start: { lean_object* x_1; @@ -7531,28 +7531,28 @@ x_1 = lean_mk_string_from_bytes("ppHardSpace", 11); return x_1; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__14() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__14() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__13; +x_2 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__13; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__15() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__15() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; x_1 = l___regBuiltin_Lean_Parser_antiquotNestedExpr_formatter___closed__1; x_2 = l___regBuiltin_Lean_Parser_antiquotNestedExpr_formatter___closed__2; -x_3 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__13; +x_3 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__13; x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); return x_4; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__16() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__16() { _start: { lean_object* x_1; lean_object* x_2; @@ -7562,17 +7562,17 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__17() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__17() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__15; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__15; 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_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__18() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__18() { _start: { lean_object* x_1; lean_object* x_2; @@ -7582,12 +7582,12 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__19() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__19() { _start: { lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; x_1 = lean_box(0); -x_2 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__18; +x_2 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__18; x_3 = 1; x_4 = lean_alloc_ctor(0, 2, 1); lean_ctor_set(x_4, 0, x_1); @@ -7596,7 +7596,7 @@ lean_ctor_set_uint8(x_4, sizeof(void*)*2, x_3); return x_4; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__20() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__20() { _start: { lean_object* x_1; @@ -7604,17 +7604,17 @@ x_1 = lean_alloc_closure((void*)(l_Lean_ppHardSpace_formatter___boxed), 5, 0); return x_1; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__21() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__21() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__20; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__20; 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_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__22() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__22() { _start: { lean_object* x_1; @@ -7622,17 +7622,17 @@ x_1 = lean_alloc_closure((void*)(l_Lean_Parser_ppHardSpace_parenthesizer___boxed return x_1; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__23() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__23() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__22; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__22; 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_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__24() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__24() { _start: { lean_object* x_1; @@ -7640,38 +7640,38 @@ x_1 = lean_mk_string_from_bytes("ppSpace", 7); return x_1; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__25() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__25() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__24; +x_2 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__24; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__26() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__26() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; x_1 = l___regBuiltin_Lean_Parser_antiquotNestedExpr_formatter___closed__1; x_2 = l___regBuiltin_Lean_Parser_antiquotNestedExpr_formatter___closed__2; -x_3 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__24; +x_3 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__24; x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); return x_4; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__27() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__27() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__26; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__26; 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_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__28() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__28() { _start: { lean_object* x_1; @@ -7679,17 +7679,17 @@ x_1 = lean_alloc_closure((void*)(l_Lean_ppSpace_formatter___boxed), 5, 0); return x_1; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__29() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__29() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__28; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__28; 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_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__30() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__30() { _start: { lean_object* x_1; @@ -7697,17 +7697,17 @@ x_1 = lean_alloc_closure((void*)(l_Lean_Parser_ppSpace_parenthesizer___boxed), 4 return x_1; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__31() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__31() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__30; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__30; 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_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__32() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__32() { _start: { lean_object* x_1; @@ -7715,38 +7715,38 @@ x_1 = lean_mk_string_from_bytes("ppLine", 6); return x_1; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__33() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__33() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__32; +x_2 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__32; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__34() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__34() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; x_1 = l___regBuiltin_Lean_Parser_antiquotNestedExpr_formatter___closed__1; x_2 = l___regBuiltin_Lean_Parser_antiquotNestedExpr_formatter___closed__2; -x_3 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__32; +x_3 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__32; x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); return x_4; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__35() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__35() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__34; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__34; 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_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__36() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__36() { _start: { lean_object* x_1; @@ -7754,17 +7754,17 @@ x_1 = lean_alloc_closure((void*)(l_Lean_ppLine_formatter___boxed), 5, 0); return x_1; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__37() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__37() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__36; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__36; 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_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__38() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__38() { _start: { lean_object* x_1; @@ -7772,17 +7772,17 @@ x_1 = lean_alloc_closure((void*)(l_Lean_Parser_ppLine_parenthesizer___boxed), 4, return x_1; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__39() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__39() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__38; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__38; 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_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__40() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__40() { _start: { lean_object* x_1; @@ -7790,28 +7790,28 @@ x_1 = lean_mk_string_from_bytes("ppGroup", 7); return x_1; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__41() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__41() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__40; +x_2 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__40; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__42() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__42() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; x_1 = l___regBuiltin_Lean_Parser_antiquotNestedExpr_formatter___closed__1; x_2 = l___regBuiltin_Lean_Parser_antiquotNestedExpr_formatter___closed__2; -x_3 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__40; +x_3 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__40; x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); return x_4; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__43() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__43() { _start: { lean_object* x_1; @@ -7819,27 +7819,27 @@ x_1 = lean_alloc_closure((void*)(l_Lean_Parser_ppGroup___boxed), 1, 0); return x_1; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__44() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__44() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__43; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__43; 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_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__45() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__45() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__42; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__42; 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_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__46() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__46() { _start: { lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; @@ -7853,7 +7853,7 @@ lean_ctor_set_uint8(x_4, sizeof(void*)*2, x_3); return x_4; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__47() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__47() { _start: { lean_object* x_1; @@ -7861,17 +7861,17 @@ x_1 = lean_alloc_closure((void*)(l_Lean_Parser_ppGroup_formatter), 6, 0); return x_1; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__48() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__48() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__47; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__47; 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_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__49() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__49() { _start: { lean_object* x_1; @@ -7879,17 +7879,17 @@ x_1 = lean_alloc_closure((void*)(l_Lean_Parser_ppGroup_parenthesizer), 6, 0); return x_1; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__50() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__50() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__49; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__49; 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_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__51() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__51() { _start: { lean_object* x_1; @@ -7897,28 +7897,28 @@ x_1 = lean_mk_string_from_bytes("ppRealGroup", 11); return x_1; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__52() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__52() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__51; +x_2 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__51; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__53() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__53() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; x_1 = l___regBuiltin_Lean_Parser_antiquotNestedExpr_formatter___closed__1; x_2 = l___regBuiltin_Lean_Parser_antiquotNestedExpr_formatter___closed__2; -x_3 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__51; +x_3 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__51; x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); return x_4; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__54() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__54() { _start: { lean_object* x_1; @@ -7926,27 +7926,27 @@ x_1 = lean_alloc_closure((void*)(l_Lean_Parser_ppRealGroup___boxed), 1, 0); return x_1; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__55() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__55() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__54; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__54; 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_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__56() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__56() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__53; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__53; 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_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__57() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__57() { _start: { lean_object* x_1; @@ -7954,17 +7954,17 @@ x_1 = lean_alloc_closure((void*)(l_Lean_ppRealGroup_formatter), 6, 0); return x_1; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__58() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__58() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__57; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__57; 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_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__59() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__59() { _start: { lean_object* x_1; @@ -7972,17 +7972,17 @@ x_1 = lean_alloc_closure((void*)(l_Lean_Parser_ppRealGroup_parenthesizer), 6, 0) return x_1; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__60() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__60() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__59; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__59; 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_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__61() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__61() { _start: { lean_object* x_1; @@ -7990,28 +7990,28 @@ x_1 = lean_mk_string_from_bytes("ppRealFill", 10); return x_1; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__62() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__62() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__61; +x_2 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__61; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__63() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__63() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; x_1 = l___regBuiltin_Lean_Parser_antiquotNestedExpr_formatter___closed__1; x_2 = l___regBuiltin_Lean_Parser_antiquotNestedExpr_formatter___closed__2; -x_3 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__61; +x_3 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__61; x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); return x_4; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__64() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__64() { _start: { lean_object* x_1; @@ -8019,27 +8019,27 @@ x_1 = lean_alloc_closure((void*)(l_Lean_Parser_ppRealFill___boxed), 1, 0); return x_1; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__65() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__65() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__64; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__64; 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_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__66() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__66() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__63; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__63; 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_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__67() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__67() { _start: { lean_object* x_1; @@ -8047,17 +8047,17 @@ x_1 = lean_alloc_closure((void*)(l_Lean_ppRealFill_formatter), 6, 0); return x_1; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__68() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__68() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__67; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__67; 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_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__69() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__69() { _start: { lean_object* x_1; @@ -8065,17 +8065,17 @@ x_1 = lean_alloc_closure((void*)(l_Lean_Parser_ppRealFill_parenthesizer), 6, 0); return x_1; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__70() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__70() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__69; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__69; 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_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__71() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__71() { _start: { lean_object* x_1; @@ -8083,28 +8083,28 @@ x_1 = lean_mk_string_from_bytes("ppIndent", 8); return x_1; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__72() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__72() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__71; +x_2 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__71; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__73() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__73() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; x_1 = l___regBuiltin_Lean_Parser_antiquotNestedExpr_formatter___closed__1; x_2 = l___regBuiltin_Lean_Parser_antiquotNestedExpr_formatter___closed__2; -x_3 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__71; +x_3 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__71; x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); return x_4; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__74() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__74() { _start: { lean_object* x_1; @@ -8112,27 +8112,27 @@ x_1 = lean_alloc_closure((void*)(l_Lean_Parser_ppIndent___boxed), 1, 0); return x_1; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__75() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__75() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__74; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__74; 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_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__76() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__76() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__73; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__73; 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_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__77() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__77() { _start: { lean_object* x_1; @@ -8140,17 +8140,17 @@ x_1 = lean_alloc_closure((void*)(l_Lean_ppIndent_formatter), 6, 0); return x_1; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__78() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__78() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__77; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__77; 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_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__79() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__79() { _start: { lean_object* x_1; @@ -8158,17 +8158,17 @@ x_1 = lean_alloc_closure((void*)(l_Lean_Parser_ppIndent_parenthesizer), 6, 0); return x_1; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__80() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__80() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__79; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__79; 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_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__81() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__81() { _start: { lean_object* x_1; @@ -8176,28 +8176,28 @@ x_1 = lean_mk_string_from_bytes("ppDedent", 8); return x_1; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__82() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__82() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__81; +x_2 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__81; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__83() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__83() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; x_1 = l___regBuiltin_Lean_Parser_antiquotNestedExpr_formatter___closed__1; x_2 = l___regBuiltin_Lean_Parser_antiquotNestedExpr_formatter___closed__2; -x_3 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__81; +x_3 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__81; x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); return x_4; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__84() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__84() { _start: { lean_object* x_1; @@ -8205,27 +8205,27 @@ x_1 = lean_alloc_closure((void*)(l_Lean_Parser_ppDedent___boxed), 1, 0); return x_1; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__85() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__85() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__84; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__84; 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_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__86() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__86() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__83; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__83; 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_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__87() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__87() { _start: { lean_object* x_1; @@ -8233,17 +8233,17 @@ x_1 = lean_alloc_closure((void*)(l_Lean_ppDedent_formatter), 6, 0); return x_1; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__88() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__88() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__87; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__87; 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_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__89() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__89() { _start: { lean_object* x_1; @@ -8251,17 +8251,17 @@ x_1 = lean_alloc_closure((void*)(l_Lean_Parser_ppDedent_parenthesizer), 6, 0); return x_1; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__90() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__90() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__89; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__89; 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_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__91() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__91() { _start: { lean_object* x_1; @@ -8269,28 +8269,28 @@ x_1 = lean_mk_string_from_bytes("ppDedentIfGrouped", 17); return x_1; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__92() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__92() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__91; +x_2 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__91; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__93() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__93() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; x_1 = l___regBuiltin_Lean_Parser_antiquotNestedExpr_formatter___closed__1; x_2 = l___regBuiltin_Lean_Parser_antiquotNestedExpr_formatter___closed__2; -x_3 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__91; +x_3 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__91; x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); return x_4; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__94() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__94() { _start: { lean_object* x_1; @@ -8298,27 +8298,27 @@ x_1 = lean_alloc_closure((void*)(l_Lean_Parser_ppDedentIfGrouped___boxed), 1, 0) return x_1; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__95() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__95() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__94; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__94; 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_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__96() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__96() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__93; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__93; 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_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__97() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__97() { _start: { lean_object* x_1; @@ -8326,17 +8326,17 @@ x_1 = lean_alloc_closure((void*)(l_Lean_ppDedentIfGrouped_formatter), 6, 0); return x_1; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__98() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__98() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__97; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__97; 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_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__99() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__99() { _start: { lean_object* x_1; @@ -8344,17 +8344,17 @@ x_1 = lean_alloc_closure((void*)(l_Lean_Parser_ppDedentIfGrouped_parenthesizer), return x_1; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__100() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__100() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__99; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__99; 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_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__101() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__101() { _start: { lean_object* x_1; @@ -8362,38 +8362,38 @@ x_1 = lean_mk_string_from_bytes("ppAllowUngrouped", 16); return x_1; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__102() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__102() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__101; +x_2 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__101; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__103() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__103() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; x_1 = l___regBuiltin_Lean_Parser_antiquotNestedExpr_formatter___closed__1; x_2 = l___regBuiltin_Lean_Parser_antiquotNestedExpr_formatter___closed__2; -x_3 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__101; +x_3 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__101; x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); return x_4; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__104() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__104() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__103; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__103; 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_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__105() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__105() { _start: { lean_object* x_1; @@ -8401,17 +8401,17 @@ x_1 = lean_alloc_closure((void*)(l_Lean_ppAllowUngrouped_formatter___boxed), 1, return x_1; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__106() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__106() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__105; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__105; 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_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__107() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__107() { _start: { lean_object* x_1; @@ -8419,17 +8419,17 @@ x_1 = lean_alloc_closure((void*)(l_Lean_Parser_ppAllowUngrouped_parenthesizer___ return x_1; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__108() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__108() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__107; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__107; 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_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__109() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__109() { _start: { lean_object* x_1; @@ -8437,38 +8437,38 @@ x_1 = lean_mk_string_from_bytes("ppHardLineUnlessUngrouped", 25); return x_1; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__110() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__110() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__109; +x_2 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__109; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__111() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__111() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; x_1 = l___regBuiltin_Lean_Parser_antiquotNestedExpr_formatter___closed__1; x_2 = l___regBuiltin_Lean_Parser_antiquotNestedExpr_formatter___closed__2; -x_3 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__109; +x_3 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__109; x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); return x_4; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__112() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__112() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__111; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__111; 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_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__113() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__113() { _start: { lean_object* x_1; @@ -8476,17 +8476,17 @@ x_1 = lean_alloc_closure((void*)(l_Lean_ppHardLineUnlessUngrouped_formatter___bo return x_1; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__114() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__114() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__113; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__113; 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_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__115() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__115() { _start: { lean_object* x_1; @@ -8494,25 +8494,25 @@ x_1 = lean_alloc_closure((void*)(l_Lean_Parser_ppHardLineUnlessUngrouped_parenth return x_1; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__116() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__116() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__115; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__115; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164_(lean_object* x_1) { +LEAN_EXPORT lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; x_2 = l_Lean_Parser_group_formatter___closed__2; -x_3 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__1; -x_4 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__3; -x_5 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__4; -x_6 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__6; +x_3 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__1; +x_4 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__3; +x_5 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__4; +x_6 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__6; x_7 = l_Lean_Parser_registerAlias(x_2, x_3, x_4, x_5, x_6, x_1); if (lean_obj_tag(x_7) == 0) { @@ -8520,8 +8520,8 @@ lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; x_8 = lean_ctor_get(x_7, 1); lean_inc(x_8); lean_dec(x_7); -x_9 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__9; -x_10 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__8; +x_9 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__9; +x_10 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__8; x_11 = l_Lean_Parser_registerAliasCore___rarg(x_9, x_2, x_10, x_8); if (lean_obj_tag(x_11) == 0) { @@ -8529,8 +8529,8 @@ lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; x_12 = lean_ctor_get(x_11, 1); lean_inc(x_12); lean_dec(x_11); -x_13 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__12; -x_14 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__11; +x_13 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__12; +x_14 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__11; x_15 = l_Lean_Parser_registerAliasCore___rarg(x_13, x_2, x_14, x_12); if (lean_obj_tag(x_15) == 0) { @@ -8538,11 +8538,11 @@ lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean x_16 = lean_ctor_get(x_15, 1); lean_inc(x_16); lean_dec(x_15); -x_17 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__14; -x_18 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__15; -x_19 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__16; -x_20 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__17; -x_21 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__19; +x_17 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__14; +x_18 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__15; +x_19 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__16; +x_20 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__17; +x_21 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__19; x_22 = l_Lean_Parser_registerAlias(x_17, x_18, x_19, x_20, x_21, x_16); if (lean_obj_tag(x_22) == 0) { @@ -8550,7 +8550,7 @@ lean_object* x_23; lean_object* x_24; lean_object* x_25; x_23 = lean_ctor_get(x_22, 1); lean_inc(x_23); lean_dec(x_22); -x_24 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__21; +x_24 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__21; x_25 = l_Lean_Parser_registerAliasCore___rarg(x_9, x_17, x_24, x_23); if (lean_obj_tag(x_25) == 0) { @@ -8558,7 +8558,7 @@ lean_object* x_26; lean_object* x_27; lean_object* x_28; x_26 = lean_ctor_get(x_25, 1); lean_inc(x_26); lean_dec(x_25); -x_27 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__23; +x_27 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__23; x_28 = l_Lean_Parser_registerAliasCore___rarg(x_13, x_17, x_27, x_26); if (lean_obj_tag(x_28) == 0) { @@ -8566,9 +8566,9 @@ lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean x_29 = lean_ctor_get(x_28, 1); lean_inc(x_29); lean_dec(x_28); -x_30 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__25; -x_31 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__26; -x_32 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__27; +x_30 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__25; +x_31 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__26; +x_32 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__27; x_33 = l_Lean_Parser_registerAlias(x_30, x_31, x_19, x_32, x_21, x_29); if (lean_obj_tag(x_33) == 0) { @@ -8576,7 +8576,7 @@ lean_object* x_34; lean_object* x_35; lean_object* x_36; x_34 = lean_ctor_get(x_33, 1); lean_inc(x_34); lean_dec(x_33); -x_35 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__29; +x_35 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__29; x_36 = l_Lean_Parser_registerAliasCore___rarg(x_9, x_30, x_35, x_34); if (lean_obj_tag(x_36) == 0) { @@ -8584,7 +8584,7 @@ lean_object* x_37; lean_object* x_38; lean_object* x_39; x_37 = lean_ctor_get(x_36, 1); lean_inc(x_37); lean_dec(x_36); -x_38 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__31; +x_38 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__31; x_39 = l_Lean_Parser_registerAliasCore___rarg(x_13, x_30, x_38, x_37); if (lean_obj_tag(x_39) == 0) { @@ -8592,9 +8592,9 @@ lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean x_40 = lean_ctor_get(x_39, 1); lean_inc(x_40); lean_dec(x_39); -x_41 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__33; -x_42 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__34; -x_43 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__35; +x_41 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__33; +x_42 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__34; +x_43 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__35; x_44 = l_Lean_Parser_registerAlias(x_41, x_42, x_19, x_43, x_21, x_40); if (lean_obj_tag(x_44) == 0) { @@ -8602,7 +8602,7 @@ lean_object* x_45; lean_object* x_46; lean_object* x_47; x_45 = lean_ctor_get(x_44, 1); lean_inc(x_45); lean_dec(x_44); -x_46 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__37; +x_46 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__37; x_47 = l_Lean_Parser_registerAliasCore___rarg(x_9, x_41, x_46, x_45); if (lean_obj_tag(x_47) == 0) { @@ -8610,7 +8610,7 @@ lean_object* x_48; lean_object* x_49; lean_object* x_50; x_48 = lean_ctor_get(x_47, 1); lean_inc(x_48); lean_dec(x_47); -x_49 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__39; +x_49 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__39; x_50 = l_Lean_Parser_registerAliasCore___rarg(x_13, x_41, x_49, x_48); if (lean_obj_tag(x_50) == 0) { @@ -8618,11 +8618,11 @@ lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean x_51 = lean_ctor_get(x_50, 1); lean_inc(x_51); lean_dec(x_50); -x_52 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__41; -x_53 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__42; -x_54 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__44; -x_55 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__45; -x_56 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__46; +x_52 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__41; +x_53 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__42; +x_54 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__44; +x_55 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__45; +x_56 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__46; x_57 = l_Lean_Parser_registerAlias(x_52, x_53, x_54, x_55, x_56, x_51); if (lean_obj_tag(x_57) == 0) { @@ -8630,7 +8630,7 @@ lean_object* x_58; lean_object* x_59; lean_object* x_60; x_58 = lean_ctor_get(x_57, 1); lean_inc(x_58); lean_dec(x_57); -x_59 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__48; +x_59 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__48; x_60 = l_Lean_Parser_registerAliasCore___rarg(x_9, x_52, x_59, x_58); if (lean_obj_tag(x_60) == 0) { @@ -8638,7 +8638,7 @@ lean_object* x_61; lean_object* x_62; lean_object* x_63; x_61 = lean_ctor_get(x_60, 1); lean_inc(x_61); lean_dec(x_60); -x_62 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__50; +x_62 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__50; x_63 = l_Lean_Parser_registerAliasCore___rarg(x_13, x_52, x_62, x_61); if (lean_obj_tag(x_63) == 0) { @@ -8646,10 +8646,10 @@ lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean x_64 = lean_ctor_get(x_63, 1); lean_inc(x_64); lean_dec(x_63); -x_65 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__52; -x_66 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__53; -x_67 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__55; -x_68 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__56; +x_65 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__52; +x_66 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__53; +x_67 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__55; +x_68 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__56; x_69 = l_Lean_Parser_registerAlias(x_65, x_66, x_67, x_68, x_56, x_64); if (lean_obj_tag(x_69) == 0) { @@ -8657,7 +8657,7 @@ lean_object* x_70; lean_object* x_71; lean_object* x_72; x_70 = lean_ctor_get(x_69, 1); lean_inc(x_70); lean_dec(x_69); -x_71 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__58; +x_71 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__58; x_72 = l_Lean_Parser_registerAliasCore___rarg(x_9, x_65, x_71, x_70); if (lean_obj_tag(x_72) == 0) { @@ -8665,7 +8665,7 @@ lean_object* x_73; lean_object* x_74; lean_object* x_75; x_73 = lean_ctor_get(x_72, 1); lean_inc(x_73); lean_dec(x_72); -x_74 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__60; +x_74 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__60; x_75 = l_Lean_Parser_registerAliasCore___rarg(x_13, x_65, x_74, x_73); if (lean_obj_tag(x_75) == 0) { @@ -8673,10 +8673,10 @@ lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean x_76 = lean_ctor_get(x_75, 1); lean_inc(x_76); lean_dec(x_75); -x_77 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__62; -x_78 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__63; -x_79 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__65; -x_80 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__66; +x_77 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__62; +x_78 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__63; +x_79 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__65; +x_80 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__66; x_81 = l_Lean_Parser_registerAlias(x_77, x_78, x_79, x_80, x_56, x_76); if (lean_obj_tag(x_81) == 0) { @@ -8684,7 +8684,7 @@ lean_object* x_82; lean_object* x_83; lean_object* x_84; x_82 = lean_ctor_get(x_81, 1); lean_inc(x_82); lean_dec(x_81); -x_83 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__68; +x_83 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__68; x_84 = l_Lean_Parser_registerAliasCore___rarg(x_9, x_77, x_83, x_82); if (lean_obj_tag(x_84) == 0) { @@ -8692,7 +8692,7 @@ lean_object* x_85; lean_object* x_86; lean_object* x_87; x_85 = lean_ctor_get(x_84, 1); lean_inc(x_85); lean_dec(x_84); -x_86 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__70; +x_86 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__70; x_87 = l_Lean_Parser_registerAliasCore___rarg(x_13, x_77, x_86, x_85); if (lean_obj_tag(x_87) == 0) { @@ -8700,10 +8700,10 @@ lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean x_88 = lean_ctor_get(x_87, 1); lean_inc(x_88); lean_dec(x_87); -x_89 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__72; -x_90 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__73; -x_91 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__75; -x_92 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__76; +x_89 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__72; +x_90 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__73; +x_91 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__75; +x_92 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__76; x_93 = l_Lean_Parser_registerAlias(x_89, x_90, x_91, x_92, x_56, x_88); if (lean_obj_tag(x_93) == 0) { @@ -8711,7 +8711,7 @@ lean_object* x_94; lean_object* x_95; lean_object* x_96; x_94 = lean_ctor_get(x_93, 1); lean_inc(x_94); lean_dec(x_93); -x_95 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__78; +x_95 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__78; x_96 = l_Lean_Parser_registerAliasCore___rarg(x_9, x_89, x_95, x_94); if (lean_obj_tag(x_96) == 0) { @@ -8719,7 +8719,7 @@ lean_object* x_97; lean_object* x_98; lean_object* x_99; x_97 = lean_ctor_get(x_96, 1); lean_inc(x_97); lean_dec(x_96); -x_98 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__80; +x_98 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__80; x_99 = l_Lean_Parser_registerAliasCore___rarg(x_13, x_89, x_98, x_97); if (lean_obj_tag(x_99) == 0) { @@ -8727,10 +8727,10 @@ lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; x_100 = lean_ctor_get(x_99, 1); lean_inc(x_100); lean_dec(x_99); -x_101 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__82; -x_102 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__83; -x_103 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__85; -x_104 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__86; +x_101 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__82; +x_102 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__83; +x_103 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__85; +x_104 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__86; x_105 = l_Lean_Parser_registerAlias(x_101, x_102, x_103, x_104, x_56, x_100); if (lean_obj_tag(x_105) == 0) { @@ -8738,7 +8738,7 @@ lean_object* x_106; lean_object* x_107; lean_object* x_108; x_106 = lean_ctor_get(x_105, 1); lean_inc(x_106); lean_dec(x_105); -x_107 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__88; +x_107 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__88; x_108 = l_Lean_Parser_registerAliasCore___rarg(x_9, x_101, x_107, x_106); if (lean_obj_tag(x_108) == 0) { @@ -8746,7 +8746,7 @@ lean_object* x_109; lean_object* x_110; lean_object* x_111; x_109 = lean_ctor_get(x_108, 1); lean_inc(x_109); lean_dec(x_108); -x_110 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__90; +x_110 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__90; x_111 = l_Lean_Parser_registerAliasCore___rarg(x_13, x_101, x_110, x_109); if (lean_obj_tag(x_111) == 0) { @@ -8754,10 +8754,10 @@ lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; x_112 = lean_ctor_get(x_111, 1); lean_inc(x_112); lean_dec(x_111); -x_113 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__92; -x_114 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__93; -x_115 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__95; -x_116 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__96; +x_113 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__92; +x_114 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__93; +x_115 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__95; +x_116 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__96; x_117 = l_Lean_Parser_registerAlias(x_113, x_114, x_115, x_116, x_56, x_112); if (lean_obj_tag(x_117) == 0) { @@ -8765,7 +8765,7 @@ lean_object* x_118; lean_object* x_119; lean_object* x_120; x_118 = lean_ctor_get(x_117, 1); lean_inc(x_118); lean_dec(x_117); -x_119 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__98; +x_119 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__98; x_120 = l_Lean_Parser_registerAliasCore___rarg(x_9, x_113, x_119, x_118); if (lean_obj_tag(x_120) == 0) { @@ -8773,7 +8773,7 @@ lean_object* x_121; lean_object* x_122; lean_object* x_123; x_121 = lean_ctor_get(x_120, 1); lean_inc(x_121); lean_dec(x_120); -x_122 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__100; +x_122 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__100; x_123 = l_Lean_Parser_registerAliasCore___rarg(x_13, x_113, x_122, x_121); if (lean_obj_tag(x_123) == 0) { @@ -8781,9 +8781,9 @@ lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; x_124 = lean_ctor_get(x_123, 1); lean_inc(x_124); lean_dec(x_123); -x_125 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__102; -x_126 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__103; -x_127 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__104; +x_125 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__102; +x_126 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__103; +x_127 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__104; x_128 = l_Lean_Parser_registerAlias(x_125, x_126, x_19, x_127, x_21, x_124); if (lean_obj_tag(x_128) == 0) { @@ -8791,7 +8791,7 @@ lean_object* x_129; lean_object* x_130; lean_object* x_131; x_129 = lean_ctor_get(x_128, 1); lean_inc(x_129); lean_dec(x_128); -x_130 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__106; +x_130 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__106; x_131 = l_Lean_Parser_registerAliasCore___rarg(x_9, x_125, x_130, x_129); if (lean_obj_tag(x_131) == 0) { @@ -8799,7 +8799,7 @@ lean_object* x_132; lean_object* x_133; lean_object* x_134; x_132 = lean_ctor_get(x_131, 1); lean_inc(x_132); lean_dec(x_131); -x_133 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__108; +x_133 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__108; x_134 = l_Lean_Parser_registerAliasCore___rarg(x_13, x_125, x_133, x_132); if (lean_obj_tag(x_134) == 0) { @@ -8807,9 +8807,9 @@ lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; x_135 = lean_ctor_get(x_134, 1); lean_inc(x_135); lean_dec(x_134); -x_136 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__110; -x_137 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__111; -x_138 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__112; +x_136 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__110; +x_137 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__111; +x_138 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__112; x_139 = l_Lean_Parser_registerAlias(x_136, x_137, x_19, x_138, x_21, x_135); if (lean_obj_tag(x_139) == 0) { @@ -8817,7 +8817,7 @@ lean_object* x_140; lean_object* x_141; lean_object* x_142; x_140 = lean_ctor_get(x_139, 1); lean_inc(x_140); lean_dec(x_139); -x_141 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__114; +x_141 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__114; x_142 = l_Lean_Parser_registerAliasCore___rarg(x_9, x_136, x_141, x_140); if (lean_obj_tag(x_142) == 0) { @@ -8825,7 +8825,7 @@ lean_object* x_143; lean_object* x_144; lean_object* x_145; x_143 = lean_ctor_get(x_142, 1); lean_inc(x_143); lean_dec(x_142); -x_144 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__116; +x_144 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__116; x_145 = l_Lean_Parser_registerAliasCore___rarg(x_13, x_136, x_144, x_143); return x_145; } @@ -10256,239 +10256,239 @@ l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegi lean_mark_persistent(l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias_x28Kind_x3a_x3d___x29__________1___lambda__1___closed__84); l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias_x28Kind_x3a_x3d___x29__________1___lambda__1___closed__85 = _init_l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias_x28Kind_x3a_x3d___x29__________1___lambda__1___closed__85(); lean_mark_persistent(l_Lean_Parser___aux__Lean__Parser__Extra______macroRules__Lean__Parser__termRegister__parser__alias_x28Kind_x3a_x3d___x29__________1___lambda__1___closed__85); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__1 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__1(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__1); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__2 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__2(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__2); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__3 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__3(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__3); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__4 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__4(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__4); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__5 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__5(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__5); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__6 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__6(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__6); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__7 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__7(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__7); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__8 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__8(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__8); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__9 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__9(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__9); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__10 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__10(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__10); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__11 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__11(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__11); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__12 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__12(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__12); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__13 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__13(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__13); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__14 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__14(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__14); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__15 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__15(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__15); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__16 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__16(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__16); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__17 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__17(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__17); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__18 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__18(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__18); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__19 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__19(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__19); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__20 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__20(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__20); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__21 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__21(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__21); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__22 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__22(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__22); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__23 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__23(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__23); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__24 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__24(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__24); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__25 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__25(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__25); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__26 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__26(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__26); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__27 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__27(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__27); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__28 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__28(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__28); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__29 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__29(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__29); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__30 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__30(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__30); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__31 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__31(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__31); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__32 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__32(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__32); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__33 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__33(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__33); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__34 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__34(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__34); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__35 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__35(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__35); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__36 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__36(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__36); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__37 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__37(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__37); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__38 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__38(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__38); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__39 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__39(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__39); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__40 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__40(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__40); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__41 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__41(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__41); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__42 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__42(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__42); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__43 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__43(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__43); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__44 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__44(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__44); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__45 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__45(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__45); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__46 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__46(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__46); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__47 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__47(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__47); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__48 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__48(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__48); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__49 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__49(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__49); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__50 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__50(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__50); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__51 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__51(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__51); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__52 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__52(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__52); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__53 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__53(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__53); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__54 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__54(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__54); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__55 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__55(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__55); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__56 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__56(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__56); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__57 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__57(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__57); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__58 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__58(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__58); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__59 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__59(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__59); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__60 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__60(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__60); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__61 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__61(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__61); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__62 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__62(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__62); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__63 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__63(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__63); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__64 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__64(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__64); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__65 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__65(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__65); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__66 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__66(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__66); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__67 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__67(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__67); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__68 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__68(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__68); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__69 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__69(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__69); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__70 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__70(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__70); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__71 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__71(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__71); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__72 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__72(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__72); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__73 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__73(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__73); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__74 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__74(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__74); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__75 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__75(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__75); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__76 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__76(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__76); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__77 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__77(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__77); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__78 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__78(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__78); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__79 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__79(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__79); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__80 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__80(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__80); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__81 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__81(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__81); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__82 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__82(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__82); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__83 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__83(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__83); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__84 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__84(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__84); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__85 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__85(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__85); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__86 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__86(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__86); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__87 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__87(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__87); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__88 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__88(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__88); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__89 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__89(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__89); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__90 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__90(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__90); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__91 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__91(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__91); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__92 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__92(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__92); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__93 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__93(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__93); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__94 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__94(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__94); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__95 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__95(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__95); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__96 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__96(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__96); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__97 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__97(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__97); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__98 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__98(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__98); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__99 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__99(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__99); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__100 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__100(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__100); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__101 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__101(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__101); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__102 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__102(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__102); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__103 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__103(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__103); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__104 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__104(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__104); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__105 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__105(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__105); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__106 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__106(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__106); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__107 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__107(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__107); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__108 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__108(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__108); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__109 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__109(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__109); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__110 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__110(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__110); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__111 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__111(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__111); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__112 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__112(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__112); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__113 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__113(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__113); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__114 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__114(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__114); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__115 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__115(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__115); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__116 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__116(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164____closed__116); -res = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2164_(lean_io_mk_world()); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__1 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__1(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__1); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__2 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__2(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__2); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__3 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__3(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__3); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__4 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__4(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__4); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__5 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__5(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__5); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__6 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__6(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__6); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__7 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__7(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__7); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__8 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__8(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__8); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__9 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__9(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__9); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__10 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__10(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__10); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__11 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__11(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__11); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__12 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__12(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__12); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__13 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__13(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__13); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__14 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__14(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__14); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__15 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__15(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__15); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__16 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__16(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__16); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__17 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__17(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__17); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__18 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__18(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__18); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__19 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__19(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__19); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__20 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__20(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__20); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__21 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__21(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__21); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__22 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__22(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__22); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__23 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__23(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__23); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__24 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__24(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__24); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__25 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__25(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__25); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__26 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__26(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__26); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__27 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__27(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__27); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__28 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__28(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__28); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__29 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__29(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__29); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__30 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__30(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__30); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__31 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__31(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__31); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__32 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__32(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__32); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__33 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__33(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__33); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__34 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__34(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__34); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__35 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__35(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__35); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__36 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__36(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__36); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__37 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__37(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__37); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__38 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__38(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__38); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__39 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__39(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__39); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__40 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__40(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__40); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__41 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__41(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__41); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__42 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__42(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__42); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__43 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__43(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__43); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__44 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__44(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__44); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__45 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__45(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__45); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__46 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__46(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__46); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__47 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__47(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__47); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__48 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__48(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__48); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__49 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__49(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__49); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__50 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__50(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__50); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__51 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__51(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__51); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__52 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__52(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__52); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__53 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__53(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__53); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__54 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__54(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__54); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__55 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__55(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__55); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__56 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__56(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__56); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__57 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__57(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__57); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__58 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__58(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__58); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__59 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__59(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__59); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__60 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__60(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__60); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__61 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__61(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__61); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__62 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__62(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__62); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__63 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__63(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__63); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__64 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__64(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__64); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__65 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__65(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__65); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__66 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__66(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__66); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__67 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__67(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__67); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__68 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__68(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__68); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__69 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__69(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__69); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__70 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__70(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__70); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__71 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__71(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__71); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__72 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__72(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__72); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__73 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__73(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__73); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__74 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__74(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__74); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__75 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__75(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__75); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__76 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__76(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__76); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__77 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__77(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__77); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__78 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__78(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__78); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__79 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__79(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__79); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__80 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__80(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__80); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__81 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__81(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__81); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__82 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__82(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__82); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__83 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__83(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__83); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__84 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__84(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__84); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__85 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__85(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__85); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__86 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__86(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__86); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__87 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__87(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__87); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__88 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__88(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__88); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__89 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__89(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__89); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__90 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__90(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__90); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__91 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__91(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__91); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__92 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__92(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__92); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__93 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__93(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__93); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__94 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__94(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__94); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__95 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__95(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__95); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__96 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__96(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__96); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__97 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__97(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__97); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__98 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__98(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__98); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__99 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__99(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__99); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__100 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__100(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__100); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__101 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__101(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__101); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__102 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__102(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__102); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__103 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__103(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__103); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__104 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__104(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__104); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__105 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__105(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__105); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__106 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__106(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__106); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__107 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__107(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__107); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__108 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__108(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__108); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__109 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__109(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__109); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__110 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__110(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__110); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__111 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__111(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__111); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__112 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__112(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__112); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__113 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__113(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__113); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__114 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__114(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__114); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__115 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__115(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__115); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__116 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__116(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124____closed__116); +res = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_2124_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); return lean_io_result_mk_ok(lean_box(0)); diff --git a/stage0/stdlib/Lean/PrettyPrinter/Delaborator/TopDownAnalyze.c b/stage0/stdlib/Lean/PrettyPrinter/Delaborator/TopDownAnalyze.c index 126eff4554..b556ae34c1 100644 --- a/stage0/stdlib/Lean/PrettyPrinter/Delaborator/TopDownAnalyze.c +++ b/stage0/stdlib/Lean/PrettyPrinter/Delaborator/TopDownAnalyze.c @@ -354,6 +354,7 @@ LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Delaborator_TopDownAnalyze_annotat LEAN_EXPORT uint8_t l_Lean_PrettyPrinter_Delaborator_TopDownAnalyze_hasLevelMVarAtCurrDepth___lambda__1(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Delaborator_TopDownAnalyze_analyzeAppStagedCore_annotateNamedArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_PrettyPrinter_Delaborator_TopDownAnalyze_analyze_analyzeLet___closed__1; +static lean_object* l_Lean_PrettyPrinter_Delaborator_initFn____x40_Lean_PrettyPrinter_Delaborator_TopDownAnalyze___hyg_12788____closed__1; LEAN_EXPORT lean_object* l_Std_Range_forIn_loop___at_Lean_PrettyPrinter_Delaborator_TopDownAnalyze_analyzeAppStagedCore_collectTrivialBottomUps___spec__1___boxed(lean_object**); static lean_object* l_Lean_initFn____x40_Lean_PrettyPrinter_Delaborator_TopDownAnalyze___hyg_216____closed__1; static lean_object* l_Lean_getPPAnalysisSkip___closed__2; @@ -372,7 +373,6 @@ LEAN_EXPORT lean_object* l_Lean_getPPAnalyzeTrustId___boxed(lean_object*); lean_object* l_StateT_lift___rarg(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_initFn____x40_Lean_PrettyPrinter_Delaborator_TopDownAnalyze___hyg_318____closed__4; lean_object* l_Lean_Expr_sort___override(lean_object*); -static lean_object* l_Lean_PrettyPrinter_Delaborator_initFn____x40_Lean_PrettyPrinter_Delaborator_TopDownAnalyze___hyg_12876____closed__2; LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Delaborator_TopDownAnalyze_hasMVarAtCurrDepth(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at_Lean_PrettyPrinter_Delaborator_TopDownAnalyze_analyze_analyzeLam___spec__3(lean_object*); lean_object* l_Lean_Expr_ReplaceLevelImpl_replaceUnsafe(lean_object*, lean_object*); @@ -384,7 +384,6 @@ LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Delaborator_TopDownAnalyze_analyze LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Delaborator_TopDownAnalyze_analyzeAppStagedCore_checkOutParams___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_PrettyPrinter_Delaborator_TopDownAnalyze_analyze_analyzeAppStaged___lambda__1___closed__1; static lean_object* l_Lean_PrettyPrinter_Delaborator_TopDownAnalyze_isHBinOp___lambda__1___closed__24; -static lean_object* l_Lean_PrettyPrinter_Delaborator_initFn____x40_Lean_PrettyPrinter_Delaborator_TopDownAnalyze___hyg_12876____closed__1; lean_object* l_Lean_CollectLevelParams_main(lean_object*, lean_object*); static lean_object* l_Lean_PrettyPrinter_Delaborator_TopDownAnalyze_analyze_analyzeApp___closed__1; static lean_object* l_panic___at_Lean_PrettyPrinter_Delaborator_TopDownAnalyze_analyze_analyzeConst___spec__1___closed__3; @@ -429,6 +428,7 @@ static lean_object* l_Lean_initFn____x40_Lean_PrettyPrinter_Delaborator_TopDownA static uint8_t l_Lean_PrettyPrinter_Delaborator_TopDownAnalyze_isHBinOp___lambda__1___closed__55; static lean_object* l_Lean_PrettyPrinter_Delaborator_TopDownAnalyze_analyze_analyzeApp___closed__4; LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Delaborator_SubExpr_getPos___at_Lean_PrettyPrinter_Delaborator_TopDownAnalyze_analyzeAppStagedCore_analyzeArg___spec__3___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_PrettyPrinter_Delaborator_initFn____x40_Lean_PrettyPrinter_Delaborator_TopDownAnalyze___hyg_12788____closed__2; LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Delaborator_TopDownAnalyze_analyzeAppStagedCore_analyzeFn(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Delaborator_SubExpr_withNaryArg___at_Lean_PrettyPrinter_Delaborator_TopDownAnalyze_analyzeAppStagedCore_maybeSetExplicit___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_isProof(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -728,7 +728,7 @@ LEAN_EXPORT lean_object* l_panic___at_Lean_PrettyPrinter_Delaborator_TopDownAnal LEAN_EXPORT lean_object* l_Std_Range_forIn_loop___at_Lean_PrettyPrinter_Delaborator_TopDownAnalyze_analyzeAppStagedCore_collectHigherOrders___spec__1___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_PrettyPrinter_Delaborator_TopDownAnalyze_isHBinOp___lambda__1___closed__1; LEAN_EXPORT lean_object* l_panic___at_Lean_PrettyPrinter_Delaborator_TopDownAnalyze_analyze_analyzeLet___spec__24(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Delaborator_initFn____x40_Lean_PrettyPrinter_Delaborator_TopDownAnalyze___hyg_12876_(lean_object*); +LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Delaborator_initFn____x40_Lean_PrettyPrinter_Delaborator_TopDownAnalyze___hyg_12788_(lean_object*); LEAN_EXPORT lean_object* l_panic___at_Lean_PrettyPrinter_Delaborator_TopDownAnalyze_analyze_analyzeLet___spec__22(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Delaborator_SubExpr_descend___at_Lean_PrettyPrinter_Delaborator_TopDownAnalyze_analyzeAppStagedCore_applyFunBinderHeuristic_core___spec__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Delaborator_SubExpr_getPos___at_Lean_PrettyPrinter_Delaborator_TopDownAnalyze_analyzeAppStagedCore_analyzeArg___spec__3___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -31095,7 +31095,7 @@ lean_dec(x_2); return x_8; } } -static lean_object* _init_l_Lean_PrettyPrinter_Delaborator_initFn____x40_Lean_PrettyPrinter_Delaborator_TopDownAnalyze___hyg_12876____closed__1() { +static lean_object* _init_l_Lean_PrettyPrinter_Delaborator_initFn____x40_Lean_PrettyPrinter_Delaborator_TopDownAnalyze___hyg_12788____closed__1() { _start: { lean_object* x_1; @@ -31103,18 +31103,18 @@ x_1 = lean_mk_string_from_bytes("tryUnify", 8); return x_1; } } -static lean_object* _init_l_Lean_PrettyPrinter_Delaborator_initFn____x40_Lean_PrettyPrinter_Delaborator_TopDownAnalyze___hyg_12876____closed__2() { +static lean_object* _init_l_Lean_PrettyPrinter_Delaborator_initFn____x40_Lean_PrettyPrinter_Delaborator_TopDownAnalyze___hyg_12788____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; x_1 = l_Lean_initFn____x40_Lean_PrettyPrinter_Delaborator_TopDownAnalyze___hyg_8____closed__1; x_2 = l_Lean_initFn____x40_Lean_PrettyPrinter_Delaborator_TopDownAnalyze___hyg_8____closed__2; -x_3 = l_Lean_PrettyPrinter_Delaborator_initFn____x40_Lean_PrettyPrinter_Delaborator_TopDownAnalyze___hyg_12876____closed__1; +x_3 = l_Lean_PrettyPrinter_Delaborator_initFn____x40_Lean_PrettyPrinter_Delaborator_TopDownAnalyze___hyg_12788____closed__1; x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); return x_4; } } -LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Delaborator_initFn____x40_Lean_PrettyPrinter_Delaborator_TopDownAnalyze___hyg_12876_(lean_object* x_1) { +LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Delaborator_initFn____x40_Lean_PrettyPrinter_Delaborator_TopDownAnalyze___hyg_12788_(lean_object* x_1) { _start: { lean_object* x_2; uint8_t x_3; lean_object* x_4; @@ -31136,7 +31136,7 @@ lean_object* x_9; lean_object* x_10; lean_object* x_11; x_9 = lean_ctor_get(x_8, 1); lean_inc(x_9); lean_dec(x_8); -x_10 = l_Lean_PrettyPrinter_Delaborator_initFn____x40_Lean_PrettyPrinter_Delaborator_TopDownAnalyze___hyg_12876____closed__2; +x_10 = l_Lean_PrettyPrinter_Delaborator_initFn____x40_Lean_PrettyPrinter_Delaborator_TopDownAnalyze___hyg_12788____closed__2; x_11 = l_Lean_registerTraceClass(x_10, x_7, x_9); if (lean_obj_tag(x_11) == 0) { @@ -31777,11 +31777,11 @@ l_Lean_PrettyPrinter_Delaborator_topDownAnalyze___lambda__3___closed__5 = _init_ lean_mark_persistent(l_Lean_PrettyPrinter_Delaborator_topDownAnalyze___lambda__3___closed__5); l_Lean_PrettyPrinter_Delaborator_topDownAnalyze___closed__1 = _init_l_Lean_PrettyPrinter_Delaborator_topDownAnalyze___closed__1(); lean_mark_persistent(l_Lean_PrettyPrinter_Delaborator_topDownAnalyze___closed__1); -l_Lean_PrettyPrinter_Delaborator_initFn____x40_Lean_PrettyPrinter_Delaborator_TopDownAnalyze___hyg_12876____closed__1 = _init_l_Lean_PrettyPrinter_Delaborator_initFn____x40_Lean_PrettyPrinter_Delaborator_TopDownAnalyze___hyg_12876____closed__1(); -lean_mark_persistent(l_Lean_PrettyPrinter_Delaborator_initFn____x40_Lean_PrettyPrinter_Delaborator_TopDownAnalyze___hyg_12876____closed__1); -l_Lean_PrettyPrinter_Delaborator_initFn____x40_Lean_PrettyPrinter_Delaborator_TopDownAnalyze___hyg_12876____closed__2 = _init_l_Lean_PrettyPrinter_Delaborator_initFn____x40_Lean_PrettyPrinter_Delaborator_TopDownAnalyze___hyg_12876____closed__2(); -lean_mark_persistent(l_Lean_PrettyPrinter_Delaborator_initFn____x40_Lean_PrettyPrinter_Delaborator_TopDownAnalyze___hyg_12876____closed__2); -res = l_Lean_PrettyPrinter_Delaborator_initFn____x40_Lean_PrettyPrinter_Delaborator_TopDownAnalyze___hyg_12876_(lean_io_mk_world()); +l_Lean_PrettyPrinter_Delaborator_initFn____x40_Lean_PrettyPrinter_Delaborator_TopDownAnalyze___hyg_12788____closed__1 = _init_l_Lean_PrettyPrinter_Delaborator_initFn____x40_Lean_PrettyPrinter_Delaborator_TopDownAnalyze___hyg_12788____closed__1(); +lean_mark_persistent(l_Lean_PrettyPrinter_Delaborator_initFn____x40_Lean_PrettyPrinter_Delaborator_TopDownAnalyze___hyg_12788____closed__1); +l_Lean_PrettyPrinter_Delaborator_initFn____x40_Lean_PrettyPrinter_Delaborator_TopDownAnalyze___hyg_12788____closed__2 = _init_l_Lean_PrettyPrinter_Delaborator_initFn____x40_Lean_PrettyPrinter_Delaborator_TopDownAnalyze___hyg_12788____closed__2(); +lean_mark_persistent(l_Lean_PrettyPrinter_Delaborator_initFn____x40_Lean_PrettyPrinter_Delaborator_TopDownAnalyze___hyg_12788____closed__2); +res = l_Lean_PrettyPrinter_Delaborator_initFn____x40_Lean_PrettyPrinter_Delaborator_TopDownAnalyze___hyg_12788_(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));